Return list of tracking numbers in reverse order. Recent first

Este commit está contenido en:
IamTheFij 2018-04-05 17:00:35 -07:00
padre eabe2af9b1
commit 478a3fb225
Se han modificado 2 ficheros con 12 adiciones y 7 borrados

Ver fichero

@ -59,13 +59,14 @@ class EmailToken(db.Model):
)
@classmethod
def jsonify_all(cls, token_type=None):
def jsonify_all(cls, token_type=None, desc=False):
query = cls.query
if token_type:
print('Filtering query by token type', file=sys.stderr)
results = cls.query.filter_by(token_type=token_type).all()
else:
results = cls.query.all()
return jsonify(tokens=[token.as_dict() for token in results])
query = query.filter_by(token_type=token_type)
if desc:
query = query.order_by(cls.id.desc())
return jsonify(tokens=[token.as_dict() for token in query.all()])
@app.route('/')
@ -114,8 +115,9 @@ def create_tokens():
def list_all_tokens():
"""Lists all tokens with an optional type filter"""
token_type = request.args.get('filter_type')
desc = request.args.get('desc', False)
print('Asked to filter by ', token_type, file=sys.stderr)
return EmailToken.jsonify_all(token_type=token_type)
return EmailToken.jsonify_all(token_type=token_type, desc=desc)
@app.route('/token/<int:token_id>', methods=['GET'])

Ver fichero

@ -20,7 +20,10 @@ def check():
def get_tokens():
resp = requests.get(
indexer_url+'/token',
params={'filter_type': 'SHIPPING'},
params={
'filter_type': 'SHIPPING',
'desc': True,
},
)
resp.raise_for_status()
tokens = resp.json().get('tokens')