X-Git-Url: https://git.madduck.net/etc/taskwarrior.git/blobdiff_plain/ff45f9122b3f1a441491d9bcb0d9681039baea38..f2d008def446626c071a9ceb2c80acb74d477cd0:/tasklib/backends.py?ds=inline diff --git a/tasklib/backends.py b/tasklib/backends.py index 51285b5..fe24fd2 100644 --- a/tasklib/backends.py +++ b/tasklib/backends.py @@ -5,6 +5,9 @@ import re import subprocess from tasklib.filters import TaskWarriorFilter +from tasklib.serializing import local_zone + +DATE_FORMAT_CALC = '%Y-%m-%dT%H:%M:%S' VERSION_2_1_0 = six.u('2.1.0') VERSION_2_2_0 = six.u('2.2.0') @@ -67,6 +70,13 @@ class Backend(object): """Syncs the backend database with the taskd server""" pass + def convert_datetime_string(self, value): + """ + Converts TW syntax datetime string to a localized datetime + object. This method is not mandatory. + """ + raise NotImplemented + class TaskWarriorException(Exception): pass @@ -184,6 +194,19 @@ class TaskWarrior(object): else: return six.u("description:'{0}'").format(task._data['description'] or '') + def convert_datetime_string(self, value): + + if self.version >= VERSION_2_4_0: + # For strings, use 'task calc' to evaluate the string to datetime + # available since TW 2.4.0 + args = value.split() + result = self.execute_command(['calc'] + args) + naive = datetime.datetime.strptime(result[0], DATE_FORMAT_CALC) + localized = local_zone.localize(naive) + else: + raise ValueError("Provided value could not be converted to " + "datetime, its type is not supported: {}" + .format(type(value))) # Public interface