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

Side by Side Diff: sitescripts/content_blocker_lists/bin/generate_lists.py

Issue 29331148: Issue 3176 - Add metadata to content blocker lists (Closed)
Patch Set: Addressed further feedback Created Nov. 30, 2015, 5:05 p.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.example ('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 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # coding: utf-8 2 # coding: utf-8
3 3
4 # This file is part of Adblock Plus <https://adblockplus.org/>, 4 # This file is part of Adblock Plus <https://adblockplus.org/>,
5 # Copyright (C) 2006-2015 Eyeo GmbH 5 # Copyright (C) 2006-2015 Eyeo GmbH
6 # 6 #
7 # Adblock Plus is free software: you can redistribute it and/or modify 7 # Adblock Plus is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License version 3 as 8 # it under the terms of the GNU General Public License version 3 as
9 # published by the Free Software Foundation. 9 # published by the Free Software Foundation.
10 # 10 #
11 # Adblock Plus is distributed in the hope that it will be useful, 11 # Adblock Plus is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details. 14 # GNU General Public License for more details.
15 # 15 #
16 # You should have received a copy of the GNU General Public License 16 # You should have received a copy of the GNU General Public License
17 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. 17 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
18 18
19 from collections import OrderedDict
20 from contextlib import closing
21 from datetime import datetime
22 import json
19 import os 23 import os
20 import subprocess 24 import subprocess
25 import thread
26 import re
21 import urllib2 27 import urllib2
22 28
23 from sitescripts.utils import get_config 29 from sitescripts.utils import get_config
24 30
25 def _update_abp2blocklist(): 31 config = dict(get_config().items("content_blocker_lists"))
32
33 def update_abp2blocklist():
Felix Dahlke 2015/12/01 08:43:09 These functions were prefixed with an underscore f
Sebastian Noack 2015/12/01 10:18:39 Well, one could argue that this is less a module (
kzar 2015/12/01 12:13:38 I would prefer to leave them off, they don't reall
Felix Dahlke 2015/12/01 14:04:19 I would argue that this is still a module - this s
Sebastian Noack 2015/12/07 12:38:24 Well, technically every piece of code is part of a
Felix Dahlke 2015/12/08 06:51:24 Wladimir's newer code in Sitescripts also uses tho
26 with open(os.devnull, "w") as devnull: 34 with open(os.devnull, "w") as devnull:
27 config = get_config() 35 abp2blocklist_path = config["abp2blocklist_path"]
28 abp2blocklist_path = config.get("content_blocker_lists",
29 "abp2blocklist_path")
30 if os.path.isdir(abp2blocklist_path): 36 if os.path.isdir(abp2blocklist_path):
31 subprocess.check_call(("hg", "pull", "-u", "-R", abp2blocklist_path), 37 subprocess.check_call(("hg", "pull", "-u", "-R", abp2blocklist_path),
32 stdout=devnull) 38 stdout=devnull)
33 else: 39 else:
34 abp2blocklist_url = config.get("content_blocker_lists", 40 subprocess.check_call(("hg", "clone", config["abp2blocklist_url"],
35 "abp2blocklist_url")
36 subprocess.check_call(("hg", "clone", abp2blocklist_url,
37 abp2blocklist_path), stdout=devnull) 41 abp2blocklist_path), stdout=devnull)
38 subprocess.check_call(("npm", "install"), cwd=abp2blocklist_path, 42 subprocess.check_call(("npm", "install"), cwd=abp2blocklist_path,
39 stdout=devnull) 43 stdout=devnull)
40 44
41 def _download(url_key): 45 def download_filter_list(url):
42 url = get_config().get("content_blocker_lists", url_key) 46 filter_list = {}
43 response = urllib2.urlopen(url) 47 with closing(urllib2.urlopen(url)) as response:
44 try: 48 filter_list["body"] = response.read()
45 return response.read() 49 filter_list["header"] = parse_filter_list_header(filter_list["body"])
46 finally: 50 filter_list["header"]["url"] = url
47 response.close() 51 return filter_list
Sebastian Noack 2015/12/01 11:01:48 I think it would be simpler if you just return a t
kzar 2015/12/01 12:13:38 Done.
48 52
49 def _convert_filter_list(sources, destination_path_key): 53 def parse_filter_list_header(filter_list):
50 config = get_config() 54 body_start = re.search(r"^[^![]", filter_list, re.MULTILINE).start()
51 destination_path = config.get("content_blocker_lists", destination_path_key) 55 field_re = re.compile(r"^!\s*([^:\s]+):\s*(.+)$", re.MULTILINE)
52 with open(destination_path, "wb") as destination_file: 56 return { match.group(1): match.group(2)
53 abp2blocklist_path = config.get("content_blocker_lists", 57 for match in field_re.finditer(filter_list, 0, body_start) }
54 "abp2blocklist_path") 58
55 process = subprocess.Popen(("node", "abp2blocklist.js"), 59 def generate_metadata(filter_lists, expires):
56 cwd=abp2blocklist_path, stdin=subprocess.PIPE, 60 metadata = OrderedDict((
57 stdout=destination_file) 61 ("version", datetime.utcnow().strftime("%Y%m%d%H%M")),
Felix Dahlke 2015/12/01 08:43:08 FWIW, we're using `time.strftime("%Y%m%d%H%M", tim
Sebastian Noack 2015/12/01 10:18:39 I tend to agree, creating a datetime object is unn
kzar 2015/12/01 12:13:39 Done.
62 ("expires", expires),
63 ("sources", [])
64 ))
65 for filter_list in filter_lists:
66 metadata["sources"].append({ k.lower(): filter_list["header"][k]
67 for k in ["url", "Version"]})
Felix Dahlke 2015/12/01 08:43:08 Nit: Sebastian convinced me a while ago that tuple
Sebastian Noack 2015/12/01 10:18:39 Well, frankly, I don't think that it matters in th
Felix Dahlke 2015/12/01 10:26:29 Wouldn't insist either.
Sebastian Noack 2015/12/01 10:38:09 For reference, I found a quite interesting answer
kzar 2015/12/01 12:13:39 Acknowledged.
68 return metadata
69
70 def write_block_list(filter_lists, path, expires):
71 block_list = generate_metadata(filter_lists, expires)
72 process = subprocess.Popen(("node", "abp2blocklist.js"),
73 cwd=config["abp2blocklist_path"],
74 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
75 def pipe_in(process):
Sebastian Noack 2015/12/01 10:47:14 Nit: This is inconsistent. You pass in the process
kzar 2015/12/01 12:13:38 Done.
58 try: 76 try:
59 for source in sources: 77 for filter_list in filter_lists:
60 print >>process.stdin, source 78 print >>process.stdin, filter_list["body"]
61 finally: 79 finally:
62 process.stdin.close() 80 process.stdin.close()
63 process.wait() 81 process.wait()
64 82
83 thread.start_new_thread(pipe_in, (process,))
Sebastian Noack 2015/12/01 10:47:14 Please use the high-level threading module instead
kzar 2015/12/01 12:13:38 Done.
84 block_list["rules"] = json.load(process.stdout)
85
65 if process.returncode: 86 if process.returncode:
66 raise Exception("abp2blocklist returned %s" % process.returncode) 87 raise Exception("abp2blocklist returned %s" % process.returncode)
67 88
89 with open(path, "wb") as destination_file:
90 json.dump(block_list, destination_file, indent=2, separators=(",", ": "))
91
68 if __name__ == "__main__": 92 if __name__ == "__main__":
69 _update_abp2blocklist() 93 update_abp2blocklist()
70 94
71 easylist = _download("easylist_url") 95 easylist = download_filter_list(config["easylist_url"])
72 exceptionrules = _download("exceptionrules_url") 96 exceptionrules = download_filter_list(config["exceptionrules_url"])
73 97
74 _convert_filter_list([easylist], "easylist_content_blocker_path") 98 write_block_list([easylist],
Felix Dahlke 2015/12/01 08:43:08 Nit: "block list" is highly ambiguous, we often us
Sebastian Noack 2015/12/01 10:18:39 Well, after all, the program called here is also c
Felix Dahlke 2015/12/01 10:26:29 Good point, let's really leave it alone.
75 _convert_filter_list([easylist, exceptionrules], 99 config["easylist_content_blocker_path"],
76 "combined_content_blocker_path") 100 config["easylist_content_blocker_expires"])
101 write_block_list([easylist, exceptionrules],
102 config["combined_content_blocker_path"],
103 config["combined_content_blocker_expires"])
OLDNEW
« no previous file with comments | « .sitescripts.example ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld