-
Notifications
You must be signed in to change notification settings - Fork 76
/
whatsapp_assistant_bot.py
339 lines (247 loc) · 11.8 KB
/
whatsapp_assistant_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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from selenium.common.exceptions import NoSuchElementException, StaleElementReferenceException, ElementNotVisibleException
import time
import os
from urllib.parse import quote_plus
driver = webdriver.Chrome() # Needs to be global for all classes to use
driver.get('https://web.whatsapp.com')
MESSAGE_BUBBLE_CLASS_NAME = "_13mgZ" # !!! Update this if the bot stops working, means Whatsapp have changed
# the class attribute names
class BotConfig(object):
last_msg = False
last_msg_id = False
command_history = []
last_command = ""
def __init__(self, contact_list):
self.contacts = contact_list
def get_contacts(self):
return self.contacts
def set_last_chat_message(self, msg, time_id):
self.last_msg = msg
self.last_msg_id = time_id
def get_last_chat_message(self):
return self.last_msg, self.last_msg_id
def set_last_command(self, command):
self.last_command = command
self.command_history.append(command)
def get_command_history(self):
return "You have asked the following commands: " + ", ".join(self.command_history)
class Bot(object):
def __init__(self):
self.config = BotConfig(contact_list=whatsapp_contacts())
self.init_bot()
def init_bot(self):
while True:
self.poll_chat()
def poll_chat(self):
last_msg = chat_history()
if last_msg:
time_id = time.strftime('%H-%M-%S', time.gmtime())
last_saved_msg, last_saved_msg_id = self.config.get_last_chat_message()
if last_saved_msg != last_msg and last_saved_msg_id != time_id:
self.config.set_last_chat_message(msg=last_msg, time_id=time_id)
print(self.config.get_last_chat_message())
is_action = is_action_message(last_msg=last_msg)
if is_action:
self.config.set_last_command(last_msg)
self.bot_options(action=last_msg)
def bot_options(self, action):
simple_menu = { # function requires no extra arguments
"hi": say_hi,
"help": self._help_commands,
"all_commands": self.config.get_command_history,
}
simple_menu_keys = simple_menu.keys()
try:
command_args = action[1:].split(" ", 1)
print("Command args: {cmd}".format(cmd=command_args))
if len(command_args) == 1 and command_args[0] in simple_menu_keys:
send_message(simple_menu[command_args[0]]())
else:
# Complex bot commands
if command_args[0] == "google":
query = "".join(command_args[1])
g_search = GoogleResults(search=True)
g_search.search(qry=query)
g_search.execute_search()
elif command_args[0] == "images":
query = "".join(command_args[1])
g_images = GoogleResults(images=True)
g_images.images(qry=query)
g_images.execute_search()
elif command_args[0] == "maps": # Anything to do with maps create the object
maps_parser = GoogleMapsParser(command=command_args[0])
origin, destination, mode = maps_parser.extract_vars()
if origin and destination and mode:
g_maps = GoogleResults(maps=True)
g_maps.maps(origin=origin, destination=destination, travel_mode=mode)
g_maps.execute_search()
else:
send_message("Google Maps search has been cancelled")
except KeyError as e:
print("Key Error Exception: {err}".format(err=str(e)))
send_message("Wrong command. Send me /help to see a list of valid commands")
@staticmethod
def _help_commands():
print("Asking for help")
return "List of commands:\n" \
"/hi (bot says hi), " \
"/all_commands (ist of all commands), " \
"/google {query} (searches google and returns a screenshot of the query), " \
"/images {query} (searches google immages and returns a screenshot of the query), " \
"/maps (searches google maps and returns a screenshot of the query)"
class GoogleMapsParser(object):
# Add different options for google maps, with location sent, point of interest, etc...
def __init__(self, command): # TODO - command is used if i need more types of command arguments
self.command_type = command
send_message("Answer the next 3 questions (you can exit anytime by sending me /stop)")
def extract_vars(self):
send_message("Set your origin: /origin {from where}")
origin = self._get_origin()
if origin:
send_message("Set your destination: /dest {to where}")
destination = self._get_destination()
if destination:
send_message("Choose one mode of transport: /mode {driving or transit or walking or bicycling}")
mode = self._get_travel_mode()
return origin.strip(), destination.strip(), mode.strip()
return False, False, False
def _get_origin(self):
return self._poll_maps_vars(var_type="origin")
def _get_destination(self):
return self._poll_maps_vars(var_type="dest")
def _get_travel_mode(self):
return self._poll_maps_vars(var_type="mode")
def _poll_maps_vars(self, var_type):
while True:
maps_details = chat_history() # add /exit also?
if "/stop" in maps_details:
return False
if "/{type}".format(type=var_type) in maps_details:
return self._clean_result(res=maps_details, t=var_type)
@staticmethod
def _clean_result(res, t):
return res.split("/{type}".format(type=t))[1]
class GoogleResults(object): # Make this parent
search_url = False
attachment_type = 'img' # Set this to 'cam' or 'doc' for other attachment type
def __init__(self, **kwargs):
# Normal Search
self.google_search = kwargs.get('search', False)
# Image Search
self.google_images = kwargs.get('images', False)
# Google Maps Directions
self.google_maps = kwargs.get('maps', False)
def search(self, qry):
send_message("Searching Google for: '{qry}'".format(qry=qry))
if self.google_search:
self.search_url = 'https://www.google.com/search?hl=en&q={qry}'.format(qry=qry)
def images(self, qry):
send_message("Searching Google Images for: '{qry}'".format(qry=qry))
if self.google_images:
self.search_url = 'https://www.google.com/search?hl=en&q={qry}&tbm=isch'.format(qry=qry)
def maps(self, origin, destination, **kwargs):
# https://developers.google.com/maps/documentation/urls/guide
# TODO - add streetview and the other maps options
if self.google_maps:
t_mode = self._check_travel_mode(kwargs.get('travel_mode')) # default to driving
send_message(
"Searching Google Maps: '{ori} to {dest} by {mode}'".format(ori=origin, dest=destination, mode=t_mode))
print(origin, destination, t_mode)
if origin and destination and t_mode:
self.search_url = self._build_maps_url(ori=origin, dest=destination, t_mode=t_mode)
@staticmethod
def _build_maps_url(ori, dest, t_mode):
base_url = "https://www.google.com/maps/dir/?api=1&"
custom_url = base_url + "origin={ori}&destination={dest}&travelmode={t_mode}".format(
ori=quote_plus(ori),
dest=quote_plus(dest),
t_mode=quote_plus(t_mode)
)
return custom_url
@staticmethod
def _check_travel_mode(t_mode):
available_modes = ["driving", "walking", "transit", "bicycling"]
if t_mode not in available_modes:
return "driving"
return t_mode
def execute_search(self):
# TODO - add a delay as kwargs between opening page & screenshot
if self.search_url:
driver.execute_script("window.open('','_blank');")
driver.switch_to.window(driver.window_handles[1])
driver.get(self.search_url) # search image
time.sleep(1.5)
driver.save_screenshot('screenshot.png') # take screenshot
driver.close() # close window
driver.switch_to.window(driver.window_handles[0]) # switch back to whatsapp
self._attach_and_send_screenshot()
else:
print("Search URL has not been set, follow the class setup\n")
def _attach_and_send_screenshot(self):
# TODO - ElementNotVisibleException - this shouldn't happen but when would it
# local variables for x_path elements on browser
attach_xpath = '//*[@id="main"]/header/div[3]/div/div[2]/div'
send_file_xpath = '/html/body/div[1]/div/div/div[2]/div[2]/span/div/span/div/div/div[2]/span[2]/div/div/span'
if self.attachment_type == "img":
attach_type_xpath = '/html/body/div[1]/div/div/div[4]/div/header/div[3]/div/div[2]/span/div/div/ul/li[1]/button/input'
elif self.attachment_type == "cam":
attach_type_xpath = '//*[@id="main"]/header/div[3]/div/div[2]/span/div/div/ul/li[2]/button'
elif self.attachment_type == "doc":
attach_type_xpath = '//*[@id="main"]/header/div[3]/div/div[2]/span/div/div/ul/li[3]/input'
try:
# open attach menu
attach_btn = driver.find_element_by_xpath(attach_xpath)
attach_btn.click()
# Find attach file btn and send screenshot path to input
time.sleep(1)
attach_img_btn = driver.find_element_by_xpath(attach_type_xpath)
# TODO - might need to click on transportation mode if url doesn't work
attach_img_btn.send_keys(os.getcwd() + "/screenshot.png") # get current script path + img_path
time.sleep(1)
send_btn = driver.find_element_by_xpath(send_file_xpath)
send_btn.click()
except (NoSuchElementException, ElementNotVisibleException) as e:
print(str(e))
send_message((str(e)))
send_message("Bot failed to retrieve search content, try again...")
"""
Simple Commands
"""
def say_hi():
print("Saying hi")
return "Bot says hi"
"""
Helper Methods
"""
def chat_history():
text_bubbles = driver.find_elements_by_class_name("message-out") # message-in = receiver, message-out = sender
tmp_queue = []
try:
for bubble in text_bubbles:
msg_texts = bubble.find_elements_by_class_name("copyable-text")
for msg in msg_texts:
tmp_queue.append(msg.text.lower())
if len(tmp_queue) > 0:
return tmp_queue[-1] # Send last message in list
except StaleElementReferenceException as e:
print(str(e))
# Something went wrong, either keep polling until it comes back or figure out alternative
return False
def is_action_message(last_msg):
if last_msg[0] == "/":
return True
time.sleep(0.5)
return False
def send_message(msg):
whatsapp_msg = driver.find_element_by_class_name(MESSAGE_BUBBLE_CLASS_NAME)
whatsapp_msg.send_keys(msg)
whatsapp_msg.send_keys(Keys.ENTER)
# Get all the contacts
def whatsapp_contacts():
contacts = driver.find_elements_by_class_name("chat-title")
return [contact.text for contact in contacts]
if __name__ == "__main__":
print("Bot is active, scan your QR code from your phone's WhatsApp")
Bot()