Enhance Todoist module with error handling and priority indicators

- Add retry logic with exponential backoff for API failures
- Implement caching for offline resilience
- Add visual priority indicators (●/○) with color coding
- Sort tasks by date first, then priority
- Show overdue dates in red
This commit is contained in:
Ivan Vaskevych
2025-09-18 17:25:10 +02:00
parent 0fcff61c9a
commit a9a9446352

View File

@@ -3,11 +3,16 @@ Inkycal Todoist Module
Copyright by aceinnolab
"""
import arrow
import json
import os
import time
from datetime import datetime
from inkycal.modules.template import inkycal_module
from inkycal.custom import *
from todoist_api_python.api import TodoistAPI
import requests.exceptions
logger = logging.getLogger(__name__)
@@ -29,6 +34,10 @@ class Todoist(inkycal_module):
'project_filter': {
"label": "Show Todos only from following project (separated by a comma). Leave empty to show " +
"todos from all projects",
},
'show_priority': {
"label": "Show priority indicators for tasks (P1, P2, P3)",
"default": True
}
}
@@ -53,8 +62,15 @@ class Todoist(inkycal_module):
else:
self.project_filter = config['project_filter']
# Priority display option
self.show_priority = config.get('show_priority', True)
self._api = TodoistAPI(config['api_key'])
# Cache file path for storing last successful response
self.cache_file = os.path.join(os.path.dirname(__file__), '..', '..', 'temp', 'todoist_cache.json')
os.makedirs(os.path.dirname(self.cache_file), exist_ok=True)
# give an OK message
logger.debug(f'{__name__} loaded')
@@ -63,6 +79,93 @@ class Todoist(inkycal_module):
if not isinstance(self.api_key, str):
print('api_key has to be a string: "Yourtopsecretkey123" ')
def _fetch_with_retry(self, fetch_func, max_retries=3):
"""Fetch data with retry logic and exponential backoff"""
for attempt in range(max_retries):
try:
return fetch_func()
except requests.exceptions.HTTPError as e:
if e.response.status_code in [502, 503, 504]: # Retry on server errors
if attempt < max_retries - 1:
delay = (2 ** attempt) # Exponential backoff: 1s, 2s, 4s
logger.warning(f"API request failed (attempt {attempt + 1}/{max_retries}), retrying in {delay}s...")
time.sleep(delay)
continue
raise
except requests.exceptions.ConnectionError:
if attempt < max_retries - 1:
delay = (2 ** attempt)
logger.warning(f"Connection error (attempt {attempt + 1}/{max_retries}), retrying in {delay}s...")
time.sleep(delay)
continue
raise
raise Exception("Max retries exceeded")
def _save_cache(self, projects, tasks):
"""Save API response to cache file"""
try:
cache_data = {
'timestamp': datetime.now().isoformat(),
'projects': [{'id': p.id, 'name': p.name} for p in projects],
'tasks': [{
'content': t.content,
'project_id': t.project_id,
'priority': t.priority,
'due': {'date': t.due.date} if t.due else None
} for t in tasks]
}
with open(self.cache_file, 'w') as f:
json.dump(cache_data, f)
logger.debug("Saved Todoist data to cache")
except Exception as e:
logger.warning(f"Failed to save cache: {e}")
def _load_cache(self):
"""Load cached API response"""
try:
if os.path.exists(self.cache_file):
with open(self.cache_file, 'r') as f:
return json.load(f)
except Exception as e:
logger.warning(f"Failed to load cache: {e}")
return None
def _create_error_image(self, im_size, error_msg=None, cached_data=None):
"""Create an error message image when API fails"""
im_width, im_height = im_size
im_black = Image.new('RGB', size=im_size, color='white')
im_colour = Image.new('RGB', size=im_size, color='white')
# Display error message
line_spacing = 1
text_bbox_height = self.font.getbbox("hg")
line_height = text_bbox_height[3] + line_spacing
messages = []
if error_msg:
messages.append("Todoist temporarily unavailable")
if cached_data and 'timestamp' in cached_data:
timestamp = arrow.get(cached_data['timestamp']).format('D-MMM-YY HH:mm')
messages.append(f"Showing cached data from:")
messages.append(timestamp)
else:
messages.append("No cached data available")
messages.append("Please check your connection")
# Center the messages vertically
total_height = len(messages) * line_height
start_y = (im_height - total_height) // 2
for i, msg in enumerate(messages):
y_pos = start_y + (i * line_height)
# First line in red (colour image), rest in black
target_image = im_colour if i == 0 else im_black
write(target_image, (0, y_pos), (im_width, line_height),
msg, font=self.font, alignment='center')
return im_black, im_colour
def generate_image(self):
"""Generate image for this module"""
@@ -77,11 +180,45 @@ class Todoist(inkycal_module):
im_colour = Image.new('RGB', size=im_size, color='white')
# Check if internet is available
if internet_available():
logger.info('Connection test passed')
if not internet_available():
logger.error("Network not reachable. Trying to use cached data.")
cached_data = self._load_cache()
if cached_data:
# Process cached data below
all_projects = [type('Project', (), p) for p in cached_data['projects']]
all_active_tasks = [type('Task', (), {
'content': t['content'],
'project_id': t['project_id'],
'priority': t['priority'],
'due': type('Due', (), {'date': t['due']['date']}) if t['due'] else None
}) for t in cached_data['tasks']]
else:
return self._create_error_image(im_size, "Network error", None)
else:
logger.error("Network not reachable. Please check your connection.")
raise NetworkNotReachableError
logger.info('Connection test passed')
# Try to fetch fresh data from API
try:
all_projects = self._fetch_with_retry(self._api.get_projects)
all_active_tasks = self._fetch_with_retry(self._api.get_tasks)
# Save to cache on successful fetch
self._save_cache(all_projects, all_active_tasks)
except Exception as e:
logger.error(f"Failed to fetch Todoist data: {e}")
# Try to use cached data
cached_data = self._load_cache()
if cached_data:
logger.info("Using cached Todoist data")
all_projects = [type('Project', (), p) for p in cached_data['projects']]
all_active_tasks = [type('Task', (), {
'content': t['content'],
'project_id': t['project_id'],
'priority': t['priority'],
'due': type('Due', (), {'date': t['due']['date']}) if t['due'] else None
}) for t in cached_data['tasks']]
else:
# No cached data available, show error
return self._create_error_image(im_size, str(e), None)
# Set some parameters for formatting todos
line_spacing = 1
@@ -97,10 +234,8 @@ class Todoist(inkycal_module):
line_positions = [
(0, spacing_top + _ * line_height) for _ in range(max_lines)]
# Get all projects by name and id
all_projects = self._api.get_projects()
# Process the fetched or cached data
filtered_project_ids_and_names = {project.id: project.name for project in all_projects}
all_active_tasks = self._api.get_tasks()
logger.debug(f"all_projects: {all_projects}")
@@ -123,27 +258,57 @@ class Todoist(inkycal_module):
all_active_tasks = [task for task in all_active_tasks if task.project_id in filtered_project_ids]
# Simplify the tasks for faster processing
simplified = [
{
simplified = []
for task in all_active_tasks:
# Format priority indicator using circle symbols
priority_text = ""
if self.show_priority and task.priority > 1:
# Todoist uses reversed priority (4 = highest, 1 = lowest)
if task.priority == 4: # P1 - filled circle (red)
priority_text = "" # Filled circle for highest priority
elif task.priority == 3: # P2 - filled circle (black)
priority_text = "" # Filled circle for high priority
elif task.priority == 2: # P3 - empty circle (black)
priority_text = "" # Empty circle for medium priority
# Check if task is overdue
# Parse date in local timezone to ensure correct comparison
due_date = arrow.get(task.due.date, "YYYY-MM-DD").replace(tzinfo='local') if task.due else None
today = arrow.now('local').floor('day')
is_overdue = due_date and due_date < today if due_date else False
# Format due date display
if due_date:
if due_date.floor('day') == today:
due_display = "TODAY"
else:
due_display = due_date.format("D-MMM-YY")
else:
due_display = ""
simplified.append({
'name': task.content,
'due': arrow.get(task.due.date, "YYYY-MM-DD").format("D-MMM-YY") if task.due else "",
'due_date': arrow.get(task.due.date, "YYYY-MM-DD") if task.due else None,
'due': due_display,
'due_date': due_date,
'is_overdue': is_overdue,
'priority': task.priority,
'priority_text': priority_text,
'project': filtered_project_ids_and_names[task.project_id]
}
for task in all_active_tasks
]
})
logger.debug(f'simplified: {simplified}')
project_lengths = []
due_lengths = []
priority_lengths = []
for task in simplified:
if task["project"]:
project_lengths.append(int(self.font.getlength(task['project']) * 1.1))
if task["due"]:
due_lengths.append(int(self.font.getlength(task['due']) * 1.1))
if task["priority_text"]:
priority_lengths.append(int(self.font.getlength(task['priority_text']) * 1.1))
# Get maximum width of project names for selected font
project_offset = int(max(project_lengths)) if project_lengths else 0
@@ -151,6 +316,9 @@ class Todoist(inkycal_module):
# Get maximum width of project dues for selected font
due_offset = int(max(due_lengths)) if due_lengths else 0
# Get maximum width of priority indicators
priority_offset = int(max(priority_lengths)) if priority_lengths else 0
# create a dict with names of filtered groups
groups = {group_name:[] for group_name in filtered_project_ids_and_names.values()}
for task in simplified:
@@ -158,12 +326,13 @@ class Todoist(inkycal_module):
if group_of_current_task in groups:
groups[group_of_current_task].append(task)
# Sort tasks within each project group by due date
# Sort tasks within each project group by due date first, then priority
for project_name in groups:
groups[project_name].sort(
key=lambda task: (
task['due_date'] is None, # Tasks with dates come first
task['due_date'] if task['due_date'] else arrow.get('9999-12-31') # Sort by date
task['due_date'] if task['due_date'] else arrow.get('9999-12-31'), # Sort by date
-task['priority'] # Then by priority (higher priority first)
)
)
@@ -186,18 +355,30 @@ class Todoist(inkycal_module):
# Add todos due if not empty
if todo['due']:
# Show overdue dates in red, normal dates in black
due_image = im_colour if todo.get('is_overdue', False) else im_black
write(
im_black,
due_image,
(line_x + project_offset, line_y),
(due_offset, line_height),
todo['due'], font=self.font, alignment='left')
# Add priority indicator if present
if todo['priority_text']:
# P1 (priority 4) in red, P2 and P3 in black
priority_image = im_colour if todo['priority'] == 4 else im_black
write(
priority_image,
(line_x + project_offset + due_offset, line_y),
(priority_offset, line_height),
todo['priority_text'], font=self.font, alignment='left')
if todo['name']:
# Add todos name
write(
im_black,
(line_x + project_offset + due_offset, line_y),
(im_width - project_offset - due_offset, line_height),
(line_x + project_offset + due_offset + priority_offset, line_y),
(im_width - project_offset - due_offset - priority_offset, line_height),
todo['name'], font=self.font, alignment='left')
cursor += 1