autodoist/nextaction.py

130 lines
5.0 KiB
Python
Raw Normal View History

2014-03-10 00:11:58 -04:00
#!/usr/bin/env python
import time
import logging
2014-11-15 14:38:44 -05:00
import os
2014-11-15 14:49:52 -05:00
import sys
2015-08-29 14:15:09 -04:00
import argparse
2014-03-10 00:11:58 -04:00
from todoist.api import TodoistAPI
def get_subitems(items, parent_item=None):
2015-08-29 13:32:24 -04:00
"""Search a flat item list for child items"""
result_items = []
found = False
if parent_item:
required_indent = parent_item['indent'] + 1
else:
required_indent = 1
for item in items:
if parent_item:
if not found and item['id'] != parent_item['id']:
continue
else:
found = True
if item['indent'] == parent_item['indent'] and item['id'] != parent_item['id']:
return result_items
elif item['indent'] == required_indent:
result_items.append(item)
return result_items
2014-11-15 14:45:52 -05:00
2014-03-10 00:11:58 -04:00
def main():
2015-08-29 14:15:09 -04:00
parser = argparse.ArgumentParser()
parser.add_argument('-a', '--api_key', help='Todoist API Key',
default=os.environ.get('TODOIST_API_KEY', None))
parser.add_argument('-l', '--label', help='The next action label to use',
default=os.environ.get('TODOIST_NEXT_ACTION_LABEL', 'next_action'))
parser.add_argument('-d', '--delay', help='Specify the delay in seconds between syncs',
default=int(os.environ.get('TODOIST_SYNC_DELAY', '5')), type=int)
parser.add_argument('--debug', help='Enable debugging', action='store_true')
parser.add_argument('--inbox', help='The method the Inbox project should be processed',
default=os.environ.get('TODOIST_INBOX_HANDLING', 'parallel'),
choices=['parallel', 'serial'])
parser.add_argument('--parallel_suffix', default=os.environ.get('TODOIST_PARALLEL_SUFFIX', '='))
parser.add_argument('--serial_suffix', default=os.environ.get('TODOIST_SERIAL_SUFFIX', '-'))
args = parser.parse_args()
# Set debug
if args.debug or os.environ.get('TODOIST_DEBUG', None):
2014-11-15 15:31:36 -05:00
log_level = logging.DEBUG
else:
log_level = logging.INFO
logging.basicConfig(level=log_level)
2015-08-29 14:15:09 -04:00
# Check we have a API key
if not args.api_key:
2014-11-15 14:49:52 -05:00
logging.error('No API key set, exiting...')
sys.exit(1)
2015-08-29 14:15:09 -04:00
# Run the initial sync
logging.debug('Connecting to the Todoist API')
2015-08-29 14:15:09 -04:00
api = TodoistAPI(token=args.api_key)
logging.debug('Syncing the current state from the API')
api.sync(resource_types=['projects', 'labels', 'items'])
2015-08-29 14:15:09 -04:00
# Check the next action label exists
labels = api.labels.all(lambda x: x['name'] == args.label)
if len(labels) > 0:
label_id = labels[0]['id']
2015-08-29 14:15:09 -04:00
logging.debug('Label %s found as label id %d', args.label, label_id)
else:
2015-08-29 14:15:09 -04:00
logging.error("Label %s doesn't exist, please create it or change TODOIST_NEXT_ACTION_LABEL.", args.label)
sys.exit(1)
2015-08-29 14:15:09 -04:00
def get_project_type(project_object):
"""Identifies how a project should be handled"""
name = project_object['name'].strip()
if project['name'] == 'Inbox':
return args.inbox
elif name[-1] == args.parallel_suffix:
return 'parallel'
elif name[-1] == args.serial_suffix:
return 'serial'
# Main loop
2014-11-15 14:45:52 -05:00
while True:
api.sync(resource_types=['projects', 'labels', 'items'])
for project in api.projects.all():
2015-08-29 13:32:24 -04:00
project_type = get_project_type(project)
if project_type:
logging.debug('Project %s being processed as %s', project['name'], project_type)
# Parallel
2015-08-29 13:32:24 -04:00
if project_type == 'parallel':
items = api.items.all(lambda x: x['project_id'] == project['id'])
for item in items:
labels = item['labels']
if label_id not in labels:
logging.debug('Updating %s with label', item['content'])
labels.append(label_id)
item.update(labels=labels)
# Serial
2015-08-29 13:32:24 -04:00
if project_type == 'serial':
2015-08-29 14:15:09 -04:00
items = sorted(api.items.all(lambda x: x['project_id'] == project['id']),
key=lambda x: x['item_order'])
for item in items:
labels = item['labels']
if item['item_order'] == 1:
if label_id not in labels:
labels.append(label_id)
logging.debug('Updating %s with label', item['content'])
item.update(labels=labels)
else:
if label_id in labels:
labels.remove(label_id)
logging.debug('Updating %s without label', item['content'])
item.update(labels=labels)
api.commit()
2015-08-29 14:15:09 -04:00
logging.debug('Sleeping for %d seconds', args.delay)
time.sleep(args.delay)
2014-11-15 14:45:52 -05:00
2014-03-10 00:11:58 -04:00
if __name__ == '__main__':
2014-11-15 14:45:52 -05:00
main()