3 import gkeepapi # type: ignore
6 from typing import List, Dict
8 from google_auth_oauthlib.flow import InstalledAppFlow
13 import kiosk_secrets as secrets
16 class gkeep_renderer(renderer.debuggable_abstaining_renderer):
17 def __init__(self, name_to_timeout_dict: Dict[str, int]) -> None:
18 super(gkeep_renderer, self).__init__(name_to_timeout_dict, True)
19 self.colors_by_name = {
22 "darkblue": "#1F3A5F",
33 self.keep = gkeepapi.Keep()
34 success = self.keep.login(
35 secrets.google_keep_username, secrets.google_keep_password
38 self.debug_print("Connected with gkeep.")
40 self.debug_print("Error connecting with gkeep.")
42 def debug_prefix(self) -> str:
45 def periodic_render(self, key: str) -> bool:
46 strikethrough = re.compile("(\u2611[^\n]*)\n", re.UNICODE)
47 linkify = re.compile(r".*(https?:\/\/\S+).*")
50 result_list = self.keep.find(labels=[self.keep.findLabel("kiosk")])
51 for note in result_list:
53 title = title.replace(" ", "-")
54 title = title.replace("/", "")
56 filename = f"{title}_2_3600.html"
57 contents = note.text + "\n"
58 self.debug_print(f"Note title '{title}'")
59 if contents != "" and not contents.isspace():
60 contents = strikethrough.sub("", contents)
61 self.debug_print(f"Note contents:\n{contents}")
62 contents = contents.replace(
63 "\u2610 ", '<LI><INPUT TYPE="checkbox"> '
65 contents = linkify.sub(r'<a href="\1">\1</a>', contents)
67 individual_lines = contents.split("\n")
68 num_lines = len(individual_lines)
71 for x in individual_lines:
73 if length > max_length:
75 leading_spaces = len(x) - len(x.lstrip(" "))
77 leading_spaces = int(leading_spaces)
79 # self.debug_print(" * (%d) '%s'" % (leading_spaces, x))
80 for y in range(0, leading_spaces):
82 for y in range(0, leading_spaces):
84 contents = contents + x + "\n"
86 individual_lines = contents.split("\n")
87 color = note.color.name.lower()
88 if color in list(self.colors_by_name.keys()):
89 color = self.colors_by_name[color]
91 self.debug_print(f"Unknown color '{color}'")
92 print(f"TITLE: {color} {note.title}")
93 with file_writer.file_writer(filename) as f:
95 <STYLE type="text/css">
96 a:link { color:#88bfbf; }
97 ul { list-style-type:none; }
99 <DIV STYLE="border-radius:25px; border-style:solid; padding:20px; background-color:%s; color:#eeeeee; font-size:x-large;">
103 <p style="color:#ffffff; font-size:larger"><B>{note.title}</B></p>
104 <HR style="border-top:3px solid white;">
107 if num_lines >= 12 and max_length < 120:
109 f"{num_lines} lines (max={max_length} chars): two columns"
111 f.write('<TABLE BORDER=0 WIDTH=100%><TR valign="top">')
113 '<TD WIDTH=50% style="color:#eeeeee; font-size:large">\n'
115 f.write("<FONT><UL STYLE='list-style-type:none'>")
117 for x in individual_lines:
120 if count == num_lines / 2:
121 f.write("</UL></FONT></TD>\n")
123 '<TD WIDTH=50% style="color:#eeeeee; font-size:large">\n'
125 f.write("<FONT><UL STYLE='list-style-type:none'>")
126 f.write("</UL></FONT></TD></TR></TABLE></DIV>\n")
129 f"{num_lines} lines (max={max_length} chars): one column"
131 f.write(f"<FONT><UL>{contents}</UL></FONT>")
134 self.debug_print(f"Note is empty, deleting {filename}.")
135 _ = os.path.join(constants.pages_dir, filename)
144 #x = gkeep_renderer({"Test", 1234})
145 #x.periodic_render("Test")