| Left: | ||
| Right: | 
| LEFT | RIGHT | 
|---|---|
| 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 | |
| 19 from contextlib import closing | 20 from contextlib import closing | 
| 20 from datetime import datetime | |
| 21 import json | 21 import json | 
| 22 import os | 22 import os | 
| 23 import subprocess | 23 import subprocess | 
| 24 import threading | |
| 25 import time | |
| 24 import re | 26 import re | 
| 25 import urllib2 | 27 import urllib2 | 
| 26 | 28 | 
| 27 from sitescripts.utils import get_config | 29 from sitescripts.utils import get_config | 
| 28 | 30 | 
| 29 config = dict(get_config().items("content_blocker_lists")) | 31 config = dict(get_config().items("content_blocker_lists")) | 
| 30 | 32 | 
| 31 def update_abp2blocklist(): | 33 def update_abp2blocklist(): | 
| 32 with open(os.devnull, "w") as devnull: | 34 with open(os.devnull, "w") as devnull: | 
| 33 abp2blocklist_path = config["abp2blocklist_path"] | 35 abp2blocklist_path = config["abp2blocklist_path"] | 
| 34 if os.path.isdir(abp2blocklist_path): | 36 if os.path.isdir(abp2blocklist_path): | 
| 35 subprocess.check_call(("hg", "pull", "-u", "-R", abp2blocklist_path), | 37 subprocess.check_call(("hg", "pull", "-u", "-R", abp2blocklist_path), | 
| 36 stdout=devnull) | 38 stdout=devnull) | 
| 37 else: | 39 else: | 
| 38 subprocess.check_call(("hg", "clone", config["abp2blocklist_url"], | 40 subprocess.check_call(("hg", "clone", config["abp2blocklist_url"], | 
| 39 abp2blocklist_path), stdout=devnull) | 41 abp2blocklist_path), stdout=devnull) | 
| 40 subprocess.check_call(("npm", "install"), cwd=abp2blocklist_path, | 42 subprocess.check_call(("npm", "install"), cwd=abp2blocklist_path, | 
| 41 stdout=devnull) | 43 stdout=devnull) | 
| 42 | 44 | 
| 43 def download_filter_list(url): | 45 def download_filter_list(url): | 
| 44 filter_list = {} | |
| 45 with closing(urllib2.urlopen(url)) as response: | 46 with closing(urllib2.urlopen(url)) as response: | 
| 46 filter_list["body"] = response.read() | 47 body = response.read() | 
| 47 filter_list["header"] = parse_filter_list_header(filter_list["body"]) | 48 version = re.search(r"^(?:[^[!])|^!\s*Version:\s*(.+)$", | 
| 48 filter_list["header"]["url"] = url | 49 body, re.MULTILINE).group(1) | 
| 49 return filter_list | 50 return body, url, version | 
| 50 | |
| 51 def parse_filter_list_header(filter_list): | |
| 52 body_start = re.search(r"^[^![]", filter_list, re.MULTILINE).start() | |
| 53 field_re = re.compile(r"^!\s*([^:\s]+):\s*(.+)$", re.MULTILINE) | |
| 54 return { match.group(1): match.group(2) | |
| 55 for match in field_re.finditer(filter_list, 0, body_start) } | |
| 56 | 51 | 
| 57 def generate_metadata(filter_lists, expires): | 52 def generate_metadata(filter_lists, expires): | 
| 58 metadata = { | 53 metadata = OrderedDict(( | 
| 
 
Sebastian Noack
2015/11/30 16:00:07
Nit: Use an OrderedDict to make sure that the meta
 
kzar
2015/11/30 17:06:00
Done.
 
 | |
| 59 "sources": [], | 54 ("version", time.strftime("%Y%m%d%H%M", time.gmtime())), | 
| 60 "version": datetime.utcnow().strftime("%Y%m%d%H%M"), | 55 ("expires", expires), | 
| 61 "expires": expires | 56 ("sources", []) | 
| 62 } | 57 )) | 
| 63 for filter_list in filter_lists: | 58 for body, url, version in filter_lists: | 
| 64 metadata["sources"].append({ k.lower(): filter_list["header"][k] | 59 metadata["sources"].append({"url": url, "version": version}) | 
| 65 for k in ["url", "Version"]}) | |
| 66 return metadata | 60 return metadata | 
| 61 | |
| 62 def pipe_in(process, filter_lists): | |
| 63 try: | |
| 64 for body, _, _ in filter_lists: | |
| 65 print >>process.stdin, body | |
| 66 finally: | |
| 67 process.stdin.close() | |
| 67 | 68 | 
| 68 def write_block_list(filter_lists, path, expires): | 69 def write_block_list(filter_lists, path, expires): | 
| 69 block_list = generate_metadata(filter_lists, expires) | 70 block_list = generate_metadata(filter_lists, expires) | 
| 70 process = subprocess.Popen(("node", "abp2blocklist.js"), | 71 process = subprocess.Popen(("node", "abp2blocklist.js"), | 
| 71 cwd=config["abp2blocklist_path"], | 72 cwd=config["abp2blocklist_path"], | 
| 72 stdin=subprocess.PIPE, stdout=subprocess.PIPE) | 73 stdin=subprocess.PIPE, stdout=subprocess.PIPE) | 
| 73 try: | 74 threading.Thread(target=pipe_in, args=(process, filter_lists)).start() | 
| 74 for filter_list in filter_lists: | 75 block_list["rules"] = json.load(process.stdout) | 
| 75 print >>process.stdin, filter_list["body"] | 76 if process.wait(): | 
| 76 block_list["rules"] = json.loads(process.communicate()[0]) | |
| 
 
Sebastian Noack
2015/11/30 15:49:19
Yes, this works as abp2blocklist (currently) reads
 
kzar
2015/11/30 17:06:00
I've not done much threaded programming in Python
 
 | |
| 77 finally: | |
| 78 process.stdin.close() | |
| 79 process.wait() | |
| 80 if process.returncode: | |
| 81 raise Exception("abp2blocklist returned %s" % process.returncode) | 77 raise Exception("abp2blocklist returned %s" % process.returncode) | 
| 78 | |
| 82 with open(path, "wb") as destination_file: | 79 with open(path, "wb") as destination_file: | 
| 83 json.dump(block_list, destination_file, | 80 json.dump(block_list, destination_file, indent=2, separators=(",", ": ")) | 
| 84 sort_keys=True, indent=2, separators=(",", ": ")) | |
| 85 | 81 | 
| 86 if __name__ == "__main__": | 82 if __name__ == "__main__": | 
| 87 update_abp2blocklist() | 83 update_abp2blocklist() | 
| 88 | 84 | 
| 89 easylist = download_filter_list(config["easylist_url"]) | 85 easylist = download_filter_list(config["easylist_url"]) | 
| 90 exceptionrules = download_filter_list(config["exceptionrules_url"]) | 86 exceptionrules = download_filter_list(config["exceptionrules_url"]) | 
| 91 | 87 | 
| 92 write_block_list([easylist], | 88 write_block_list([easylist], | 
| 93 config["easylist_content_blocker_path"], | 89 config["easylist_content_blocker_path"], | 
| 94 config["easylist_content_blocker_expires"]) | 90 config["easylist_content_blocker_expires"]) | 
| 95 write_block_list([easylist, exceptionrules], | 91 write_block_list([easylist, exceptionrules], | 
| 96 config["combined_content_blocker_path"], | 92 config["combined_content_blocker_path"], | 
| 97 config["combined_content_blocker_expires"]) | 93 config["combined_content_blocker_expires"]) | 
| LEFT | RIGHT |