69 lines
2.0 KiB
Python
69 lines
2.0 KiB
Python
import time
|
|
import logging
|
|
import re
|
|
|
|
from datetime import timedelta
|
|
from xblock.core import ModelType
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
class Date(ModelType):
|
|
time_format = "%Y-%m-%dT%H:%M"
|
|
|
|
def from_json(self, value):
|
|
"""
|
|
Parse an optional metadata key containing a time: if present, complain
|
|
if it doesn't parse.
|
|
Return None if not present or invalid.
|
|
"""
|
|
if value is None:
|
|
return None
|
|
|
|
try:
|
|
return time.strptime(value, self.time_format)
|
|
except ValueError as e:
|
|
msg = "Field {0} has bad value '{1}': '{2}'".format(
|
|
self._name, value, e)
|
|
log.warning(msg)
|
|
return None
|
|
|
|
def to_json(self, value):
|
|
"""
|
|
Convert a time struct to a string
|
|
"""
|
|
if value is None:
|
|
return None
|
|
|
|
return time.strftime(self.time_format, value)
|
|
|
|
|
|
TIMEDELTA_REGEX = re.compile(r'^((?P<days>\d+?) day(?:s?))?(\s)?((?P<hours>\d+?) hour(?:s?))?(\s)?((?P<minutes>\d+?) minute(?:s)?)?(\s)?((?P<seconds>\d+?) second(?:s)?)?$')
|
|
class Timedelta(ModelType):
|
|
def from_json(self, time_str):
|
|
"""
|
|
time_str: A string with the following components:
|
|
<D> day[s] (optional)
|
|
<H> hour[s] (optional)
|
|
<M> minute[s] (optional)
|
|
<S> second[s] (optional)
|
|
|
|
Returns a datetime.timedelta parsed from the string
|
|
"""
|
|
parts = TIMEDELTA_REGEX.match(time_str)
|
|
if not parts:
|
|
return
|
|
parts = parts.groupdict()
|
|
time_params = {}
|
|
for (name, param) in parts.iteritems():
|
|
if param:
|
|
time_params[name] = int(param)
|
|
return timedelta(**time_params)
|
|
|
|
def to_json(self, value):
|
|
values = []
|
|
for attr in ('days', 'hours', 'minutes', 'seconds'):
|
|
cur_value = getattr(value, attr, 0)
|
|
if cur_value > 0:
|
|
values.append("%d %s" % (cur_value, attr))
|
|
return ' '.join(values) |