forked from mirrors/autodoist
Implemented the functionality for an alternative end-of-day time.
parent
011e100173
commit
f51d7cb46a
55
autodoist.py
55
autodoist.py
|
@ -7,14 +7,14 @@ import time
|
||||||
import requests
|
import requests
|
||||||
import argparse
|
import argparse
|
||||||
import logging
|
import logging
|
||||||
|
from datetime import datetime
|
||||||
global overview_item_ids
|
global overview_item_ids
|
||||||
global overview_item_labels
|
global overview_item_labels
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
|
||||||
# Version
|
# Version
|
||||||
current_version = 'v1.1'
|
current_version = 'v1.2'
|
||||||
|
|
||||||
"""Main process function."""
|
"""Main process function."""
|
||||||
parser = argparse.ArgumentParser()
|
parser = argparse.ArgumentParser()
|
||||||
|
@ -37,6 +37,8 @@ def main():
|
||||||
'--onetime', help='Update Todoist once and exit', action='store_true')
|
'--onetime', help='Update Todoist once and exit', action='store_true')
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'--nocache', help='Disables caching data to disk for quicker syncing', action='store_true')
|
'--nocache', help='Disables caching data to disk for quicker syncing', action='store_true')
|
||||||
|
parser.add_argument(
|
||||||
|
'-e', '--end', help='Enter a number from 1-24 to define which hour is used as end-of-day time.', type=int)
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
# Set debug
|
# Set debug
|
||||||
|
@ -60,6 +62,10 @@ def main():
|
||||||
logging.error("\n\nNo API key set. Run Autodoist with '-a <YOUR_API_KEY>'\n")
|
logging.error("\n\nNo API key set. Run Autodoist with '-a <YOUR_API_KEY>'\n")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
if args.end < 1 or args.end > 24:
|
||||||
|
logging.error("\n\nPlease choose a number from 0 to 24 to indicate which hour is used as alternative end-of-day time.\n")
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
# Run the initial sync
|
# Run the initial sync
|
||||||
logging.debug('Connecting to the Todoist API')
|
logging.debug('Connecting to the Todoist API')
|
||||||
|
|
||||||
|
@ -273,25 +279,52 @@ def main():
|
||||||
# If option turned on, start recurring logic
|
# If option turned on, start recurring logic
|
||||||
else:
|
else:
|
||||||
if item['parent_id'] == 0:
|
if item['parent_id'] == 0:
|
||||||
|
if item['content'] == 'Rtask1':
|
||||||
|
print('temp')
|
||||||
try:
|
try:
|
||||||
if item['due']['is_recurring']:
|
if item['due']['is_recurring']:
|
||||||
try:
|
try:
|
||||||
# Check if the T0 task date has changed
|
# Check if the T0 task date has changed
|
||||||
if item['due']['date'] != item['old_date']:
|
if item['due']['date'] != item['old_date']:
|
||||||
# Save the new date
|
|
||||||
item['old_date'] = item['due']['date']
|
# Determine current hour
|
||||||
api.items.update(item['id'])
|
t = datetime.today()
|
||||||
#item.update(due={'date': '2020-05-27', 'is_recurring': True, 'string': 'every day'})
|
current_hour = t.hour
|
||||||
|
|
||||||
|
# Check if current time is before our end-of-day
|
||||||
|
if (args.end - current_hour) > 0:
|
||||||
|
|
||||||
|
# Determine the difference in days set by todoist
|
||||||
|
nd = [int(x) for x in item['due']['date'].split('-')]
|
||||||
|
od = [int(x) for x in item['old_date'].split('-')]
|
||||||
|
|
||||||
|
new_date = datetime(nd[0], nd[1], nd[2])
|
||||||
|
old_date = datetime(od[0], od[1], od[2])
|
||||||
|
today = datetime(t.year, t.month, t.day)
|
||||||
|
days_difference = (new_date-today).days
|
||||||
|
days_overdue = (today - old_date).days
|
||||||
|
|
||||||
|
# Only apply if overdue and if it's a daily recurring tasks
|
||||||
|
if days_overdue >= 1 and days_difference == 1:
|
||||||
|
|
||||||
|
# Find curreny date in string format
|
||||||
|
today_str = [str(x) for x in [today.year, today.month, today.day]]
|
||||||
|
if len(today_str[1]) == 1:
|
||||||
|
today_str[1] = ''.join(['0',today_str[1]])
|
||||||
|
|
||||||
|
# Update due-date to today
|
||||||
|
item_due = item['due']
|
||||||
|
item_due['date'] = '-'.join(today_str)
|
||||||
|
item.update(due=item_due)
|
||||||
|
# item.update(due={'date': '2020-05-29', 'is_recurring': True, 'string': 'every day'})
|
||||||
|
|
||||||
|
# Save the new date for reference us
|
||||||
|
item.update(old_date=item['due']['date'])
|
||||||
|
|
||||||
# Mark children for action
|
# Mark children for action
|
||||||
for child_item in child_items_all:
|
for child_item in child_items_all:
|
||||||
child_item['r_tag'] = 1
|
child_item['r_tag'] = 1
|
||||||
|
|
||||||
# Check the custom end-of-day time
|
|
||||||
if item['content'] == 'Rtest':
|
|
||||||
item.update(due={'date': '2020-05-28', 'is_recurring': True, 'string': 'every day'})
|
|
||||||
api.commit()
|
|
||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
# If date has never been saved before, create a new entry
|
# If date has never been saved before, create a new entry
|
||||||
logging.debug(
|
logging.debug(
|
||||||
|
|
Loading…
Reference in New Issue