* Add Google Tasks integration * Update tests and unique id * Revert devcontainer change * Increase test coverage * Apply suggestions from code review Co-authored-by: Martin Hjelmare <marhje52@gmail.com> * Remove ternary * Fix JSON --------- Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
75 lines
2.3 KiB
Python
75 lines
2.3 KiB
Python
"""Google Tasks todo platform."""
|
|
from __future__ import annotations
|
|
|
|
from datetime import timedelta
|
|
|
|
from homeassistant.components.todo import TodoItem, TodoItemStatus, TodoListEntity
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
from homeassistant.helpers.update_coordinator import CoordinatorEntity
|
|
|
|
from .api import AsyncConfigEntryAuth
|
|
from .const import DOMAIN
|
|
from .coordinator import TaskUpdateCoordinator
|
|
|
|
SCAN_INTERVAL = timedelta(minutes=15)
|
|
|
|
TODO_STATUS_MAP = {
|
|
"needsAction": TodoItemStatus.NEEDS_ACTION,
|
|
"completed": TodoItemStatus.COMPLETED,
|
|
}
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant, entry: ConfigEntry, async_add_entities: AddEntitiesCallback
|
|
) -> None:
|
|
"""Set up the Google Tasks todo platform."""
|
|
api: AsyncConfigEntryAuth = hass.data[DOMAIN][entry.entry_id]
|
|
task_lists = await api.list_task_lists()
|
|
async_add_entities(
|
|
(
|
|
GoogleTaskTodoListEntity(
|
|
TaskUpdateCoordinator(hass, api, task_list["id"]),
|
|
task_list["title"],
|
|
entry.entry_id,
|
|
task_list["id"],
|
|
)
|
|
for task_list in task_lists
|
|
),
|
|
True,
|
|
)
|
|
|
|
|
|
class GoogleTaskTodoListEntity(CoordinatorEntity, TodoListEntity):
|
|
"""A To-do List representation of the Shopping List."""
|
|
|
|
_attr_has_entity_name = True
|
|
|
|
def __init__(
|
|
self,
|
|
coordinator: TaskUpdateCoordinator,
|
|
name: str,
|
|
config_entry_id: str,
|
|
task_list_id: str,
|
|
) -> None:
|
|
"""Initialize LocalTodoListEntity."""
|
|
super().__init__(coordinator)
|
|
self._attr_name = name.capitalize()
|
|
self._attr_unique_id = f"{config_entry_id}-{task_list_id}"
|
|
|
|
@property
|
|
def todo_items(self) -> list[TodoItem] | None:
|
|
"""Get the current set of To-do items."""
|
|
if self.coordinator.data is None:
|
|
return None
|
|
return [
|
|
TodoItem(
|
|
summary=item["title"],
|
|
uid=item["id"],
|
|
status=TODO_STATUS_MAP.get(
|
|
item.get("status"), TodoItemStatus.NEEDS_ACTION
|
|
),
|
|
)
|
|
for item in self.coordinator.data
|
|
]
|