|
|
@ -1,5 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
import datetime
|
|
|
|
import datetime
|
|
|
|
|
|
|
|
import urllib
|
|
|
|
|
|
|
|
import zoneinfo
|
|
|
|
|
|
|
|
|
|
|
|
from common import dateutil
|
|
|
|
from common import dateutil
|
|
|
|
from common.requests import InstrumentedSession
|
|
|
|
from common.requests import InstrumentedSession
|
|
|
@ -9,75 +11,93 @@ requests = InstrumentedSession()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def parse_shift_time(time_str, timeout=5):
|
|
|
|
def parse_shift_time(time_str, timeout=5):
|
|
|
|
"""Parse times in the shift definition.
|
|
|
|
"""
|
|
|
|
|
|
|
|
Parse times in the shift definition.
|
|
|
|
The parser first tries to parse a string as a datetime before trying the string as a URL to fetch a timestamp from."""
|
|
|
|
|
|
|
|
if not time_str:
|
|
|
|
The parser first tries to parse a string as a URL to fetch a timestamp from before trying to parse it as a timestamp.
|
|
|
|
return None
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
if not time_str:
|
|
|
|
return dateutil.parse(time_str)
|
|
|
|
return None
|
|
|
|
except ValueError:
|
|
|
|
if urllib.parse.urlparse(time_str).scheme in ('http', 'https'):
|
|
|
|
try:
|
|
|
|
resp = requests.get(time_str, timeout=timeout)
|
|
|
|
resp = requests.get(time_str, timeout=timeout, metric_name='get_shift_time')
|
|
|
|
resp.raise_for_status()
|
|
|
|
resp.raise_for_status()
|
|
|
|
return dateutil.parse(resp.text.strip())
|
|
|
|
return dateutil.parse(resp.text.strip())
|
|
|
|
else:
|
|
|
|
except Exception:
|
|
|
|
return dateutil.parse(time_str)
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def parse_shifts(shifts):
|
|
|
|
def parse_shifts(shifts):
|
|
|
|
"""Parse a shifts definition
|
|
|
|
"""
|
|
|
|
|
|
|
|
Parse a shifts definition.
|
|
|
|
|
|
|
|
|
|
|
|
The shifts definition is two entry mappable with two keys, repeating and one-off.
|
|
|
|
The shifts definition is three entry mappable with two keys, repeating, one_off and timezone.
|
|
|
|
|
|
|
|
|
|
|
|
The repeating shifts entry is a list of shift definition. Each of these is a sequence consisting of the name of the shift, the starting hour of the shift in local time, and the ending hour in local time. Repeating shifts extending across midnight can be handled by using two shifts with the same name. For example:
|
|
|
|
The repeating shifts entry is a list of shift definition.
|
|
|
|
[['Night', 0, 6],
|
|
|
|
Each of these is a sequence consisting of the name of the shift,
|
|
|
|
['Day', 6, 18],
|
|
|
|
the starting hour of the shift in local time, and the ending hour in local time.
|
|
|
|
['Night', 18, 24]]
|
|
|
|
Repeating shifts extending across midnight can be handled by using two shifts with the same name.
|
|
|
|
|
|
|
|
For example:
|
|
|
|
|
|
|
|
[['Night', 0, 6],
|
|
|
|
|
|
|
|
['Day', 6, 18],
|
|
|
|
|
|
|
|
['Night', 18, 24]]
|
|
|
|
|
|
|
|
|
|
|
|
The one-off shifts entry is a list of shift definitions. Each of these is a sequence consisting of the name of the shift, the start the shift, and the end of the shift. A start or end time can be a timestamp, a URL or None. If it is a URL, the URL will be queried for a timestamp. If no timezone info is provided the timestamp will be assumed to be UTC. If the start time is None, then the start will be assumed to be the earliest possible datetime; if the end is None, it will be assumed to be the oldest possible datetime. If both the start and end are None, the shift will be ignored. For example:
|
|
|
|
The one-off shifts entry is a list of shift definitions.
|
|
|
|
[['Full', '2024-01-01T00:00:00', '2024-01-02T00:00:00'],
|
|
|
|
Each of these is a sequence consisting of the name of the shift, the start the shift,
|
|
|
|
['End Only', '2024-01-02T00:00:00', None],
|
|
|
|
and the end of the shift.
|
|
|
|
['URL', 'http://example.com/start.html', '2024-01-01T00:00:00'],
|
|
|
|
A start or end time can be a timestamp, a URL or None.
|
|
|
|
['Both None', None, None]]
|
|
|
|
If it is a URL, the URL will be queried for a timestamp.
|
|
|
|
would be parsed as:
|
|
|
|
If no timezone info is provided the timestamp will be assumed to be UTC.
|
|
|
|
[['Full', '2024-01-01T00:00:00', '2024-01-02T00:00:00'],
|
|
|
|
If the start time is None, then the start will be assumed to be the earliest possible datetime;
|
|
|
|
['Start Only', '2024-01-02T00:00:00', '9999-12-31T23:59:59.999999'],
|
|
|
|
if the end is None, it will be assumed to be the oldest possible datetime.
|
|
|
|
['URL', '2023-12-31T12:00:00', '2024-01-01T00:00:00']]
|
|
|
|
For example:
|
|
|
|
"""
|
|
|
|
[['Full', '2024-01-01T00:00:00', '2024-01-02T00:00:00'],
|
|
|
|
new_shifts = {'repeating':shifts['repeating'], 'one_off':[]}
|
|
|
|
['End Only', '2024-01-02T00:00:00', None],
|
|
|
|
for shift in shifts['one_off']:
|
|
|
|
['URL', 'http://example.com/start.html', '2024-01-01T00:00:00'],
|
|
|
|
name, start, end = shift
|
|
|
|
['Both None', None, None]]
|
|
|
|
start = parse_shift_time(start)
|
|
|
|
would be parsed as:
|
|
|
|
end = parse_shift_time(end)
|
|
|
|
[['Full', '2024-01-01T00:00:00', '2024-01-02T00:00:00'],
|
|
|
|
if (start is None) and (end is None):
|
|
|
|
['End Only', '2024-01-02T00:00:00', '9999-12-31T23:59:59.999999'],
|
|
|
|
continue
|
|
|
|
['URL', '2023-12-31T12:00:00', '2024-01-01T00:00:00'],
|
|
|
|
if start is None:
|
|
|
|
['Both None', '0001-01-01T00:00:00', '9999-12-31T23:59:59.999999']]
|
|
|
|
start = datetime.datetime.min
|
|
|
|
|
|
|
|
if end is None:
|
|
|
|
The timezone entry is a string that the zoneinfo package can interpret as a timezone
|
|
|
|
end = datetime.datetime.max
|
|
|
|
|
|
|
|
new_shifts['one_off'].append([name, start, end])
|
|
|
|
One-off shifts override repeating shifts.
|
|
|
|
return new_shifts
|
|
|
|
In the case of overlapping shifts, the first shift in the list takes precedence.
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
new_shifts = {'repeating':shifts['repeating'], 'one_off':[]}
|
|
|
|
|
|
|
|
for shift in shifts['one_off']:
|
|
|
|
|
|
|
|
name, start, end = shift
|
|
|
|
|
|
|
|
start = parse_shift_time(start)
|
|
|
|
|
|
|
|
end = parse_shift_time(end)
|
|
|
|
|
|
|
|
if start is None:
|
|
|
|
|
|
|
|
start = datetime.datetime.min
|
|
|
|
|
|
|
|
if end is None:
|
|
|
|
|
|
|
|
end = datetime.datetime.max
|
|
|
|
|
|
|
|
new_shifts['one_off'].append([name, start, end])
|
|
|
|
|
|
|
|
new_shifts['timezone'] = zoneinfo.ZoneInfo(shifts['timezone'])
|
|
|
|
|
|
|
|
return new_shifts
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def calculate_shift(time, shifts, timezone):
|
|
|
|
def calculate_shift(time, shifts, timezone):
|
|
|
|
"""Calculate what shift a time falls in.
|
|
|
|
"""
|
|
|
|
|
|
|
|
Calculate what shift a time falls in.
|
|
|
|
time is a datetime, shifts the output from parse_shifts and timezone a
|
|
|
|
|
|
|
|
"""
|
|
|
|
Arguments:
|
|
|
|
if not time:
|
|
|
|
time -- a datetime.datetime instance
|
|
|
|
return ''
|
|
|
|
shifts -- the output from parse_shifts
|
|
|
|
|
|
|
|
"""
|
|
|
|
for shift in shifts['one_off']:
|
|
|
|
if time is not None:
|
|
|
|
print(time, shift[1], shift[2])
|
|
|
|
return ''
|
|
|
|
if shift[1] <= time < shift[2]:
|
|
|
|
|
|
|
|
return shift[0]
|
|
|
|
for shift in shifts['one_off']:
|
|
|
|
|
|
|
|
if shift[1] <= time < shift[2]:
|
|
|
|
#since shifts are based on local times we have to worry about timezones for once
|
|
|
|
return shift[0]
|
|
|
|
local_time = time.replace(tzinfo=UTC).astimezone(timezone)
|
|
|
|
|
|
|
|
# do a more involved calculation to allow for non-integer start and end hours
|
|
|
|
#since shifts are based on local times we have to worry about timezones for once
|
|
|
|
time_diff = local_time - datetime.datetime(local_time.year, local_time.month, local_time.day, tzinfo=timezone)
|
|
|
|
local_time = time.replace(tzinfo=UTC).astimezone(timezone)
|
|
|
|
hour = time_diff / datetime.timedelta(hours=1)
|
|
|
|
# do a more involved calculation to allow for non-integer start and end hours
|
|
|
|
for shift in shifts['repeating']:
|
|
|
|
hour = local_time.hour + local_time.minute / 60 + local_time.second / 3600
|
|
|
|
if shift[1] <= hour < shift[2]:
|
|
|
|
for shift in shifts['repeating']:
|
|
|
|
return shift[0]
|
|
|
|
if shift[1] <= hour < shift[2]:
|
|
|
|
|
|
|
|
return shift[0]
|
|
|
|