forked from indymedia/epicyon
flake8 format
parent
654c5104d5
commit
a9ee0fc1b2
20
filters.py
20
filters.py
|
@ -8,10 +8,12 @@ __status__="Production"
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
|
||||||
def addFilter(baseDir: str, nickname: str, domain: str, words: str) -> bool:
|
def addFilter(baseDir: str, nickname: str, domain: str, words: str) -> bool:
|
||||||
"""Adds a filter for particular words within the content of a incoming posts
|
"""Adds a filter for particular words within the content of a incoming posts
|
||||||
"""
|
"""
|
||||||
filtersFilename=baseDir+'/accounts/'+nickname+'@'+domain+'/filters.txt'
|
filtersFilename = baseDir + '/accounts/' + \
|
||||||
|
nickname + '@' + domain + '/filters.txt'
|
||||||
if os.path.isfile(filtersFilename):
|
if os.path.isfile(filtersFilename):
|
||||||
if words in open(filtersFilename).read():
|
if words in open(filtersFilename).read():
|
||||||
return False
|
return False
|
||||||
|
@ -20,11 +22,13 @@ def addFilter(baseDir: str,nickname: str,domain: str,words: str) -> bool:
|
||||||
filtersFile.close()
|
filtersFile.close()
|
||||||
return True
|
return True
|
||||||
|
|
||||||
def removeFilter(baseDir: str,nickname: str,domain: str, \
|
|
||||||
|
def removeFilter(baseDir: str, nickname: str, domain: str,
|
||||||
words: str) -> bool:
|
words: str) -> bool:
|
||||||
"""Removes a word filter
|
"""Removes a word filter
|
||||||
"""
|
"""
|
||||||
filtersFilename=baseDir+'/accounts/'+nickname+'@'+domain+'/filters.txt'
|
filtersFilename = baseDir + '/accounts/' + \
|
||||||
|
nickname + '@' + domain + '/filters.txt'
|
||||||
if os.path.isfile(filtersFilename):
|
if os.path.isfile(filtersFilename):
|
||||||
if words in open(filtersFilename).read():
|
if words in open(filtersFilename).read():
|
||||||
with open(filtersFilename, 'r') as fp:
|
with open(filtersFilename, 'r') as fp:
|
||||||
|
@ -38,6 +42,7 @@ def removeFilter(baseDir: str,nickname: str,domain: str, \
|
||||||
return True
|
return True
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
||||||
def isTwitterPost(content: str) -> bool:
|
def isTwitterPost(content: str) -> bool:
|
||||||
"""Returns true if the given post content is a retweet or twitter crosspost
|
"""Returns true if the given post content is a retweet or twitter crosspost
|
||||||
"""
|
"""
|
||||||
|
@ -47,6 +52,7 @@ def isTwitterPost(content: str) -> bool:
|
||||||
return True
|
return True
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
||||||
def isFiltered(baseDir: str, nickname: str, domain: str, content: str) -> bool:
|
def isFiltered(baseDir: str, nickname: str, domain: str, content: str) -> bool:
|
||||||
"""Should the given content be filtered out?
|
"""Should the given content be filtered out?
|
||||||
This is a simple type of filter which just matches words, not a regex
|
This is a simple type of filter which just matches words, not a regex
|
||||||
|
@ -54,12 +60,14 @@ def isFiltered(baseDir: str,nickname: str,domain: str,content: str) -> bool:
|
||||||
words must be present although not necessarily adjacent
|
words must be present although not necessarily adjacent
|
||||||
"""
|
"""
|
||||||
# optionally remove retweets
|
# optionally remove retweets
|
||||||
removeTwitter=baseDir+'/accounts/'+nickname+'@'+domain+'/.removeTwitter'
|
removeTwitter = baseDir + '/accounts/' + \
|
||||||
|
nickname + '@' + domain + '/.removeTwitter'
|
||||||
if os.path.isfile(removeTwitter):
|
if os.path.isfile(removeTwitter):
|
||||||
if isTwitterPost(content):
|
if isTwitterPost(content):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
filtersFilename=baseDir+'/accounts/'+nickname+'@'+domain+'/filters.txt'
|
filtersFilename = baseDir + '/accounts/' + \
|
||||||
|
nickname + '@' + domain + '/filters.txt'
|
||||||
if os.path.isfile(filtersFilename):
|
if os.path.isfile(filtersFilename):
|
||||||
with open(filtersFilename, 'r') as fp:
|
with open(filtersFilename, 'r') as fp:
|
||||||
for line in fp:
|
for line in fp:
|
||||||
|
@ -70,7 +78,7 @@ def isFiltered(baseDir: str,nickname: str,domain: str,content: str) -> bool:
|
||||||
else:
|
else:
|
||||||
filterWords = filterStr.replace('"', '').split('+')
|
filterWords = filterStr.replace('"', '').split('+')
|
||||||
for word in filterWords:
|
for word in filterWords:
|
||||||
if not word in content:
|
if word not in content:
|
||||||
return False
|
return False
|
||||||
return True
|
return True
|
||||||
return False
|
return False
|
||||||
|
|
Loading…
Reference in New Issue