Simplify export (#88)

* Simplify exports

* Create file output in current working directory
This commit is contained in:
Marian Steinbach 2018-11-20 20:00:47 +01:00 committed by GitHub
parent 38481236ca
commit c03ff21a9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 118 deletions

View File

@ -29,7 +29,7 @@ spider:
export:
docker run --rm -ti \
-v $(PWD)/export-json:/out \
-w $(PWD)/export-json \
-v $(PWD)/secrets:/secrets \
-v $(PWD)/export-siteicons:/icons \
$(IMAGE) \

1
cli.py
View File

@ -75,7 +75,6 @@ if __name__ == "__main__":
elif args.command == 'export':
import export
export.export_screenshots(datastore_client)
export.export_results(datastore_client, args.kind)
else:

View File

@ -11,8 +11,6 @@ import os
import requests
SITEICONS_PATH = "/icons"
def export_results(client, entity_kind):
"""
Export of the main results data
@ -31,121 +29,8 @@ def export_results(client, entity_kind):
'checks': entity.get('checks'),
'rating': entity.get('rating'),
'score': entity.get('score'),
'icons': [],
})
# load icons, reformat icons details
icons_downloaded = set()
for index in range(len(out)):
assert "checks" in out[index]
assert "html_head" in out[index]["checks"]
# collect icons urls
icons = set()
for url in out[index]['checks']['html_head']:
assert 'link_icon' in out[index]['checks']['html_head'][url]
if out[index]['checks']['html_head'][url]['link_icon'] is not None:
iconurl = out[index]['checks']['html_head'][url]['link_icon']
if iconurl.startswith("data:"):
continue
if iconurl in icons_downloaded:
continue
icons.add(iconurl)
out[index]["icons"] = {}
for iconurl in list(icons):
logging.debug("Dowloading icon %s", iconurl)
icons_downloaded.add(iconurl)
filename = download_icon(iconurl)
if filename:
out[index]["icons"][url] = filename
output_filename = "/out/spider_result.json"
output_filename = "spider_result.json"
with open(output_filename, 'w', encoding="utf8") as jsonfile:
json.dump(out, jsonfile, indent=2, sort_keys=True, ensure_ascii=False)
# compact version
output_filename = "/out/spider_result_compact.json"
for i in range(len(out)):
out[i]['cms'] = list(out[i]['checks']['generator'].values())
del out[i]['checks']
with open(output_filename, 'w', encoding="utf8") as jsonfile:
json.dump(out, jsonfile, indent=2, sort_keys=True, ensure_ascii=False)
def export_screenshots(client):
"""
Export of screenshot meta data
"""
out = {}
query = client.query(kind='webscreenshot')
for item in query.fetch():
if 'screenshot_url' not in item:
logging.error("Export failed. No 'screenshot_url' attribute set in dataset. %s\n" % item)
return
logging.debug("url: %s, screenshot_url: %s" % (item['url'], item['screenshot_url']))
filename = os.path.basename(item['screenshot_url'])
out[item['url']] = filename
output_filename = "/out/screenshots.json"
with open(output_filename, 'w', encoding="utf8") as jsonfile:
json.dump(out, jsonfile, indent=2, sort_keys=True, ensure_ascii=False)
def download_icon(icon_url):
"""
Download an icon from the given URL and store it with
a file name of <hash>.<ending>
"""
default_endings = {
"image/x-ico": "ico",
"image/x-icon": "ico",
"image/vnd.microsoft.icon": "ico",
"image/png": "png",
"image/jpeg": "jpg",
"image/gif": "gif",
}
# Download the icon
try:
req = requests.get(icon_url, timeout=10)
except:
return None
if req.status_code >= 400:
return None
content_hash = md5(req.content).hexdigest()
extension = ""
try:
file_name = os.path.basename(icon_url)[-1]
except IndexError as exc:
logging.error("Could not get file name from URL %s. Not downloading. Details: %s", icon_url, exc)
return None
if file_name != "" and "." in file_name:
ext = file_name.split(".")[-1]
if ext != "":
extension = ext
if extension == "":
# derive from content type
ctype = req.headers.get('content-type')
if ctype is None:
return
try:
extension = default_endings[ctype]
except KeyError:
logging.error("No file ending defined for icon type %s. Not downloading.", ctype)
return None
filename = content_hash + "." + extension.lower()
path = SITEICONS_PATH + os.path.sep + filename
with open(path, 'wb') as iconfile:
iconfile.write(req.content)
return filename