2018-04-17 12:18:40 +00:00
|
|
|
"""OpenAPI core schemas util module"""
|
2018-08-17 04:25:12 +00:00
|
|
|
import datetime
|
2018-04-17 12:18:40 +00:00
|
|
|
from distutils.util import strtobool
|
2018-07-28 20:57:49 +00:00
|
|
|
from json import dumps
|
2018-07-15 21:21:15 +00:00
|
|
|
from six import string_types
|
2018-09-12 14:09:10 +00:00
|
|
|
import strict_rfc3339
|
2018-04-17 12:18:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
def forcebool(val):
|
2018-07-15 21:21:15 +00:00
|
|
|
if isinstance(val, string_types):
|
2018-04-17 12:18:40 +00:00
|
|
|
val = strtobool(val)
|
|
|
|
|
|
|
|
return bool(val)
|
2018-07-28 20:57:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
def dicthash(d):
|
|
|
|
return hash(dumps(d, sort_keys=True))
|
2018-08-17 04:25:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
def format_date(value):
|
|
|
|
return datetime.datetime.strptime(value, '%Y-%m-%d').date()
|
2018-08-22 10:51:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
def format_datetime(value):
|
2018-09-12 14:09:10 +00:00
|
|
|
timestamp = strict_rfc3339.rfc3339_to_timestamp(value)
|
|
|
|
return datetime.datetime.fromtimestamp(timestamp)
|