wp-cal-integration/main.py

243 lines
8.2 KiB
Python
Raw Normal View History

2022-09-28 15:52:52 +02:00
#!/usr/bin/env python3
2022-09-28 15:59:12 +02:00
# -*- coding: utf-8 -*-
2022-09-28 15:52:52 +02:00
2022-10-13 00:16:05 +02:00
import os
2022-09-28 15:52:52 +02:00
import sys
import yaml
2022-10-13 00:16:05 +02:00
import logging
2022-10-13 11:06:44 +02:00
import datetime
2022-09-28 15:52:52 +02:00
try:
2022-10-13 00:16:05 +02:00
from yaml import CLoader as Loader, CDumper as Dumper
2022-09-28 15:52:52 +02:00
except ImportError:
2022-10-13 00:16:05 +02:00
from yaml import Loader, Dumper
import click
2022-09-28 15:52:52 +02:00
from adapters import *
2022-10-13 11:06:44 +02:00
logger = logging.getLogger(f'wp_cal')
2022-10-13 00:16:05 +02:00
class BaseConfig(dict):
2022-10-13 11:27:21 +02:00
def __init__(self, file, defaults, overrides, *args, **kwargs):
2022-10-13 00:16:05 +02:00
self._ex = None
self.file = file
self.defaults = defaults
2022-10-13 11:27:21 +02:00
self.overrides = overrides
2022-10-13 00:16:05 +02:00
super().__init__(*args, **kwargs)
try:
self._load()
except FileNotFoundError as ex:
self._ex = ex
def __repr__(self):
return super().__repr__()
def __str__(self):
return super().__str__()
def _load(self):
try:
if self.file == '-':
2022-11-23 02:00:16 +01:00
config = yaml.safe_load(sys.stdin)
2022-10-13 00:16:05 +02:00
else:
2022-10-13 01:16:37 +02:00
if os.stat(self.file).st_mode & 0o777 & ~0o600:
raise Exception('refusing to load insecure configuration file, file must have permission 0o600')
2022-10-13 00:16:05 +02:00
with open(self.file) as fp:
2022-11-23 02:00:16 +01:00
config = yaml.safe_load(fp)
2022-10-13 00:16:05 +02:00
if config is None:
config = {}
for k, v in config.items():
self[k] = v
finally:
for keylist, value in self.defaults:
d = self
for i, key in enumerate(keylist):
repl = value if (i == len(keylist) - 1) else {}
d[key] = d.get(key, repl)
d = d[key]
2022-10-13 11:27:21 +02:00
for keylist, value in self.overrides:
d = self
for key in keylist[:-1]:
d[key] = d.get(key, {})
d = d[key]
d[keylist[-1]] = value
2022-10-13 00:16:05 +02:00
def _save(self):
with open(self.file, 'w') as fp:
2022-11-23 02:00:16 +01:00
yaml.safe_dump(dict(self), fp)
2022-10-13 00:16:05 +02:00
def exception(self):
return self._ex
def load(self):
return self._load()
def save(self):
return self._save()
2022-09-28 15:52:52 +02:00
2022-10-13 00:16:05 +02:00
class Config(BaseConfig):
2022-09-28 15:52:52 +02:00
"""
The default configuration.
Keys:
.google.calendar_id: the id of the calendar to sync
.google.credentials: the json of the obtained credentials file
.google.token_file: where to save the login token
.wordpress.url: the base wordpress url
.wordpress.calendar.id: the id of the (wp-booking-system) calendar
.wordpress.calendar.name: the name of the calendar
.wordpress.calendar.translations: a dictionary of language <-> translation pairs (example: {"en": "Reservations"})
.wordpress.credentials.user: the user as which to log into wordpress
.wordpress.credentials.password: the users password
2022-10-13 00:16:05 +02:00
.logging.level: one or more log levels of the form <module.submodule>:<level> seperated by a `,` (comma)
2022-10-13 11:06:44 +02:00
.range: the range in the format <nnn><u>, where n are digits and u is the unit; valid units: 'smhdw' <-> seconds minutes hours days weeks
2022-09-28 15:52:52 +02:00
"""
2022-10-13 11:27:21 +02:00
def __init__(self, file, defaults, overrides, converters, *args, **kwargs):
2022-10-13 00:16:05 +02:00
defaults += [
('google.calendar_id', '#TODO insert google calendar id'),
('google.credentials', {}),
('google.token_file', os.path.join(os.environ['HOME'], '.wp-cal-google-token')),
('wordpress.url', '#TODO insert url to wordpress site'),
('wordpress.calendar.id', '#TODO insert wp-booking-system calendar id'),
('wordpress.calendar.name', '#TODO insert calendar name'),
('wordpress.calendar.translations', {'en': '#TODO insert english translation'}),
('wordpress.credentials.user', '#TODO insert wordpress username'),
('wordpress.credentials.password', '#TODO insert wordpress password'),
2022-10-13 11:27:21 +02:00
('logging.level', ':WARNING,wp_cal:INFO'),
('range', '365d'),
2022-10-13 00:16:05 +02:00
]
defaults = [(x[0].split('.'), x[1]) for x in defaults]
2022-10-13 11:27:21 +02:00
overrides = [(x[0].split('.'), x[1]) for x in overrides]
self.converters = converters
super().__init__(file, defaults, overrides, *args, **kwargs)
def value(self, k):
if isinstance(k, str):
sel = k.split('.')
elif isinstance(k, list):
sel = k
k = '.'.join(k)
else:
raise TypeError('invalid type for parameter k')
v = self
for s in sel:
v = v[s]
if k in self.converters:
return self.converters[k](v)
return v
2022-09-28 15:52:52 +02:00
2022-10-13 11:06:44 +02:00
def range_str_to_timedelta(value):
valid_units = 'smhdw'
current_int = 0
values = {}
for c in value:
if c in '0123456789':
current_int *= 10
current_int += int(c)
elif c in valid_units:
if c in values:
logger.warning('unit %s already in values, overwriting', c)
values[c] = current_int
current_int = 0
c = 's'
if current_int != 0:
if c in values:
logger.warning('unit %s already in values, overwriting', c)
values['s'] = current_int
for valid_unit in valid_units:
values.setdefault(valid_unit, 0)
return datetime.timedelta(
seconds=values['s'],
minutes=values['m'],
hours=values['h'],
days=values['d'],
weeks=values['w']
)
def init_logging():
logging.getLogger().addHandler(
logging.StreamHandler(),
)
def set_logging_level(level: str):
2022-11-23 02:00:16 +01:00
levels = {
'NOTSET': logging.NOTSET,
'DEBUG': logging.DEBUG,
'INFO': logging.INFO,
'WARNING': logging.WARNING,
'WARN': logging.WARNING,
'ERROR': logging.ERROR,
'CRITICAL': logging.CRITICAL,
}
2022-10-13 00:16:05 +02:00
log_levels = [x.split(':') for x in level.split(',')]
for module, level in log_levels:
module = module.strip() if module else None
level = level.strip().upper()
2022-11-23 02:00:16 +01:00
if level not in levels:
raise ValueError(f'invalid log level, allowed values: {repr(set(levels.keys()))}')
logging.getLogger(module).setLevel(levels[level])
2022-10-13 00:16:05 +02:00
@click.command()
@click.option('--config', '-c', envvar='WP_CAL_CONFIG', default='-', help='The configuration file')
2022-10-13 00:53:28 +02:00
@click.option('--dryrun', '-d', envvar='WP_CAL_DRYRUN', is_flag=True, help="Don't actually post any data, just show it")
2022-10-13 11:27:21 +02:00
@click.option('--level', '-l', envvar='WP_CAL_LEVEL', default=None, help='The log level for the application')
@click.option('--range', '-r', envvar='WP_CAL_RANGE', default=None, help='The time range from start to start + range to synchronize events')
def main(config, dryrun, level, range):
2022-10-13 11:06:44 +02:00
init_logging()
2022-10-13 11:45:03 +02:00
set_logging_level(':DEBUG')
2022-10-13 00:16:05 +02:00
2022-10-13 11:27:21 +02:00
config_overrides = [('logging.level', level), ('range', range)]
config_overrides = [x for x in config_overrides if x[1] is not None]
converters = {
'range': range_str_to_timedelta,
}
config = Config(config, [], config_overrides, converters)
2022-10-13 00:16:05 +02:00
if config.exception():
logger.info('config not found, trying to generate template')
try:
config.save()
except Exception:
logger.exception('failed to generate template')
2022-09-28 15:52:52 +02:00
else:
2022-10-13 00:16:05 +02:00
logger.info('generated config at "%s"', config.file)
return
2022-09-28 15:52:52 +02:00
2022-10-13 11:27:21 +02:00
set_logging_level(str(config.value('logging.level')))
2022-09-28 15:52:52 +02:00
g = Google(
2022-10-13 11:27:21 +02:00
config.value('google.calendar_id'),
credentials=config.value('google.credentials'),
token_file=config.value('google.token_file'),
2022-09-28 15:52:52 +02:00
)
w = Wordpress(
2022-10-13 11:27:21 +02:00
config.value('wordpress.url'),
2022-09-28 15:52:52 +02:00
calendar_metadata=CalendarMetadata(
2022-10-13 11:27:21 +02:00
id=config.value('wordpress.calendar.id'),
name=config.value('wordpress.calendar.name'),
translations=config.value('wordpress.calendar.translations'),
2022-09-28 15:52:52 +02:00
),
2022-10-13 11:27:21 +02:00
credentials=config.value('wordpress.credentials'),
2022-09-28 15:52:52 +02:00
)
g.login()
2022-10-13 11:27:21 +02:00
events = g.get_events(until=config.value('range'))
2022-10-13 00:16:05 +02:00
logger.info("syncing %d events", len(events))
2022-10-13 11:06:44 +02:00
if not w.login():
logger.info('failed to login to wordpress')
return 1
2022-10-13 00:53:28 +02:00
if dryrun:
logger.info("dryrun; would post events: %s", events)
else:
2022-10-13 11:27:21 +02:00
if not w.post_events(events, until=config.value('range')):
2022-10-13 11:06:44 +02:00
logger.info('failed to post event data')
return 1
2022-10-13 00:16:05 +02:00
logger.info("done")
2022-10-13 11:06:44 +02:00
return 0
2022-10-13 00:16:05 +02:00
if __name__ == '__main__':
main()