64 lines
2 KiB
Python
64 lines
2 KiB
Python
#!/usr/bin/env python
|
|
__encoding__ = "utf-8"
|
|
|
|
|
|
class Trigger(object):
|
|
"""
|
|
This class provides a filter to test a string against.
|
|
"""
|
|
def __init__(self, goodlistpath="goodlist", badlistpath="badlist"):
|
|
self.goodlistpath = goodlistpath
|
|
with open(goodlistpath, "r+") as f:
|
|
self.goodlist = [s.strip() for s in f.readlines()]
|
|
self.goodlist = self.strings_ok(self.goodlist)
|
|
|
|
self.badlistpath = badlistpath
|
|
with open(badlistpath, "r+") as f:
|
|
self.badlist = [s.strip() for s in f.readlines()]
|
|
self.badlist = self.strings_ok(self.badlist)
|
|
|
|
def strings_ok(self, filterlist):
|
|
"""
|
|
Checks if an empty line is in a list and removes it.
|
|
:param filterlist: a good- or badlist.
|
|
:return: filterlist: a corrected list.
|
|
"""
|
|
for word in filterlist:
|
|
if word == "\n":
|
|
del word
|
|
return filterlist
|
|
|
|
def check_string(self, string):
|
|
"""
|
|
checks if a string contains no bad words and at least 1 good word.
|
|
|
|
:param string: A given string. Tweet or Toot, cleaned from html.
|
|
:return: If the string passes the test
|
|
"""
|
|
string = unicode.decode(string)
|
|
for triggerword in self.goodlist:
|
|
if string.lower().find(triggerword) != -1:
|
|
for triggerword in self.badlist:
|
|
if string.lower().find(triggerword) != -1:
|
|
return False
|
|
return True
|
|
return False
|
|
|
|
def update_list(self, word, whichlist):
|
|
"""
|
|
|
|
:param word: a string of a word which should be appended to one of the lists
|
|
:param boolean whichlist: 0 : goodlist, 1 : badlist.
|
|
"""
|
|
if whichlist:
|
|
path = self.goodlistpath
|
|
else:
|
|
path = self.badlistpath
|
|
with open(path, "w") as f:
|
|
old = f.readlines()
|
|
old.append(word)
|
|
f.writelines(old)
|
|
|
|
if __name__ == "__main__":
|
|
pass
|