1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
|
import os
import icalendar
import pytz
from khal.custom_types import LocaleConfiguration
from khal.khalendar import CalendarCollection
from khal.khalendar.vdir import Vdir
CollVdirType = tuple[CalendarCollection, dict[str, Vdir]]
cal0 = 'a_calendar'
cal1 = 'foobar'
cal2 = "Dad's calendar"
cal3 = 'private'
example_cals = [cal0, cal1, cal2, cal3]
BERLIN = pytz.timezone('Europe/Berlin')
NEW_YORK = pytz.timezone('America/New_York')
LONDON = pytz.timezone('Europe/London')
SAMOA = pytz.timezone('Pacific/Samoa')
SYDNEY = pytz.timezone('Australia/Sydney')
GMTPLUS3 = pytz.timezone('Etc/GMT+3')
# the lucky people in Bogota don't know the pain that is DST
BOGOTA = pytz.timezone('America/Bogota')
LOCALE_BERLIN: LocaleConfiguration = {
'default_timezone': BERLIN,
'local_timezone': BERLIN,
'dateformat': '%d.%m.',
'longdateformat': '%d.%m.%Y',
'timeformat': '%H:%M',
'datetimeformat': '%d.%m. %H:%M',
'longdatetimeformat': '%d.%m.%Y %H:%M',
'unicode_symbols': True,
'firstweekday': 0,
'weeknumbers': False,
}
LOCALE_NEW_YORK: LocaleConfiguration = {
'default_timezone': NEW_YORK,
'local_timezone': NEW_YORK,
'timeformat': '%H:%M',
'dateformat': '%Y/%m/%d',
'longdateformat': '%Y/%m/%d',
'datetimeformat': '%Y/%m/%d-%H:%M',
'longdatetimeformat': '%Y/%m/%d-%H:%M',
'firstweekday': 6,
'unicode_symbols': True,
'weeknumbers': False,
}
LOCALE_SAMOA = {
'local_timezone': SAMOA,
'default_timezone': SAMOA,
'unicode_symbols': True,
}
LOCALE_SYDNEY = {'local_timezone': SYDNEY, 'default_timezone': SYDNEY}
LOCALE_BOGOTA = LOCALE_BERLIN.copy()
LOCALE_BOGOTA['local_timezone'] = BOGOTA
LOCALE_BOGOTA['default_timezone'] = BOGOTA
LOCALE_MIXED = LOCALE_BERLIN.copy()
LOCALE_MIXED['local_timezone'] = BOGOTA
LOCALE_FLOATING = LOCALE_BERLIN.copy()
LOCALE_FLOATING['default_timezone'] = None # type: ignore
LOCALE_FLOATING['local_timezone'] = None # type: ignore
def normalize_component(x):
x = icalendar.cal.Component.from_ical(x)
def inner(c):
contentlines = icalendar.cal.Contentlines()
for name, value in c.property_items(sorted=True, recursive=False):
contentlines.append(c.content_line(name, value, sorted=True))
contentlines.append('')
return (c.name, contentlines.to_ical(),
frozenset(inner(sub) for sub in c.subcomponents))
return inner(x)
def _get_text(event_name):
directory = '/'.join(__file__.split('/')[:-1]) + '/ics/'
if directory == '/ics/':
directory = './ics/'
with open(os.path.join(directory, event_name + '.ics'), 'rb') as f:
rv = f.read().decode('utf-8')
return rv
def _get_vevent_file(event_path):
directory = '/'.join(__file__.split('/')[:-1]) + '/ics/'
with open(os.path.join(directory, event_path + '.ics'), 'rb') as f:
ical = icalendar.Calendar.from_ical(
f.read()
)
for component in ical.walk():
if component.name == 'VEVENT':
return component
def _get_ics_filepath(event_name):
directory = '/'.join(__file__.split('/')[:-1]) + '/ics/'
if directory == '/ics/':
directory = './ics/'
return os.path.join(directory, event_name + '.ics')
def _get_all_vevents_file(event_path):
directory = '/'.join(__file__.split('/')[:-1]) + '/ics/'
ical = icalendar.Calendar.from_ical(
open(os.path.join(directory, event_path + '.ics'), 'rb').read()
)
for component in ical.walk():
if component.name == 'VEVENT':
yield component
def _replace_uid(event):
"""
Replace an event's UID with E41JRQX2DB4P1AQZI86BAT7NHPBHPRIIHQKA.
"""
event.pop('uid')
event.add('uid', 'E41JRQX2DB4P1AQZI86BAT7NHPBHPRIIHQKA')
return event
class DumbItem:
def __init__(self, raw, uid) -> None:
self.raw = raw
self.uid = uid
|