-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathupdate_DB_crawler.py
839 lines (613 loc) · 31 KB
/
update_DB_crawler.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
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.support import expected_conditions as EC
from selenium.common.exceptions import NoSuchElementException,StaleElementReferenceException,ElementNotVisibleException,WebDriverException,TimeoutException,ElementNotInteractableException
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.common.action_chains import ActionChains
from email.mime.base import MIMEBase
from mimetypes import guess_type
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from email.encoders import encode_base64
from six.moves import html_parser
from tqdm import tqdm
from pathlib import Path
from string import Template
from datetime import datetime, timedelta
import pandas as pd
import traceback,errno,time,webbrowser,html,string,re,json,os,getpass,sys,csv,time,xlsxwriter,smtplib,shutil
chrome_options = Options()
chrome_options.add_argument('headless')
chrome_options.add_argument('window-size=1920x1080')
chrome_options.add_argument("--log-level=3") # fatal
chrome_options.add_argument('--disable-gpu')
driver_loc = './chromedriver'
COURSETABLE_EXCEL = 'course table.xlsx'
FOLDERDIR = 'HTMLs'
DB_ALLDB = 'all_dis2.json'
DB_NEWPOST = 'newpost.json'
DB_NEWCOMMENT = 'newcomment.json'
EDXACCOUNT = 'account info.json'
RE_ATTEMPT = 3
def mkdir_p(path, mode=0o777):
"""
Create subdirectory hierarchy given in the paths argument.
"""
try:
os.makedirs(path, mode)
except OSError as exc:
if exc.errno == errno.EEXIST and os.path.isdir(path):
pass
else:
raise
def clean_filename(s, minimal_change=False):
"""
Sanitize a string to be used as a filename.
If minimal_change is set to true, then we only strip the bare minimum of
characters that are problematic for filesystems (namely, ':', '/' and
'\x00', '\n').
"""
# First, deal with URL encoded strings
h = html_parser.HTMLParser()
s = html.unescape(s)
# strip paren portions which contain trailing time length (...)
s = (
s.replace(':', '-')
.replace('/', '-')
.replace('\x00', '-')
.replace('\n', '')
)
if minimal_change:
return s
s = s.replace('(', '').replace(')', '')
s = s.rstrip('.') # Remove excess of trailing dots
s = s.strip().replace(' ', '_')
valid_chars = '-_.()%s%s' % (string.ascii_letters, string.digits)
return ''.join(c for c in s if c in valid_chars)
def course_selection(course_list):
chosen_no = int(input('enter number of courses (type 9999 for crawling every course)'))
chosen_idx =[]
if chosen_no == 9999:
return course_list
print ('list of courses in dashboard')
df = pd.DataFrame(course_list).sort_values('name')
for course,idx in zip(df.name,df.index):
print (str(idx).ljust(5) +' : ' + course)
array_c = [i for i in range(0,len(course_list)) ]
while True:
if chosen_no == 0:
break
chosen_course_id = int(input('enter course number '))
if chosen_course_id in array_c:
chosen_idx.append(chosen_course_id)
print (df.name[chosen_course_id] , ' : ', df.url[chosen_course_id])
chosen_no-=1
else:
print ('wrong course id. Try again!!!!!!!!')
return df.loc[chosen_idx]
def selected_course_from_excel(course_list):
df = pd.DataFrame(course_list)
df_coursetable = pd.read_excel(COURSETABLE_EXCEL)
chosen_idx = list()
for url in df_coursetable['course url']:
index_obj = df[df['url']==url].index
print (df.name[index_obj[0]] , ' : ', df.url[index_obj[0]])
chosen_idx.append(index_obj[0])
return(df.loc[chosen_idx],df_coursetable['directory'])
def find_role(string):
set_role = ['Community TA','Staff']
for role in set_role:
if re.search(role,string):
return(role)
return('n/a')
def savetextfile(filename,content):
with open(filename,'a',encoding='utf-8') as f:
f.write(content)
def readtextfile(filename):
with open(filename,'r',encoding='utf-8') as f:
all_response = f.read()
os.remove(filename)
return('{{\n {} \n}}'.format(all_response[1:-1]))
def write_log(filename,data):
with open(filename,"a+",newline='',encoding='utf-8') as f:
write_obj = csv.writer(f)
write_obj.writerow(data)
def selected_course_2_csv(selected_course):
filename = time.strftime("%Y%m%d-%H%M%S")+ "_selected_file.csv"
write_log(filename,["Course title","URL"])
for tmp_name,tmp_url in zip(selected_course.name,selected_course.url):
write_log(filename,[ tmp_name, tmp_url ])
class DB_json2excel():
def __init__(self,excelfilename):
self.book = xlsxwriter.Workbook(excelfilename)
def generate_sheet(self,sheetname):
self.sheet = self.book.add_worksheet(sheetname) ## generate excel sheet file with name
self.row_idx = 2
def close_excel(self):
self.book.close()
def input_df(self,df):
if not df.empty:
for post_idx in df:
self.post2excelsheet(df[post_idx])
def post2excelsheet(self,single_post):
self.sheet.set_column(0,0,20,self.book.add_format({'bold': True,'text_wrap': True}))
self.sheet.write_string(self.row_idx+0,0,'category')
self.sheet.write_string(self.row_idx+1,0,'post title')
self.sheet.write_string(self.row_idx+2,0,'post body')
self.sheet.write_string(self.row_idx+3,0,'post user')
self.sheet.write_string(self.row_idx+4,0,'post timestamp')
post_user = single_post['post_user']
if single_post['post_user_role'] != 'n/a':
post_user = '{} ({})'.format(single_post['post_user'],single_post['post_user_role'])
self.sheet.set_column(1,1,80,self.book.add_format({'text_wrap': True}))
self.sheet.write_string(self.row_idx+0,1,' --> '.join(single_post['post_category']))
self.sheet.write_string(self.row_idx+1,1,single_post['title'])
self.sheet.write_string(self.row_idx+2,1,single_post['post_content'])
self.sheet.write_string(self.row_idx+3,1,post_user)
self.sheet.write_string(self.row_idx+4,1,re.sub('[A-Z]',' ',single_post['post_timestamp']).strip())
tmp_res_row_idx = self.row_idx+5
for res_idx,(res_body_list,res_timestamp_list,res_user_list,res_role_list) in enumerate(zip(single_post['response'].values(),single_post['response_timestamp'].values(),single_post['response_user'].values(),single_post['response_role'].values())):
self.sheet.write_string(tmp_res_row_idx+1,0,'response {} body block'.format(res_idx+1))
self.sheet.write_string(tmp_res_row_idx+2,0,'response {} users block'.format(res_idx+1))
self.sheet.write_string(tmp_res_row_idx+3,0,'response {} timestamp'.format(res_idx+1))
for comment_idx,(res_body,res_timestamp,res_user,res_role) in enumerate(zip(res_body_list,res_timestamp_list,res_user_list,res_role_list)):
if res_role != 'n/a':
res_user = '{} ({})'.format(res_user,res_role)
self.sheet.set_column(comment_idx+1,comment_idx+1,80,self.book.add_format({'text_wrap': True}))
self.sheet.write_string(tmp_res_row_idx+1,comment_idx+1,res_body)
self.sheet.write_string(tmp_res_row_idx+2,comment_idx+1,res_user)
self.sheet.write_string(tmp_res_row_idx+3,comment_idx+1,re.sub('[A-Z]',' ',res_timestamp).strip())
tmp_res_row_idx+=4
self.sheet.write_string(tmp_res_row_idx+2,0,'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',self.book.add_format({'bold': True,'text_wrap': False}))
self.row_idx = tmp_res_row_idx+5
class email_session():
def __init__(self):
with open(EDXACCOUNT,'r') as f:
json_f = json.loads(f.read())
self.myaddress = json_f['host_address']
self.pwd = json_f['host_pwd']
self.smtphost = json_f['host_smtp']
self.port = json_f['host_port']
with open(json_f['email_body_template'], 'r', encoding='utf-8') as template_file:
self.message_template = Template(template_file.read())
with open(json_f['email_body_error_template'], 'r', encoding='utf-8') as template_file:
self.error_message_template = Template(template_file.read())
def connect_to_email(self):
self.s = smtplib.SMTP(host=self.smtphost, port=self.port)
self.s.starttls()
self.s.login(self.myaddress, self.pwd)
def terminate_session(self):
self.s.quit()
def email_send(self,email):
#print(emails)
# send the message via the server set up earlier.
self.s.sendmail(self.myaddress, email, self.msg.as_string() )
#s.send_message(text)
del self.msg
def generate_email_and_send(self,new_post_df,new_comment_df,recepients,coursename,coursedir,attach_file_name):
if new_post_df.empty and new_comment_df.empty:
attachment_boolean = False
NO_new_post = str(0)
NO_new_comment = str(0)
else:
attachment_boolean = True
NO_new_post = str(len(new_post_df))
NO_new_comment = str(len(new_comment_df))
for recepient_bundle in recepients:
recepient = recepient_bundle.split(',')
recepient_name = recepient[0]
recepient_address = recepient[1]
recepient_flag = recepient[2]
self.msg = MIMEMultipart() # create a message
# add in the actual person name to the message template
message = self.message_template.substitute(PERSON_NAME=recepient_name.title(),
DATE1=(datetime.now() - timedelta(days=7)).strftime("%Y%m%d"),
DATE2=datetime.now().strftime("%Y%m%d"),
COURSENAME=coursename,
NEWPOST=NO_new_post,
NEWCOMMENT=NO_new_comment)
#message = message_template
# Prints out the message body for our sake
#print(message)
# setup the parameters of the message
self.msg['From'] = self.myaddress
self.msg['To'] = recepient_address
self.msg['Subject']= "Discussion board Notification: {}".format(coursename)
# add in the message body
self.msg.attach(MIMEText(message,'plain'))
self.msg.content_type = 'text/plain'
if attachment_boolean:
## add attached file
attach_file = open(Path(FOLDERDIR,coursedir,attach_file_name), 'rb') # Open the file as binary mode
mimetype, encoding = guess_type(attach_file_name)
mimetype = mimetype.split('/', 1)
p = MIMEBase(mimetype[0],mimetype[1],Name=attach_file_name)
# To change the payload into encoded form
p.set_payload((attach_file).read())
attach_file.close()
# encode into base64
encode_base64(p)
#p.add_header('Content-Decomposition', 'attachment; Name=course table.xlsx')
# attach the instance 'p' to instance 'msg'
self.msg.attach(p)
self.email_send(recepient_address)
else:
if recepient_flag == 'yes':
self.email_send(recepient_address)
time.sleep(2)
def generate_email_and_send_failed_crawling(self,recepients,coursename,error_detail):
for recepient_bundle in recepients:
recepient = recepient_bundle.split(',')
recepient_name = recepient[0]
recepient_address = recepient[1]
recepient_flag = recepient[2]
self.msg = MIMEMultipart() # create a message
# add in the actual person name to the message template
message = self.error_message_template.substitute(PERSON_NAME=recepient_name.title(),
DATE1=(datetime.now() - timedelta(days=7)).strftime("%Y%m%d"),
DATE2=datetime.now().strftime("%Y%m%d"),
COURSENAME=coursename,
ERRORCONTENT=error_detail)
#message = message_template
# Prints out the message body for our sake
#print(message)
# setup the parameters of the message
self.msg['From'] = self.myaddress
self.msg['To'] = recepient_address
self.msg['Subject']= "Discussion board Notification: [UNEXPECTED ERROR FOUND] : {}".format(coursename)
# add in the message body
self.msg.attach(MIMEText(message,'plain'))
self.msg.content_type = 'text/plain'
self.email_send(recepient_address)
time.sleep(2)
class DB_crawler():
def __init__(self):
#self.usr = input('username(email): ')
#self.pwd = getpass.getpass(prompt='password: ',stream=sys.stderr)
with open(EDXACCOUNT,'r') as f:
json_f = json.loads(f.read())
self.usr = json_f['edXaccount']
self.pwd = json_f['edXpassword']
self.driver = webdriver.Chrome(executable_path=driver_loc,options=chrome_options)
def dummy_return_driver(self):
return(self.driver)
def log_in(self):
sign_in_url="https://courses.edx.org/#?next=/dashboard"
self.driver.get(sign_in_url)
time.sleep(2)
self.driver.find_element_by_id("login-email").send_keys(self.usr)
self.driver.find_element_by_id("login-password").send_keys(self.pwd)
#self.driver.find_element_by_id("login-remember").click()
self.driver.find_element_by_class_name("login-button").click()
def load_all_thread(self):
time.sleep(2)
while(1):
time.sleep(2)
try:
loadmore = self.driver.find_element_by_class_name('forum-nav-load-more').click()
except StaleElementReferenceException:
continue
except (NoSuchElementException):
#w_flag-=1
#if w_flag <0:
break
return self.driver.find_elements_by_class_name("forum-nav-thread")
def load_thread(self):
try:
self.driver.find_element_by_class_name('forum-nav-load-more').click()
WebDriverWait(self.driver, 20).until(EC.element_to_be_clickable((By.CLASS_NAME, 'forum-nav-load-more')))
time.sleep(2)
except (NoSuchElementException,TimeoutException):
return(0)
return(1)
def load_comment(self,cur_obj):
load_comment_btns = cur_obj.find_elements_by_xpath('//*[@class="btn-link action-show-comments"]')
for btn in load_comment_btns:
try:
btn.click()
except (ElementNotVisibleException,ElementNotInteractableException):
continue
def load_response_more(self):
try:
self.driver.find_element_by_class_name('load-response-button').click()
WebDriverWait(self.driver, 5
).until(EC.presence_of_element_located((By.CLASS_NAME, 'loading-animation')))
WebDriverWait(self.driver, 180
).until_not(EC.presence_of_element_located((By.CLASS_NAME, 'loading-animation')))
except (TimeoutException,NoSuchElementException):
return(0)
return(1)
def load_init_response(self):
try:
WebDriverWait(self.driver, 1).until(EC.presence_of_element_located((By.CLASS_NAME, 'loading-animation')))
WebDriverWait(self.driver, 30).until_not(EC.presence_of_element_located((By.CLASS_NAME, 'loading-animation')))
except (TimeoutException,NoSuchElementException):
pass
def handling_click_cat(self,webdriver_obj):
while(1):
try:
webdriver_obj.click()
break
except WebDriverException:
time.sleep(2)
except Exception as e:
print(e)
def list_dash_course(self):
WebDriverWait(self.driver, 20).until(EC.presence_of_element_located((By.CLASS_NAME, "course-container")))
print('successfully logged in')
time.sleep(2)
courses = self.driver.find_elements_by_class_name("course-container")
course_list = []
print('extracted ',len(courses) , ' courses name and link in dashboard')
for course in courses:
c_name =course.find_element_by_class_name('course-title').text
c_url = course.find_element_by_css_selector('a').get_attribute('href')
course_list.append({'name':c_name, 'url':c_url})
return(course_list)
def update_old_DB(self,DB_file):
with open(DB_file,'r',encoding='utf-8') as f:
self.old_DB_json = json.loads(f.read())
def update_old_post(self,post_content,ref_post_user,ref_post_timestamp):
df = pd.DataFrame(self.old_DB_json)
index_obj = df.T[(df.T['post_user']==ref_post_user) & (df.T['post_timestamp']==ref_post_timestamp)].index
self.old_DB_json[index_obj[0]] = post_content
return(index_obj[0])
def access_discussion(self,course_name, url):
self.current_thread = len(self.old_DB_json)
self.coursename = course_name
self.courseurl = url
self.driver.get(self.courseurl)
WebDriverWait(self.driver, 20).until(EC.presence_of_element_located((By.CLASS_NAME, "navbar-nav")))
self.driver.find_element_by_xpath('//*[@class="nav-item " or @class="nav-item active"]//*[contains(text(), "Discussion")]').click()
WebDriverWait(self.driver, 20).until(EC.presence_of_element_located((By.CLASS_NAME, "discussion-body")))
while(True):
self.discuss_cat_list = self.driver.find_elements_by_xpath('//*[@class="forum-nav-browse-menu-item"]//*[@class="forum-nav-browse-title"]')
self.cat_name_list = [cat.text.split(',\n') for cat in self.discuss_cat_list]
if [''] not in self.cat_name_list:
break
print('number of categories before filter: ',len(self.discuss_cat_list))
outer_layer_cat = [i[0] for i in self.cat_name_list if len(i) > 1]
#filter_out_list = []
for idx,cat_name in enumerate(self.cat_name_list):
if len(cat_name) == 1 and cat_name[0] in outer_layer_cat:
#filter_out_list.append(cat_name_list[idx])
del self.discuss_cat_list[idx]
del self.cat_name_list[idx]
print('number of categories after filter: ', len(self.cat_name_list))
print('list of crawled categories')
print(*self.cat_name_list,sep='\n')
time.sleep(3)
for cat_idx,(cat,cat_name) in enumerate(zip(self.discuss_cat_list,self.cat_name_list)):
self.access_cat_new_activity_filter(cat_idx,cat,cat_name)
print('{} total threads were successfully crawled'.format(self.current_thread+1))
if not os.path.exists('tmp_dis'):
savetextfile('tmp_dis','')
if not os.path.exists('tmp_new_rescom'):
savetextfile('tmp_new_rescom','')
return(json.loads(readtextfile('tmp_dis')),json.loads(readtextfile('tmp_new_rescom')),self.old_DB_json)
def access_cat_new_activity_filter(self,cat_idx,cat,cat_name):
#WebDriverWait(self.driver, 5).until(EC.presence_of_element_located((By.XPATH,'//span[contains(text(),"{}")]'.format(cat.text.split(',\n')[0])))).click()
cat.click()
WebDriverWait(self.driver, 10).until(EC.presence_of_element_located((By.XPATH,'//div[@class="forum-nav-browse-menu-wrapper" and @style="display: none;"]')))
time.sleep(5)
self.driver.find_element_by_xpath('//select[@class="forum-nav-filter-main-control"]/option[@value="unread"]').click()
time.sleep(3)
#load_thread_no = 0
#tmp_current_thread = 0
loop_flag = 1
print('-------------start crawling post in category {}/{}: {}-----------------'.format(cat_idx+1,len(self.cat_name_list),cat_name))
thread_list = self.load_all_thread()
#while(loop_flag):
#thread_list = self.driver.find_elements_by_class_name("forum-nav-thread")
#thread_list = load_thread()
if not thread_list:
print('no thread in this category')
#print(' running in the {}th loop: {}th to {}th thread indx'.format(load_thread_no,tmp_current_thread+1,len(thread_list)))
idx = 0
for idx in range(len(thread_list)):
WebDriverWait(self.driver, 20).until(EC.presence_of_element_located((By.CLASS_NAME, "forum-nav-thread-list-wrapper")))
try:
thread_list[idx].find_element_by_class_name('forum-nav-thread-unread-comments-count')
self.old_thread = True
except NoSuchElementException:
self.old_thread = False
self.handling_click_cat(thread_list[idx])
self.crawl_single_post(cat_name)
if not self.old_thread:
self.current_thread+=1
#tmp_current_thread+=1
#loop_flag = self.load_thread()
#time.sleep(2)
#load_thread_no+=1
if idx > 0:
idx+=1
print(' all {} threads in {} category were successfully crawled\n'.format(idx,cat_name))
self.driver.find_element_by_xpath('//*[@class="btn-link all-topics"]').click()
WebDriverWait(self.driver, 10).until(EC.presence_of_element_located((By.XPATH,'//div[@class="forum-nav-browse-menu-wrapper" and @style="display: block;"]')))
def crawl_single_post(self,cat_name):
post_obj = self.driver.find_element_by_class_name("discussion-post")
try:
post_user = self.driver.find_element_by_xpath('//*[@class="posted-details"]/a[@class="username"]').text
nameroletypedate = self.driver.find_element_by_xpath('//*[@class="posted-details"]').text
post_user_role = find_role(nameroletypedate)
except:
post_user = 'anonymous'
post_user_role = 'n/a'
post_timestamp = self.driver.find_element_by_xpath('//*[@class="post-header-content"]/p[@class="posted-details"]/span[@class="timeago"]').get_attribute('title')
post_type = self.driver.find_element_by_xpath('//*[@class="posted-details"]').text.split(' ')[0]
post_title = post_obj.find_element_by_class_name("post-title").text
post_body = post_obj.find_element_by_class_name("post-body").text
self.load_init_response()
self.comment_idx = 0
loop_flag = 1
current_respond = 0
while(loop_flag):
res_obj_list = self.driver.find_elements_by_xpath('//*[@class="responses js-marked-answer-list" or @class="responses js-response-list"]/li')
for indic,val in enumerate(res_obj_list[current_respond:]):
content_dict = dict()
usr_dict = dict()
date_dict = dict()
role_dict = dict()
self.load_comment(val)
content,usr,date,role = self.find_response_data(val)
content_dict.update({"responses_{:02d}".format(current_respond) : content})
usr_dict.update({"responses_{:02d}".format(current_respond):usr})
date_dict.update({"responses_{:02d}".format(current_respond):date})
role_dict.update({"responses_{:02d}".format(current_respond):role})
savetextfile('tmp_content',json.dumps(content_dict,sort_keys=True, indent=4, separators=(',', ': '))[1:-2]+',')
savetextfile('tmp_usr',json.dumps(usr_dict,sort_keys=True, indent=4, separators=(',', ': '))[1:-2]+',')
savetextfile('tmp_date',json.dumps(date_dict,sort_keys=True, indent=4, separators=(',', ': '))[1:-2]+',')
savetextfile('tmp_role',json.dumps(role_dict,sort_keys=True, indent=4, separators=(',', ': '))[1:-2]+',')
current_respond+=1
loop_flag = self.load_response_more()
if current_respond == 0:
post_content = {'post_category':cat_name,
'post_timestamp':post_timestamp,
'type':post_type,
'title':post_title,
'post_content':post_body,
'post_user':post_user,
'post_user_role':post_user_role,
'response':{},
'response_user':{},
'response_timestamp':{},
'response_role':{},
'No_response':current_respond,
'No_comment':self.comment_idx}
else:
post_content = {'post_category':cat_name,
'post_timestamp':post_timestamp,
'type':post_type,
'title':post_title,
'post_content':post_body,
'post_user':post_user,
'post_user_role':post_user_role,
'response':json.loads(readtextfile('tmp_content')),
'response_user':json.loads(readtextfile('tmp_usr')),
'response_timestamp':json.loads(readtextfile('tmp_date')),
'response_role':json.loads(readtextfile('tmp_role')),
'No_response':current_respond,
'No_comment':self.comment_idx}
if self.old_thread:
old_index = self.update_old_post(post_content,post_user,post_timestamp)
single_post = {old_index:post_content}
savetextfile('tmp_new_rescom',json.dumps(single_post,sort_keys=True, indent=4, separators=(',', ': '))[1:-2]+',')
else:
single_post = {'{:04d}'.format(self.current_thread):post_content}
savetextfile('tmp_dis',json.dumps(single_post,sort_keys=True, indent=4, separators=(',', ': '))[1:-2]+',')
def find_response_data(self,response_obj):
total_res_content = []
total_res_usr = []
total_res_date = []
total_res_role = []
content_list = response_obj.find_elements_by_class_name("response-body")
user_list = response_obj.find_elements_by_class_name("username")
timestamp_list = response_obj.find_elements_by_class_name('timeago')
response_role = find_role(response_obj.find_element_by_class_name("response-header-content").text)
comments_res_obj = response_obj.find_elements_by_class_name("posted-details")
# respond data
total_res_content.append(content_list[0].text)
total_res_usr.append(user_list[0].text)
total_res_date.append(timestamp_list[0].get_attribute('title'))
total_res_role.append(response_role)
# comment data if available
if len(user_list) > 0:
for content,user,timestamp,cmt_nameroletypedate in zip(content_list[1:],user_list[1:],timestamp_list[1:],comments_res_obj[1:]):
total_res_content.append(content.text)
total_res_usr.append(user.text)
total_res_date.append(timestamp.get_attribute('title'))
total_res_role.append(find_role(cmt_nameroletypedate.text))
self.comment_idx+=1
return (total_res_content,total_res_usr,total_res_date,total_res_role)
def close_driver(self):
self.driver.quit()
def db_crawling_by_course(crawler_obj,course_list,course_folder_list):
success_course_url = []
failed_course_url = []
failed_course_log = []
for coursename,courseurl,course_folder in zip(course_list.name,course_list.url,course_folder_list):
print('************************************* accessing {} course *************************************'.format(coursename))
for reattemp in range(0,RE_ATTEMPT):
try:
crawler_obj.update_old_DB(Path(FOLDERDIR,course_folder,DB_ALLDB))
tmp_newcontent,tmp_newcomment,updated_old_DB = crawler_obj.access_discussion(coursename,courseurl)
updated_old_DB.update(tmp_newcontent)
newcontent_json = json.dumps(tmp_newcontent, sort_keys=True, indent=4, separators=(',', ': '))
newcomment_json = json.dumps(tmp_newcomment, sort_keys=True, indent=4, separators=(',', ': '))
dict2json = json.dumps(updated_old_DB, sort_keys=True, indent=4, separators=(',', ': '))
#mkdir_p(Path('HTMLs',clean_filename(coursename)))
with open(Path(FOLDERDIR,course_folder,DB_ALLDB),'w',encoding='utf-8') as f:
f.write(dict2json)
with open(Path(FOLDERDIR,course_folder,DB_NEWPOST),'w',encoding='utf-8') as f:
f.write(newcontent_json)
with open(Path(FOLDERDIR,course_folder,DB_NEWCOMMENT),'w',encoding='utf-8') as f:
f.write(newcomment_json)
print('************************************* create excel file report for new activities *************************************')
excelfilename = '{}--DB_Notification--{}.xlsx'.format(time.strftime("%Y%m%d"),course_folder)
data2excel = DB_json2excel(Path(FOLDERDIR,course_folder,excelfilename))
data2excel.generate_sheet('newpostresponse')
data2excel.input_df(pd.DataFrame(tmp_newcontent))
data2excel.generate_sheet('newcomment')
data2excel.input_df(pd.DataFrame(tmp_newcomment))
data2excel.close_excel()
write_log(filename,[coursename,courseurl, 'success' ])
success_course_url.append(courseurl)
break
except Exception as e:
if reattemp == RE_ATTEMPT-1:
write_log(filename,[ coursename,courseurl, 'error {}'.format(traceback.format_exc())])
print(traceback.format_exc())
failed_course_url.append(courseurl)
failed_course_log.append(traceback.format_exc())
print('************************************************************************************************************************')
crawler_obj.close_driver()
return(success_course_url,failed_course_url,failed_course_log)
def mkdir_p(path, mode=0o777):
"""
Create subdirectory hierarchy given in the paths argument.
"""
try:
os.makedirs(path, mode)
except OSError as exc:
if exc.errno == errno.EEXIST and os.path.isdir(path):
pass
else:
raise
def success_email_send(df_coursetable,email_s):
for coursename,coursedir,recepients_ssv in zip(df_coursetable['course name'],df_coursetable['directory'],df_coursetable['recepients (semicolon-separated)']):
excelfile = ''.join([file for file in os.listdir(Path(FOLDERDIR,coursedir)) if file.endswith('xlsx') and file.startswith(time.strftime("%Y%m%d"))])
new_post = pd.read_json(Path(FOLDERDIR,coursedir,'newpost.json')).T
new_comment = pd.read_json(Path(FOLDERDIR,coursedir,'newcomment.json')).T
recepients = [i.strip() for i in recepients_ssv.split(';') if i]
email_s.generate_email_and_send(new_post,new_comment,recepients,coursename,coursedir,excelfile)
mkdir_p(Path(FOLDERDIR,coursedir,'excel_logfile'))
shutil.move(Path(FOLDERDIR,coursedir,excelfile), Path(FOLDERDIR,coursedir,'excel_logfile',excelfile))
def failed_email_send(df_coursetable,email_s,failed_course_log):
for coursename,coursedir,recepients_ssv,failed_log in zip(df_coursetable['course name'],df_coursetable['directory'],df_coursetable['recepients (semicolon-separated)'],failed_course_log):
recepients = [i.strip() for i in recepients_ssv.split(';') if i]
email_s.generate_email_and_send_failed_crawling(recepients,coursename,failed_log)
if __name__== "__main__":
crawler_obj = DB_crawler()
crawler_obj.log_in()
course_list,course_folder_list = selected_course_from_excel(crawler_obj.list_dash_course())
filename = time.strftime("%Y%m%d-%H%M%S")+ "_logfile_update_discussion.csv"
write_log(filename,["Course title","URL","status"])
if Path('tmp_content').is_file():os.remove('tmp_content')
if Path('tmp_usr').is_file():os.remove('tmp_usr')
if Path('tmp_date').is_file():os.remove('tmp_date')
if Path('tmp_role').is_file():os.remove('tmp_role')
if Path('tmp_dis').is_file():os.remove('tmp_dis')
if Path('tmp_new_rescom').is_file():os.remove('tmp_new_rescom')
[success_course_url,failed_course_url,failed_course_log] = db_crawling_by_course(crawler_obj,course_list,course_folder_list)
df_coursetable = pd.read_excel(COURSETABLE_EXCEL)
email_s = email_session()
email_s.connect_to_email()
if success_course_url:
success_course_idx = [df_coursetable.index[df_coursetable['course url'] == idx ].tolist()[0] for idx in success_course_url]
success_email_send(df_coursetable.loc[ success_course_idx , : ],email_s)
if failed_course_url:
failed_course_idx = [df_coursetable.index[df_coursetable['course url'] == idx ].tolist()[0] for idx in failed_course_url]
failed_email_send(df_coursetable.loc[ failed_course_idx , : ],email_s,failed_course_log)
email_s.terminate_session()
#df_coursetable = pd.read_excel(COURSETABLE_EXCEL)