1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
"""Copyright 2008 Orbitz WorldWide
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License."""
import calendar
import hashlib
import pytz
from flask import request
def is_pattern(s):
return '*' in s or '?' in s or '[' in s or '{' in s
class RequestParams(object):
"""Dict-like structure that allows accessing request params
whatever their origin (json body, form body, request args)."""
def __getitem__(self, key):
if request.json and key in request.json:
return request.json[key]
if key in request.form:
return request.form.getlist(key)[-1]
if key in request.args:
return request.args.getlist(key)[-1]
raise KeyError
def __contains__(self, key):
try:
self[key]
return True
except KeyError:
return False
def get(self, key, default=None):
try:
return self[key]
except KeyError:
return default
def getlist(self, key):
if request.json and key in request.json:
value = self[key]
if not isinstance(value, list):
value = [value]
return value
if key in request.form:
return request.form.getlist(key)
return request.args.getlist(key)
RequestParams = RequestParams()
def hash_request():
keys = set()
if request.json:
keys.update(request.json.keys())
if request.form:
keys.update(request.form.keys())
keys.update(request.args.keys())
params = u",".join([
u"{0}={1}".format(key, u"&".join(sorted(RequestParams.getlist(key))))
for key in sorted(keys) if not key.startswith('_')
])
md5 = hashlib.md5()
md5.update(params.encode('utf-8'))
return md5.hexdigest()
def to_seconds(delta):
return abs(delta.seconds + delta.days * 86400)
def epoch(dt):
"""
Returns the epoch timestamp of a timezone-aware datetime object.
"""
return calendar.timegm(dt.astimezone(pytz.utc).timetuple())
|