PNA.fi koodi

food.py 18KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413
  1. #!/usr/bin/env python3
  2. # Ruokalistaparseri
  3. # Copyright (c) 2016 Toni Fadjukoff
  4. # Based on food.pl by
  5. # Copyright (c) 2007-2010 Timo Sirainen
  6. # 2011-2016 Toni Fadjukoff
  7. # This is Public Domain
  8. import sys
  9. day_names = [ "Maanantai", "Tiistai", "Keskiviikko", "Torstai",
  10. "Perjantai", "Lauantai", "Sunnuntai" ]
  11. import amica
  12. import sodexo
  13. import juvenes
  14. import campusravita
  15. allergies = [ "M", "L", "VL", "G", "K", "Ve" ]
  16. allergy_descriptions = {
  17. "M": "Maidoton",
  18. "L": "Laktoositon","VL": "Vähälaktoosinen",
  19. "G": "Gluteiiniton",
  20. "K": "Kasvis",
  21. "Ve": "Vegaani"
  22. }
  23. import os
  24. import time
  25. import datetime
  26. import re
  27. global_prefix = "";
  28. use_old = False; # 1 is good for testing, 0 for production system!
  29. unordered = []
  30. l = time.localtime()
  31. this_week = datetime.datetime.now().isocalendar()[1]
  32. unordered += amica.get_restaurants(use_old, this_week)
  33. unordered += juvenes.get_restaurants(use_old, this_week)
  34. unordered += sodexo.get_restaurants(use_old, this_week)
  35. unordered += campusravita.get_restaurants(use_old, this_week)
  36. max_week = 0;
  37. for r in unordered:
  38. week = r[2]
  39. max_week = week if week > max_week or week == 1 else max_week
  40. if l[6] != 0 and this_week != max_week:
  41. # it's not sunday, don't force next week's menu yet
  42. max_week = this_week
  43. stamp = time.time() - 3600*24*7
  44. max_week_daterange = ""
  45. if max_week >= 1 and max_week <= 52:
  46. # figure out the date range
  47. while True:
  48. stamp_week = int(time.strftime("%W", time.localtime(stamp)))
  49. if stamp_week == max_week:
  50. break
  51. stamp += 3600*24
  52. l1 = time.localtime(stamp)
  53. l2 = time.localtime(stamp + 3600*24*6)
  54. if l1[1] == l2[1]:
  55. # same month
  56. max_week_daterange = "{monday}-{sunday}.{month}.".format(monday=l1[2], sunday=l2[2], month=l1[1])
  57. else:
  58. # different months
  59. max_week_daterange = "{monday}.{month}.-{sunday}.{next_month}.".format(monday=l1[2], month=l1[1],
  60. sunday=l2[2], next_month=l2[1])
  61. max_week_daterange = " (" + str(max_week_daterange) + ")"
  62. file_header = '''<?xml version="1.0" encoding="utf-8"?>
  63. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  64. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fi" lang="fi">
  65. <head>
  66. <title>Ruokalistat</title>
  67. <meta charset="UTF-8"/>
  68. <link rel="stylesheet" type="text/css" href="{resources_prefix}ruoka.css" />
  69. </head>
  70. <body>
  71. <div id="notice" style="border: 1px solid black; border-radius: 5px; padding: 5px;">
  72. PNA.fi on kolmannen osapuolen tarjoama palvelu. En voi taata ruokalistojen oikeellisuutta. Virallisen ruokalistan saat näkyviin siirtymällä ravintolan omille sivuille painamalla sen nimestä. Jos huomaat ruokalistassa virheen, nopeiten virhe saadaan pois näkyvistä kun lähetät minulle siitä sähköpostia: <a href="mailto:lamperi+pna@gmail.com">lamperi+pna@gmail.com</a>
  73. </div>
  74. <form method="get" action="/cgi-bin/food.cgi">
  75. '''
  76. file_footer = """
  77. <div class="footer">Päivitetty {stamp}
  78. <input type="submit\" value=\"Päivitä nyt\" />
  79. / Palaute <a href=\"mailto:lamperi+pna@gmail.com\">lamperi+pna@gmail.com</a>
  80. / <a href="{{resources_prefix}}code.html\">Koodit täältä</a>
  81. / <a href="{{resources_prefix}}pna.html\">Mikä on PNA?</a>
  82. </div>
  83. </form>
  84. </body>
  85. </html>
  86. """.format(stamp=time.strftime("%d.%m.%Y %H:%M:%S"))
  87. def find_last_day_with_foods(restaurants):
  88. last_day = 0
  89. for r in restaurants:
  90. for day in range(7):
  91. if day in r[3]:
  92. last_day = day if day > last_day else last_day
  93. return last_day
  94. def write_days_header(fout, day, last_day):
  95. fout.write( " <span class=\"days\">")
  96. for i in range(last_day):
  97. if i == day:
  98. fout.write("{0} ".format(day_names[i]))
  99. else:
  100. fout.write("<a href=\"{0}.html\">{1}</a> ".format(i+1, day_names[i]))
  101. if day < 0:
  102. fout.write("Taulukko")
  103. else:
  104. fout.write("<a href=\"table.html\">Taulukko</a>")
  105. fout.write("</span>\n")
  106. def write_prefix_header(fout, prefix, day, resources_prefix):
  107. day = "table" if day == 0 else day
  108. fout.write("<span class=\"location\">")
  109. if prefix == "":
  110. fout.write("Kaikki ")
  111. else:
  112. fout.write("<a href=\"{resources_prefix}{day}.html\">Kaikki</a> ".format(resources_prefix=resources_prefix, day=day))
  113. if prefix == "tay/":
  114. fout.write("TaY ")
  115. else:
  116. fout.write("<a href=\"{resources_prefix}tay/{day}.html\">TaY</a> ".format(resources_prefix=resources_prefix, day=day))
  117. if prefix == "tays/":
  118. fout.write("TAYS ")
  119. else:
  120. fout.write("<a href=\"{resources_prefix}tays/{day}.html\">TAYS</a> ".format(resources_prefix=resources_prefix, day=day))
  121. if prefix == "tty/":
  122. fout.write("TTY ")
  123. else:
  124. fout.write("<a href=\"{resources_prefix}tty/{day}.html\">TTY</a> ".format(resources_prefix=resources_prefix, day=day))
  125. fout.write("</span>\n")
  126. def write_day(day, header, outfname, last_day, restaurants, prefix, resources_prefix):
  127. with open(outfname, "w", encoding="utf-8") as fout:
  128. fout.write(file_header.format(resources_prefix=resources_prefix))
  129. fout.write("<h1>{header}</h1>\n".format(header=header))
  130. # print weekday links
  131. fout.write("<div class=\"title\">\n")
  132. write_days_header(fout, day, last_day)
  133. fout.write(" <span class=\"allergy\">Näytä: ")
  134. for a in allergies:
  135. fout.write("<input type=\"checkbox\" name=\"allergy_{a}\" id=\"allergy_{a}\" onclick=\"highlight()\" />".format(a=a))
  136. fout.write("<span title=\"{allergy_description}\">{a}</span>".format(allergy_description=allergy_descriptions[a], a=a))
  137. fout.write("</span>\n")
  138. write_prefix_header(fout, prefix, day+1, resources_prefix);
  139. fout.write("</div>\n")
  140. # print foods
  141. foodnum = 0
  142. eatable_food_numbers = {}
  143. maybe_eatable_food_numbers = {}
  144. for a in allergies:
  145. eatable_food_numbers[a] = []
  146. maybe_eatable_food_numbers[a] = []
  147. css_class = "left"
  148. fout.write("<div class=\"foods\"><div class=\"{css_class}\">\n".format(css_class=css_class))
  149. for r in restaurants:
  150. title, open_hours, week, week_foods, info = r
  151. title2, url, lazy_allergies, info_class = info[0:4]
  152. if day in week_foods or day < 5:
  153. if info_class != css_class:
  154. css_class = info_class
  155. fout.write("</div><div class=\"{css_class}\">\n".format(css_class=css_class))
  156. url = url.replace("&", "&amp;")
  157. fout.write("<h2><a href=\"{url}\">{title}</a></h2>\n".format(url=url, title=title))
  158. if not day in week_foods:
  159. fout.write("<p class=\"missing\">Ruokalistaa ei saatavilla.</p>")
  160. continue
  161. if week != "" and week != max_week:
  162. if week > max_week or (week == 1 and max_week == 52):
  163. # early..
  164. fout.write("<p class=\"nextweek\">Viikon {week} ruokalista:</p>".format(week=week))
  165. else:
  166. fout.write("<p class=\"missing\">Saatavilla vain viikon {week} ruokalista.</p>".format(week=week))
  167. continue
  168. if len(week_foods[day]) == 0:
  169. fout.write("<p class=\"missing\">Ei ruokatietoja päivälle.</p>")
  170. continue
  171. fout.write("<ul class=\"food\">\n")
  172. for food in week_foods[day]:
  173. output = []
  174. total_allergies = {}
  175. maybe_allergies = {}
  176. for a in allergies:
  177. total_allergies[a] = 0
  178. maybe_allergies[a] = 0
  179. part_count = 0
  180. for part in food.split("\n"):
  181. # who cares?
  182. if re.match("Peruna|Riisi", part):
  183. continue
  184. # fries: well, maybe we do care, but we don't care about allergy stuff
  185. # and keep it in the same line as the previous food so as not to
  186. # waste visible space
  187. (part, fries) = re.subn("Tikkuperunat|Ranskalaiset perunat", "", part)
  188. fries = fries > 0
  189. part_count += 1
  190. # add missing () around allergies
  191. part = re.sub(" (([MLGKA]|VL|Ve|VE|Veg|Hot)(, *([MLGKA]|VL|Ve|VE|Veg|Hot|))+)$", " (\\1)", part)
  192. match = re.match("^(.*) \\(([^\\)]+)\\)$", part)
  193. if match:
  194. # fix allergy issues
  195. food = match.group(1)
  196. allergy = match.group(2)
  197. # standardization
  198. allergy = re.sub("Kasvis", "K", allergy)
  199. allergy = re.sub("([MLGK]|VL)([MLGK]|[VL])", "\\1,\\2", allergy)
  200. # spaces to commas
  201. allergy = re.sub("saatavana[: ]+(.*)$", "eriks: \\1", allergy)
  202. allergy = re.sub(" +", ",", allergy)
  203. # remove double commas
  204. allergy = re.sub(",+", ",", allergy)
  205. # eriks: standardization
  206. allergy = re.sub(",?eriks:,?", ", eriks: ", allergy)
  207. # remove extra commas/spaces from beginning/end
  208. allergy = re.sub("^[, ]+", "", allergy)
  209. allergy = re.sub("[, ]+$", "", allergy)
  210. part = "{food} ({allergy})".format(food=food, allergy=allergy)
  211. if output and not fries:
  212. output.append("<br />\n")
  213. match = re.search("Saatavana myös: (.*)", part)
  214. if match:
  215. alt = match.group(1)
  216. alt = re.sub(r"^\((.*)\)$", r"\1", alt)
  217. alt = re.sub("[, ]+", r",", alt)
  218. alt = re.sub("^,+", "", alt)
  219. alt = re.sub(",+$", "", alt)
  220. part = re.sub(r"\)[- ]*Saatavana myös:.*", "eriks: {alt})".format(alt=alt), part)
  221. part = re.sub(r"[- ]*Saatavana myös:.*", "(eriks: {alt})".format(alt=alt), part)
  222. match = re.match(r"^(.*)(\([^\)]+\))$", part)
  223. if match:
  224. text = match.group(1)
  225. allergy = match.group(2)
  226. if fries:
  227. output.append(", {text}".format(text=text))
  228. else:
  229. output.append("{text} <span class=\"allergy\">{allergy}</span>".format(text=text, allergy=allergy))
  230. allergy = re.sub(r"^\((.*)\)$", r"\1", allergy)
  231. allergy = re.sub(" *eriks: ", "", allergy)
  232. this_allergies = set()
  233. for a in re.split("[, ]", allergy):
  234. for al in allergies:
  235. if a == al:
  236. this_allergies.add(a)
  237. break
  238. if "L" in this_allergies:
  239. this_allergies.add("VL")
  240. for a in this_allergies:
  241. if a in total_allergies:
  242. total_allergies[a] += 1
  243. if a in maybe_allergies:
  244. maybe_allergies[a] += 1
  245. match = re.search("M", lazy_allergies)
  246. if match:
  247. if "L" in this_allergies and not "M" in this_allergies:
  248. maybe_allergies["M"] += 1
  249. else:
  250. if lazy_allergies == "all":
  251. for a in allergies:
  252. maybe_allergies[a] += 1
  253. output.append(part)
  254. allergy_output = ""
  255. for a in allergies:
  256. if total_allergies[a] == part_count:
  257. eatable_food_numbers[a].append(foodnum)
  258. elif maybe_allergies[a]== part_count:
  259. maybe_eatable_food_numbers[a].append(foodnum)
  260. fout.write(" <li id=\"f{foodnum}\">{output}</li>\n".format(foodnum=foodnum, output="".join(output)))
  261. foodnum += 1
  262. fout.write("</ul>\n")
  263. # write allergy scripts
  264. fout.write('<script type="text/javascript" src="{resources_prefix}ruoka.js"></script>'.format(resources_prefix=resources_prefix))
  265. fout.write('<script type="text/javascript">\n')
  266. fout.write("var eatable_foods = [];\n")
  267. fout.write("var maybe_eatable_foods = [];\n")
  268. for a in allergies:
  269. fout.write("eatable_foods[\"{a}\"] = [{eatable_food_number}];\n".format(a=a, eatable_food_number=",".join(str(e) for e in eatable_food_numbers[a])))
  270. fout.write("maybe_eatable_foods[\"{a}\"] = [{maybe_eatable_food_number}];\n".format(a=a, maybe_eatable_food_number=",".join(str(e) for e in maybe_eatable_food_numbers[a])))
  271. allergy_string = ",".join('"{a}"'.format(a=a) for a in allergies)
  272. fout.write("var allergies = [{allergies}];\n".format(allergies = allergy_string))
  273. fout.write("var food_count = {foodnum};\n".format(foodnum = foodnum))
  274. fout.write("window.onload = function() { set_allergies(); show_warning(); };\n")
  275. fout.write("</script>\n")
  276. fout.write("</div></div>{file_footer}".format(file_footer=file_footer.format(resources_prefix=resources_prefix)))
  277. def write_all_days(restaurants, prefix, title, resources_prefix):
  278. try:
  279. os.mkdir(prefix)
  280. except OSError as err:
  281. pass # hope it already exists
  282. last_day = find_last_day_with_foods(restaurants);
  283. for day in range(7):
  284. outfname = "{prefix}{day}.html".format(prefix=prefix, day=day+1)
  285. if day > last_day:
  286. try:
  287. os.unlink(outfname)
  288. except OSError as err:
  289. pass # probably did not exist
  290. continue
  291. header = "{day_name} - {title} vko {max_week}{max_week_daterange}".format(day_name=day_names[day], title=title,
  292. max_week=max_week, max_week_daterange=max_week_daterange)
  293. write_day(day, header, outfname, last_day, restaurants, prefix, resources_prefix)
  294. def write_table(restaurants, prefix, title, resources_prefix):
  295. last_day = find_last_day_with_foods(restaurants);
  296. outfname = "{prefix}table.html".format(prefix=prefix)
  297. with open(outfname, "w", encoding="utf-8") as fout:
  298. header = "{title} vko {max_week}{max_week_daterange}".format(title=title, max_week=max_week, max_week_daterange=max_week_daterange)
  299. fout.write(file_header.format(resources_prefix=resources_prefix))
  300. fout.write("<h1>{header}</h1>\n".format(header=header))
  301. fout.write("<div class=\"title\">\n")
  302. write_days_header(fout, -1, last_day)
  303. write_prefix_header(fout, prefix, 0, resources_prefix)
  304. fout.write("</div><table border=\"1\"><tr><th>Päivä</th>")
  305. for r in restaurants:
  306. (title, open_hours, week, week_foods, info) = r
  307. (title2, url) = info[0:2]
  308. url = re.sub("&", "&nbsp;", url)
  309. fout.write("<th><a href=\"{url}\">{title}</a></th>".format(url=url, title=title))
  310. fout.write("</tr>\n")
  311. for day in range(last_day):
  312. fout.write("<tr><td>{day_name}</td>\n".format(day_name=day_names[day]))
  313. for r in restaurants:
  314. (title, open_hours, week, week_foods, info) = r
  315. if day in week_foods and (week == "" or week == max_week):
  316. fout.write("<td><ul>\n")
  317. for food in week_foods[day]:
  318. fout.write("<li>{food}</li>".format(food=food))
  319. fout.write("</ul></td>\n")
  320. else:
  321. fout.write("<td></td>\n")
  322. fout.write("</tr\n")
  323. fout.write("</table>{file_footer}".format(file_footer=file_footer.format(resources_prefix=resources_prefix)))
  324. def get_restaurants_sorted(restaurants):
  325. # consider writing comparator
  326. out = []
  327. for r in restaurants:
  328. if r[4][3] == "left":
  329. out.append(r)
  330. for r in restaurants:
  331. if r[4][3] == "right":
  332. out.append(r)
  333. for r in restaurants:
  334. if r[4][3] == "middle" and not re.search("TAMK", r[4][0]):
  335. out.append(r)
  336. for r in restaurants:
  337. if r[4][3] == "middle" and re.search("TAMK", r[4][0]):
  338. out.append(r)
  339. return out
  340. def get_restaurants_with_prefix(prefix, restaurants):
  341. out = []
  342. for r in restaurants:
  343. if re.search(prefix, r[4][0]):
  344. out.append(r)
  345. return get_restaurants_sorted(out)
  346. tty_title = "TTY:n ruokalistat"
  347. tty = get_restaurants_with_prefix("TTY", unordered)
  348. write_all_days(tty, "tty/", tty_title, "../")
  349. write_table(tty, "tty/", tty_title, "../")
  350. tay_title = "Tampereen yliopiston ruokalistat"
  351. tay = get_restaurants_with_prefix("TaY", unordered)
  352. write_all_days(tay, "tay/", tay_title, "../")
  353. write_table(tay, "tay/", tay_title, "../")
  354. tays_title = "TAYS:n ruokalistat"
  355. tays = get_restaurants_with_prefix("TAYS", unordered)
  356. write_all_days(tays, "tays/", tays_title, "../")
  357. write_table(tays, "tays/", tays_title, "../")
  358. for r in unordered:
  359. if re.search(r"^\(TaY\)", r[0]):
  360. r[4][3] = "left"
  361. if re.search(r"^\(TTY\)", r[0]):
  362. r[4][3] = "right"
  363. if re.search(r"^\(TAYS\)", r[0]):
  364. r[4][3] = "middle"
  365. all_title = "Tampereen yliopistojen ruokalistat";
  366. all_restaurants = get_restaurants_sorted(unordered);
  367. # move fusion kitchen last
  368. #fusion = splice(@all_restaurants, 1, 1);
  369. #splice(@all_restaurants, 4, 0, @fusion);
  370. write_all_days(all_restaurants, "", all_title, "");
  371. write_table(all_restaurants, "", all_title, "");