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

Side by Side Diff: sitescripts/subscriptions/bin/updateMalwareDomainsList.py

Issue 29338216: Issue 3774 - Support multiple mirrors for the Malware Domains List (Closed)
Patch Set: Addressed review comments 2 Created March 15, 2016, 10:51 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 # 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-2016 Eyeo GmbH 4 # Copyright (C) 2006-2016 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, subprocess, codecs, urllib, zipfile, tempfile, shutil 18 import os, subprocess, codecs, urllib2, zipfile, tempfile, shutil, sys
19 import ConfigParser
19 from StringIO import StringIO 20 from StringIO import StringIO
20 from sitescripts.utils import get_config 21 from sitescripts.utils import get_config
21 22
23
24 FILTERLIST_HEADER = '''[Adblock Plus 1.1]
25 ! This is a list of malware domains generated from malwaredomains.com data.
26 ! Homepage: http://malwaredomains.com/?page_id=2
27 ! Last modified: %timestamp%
28 ! Expires: 1d
29 !'''
30
31 DEFAULT_MIRRORS_LIST = [
32 'http://mirror3.malwaredomains.com',
33 'http://mirror1.malwaredomains.com',
34 'http://mirror2.malwaredomains.com'
35 ]
36
37 MALWAREDOMAINS_PATH = '/files/justdomains.zip'
38
39
40 def try_mirror(mirror):
41 try:
42 response = urllib2.urlopen(mirror + MALWAREDOMAINS_PATH)
43 return response.read()
44 except urllib2.HTTPError:
45 return None
46
47
22 if __name__ == '__main__': 48 if __name__ == '__main__':
23 repository = get_config().get('subscriptionDownloads', 'malwaredomains_reposit ory') 49 config = get_config()
50 repository = config.get('subscriptionDownloads', 'malwaredomains_repository')
51 try:
52 mirrors = config.get('subscriptionDownloads', 'malwaredomains_mirrors')
53 mirrors_list = mirrors.split()
54 except ConfigParser.NoOptionError:
55 mirrors_list = DEFAULT_MIRRORS_LIST
56
24 tempdir = tempfile.mkdtemp(prefix='malwaredomains') 57 tempdir = tempfile.mkdtemp(prefix='malwaredomains')
25 try: 58 try:
26 subprocess.check_call(['hg', '-q', 'clone', '-U', repository, tempdir]) 59 subprocess.check_call(['hg', '-q', 'clone', '-U', repository, tempdir])
27 subprocess.check_call(['hg', '-q', 'up', '-R', tempdir, '-r', 'default']) 60 subprocess.check_call(['hg', '-q', 'up', '-R', tempdir, '-r', 'default'])
28 61
29 path = os.path.join(tempdir, 'malwaredomains_full.txt') 62 path = os.path.join(tempdir, 'malwaredomains_full.txt')
30 file = codecs.open(path, 'wb', encoding='utf-8') 63 file = codecs.open(path, 'wb', encoding='utf-8')
31 64
32 print >>file, '''[Adblock Plus 1.1] 65 print >>file, FILTERLIST_HEADER
33 ! This is a list of malware domains generated from malwaredomains.com data.
34 ! Homepage: http://malwaredomains.com/?page_id=2
35 ! Last modified: %timestamp%
36 ! Expires: 1d
37 !'''
38 66
39 data = urllib.urlopen('http://mirror3.malwaredomains.com/files/justdomains.z ip').read() 67 for mirror in mirrors_list:
68 data = try_mirror(mirror)
69 if data is not None:
70 break
71 else:
72 sys.exit('Unable to fetch malware domains list.')
73
40 zip = zipfile.ZipFile(StringIO(data), 'r') 74 zip = zipfile.ZipFile(StringIO(data), 'r')
41 info = zip.infolist()[0] 75 info = zip.infolist()[0]
42 for line in str(zip.read(info.filename)).splitlines(): 76 for line in str(zip.read(info.filename)).splitlines():
43 domain = line.strip() 77 domain = line.strip()
44 if not domain: 78 if not domain:
45 continue 79 continue
46 80
47 print >>file, '||%s^' % domain.decode('idna') 81 print >>file, '||%s^' % domain.decode('idna')
48 file.close(); 82 file.close();
49 83
50 if subprocess.check_output(['hg', 'stat', '-R', tempdir]) != '': 84 if subprocess.check_output(['hg', 'stat', '-R', tempdir]) != '':
51 subprocess.check_call(['hg', '-q', 'commit', '-R', tempdir, '-A', '-u', 'h gbot', '-m', 'Updated malwaredomains.com data']) 85 subprocess.check_call(['hg', '-q', 'commit', '-R', tempdir, '-A', '-u', 'h gbot', '-m', 'Updated malwaredomains.com data'])
52 subprocess.check_call(['hg', '-q', 'push', '-R', tempdir]) 86 subprocess.check_call(['hg', '-q', 'push', '-R', tempdir])
53 finally: 87 finally:
54 shutil.rmtree(tempdir, ignore_errors=True) 88 shutil.rmtree(tempdir, ignore_errors=True)
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