-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocess2.py
207 lines (179 loc) · 7.68 KB
/
process2.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
import argparse
import json
import os
import datetime
import requests
from bs4 import BeautifulSoup as Soup
import logging
from dotmap import DotMap
from sqlalchemy import exists
from sqlalchemy.orm import Session
from progress.bar import Bar
from db import engine, MuncherSchedule, MuncherConfig, UrlScans, Cookies, ExtractedCookies, CookieInfo, MuncherStats
from utils import LOG_FIXTURE, check_directory_exists
from selenium import webdriver
# Remove annoying warning message when accessing https://cookiepedia.co.uk because of their broken
# certificate.
import urllib3
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
DEFAULT_LOG_FOLDER = 'cookies_logs'
DEFAULT_OUTPUT_FOLDER = 'cookies_output'
OUTPUT_CSV_FILE_HEADERS = ['datetime', 'url', 'cookies', 'about', 'purpose']
DRIVER_FOLDER = os.path.join('.', 'drivers')
DRIVER_NAMES = {
'windows': 'windows_phantom.exe',
'linux_64': 'linux_64_phantom',
'linux_32': 'linux_32_phantom',
'mac': 'mac_phantom'
}
SOUP_PARSER = 'html.parser'
COOKIEPEDIA_PATH_FORMAT = 'https://cookiepedia.co.uk/cookies/{}'
FOUND_COOKIE_H2 = 'About this cookie:'
CACHE = dict()
session = Session(engine)
def create_parser():
"""
Creates the parser with all of the expected arguments.
:return: The configured parser instance.
"""
parser = argparse.ArgumentParser(description="A Cookie collection tool. ")
parser.add_argument('-i', '--id', dest='id', required=True, type=int,
help="The id of the MuncherSchedule.")
parser.add_argument('--os', dest='os', type=str, default='linux_64',
choices=['linux_64', 'linux_32', 'mac', 'windows'],
help="Choose which operation system the script will run "
"(this is relevant for the headless browser driver).")
return parser
def generate_file_name(folder, schedule_id, extension):
"""
Creates the file name from the folder and domains that the crawler will crawl.
the file name will be: [datetime] [net locations of domains given].[fixture]
:param extension: The extension of the file.
:param schedule_id: The path to the input file.
:param folder: The folder where the file we be saved
:return: The full path to the file.
"""
return os.path.join(folder,
"cookies_schedule_{}_{}.{}".format(schedule_id, str(datetime.datetime.now()).replace(':', '.'),
extension))
def format_arguments(args, os_system, schedule_id):
"""
Formats the arguments given to the script.
:param args: The args given to the script.
:return: The formatted args.
"""
if args.silent:
args.log_file = os.devnull
else:
args.log_file = generate_file_name(args.logs_folder, schedule_id, LOG_FIXTURE)
check_directory_exists(args.logs_folder)
driver_path = os.path.join(DRIVER_FOLDER, DRIVER_NAMES[os_system])
return args, driver_path
def scrap_cookie(cookie, url):
"""
Scrape the https://cookiepedia.co.uk website for information on the specific cookie
:param cookie: The json cookie retrieved using phantomJs.
:param url: The url from which the cookie was loaded.
:return: The id of the item created in the db for the cookie.
"""
about = "There is not yet any general information about this cookie based on its name only. If you have any information about this cookie, please get in touch."
purpose = "Unknown"
page_content = requests.get(COOKIEPEDIA_PATH_FORMAT.format(cookie['name']), verify=False).content
soup = Soup(page_content, SOUP_PARSER)
if soup.find('h2').text == FOUND_COOKIE_H2:
paragraphs = soup.find('div', attrs={'id': 'content-left'}).find_all('p')
about = paragraphs[0].text
purpose = paragraphs[1].find('strong').text
info = CookieInfo(cookie_name=cookie['name'], purpose=purpose, about=about,
datetime=datetime.datetime.now())
session.add(info)
session.commit()
return info.id
def handle_cookie(cookie, url):
"""
Returns information about the specific cookie as found in https://cookiepedia.co.uk either from cache or from
the scarping the site.
:param UrlScans url: The url item in the db.
:param cookie: The json cookie retrieved using phantomJs.
:return:about and purpose information about the cookie.
"""
if session.query(exists().where(CookieInfo.cookie_name == cookie['name'])).scalar():
cookie_info_id = session.query(CookieInfo).filter(CookieInfo.cookie_name == cookie['name']).scalar().id
else:
cookie_info_id = scrap_cookie(cookie, url)
Cookie = Cookies(cookie_info_id=cookie_info_id, cookie_source=0, cookie_attr=json.dumps(cookie),
datetime=datetime.datetime.now())
session.add(Cookie)
session.commit()
return Cookie.id
def handle_url(url, driver, stats):
"""
Retrieves the cookies from the url.
:param UrlScans url: The url item in the db.
:param driver: The headless browser driver
:return:
"""
driver.get(url.url)
for cookie in driver.get_cookies():
cookie_id = handle_cookie(cookie, url.url)
stats.cookies_extracted_fp = stats.cookies_extracted_fp + 1
session.add(ExtractedCookies(url_id=url.id, cookie_id=cookie_id))
def handle_input(rows, stats, driver):
"""
Handle all of the rows that were retrieved from the db.
:param rows: The rows retrieved from the db.
:param schedule_id: the id of the muncher schedule.
:param driver: The phantomJS driver for extracting the cookies.
"""
total = len(rows)
bar = Bar('Cookie Extracting', max=total)
print("Starting cookie extraction on {} urls...".format(total))
bar.start()
for row in rows:
handle_url(row, driver, stats)
bar.next()
bar.finish()
def run(stats, args, driver_path):
"""
Read the urls from the urls table with the given schedule id and find the cookies for each url .
:param schedule_id: The scheduled task id.
:param args: The args from the config table.
:param driver_path: the path to the driver.
"""
logging.basicConfig(filename=args.log_file, level=logging.ERROR)
driver = webdriver.PhantomJS(executable_path=driver_path, service_log_path=args.log_file)
rows = session.query(UrlScans).filter(UrlScans.schedule_id == stats.schedule_id).all()
stats.cookies_extracted_fp = 0
stats.cookies_log_path = args.log_file
session.commit()
handle_input(rows, stats, driver)
driver.quit()
def get_stats(schedule_id):
if session.query(exists().where(MuncherStats.schedule_id == schedule_id)).scalar():
stats = session.query(MuncherStats).filter(MuncherStats.schedule_id == schedule_id).scalar()
session.add(stats)
return stats
else:
print("There is No muncher stats created! please create one and run process1 first!".format(schedule_id))
return None
def main():
parser = create_parser()
parser_args = parser.parse_args()
schedule = session.query(MuncherSchedule).get(parser_args.id)
config = session.query(MuncherConfig).get(schedule.config_id)
stats = get_stats(parser_args.id)
args, driver_path = format_arguments(DotMap(json.loads(config.json_params)), parser_args.os, parser_args.id)
try:
start = datetime.datetime.now()
run(stats, args, driver_path)
stats.cookie_last_result = 'finished'
stats.cookie_scan_duration = (datetime.datetime.now() - start).seconds
session.commit()
session.close()
except Exception as e:
logging.error(e)
stats.cookie_last_result = 'aborted'
session.commit()
session.close()
if __name__ == '__main__':
main()