AdGuardHome/Filters/parser.py

67 lines
2.0 KiB
Python
Raw Normal View History

2016-11-18 13:09:22 +00:00
import urllib2, datetime, mmap, re
## FUNCTION ##
def is_domain_rule(rule):
point_idx = rule.find('.')
if point_idx == -1:
return False
question_idx = rule.find('?', point_idx);
slash_idx = rule.find('/', point_idx)
if slash_idx == -1 and question_idx == -1:
return True
replace_idx = slash_idx if slash_idx != -1 else question_idx
tail = rule[replace_idx:]
return len(tail) <= 2
2016-07-06 15:02:14 +01:00
def date_now():
return datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
def get_content(url):
r = urllib2.urlopen(url)
return r.read().split('\n')
def save_comment(comment, f):
idx = comment.find('%timestamp%')
if idx != -1:
comment = comment[:idx] + date_now() + '\n'
f.writelines(comment)
2016-11-18 13:09:22 +00:00
def is_rule_not_exclusion(rule, exclusions):
for line in exclusions:
if line in rule and line != '':
return False
return True
def write_rule(rule, f):
if is_domain_rule(rule):
f.writelines(rule + '\n')
def save_url_rule(line, exclusions, f):
2016-07-07 08:28:04 +01:00
url = line.replace('url', '').strip()
2016-11-18 13:09:22 +00:00
for rule in get_content(url):
if is_rule_not_exclusion(rule, exclusions):
if rule.find('$') != -1:
idx = rule.find('$');
write_rule(rule[:idx], f)
else:
write_rule(rule, f)
2016-07-06 15:02:14 +01:00
2016-07-07 08:28:04 +01:00
def save_file_rule(line, f):
file_name = line.replace('file', '').strip()
with open(file_name, 'r') as rf:
for rule in rf:
2016-07-27 11:22:40 +01:00
f.writelines(rule)
2016-07-07 08:28:04 +01:00
2016-11-18 13:09:22 +00:00
## MAIN ##
exclusions = open('exclusions.txt', 'r').read().split('\n')
2016-07-06 15:02:14 +01:00
with open('filter.template', 'r') as tmpl:
2016-11-18 13:09:22 +00:00
with open('filter.txt', 'w') as f:
2016-07-06 15:02:14 +01:00
for line in tmpl:
if line.startswith('!'):
save_comment(line, f)
2016-07-07 08:28:04 +01:00
if line.startswith('url'):
2016-11-18 13:09:22 +00:00
save_url_rule(line, exclusions, f)
2016-07-07 08:28:04 +01:00
if line.startswith('file'):
2016-11-18 13:09:22 +00:00
save_file_rule(line, f)
2016-07-06 15:02:14 +01:00