2014-08-27 15:17:06 +00:00
|
|
|
from __future__ import unicode_literals
|
2013-02-24 03:26:46 +00:00
|
|
|
import inspect
|
2013-02-24 16:06:42 +00:00
|
|
|
import random
|
2013-03-05 13:14:43 +00:00
|
|
|
import re
|
2014-08-26 17:25:50 +00:00
|
|
|
import six
|
2013-02-24 03:26:46 +00:00
|
|
|
|
2013-03-05 13:14:43 +00:00
|
|
|
from flask import request
|
|
|
|
|
2013-02-24 03:26:46 +00:00
|
|
|
|
|
|
|
def camelcase_to_underscores(argument):
|
|
|
|
''' Converts a camelcase param like theNewAttribute to the equivalent
|
|
|
|
python underscore variable like the_new_attribute'''
|
|
|
|
result = ''
|
|
|
|
prev_char_title = True
|
|
|
|
for char in argument:
|
|
|
|
if char.istitle() and not prev_char_title:
|
|
|
|
# Only add underscore if char is capital, not first letter, and prev
|
|
|
|
# char wasn't capital
|
|
|
|
result += "_"
|
|
|
|
prev_char_title = char.istitle()
|
|
|
|
if not char.isspace(): # Only add non-whitespace
|
|
|
|
result += char.lower()
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
def method_names_from_class(clazz):
|
2014-08-26 17:25:50 +00:00
|
|
|
# On Python 2, methods are different from functions, and the `inspect`
|
|
|
|
# predicates distinguish between them. On Python 3, methods are just
|
|
|
|
# regular functions, and `inspect.ismethod` doesn't work, so we have to
|
|
|
|
# use `inspect.isfunction` instead
|
|
|
|
if six.PY2:
|
|
|
|
predicate = inspect.ismethod
|
|
|
|
else:
|
|
|
|
predicate = inspect.isfunction
|
|
|
|
return [x[0] for x in inspect.getmembers(clazz, predicate=predicate)]
|
2013-02-24 16:06:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
def get_random_hex(length=8):
|
2014-08-26 17:25:50 +00:00
|
|
|
chars = list(range(10)) + ['a', 'b', 'c', 'd', 'e', 'f']
|
|
|
|
return ''.join(six.text_type(random.choice(chars)) for x in range(length))
|
2013-02-24 16:06:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
def get_random_message_id():
|
2013-10-04 00:34:13 +00:00
|
|
|
return '{0}-{1}-{2}-{3}-{4}'.format(get_random_hex(8), get_random_hex(4), get_random_hex(4), get_random_hex(4), get_random_hex(12))
|
2013-03-05 13:14:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
def convert_regex_to_flask_path(url_path):
|
|
|
|
"""
|
|
|
|
Converts a regex matching url to one that can be used with flask
|
|
|
|
"""
|
|
|
|
for token in ["$"]:
|
|
|
|
url_path = url_path.replace(token, "")
|
|
|
|
|
|
|
|
def caller(reg):
|
|
|
|
match_name, match_pattern = reg.groups()
|
|
|
|
return '<regex("{0}"):{1}>'.format(match_pattern, match_name)
|
|
|
|
|
|
|
|
url_path = re.sub("\(\?P<(.*?)>(.*?)\)", caller, url_path)
|
|
|
|
return url_path
|
|
|
|
|
|
|
|
|
|
|
|
class convert_flask_to_httpretty_response(object):
|
|
|
|
def __init__(self, callback):
|
|
|
|
self.callback = callback
|
|
|
|
|
|
|
|
@property
|
|
|
|
def __name__(self):
|
|
|
|
# For instance methods, use class and method names. Otherwise
|
|
|
|
# use module and method name
|
|
|
|
if inspect.ismethod(self.callback):
|
2014-08-26 17:25:50 +00:00
|
|
|
outer = self.callback.__self__.__class__.__name__
|
2013-03-05 13:14:43 +00:00
|
|
|
else:
|
|
|
|
outer = self.callback.__module__
|
2013-10-04 00:34:13 +00:00
|
|
|
return "{0}.{1}".format(outer, self.callback.__name__)
|
2013-03-05 13:14:43 +00:00
|
|
|
|
|
|
|
def __call__(self, args=None, **kwargs):
|
2014-05-19 13:16:50 +00:00
|
|
|
result = self.callback(request, request.url, {})
|
2013-05-04 00:14:33 +00:00
|
|
|
# result is a status, headers, response tuple
|
|
|
|
status, headers, response = result
|
|
|
|
return response, status, headers
|
2013-05-24 21:22:34 +00:00
|
|
|
|
|
|
|
|
2014-11-30 04:34:40 +00:00
|
|
|
def iso_8601_datetime_with_milliseconds(datetime):
|
|
|
|
return datetime.strftime("%Y-%m-%dT%H:%M:%S.%f")[:-3] + 'Z'
|
2013-05-24 21:22:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
def rfc_1123_datetime(datetime):
|
|
|
|
RFC1123 = '%a, %d %b %Y %H:%M:%S GMT'
|
|
|
|
return datetime.strftime(RFC1123)
|