summaryrefslogtreecommitdiff
path: root/org.py
blob: 33ca3e917581feae2263a3df17f466b63c439102 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import locale
from datetime import datetime

from orgparse import loads

from settings import ORG_CAPTURE_FILENAME, ORG_LINKS_FILENAME, ORG_PLAN_FILENAME

locale.setlocale(locale.LC_ALL, "es_ES.utf8")


class OrgData():
    def _generate_today(self):
        today = datetime.today()
        today_ymd = today.strftime("%Y-%m-%d")
        today_day = today.strftime("%a").lower()
        today_hour = today.strftime("%H:%M")
        return f"{today_ymd} {today_day} {today_hour}"

    def add_new_todo(self, keyword: str, description: str, outcome: str, extra: str) -> None:

        today = self._generate_today()

        todo_template = f"""
** {keyword.upper()} {description} :NEW::BOT:
  Desired outcome: {outcome}
  :LOGBOOK:
  - Added: [{today}]
  :END:

  {extra}

"""

        with open(ORG_CAPTURE_FILENAME, "a") as capture_file:
            capture_file.write(todo_template)

    def list_plan(self, filename: str) -> str:
        with open(ORG_PLAN_FILENAME.replace("{filename}", filename), "r") as agenda:
            plan = agenda.read()

        plan = loads(plan)

        return plan[-1].get_body().replace("[X]", "✅").replace("[ ]", "❌")

    def add_new_link(self, link: str) -> None:

        with open(ORG_LINKS_FILENAME, "a") as capture_file:
            capture_file.write(link)