todoist-taskwarrior/migrate.py

78 lines
1.8 KiB
Python
Raw Normal View History

import click
from taskw import TaskWarrior
from todoist.api import TodoistAPI
todoist = None
taskwarrior = None
""" CLI Commands """
@click.group()
@click.option('--todoist-api-key', envvar='TODOIST_API_KEY', required=True)
def cli(todoist_api_key):
# Just do some initialization
global todoist
global taskwarrior
todoist = TodoistAPI(todoist_api_key)
taskwarrior = TaskWarrior()
@cli.command()
@click.option('-i', '--interactive', is_flag=True, default=False)
@click.option('--no-sync', is_flag=True, default=False)
def migrate(interactive, no_sync):
if not no_sync:
important('Syncing tasks with todoist... ', nl=False)
todoist.sync()
success('OK')
tasks = todoist.items.all()
important(f'Starting migration of {len(tasks)}...')
for task in todoist.items.all():
2018-11-08 00:51:51 +01:00
tid = task['id']
name = task['content']
project = todoist.projects.get_by_id(task['project_id'])
if interactive and not click.confirm(f"Import '{name}'?"):
continue
2018-11-08 00:51:51 +01:00
add_task(tid, name, project)
2018-11-08 00:27:00 +01:00
2018-11-08 00:51:51 +01:00
def add_task(tid, name, project):
2018-11-08 00:27:00 +01:00
"""Add a taskwarrior task from todoist task
Returns the taskwarrior task.
"""
2018-11-08 00:51:51 +01:00
project_name = project['name'] if project else None
info(f"Importing '{name}' ({project_name}) - ", nl=False)
2018-11-08 00:27:00 +01:00
try:
2018-11-08 00:51:51 +01:00
tw_task = taskwarrior.task_add(name, project=project_name)
2018-11-08 00:27:00 +01:00
except:
error('FAILED')
else:
success('OK')
return tw_task
""" Utils """
2018-11-08 00:27:00 +01:00
def important(msg, **kwargs):
click.echo(click.style(msg, fg='blue', bold=True), **kwargs)
def info(msg, **kwargs):
click.echo(msg, **kwargs)
2018-11-08 00:27:00 +01:00
def success(msg, **kwargs):
click.echo(click.style(msg, fg='green', bold=True))
2018-11-08 00:27:00 +01:00
def error(msg, **kwargs):
click.echo(click.style(msg, fg='red', bold=True))
""" Entrypoint """
if __name__ == '__main__':
cli()