Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: sitescripts/notifications/parser.py

Issue 6308119894294528: Issue 2274 - Move notification parsing into a module (Closed)
Patch Set: Don't set the version in parser.load_notifications() Created April 15, 2015, 9:24 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sitescripts/notifications/__init__.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # coding: utf-8 1 # coding: utf-8
2 2
3 # This file is part of the Adblock Plus web scripts, 3 # This file is part of the Adblock Plus web scripts,
4 # Copyright (C) 2006-2015 Eyeo GmbH 4 # Copyright (C) 2006-2015 Eyeo GmbH
5 # 5 #
6 # Adblock Plus is free software: you can redistribute it and/or modify 6 # Adblock Plus is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License version 3 as 7 # it under the terms of the GNU General Public License version 3 as
8 # published by the Free Software Foundation. 8 # published by the Free Software Foundation.
9 # 9 #
10 # Adblock Plus is distributed in the hope that it will be useful, 10 # Adblock Plus is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details. 13 # GNU General Public License for more details.
14 # 14 #
15 # You should have received a copy of the GNU General Public License 15 # You should have received a copy of the GNU General Public License
16 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. 16 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
17 17
18 import os, re, subprocess, tarfile, codecs, time, traceback, json 18 import codecs
19 import os
20 import re
21 import subprocess
22 import tarfile
23 import traceback
19 from StringIO import StringIO 24 from StringIO import StringIO
20 from sitescripts.utils import get_config, setupStderr
21 25
22 def parse_targetspec(value, name): 26 from sitescripts.utils import get_config
27
28 def _parse_targetspec(value, name):
23 target = {} 29 target = {}
24 for spec in value.split(): 30 for spec in value.split():
25 known = False 31 known = False
26 for parameter in ("extension", "application", "platform"): 32 for parameter in ("extension", "application", "platform"):
27 if spec.startswith(parameter + "="): 33 if spec.startswith(parameter + "="):
28 target[parameter] = spec[len(parameter + "="):] 34 target[parameter] = spec[len(parameter + "="):]
29 known = True 35 known = True
30 elif spec.startswith(parameter + "Version>="): 36 elif spec.startswith(parameter + "Version>="):
31 target[parameter + "MinVersion"] = spec[len(parameter + "Version>="):] 37 target[parameter + "MinVersion"] = spec[len(parameter + "Version>="):]
32 known = True 38 known = True
33 elif spec.startswith(parameter + "Version<="): 39 elif spec.startswith(parameter + "Version<="):
34 target[parameter + "MaxVersion"] = spec[len(parameter + "Version<="):] 40 target[parameter + "MaxVersion"] = spec[len(parameter + "Version<="):]
35 known = True 41 known = True
36 elif spec.startswith(parameter + "Version="): 42 elif spec.startswith(parameter + "Version="):
37 target[parameter + "MinVersion"] = target[parameter + "MaxVersion"] = sp ec[len(parameter + "Version="):] 43 target[parameter + "MinVersion"] = target[parameter + "MaxVersion"] = sp ec[len(parameter + "Version="):]
38 known = True 44 known = True
39 if not known: 45 if not known:
40 raise Exception("Unknown target specifier '%s' in file '%s'" % (spec, name )) 46 raise Exception("Unknown target specifier '%s' in file '%s'" % (spec, name ))
41 return target 47 return target
42 48
43 def parse_notification(data, name): 49 def _parse_notification(data, name):
44 notification = {"id": name, "severity": "information", "message": {}, "title": {}} 50 notification = {"id": name, "severity": "information", "message": {}, "title": {}}
45 51
46 for line in data: 52 for line in data:
47 if not re.search(r"\S", line): 53 if not re.search(r"\S", line):
48 continue 54 continue
49 55
50 if line.find("=") < 0: 56 if line.find("=") < 0:
51 raise Exception("Could not process line '%s' in file '%s'" % (line.strip() , name)) 57 raise Exception("Could not process line '%s' in file '%s'" % (line.strip() , name))
52 58
53 key, value = map(unicode.strip, line.split("=", 1)) 59 key, value = map(unicode.strip, line.split("=", 1))
54 60
55 if key == "inactive": 61 if key == "inactive":
56 notification["inactive"] = True 62 notification["inactive"] = True
57 elif key == "severity": 63 elif key == "severity":
58 if value not in ("information", "critical"): 64 if value not in ("information", "critical"):
59 raise Exception("Unknown severity value '%s' in file '%s'" % (value, nam e)) 65 raise Exception("Unknown severity value '%s' in file '%s'" % (value, nam e))
60 notification["severity"] = value 66 notification["severity"] = value
61 elif key == "links": 67 elif key == "links":
62 notification["links"] = value.split() 68 notification["links"] = value.split()
63 elif key.startswith("title."): 69 elif key.startswith("title."):
64 locale = key[len("title."):] 70 locale = key[len("title."):]
65 notification["title"][locale] = value 71 notification["title"][locale] = value
66 elif key.startswith("message."): 72 elif key.startswith("message."):
67 locale = key[len("message."):] 73 locale = key[len("message."):]
68 notification["message"][locale] = value 74 notification["message"][locale] = value
69 elif key == "target": 75 elif key == "target":
70 target = parse_targetspec(value, name) 76 target = _parse_targetspec(value, name)
71 if "targets" in notification: 77 if "targets" in notification:
72 notification["targets"].append(target) 78 notification["targets"].append(target)
73 else: 79 else:
74 notification["targets"] = [target] 80 notification["targets"] = [target]
75 else: 81 else:
76 raise Exception("Unknown parameter '%s' in file '%s'" % (key, name)) 82 raise Exception("Unknown parameter '%s' in file '%s'" % (key, name))
77 83
78 if "en-US" not in notification["title"]: 84 if "en-US" not in notification["title"]:
79 raise Exception("No title for en-US (default language) in file '%s'" % name) 85 raise Exception("No title for en-US (default language) in file '%s'" % name)
80 if "en-US" not in notification["message"]: 86 if "en-US" not in notification["message"]:
81 raise Exception("No message for en-US (default language) in file '%s'" % nam e) 87 raise Exception("No message for en-US (default language) in file '%s'" % nam e)
82 return notification 88 return notification
83 89
84 def generate_notifications(repo, path): 90 def load_notifications():
91 repo = get_config().get("notifications", "repository")
92 subprocess.call(["hg", "-R", repo, "pull", "-q"])
85 command = ["hg", "-R", repo, "archive", "-r", "default", "-t", "tar", 93 command = ["hg", "-R", repo, "archive", "-r", "default", "-t", "tar",
86 "-p", ".", "-X", os.path.join(repo, ".hg_archival.txt"), "-"] 94 "-p", ".", "-X", os.path.join(repo, ".hg_archival.txt"), "-"]
87 data = subprocess.check_output(command) 95 data = subprocess.check_output(command)
88 96
89 result = {"version": time.strftime("%Y%m%d%H%M", time.gmtime()), "notification s": []} 97 notifications = []
90 with tarfile.open(mode="r:", fileobj=StringIO(data)) as archive: 98 with tarfile.open(mode="r:", fileobj=StringIO(data)) as archive:
91 for fileinfo in archive: 99 for fileinfo in archive:
92 name = fileinfo.name 100 name = fileinfo.name
93 if name.startswith("./"): 101 if name.startswith("./"):
94 name = name[2:] 102 name = name[2:]
95 103
96 if fileinfo.type == tarfile.REGTYPE: 104 if fileinfo.type == tarfile.REGTYPE:
97 data = codecs.getreader("utf8")(archive.extractfile(fileinfo)) 105 data = codecs.getreader("utf8")(archive.extractfile(fileinfo))
98 try: 106 try:
99 notification = parse_notification(data, name) 107 notification = _parse_notification(data, name)
100 if "inactive" in notification: 108 if "inactive" in notification:
101 continue 109 continue
102 result["notifications"].append(notification) 110 notifications.append(notification)
103 except: 111 except:
104 traceback.print_exc() 112 traceback.print_exc()
105 113 return notifications
106 with codecs.open(path, "wb", encoding="utf-8") as file:
107 json.dump(result, file, ensure_ascii=False, indent=2,
108 separators=(',', ': '), sort_keys=True)
109
110 if __name__ == "__main__":
111 setupStderr()
112 repo = get_config().get("notifications", "repository")
113 output = get_config().get("notifications", "output")
114 subprocess.call(["hg", "-R", repo, "pull", "-q"])
115 generate_notifications(repo, output)
OLDNEW
« no previous file with comments | « sitescripts/notifications/__init__.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld