-
Notifications
You must be signed in to change notification settings - Fork 0
/
testbot.py
279 lines (216 loc) · 8.78 KB
/
testbot.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
from selenium import webdriver
from selenium.webdriver.support.wait import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By
from selenium.webdriver.chrome.options import Options
import time
import re
import os.path
from os import path
import sqlite3
import schedule
from datetime import datetime
from selenium.webdriver.common.action_chains import ActionChains
import credential
opt = webdriver.ChromeOptions()
opt.add_argument("--disable-infobars")
opt.add_argument("--disable-extensions")
# opt.add_argument("--start-maximized")
# Pass the argument 1 to allow and 2 to block
opt.add_experimental_option("prefs", { \
"profile.default_content_setting_values.media_stream_mic": 1,
"profile.default_content_setting_values.media_stream_camera": 1,
"profile.default_content_setting_values.geolocation": 1,
"profile.default_content_setting_values.notifications": 1
})
# driver = webdriver.Chrome(chrome_options=opt,service_log_path='NUL')
driver = None
URL = "https://teams.microsoft.com"
#put your teams credentials here
CREDS = {'email' : credential.EMAIL,'passwd':credential.PASSWORD}
def login():
global driver
#login required
print("logging in")
emailField = WebDriverWait(driver, 100).until(EC.visibility_of_element_located((By.ID, "i0116")))
# emailField = driver.find_element_by_xpath('//*[@id="i0116"]')
emailField.click()
emailField.send_keys(CREDS['email'])
driver.find_element_by_xpath('//*[@id="idSIButton9"]').click() #Next button
time.sleep(5)
passwordField = WebDriverWait(driver, 100).until(EC.visibility_of_element_located((By.ID, "i0118")))
# passwordField = driver.find_element_by_xpath('//*[@id="i0118"]')
passwordField.click()
passwordField.send_keys(CREDS['passwd'])
driver.find_element_by_xpath('//*[@id="idSIButton9"]').click() #Sign in button
time.sleep(5)
WebDriverWait(driver, 100).until(EC.visibility_of_element_located((By.ID, "idSIButton9"))).click()
# driver.find_element_by_xpath('//*[@id="idSIButton9"]').click() #remember login
time.sleep(5)
# return driver
def createDB():
conn = sqlite3.connect('timetable.db')
c=conn.cursor()
# Create table
c.execute('''CREATE TABLE timetable(class text, start_time text, end_time text, day text)''')
conn.commit()
conn.close()
print("Created timetable Database")
def validate_input(regex,inp):
if not re.match(regex,inp):
return False
return True
def validate_day(inp):
days = ["monday","tuesday","wednesday","thursday","friday","saturday","sunday"]
if inp.lower() in days:
return True
else:
return False
def add_timetable():
if(not(path.exists("timetable.db"))):
createDB()
op = int(input("1. Add class\n2. Done adding\nEnter option : "))
while(op==1):
name = input("Enter class name : ")
start_time = input("Enter class start time in 24 hour format: (HH:MM) ")
while not(validate_input("\d\d:\d\d",start_time)):
print("Invalid input, try again")
start_time = input("Enter class start time in 24 hour format: (HH:MM) ")
end_time = input("Enter class end time in 24 hour format: (HH:MM) ")
while not(validate_input("\d\d:\d\d",end_time)):
print("Invalid input, try again")
end_time = input("Enter class end time in 24 hour format: (HH:MM) ")
day = input("Enter day (Monday/Tuesday/Wednesday..etc) : ")
while not(validate_day(day.strip())):
print("Invalid input, try again")
end_time = input("Enter day (Monday/Tuesday/Wednesday..etc) : ")
conn = sqlite3.connect('timetable.db')
c=conn.cursor()
# Insert a row of data
c.execute("INSERT INTO timetable VALUES ('%s','%s','%s','%s')"%(name,start_time,end_time,day))
conn.commit()
conn.close()
print("Class added to database\n")
op = int(input("1. Add class\n2. Done adding\nEnter option : "))
def view_timetable():
conn = sqlite3.connect('timetable.db')
c=conn.cursor()
for row in c.execute('SELECT * FROM timetable'):
print(row)
conn.close()
def joinclass(class_name,start_time,end_time):
global driver
try_time = int(start_time.split(":")[1]) + 15
try_time = start_time.split(":")[0] + ":" + str(try_time)
classes_available=None
time.sleep(2)
WebDriverWait(driver,120).until(lambda driver: len(driver.find_elements_by_class_name("team-card"))>=12)
time.sleep(1)
# calendar = driver.find_elements_by_xpath("//*[@id='app-bar-ef56c0de-36fc-4ef8-b417-3d82ba9d073c']")
# calendar[0].click()
# time.sleep(3)
classes_available = driver.find_elements_by_class_name("team-card")
print(len(classes_available))
# classes_available[0].click()
time.sleep(2)
for i in classes_available:
print(i.get_attribute('data-tid'))
if(i.get_attribute('data-tid')==class_name):
print("JOINING CLASS ",class_name)
# i.click()
# break
time.sleep(100)
try:
joinbtn = driver.find_element_by_xpath("//button[@title='Join call with video']")
joinbtn.click()
except:
#join button not found
#refresh every minute until found
k = 1
while(k<=15):
print("Join button not found, trying again")
time.sleep(60)
driver.refresh()
joinclass(class_name,start_time,end_time)
# schedule.every(1).minutes.do(joinclass,class_name,start_time,end_time)
k+=1
print("Seems like there is no class today.")
discord_webhook.send_msg(class_name=class_name,status="noclass",start_time=start_time,end_time=end_time)
# time.sleep(400)
time.sleep(5)
webcam = driver.find_element_by_xpath('//*[@id="page-content-wrapper"]/div[1]/div/calling-pre-join-screen/div/div/div[2]/div[1]/div[2]/div/div/section/div[2]/toggle-button[1]/div/button/span[1]')
if(webcam.get_attribute('title')=='Turn camera off'):
webcam.click()
time.sleep(1)
microphone = driver.find_element_by_xpath('//*[@id="preJoinAudioButton"]/div/button/span[1]')
if(microphone.get_attribute('title')=='Mute microphone'):
microphone.click()
time.sleep(1)
joinnowbtn = driver.find_element_by_xpath('//*[@id="page-content-wrapper"]/div[1]/div/calling-pre-join-screen/div/div/div[2]/div[1]/div[2]/div/div/section/div[1]/div/div/button')
joinnowbtn.click()
discord_webhook.send_msg(class_name=class_name,status="joined",start_time=start_time,end_time=end_time)
#now schedule leaving class
tmp = "%H:%M"
class_running_time = datetime.strptime(end_time,tmp) - datetime.strptime(start_time,tmp)
time.sleep(class_running_time.seconds)
driver.find_element_by_class_name("ts-calling-screen").click()
driver.find_element_by_xpath('//*[@id="teams-app-bar"]/ul/li[3]').click() #come back to homepage
time.sleep(1)
driver.find_element_by_xpath('//*[@id="hangup-button"]').click()
print("Class left")
discord_webhook.send_msg(class_name=class_name,status="left",start_time=start_time,end_time=end_time)
def start_browser():
global driver
driver = webdriver.Chrome(chrome_options=opt,service_log_path='NUL')
driver.get(URL)
WebDriverWait(driver,10000).until(EC.visibility_of_element_located((By.TAG_NAME,'body')))
if("login.microsoftonline.com" in driver.current_url):
login()
def sched():
conn = sqlite3.connect('timetable.db')
c=conn.cursor()
for row in c.execute('SELECT * FROM timetable'):
#schedule all classes
name = row[0]
start_time = row[1]
end_time = row[2]
day = row[3]
if day.lower()=="monday":
schedule.every().monday.at(start_time).do(joinclass,name,start_time,end_time)
print("Scheduled class '%s' on %s at %s"%(name,day,start_time))
if day.lower()=="tuesday":
schedule.every().tuesday.at(start_time).do(joinclass,name,start_time,end_time)
print("Scheduled class '%s' on %s at %s"%(name,day,start_time))
if day.lower()=="wednesday":
schedule.every().wednesday.at(start_time).do(joinclass,name,start_time,end_time)
print("Scheduled class '%s' on %s at %s"%(name,day,start_time))
if day.lower()=="thursday":
schedule.every().thursday.at(start_time).do(joinclass,name,start_time,end_time)
print("Scheduled class '%s' on %s at %s"%(name,day,start_time))
if day.lower()=="friday":
schedule.every().friday.at(start_time).do(joinclass,name,start_time,end_time)
print("Scheduled class '%s' on %s at %s"%(name,day,start_time))
if day.lower()=="saturday":
schedule.every().saturday.at(start_time).do(joinclass,name,start_time,end_time)
print("Scheduled class '%s' on %s at %s"%(name,day,start_time))
if day.lower()=="sunday":
schedule.every().sunday.at(start_time).do(joinclass,name,start_time,end_time)
print("Scheduled class '%s' on %s at %s"%(name,day,start_time))
#Start browser
start_browser()
while True:
# Checks whether a scheduled task
# is pending to run or not
schedule.run_pending()
time.sleep(1)
if __name__=="__main__":
# # joinclass("Maths","15:13","15:15","sunday")
op = int(input(("1. Modify Timetable\n2. View Timetable\n3. Start Bot\nEnter option : ")))
if(op==1):
add_timetable()
if(op==2):
view_timetable()
if(op==3):
sched()
# start_browser()
# joinclass("team-TE09_Sem2_414454_DSBDA_2020-21_RBM","10:12","12:45")