remove so many transactions
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
5a64c72cc9
commit
5e29de0c44
@ -4,7 +4,6 @@ from xeger import Xeger
|
||||
from flask_restful import Resource
|
||||
from flask import request, current_app
|
||||
import requests
|
||||
from sentry_sdk import start_transaction
|
||||
import pika
|
||||
from db import db
|
||||
from models import SampleMetadata
|
||||
@ -35,32 +34,27 @@ class SampleResource(Resource):
|
||||
Post request send to the endpoint
|
||||
:return:
|
||||
"""
|
||||
with start_transaction(op="get-file", name="get-file-from-request"):
|
||||
if 'file' not in request.files:
|
||||
return {"err_msg": "no file found"}, 469
|
||||
else:
|
||||
soundfile = request.files['file']
|
||||
|
||||
with start_transaction(op="get-description", name="get-description-from-request"):
|
||||
if 'description' not in request.form:
|
||||
return {"err_msg": "no description found"}, 470
|
||||
else:
|
||||
description = request.form.get("description")
|
||||
|
||||
with start_transaction(op="validate-wave", name="validate-wave-type"):
|
||||
if soundfile.content_type != 'audio/wave':
|
||||
current_app.logger.info(
|
||||
f"Input file was not WAV.")
|
||||
return {'err_msg': 'Input file not a wave file.'}, 415
|
||||
|
||||
with start_transaction(op="validate-description", name="validate-description-schema"):
|
||||
try:
|
||||
desc = self.sampleschema.loads(description)
|
||||
except Exception as e:
|
||||
current_app.logger.exception(e)
|
||||
return {'err_msg': 'Input JSON schema invalid'}, 417
|
||||
|
||||
with start_transaction(op="tag-generate", name="generate-tag"):
|
||||
xeger = Xeger(limit=30)
|
||||
while True:
|
||||
generated_tag = xeger.xeger(r'^[a-zA-Z]+[0-9a-zA-Z_]*$')[:32]
|
||||
@ -82,7 +76,6 @@ class SampleResource(Resource):
|
||||
soundfile,
|
||||
soundfile.content_type,
|
||||
{'Content-Length': soundfile.content_length})}).raise_for_status()
|
||||
with start_transaction(op="rabbitmq-send", name="rabbitmq-connect-and-publish"):
|
||||
credentials = pika.PlainCredentials(current_app.config['FLASK_PIKA_PARAMS']['username'],
|
||||
current_app.config['FLASK_PIKA_PARAMS']['password'])
|
||||
connection = pika.BlockingConnection(
|
||||
@ -97,6 +90,7 @@ class SampleResource(Resource):
|
||||
routing_key='feature',
|
||||
body=json.dumps({'tag': generated_tag}).encode('UTF-8'))
|
||||
connection.close()
|
||||
|
||||
except Exception as e:
|
||||
current_app.logger.exception(e)
|
||||
db.session.rollback()
|
||||
@ -106,6 +100,7 @@ class SampleResource(Resource):
|
||||
db.session.commit()
|
||||
return {"tag": generated_tag}, 200
|
||||
|
||||
|
||||
def get(self):
|
||||
"""
|
||||
Get all stored items
|
||||
|
Loading…
Reference in New Issue
Block a user