-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbot.py
89 lines (65 loc) · 3.01 KB
/
bot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
import random
import json
import time
from modules.markov import ConversationalChain
import fbchat
def random_chance(precent: int) -> bool:
return random.randint(1, 100) <= precent
class RobotczykClient(fbchat.Client):
def __init__(self, chain: ConversationalChain, *args, **kwargs):
self.chain = chain
self.mentions = ["@kornelia krawiec", "@kornelia"] # TODO: fetch that information on the client's initialization
super().__init__(*args, **kwargs)
# helper functions
def is_mentioned(self, message: fbchat.Message) -> bool:
if message.replied_to is not None and message.replied_to.author == self.uid:
return True
content = message.text.lower()
for mention in self.mentions:
if mention in content:
return True
return False
def clean_message(self, content: str) -> str:
clean_content = content.lower()
for mention in self.mentions:
if not mention in clean_content:
continue
clean_content = clean_content.replace(mention, "")
return clean_content
# sender functions
def send_dots(self, thread_id: str, thread_type: fbchat.ThreadType, reply_to_id: int) -> int:
dots = "." * random.randint(2, 10)
message = fbchat.Message(text=dots, reply_to_id=reply_to_id)
return self.send(message, thread_id=thread_id, thread_type=thread_type)
# event listeners
def onMessage(self, message_object: fbchat.Message, thread_id: str, thread_type: fbchat.ThreadType, **kwargs):
if message_object.author == self.uid:
return
if not self.is_mentioned(message_object):
return
content = self.clean_message(message_object.text)
content = self.chain.generate(content)
if random_chance(10): # chance for sending dots
self.send_dots(thread_id, thread_type, reply_to_id=message_object.uid)
response = fbchat.Message(text=content)
time.sleep(1.0)
else:
response = fbchat.Message(text=content, reply_to_id=message_object.uid)
if len(content.split()) > 6 or not random_chance(10): # chance for sending a message for a word
return self.send(response, thread_id=thread_id, thread_type=thread_type)
for index, word in enumerate(content.split()):
if index == 0:
response = fbchat.Message(text=word, reply_to_id=message_object.uid)
else:
response = fbchat.Message(text=word)
self.send(response, thread_id=thread_id, thread_type=thread_type)
time.sleep(0.5)
if __name__ == "__main__":
with open("credentials.json", "r", encoding="utf-8") as file:
credentials = json.load(file)
chain = ConversationalChain(dataset_path="dataset.json")
client = RobotczykClient(chain, **credentials)
try:
client.listen()
except KeyboardInterrupt:
client.logout()