summaryrefslogtreecommitdiff
path: root/crocoite/util.py
blob: daa60db7548b64b0c61f2383ee4f14232dcce277 (plain)
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
# Copyright (c) 2017 crocoite contributors
# 
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# 
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# 
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.

"""
Random utility functions
"""

import random, sys
import hashlib, os, pkg_resources
from urllib.parse import urlsplit, urlunsplit

def randomString (length=None, chars='abcdefghijklmnopqrstuvwxyz'):
    if length is None:
        length = random.randint (16, 32)
    return ''.join (map (lambda x: random.choice (chars), range (length)))

def packageUrl (path):
    """
    Create URL for package data stored into WARC
    """
    return 'urn:' + __package__ + ':' + path

async def getFormattedViewportMetrics (tab):
    layoutMetrics = await tab.Page.getLayoutMetrics ()
    # XXX: I’m not entirely sure which one we should use here
    return '{}x{}'.format (layoutMetrics['layoutViewport']['clientWidth'],
                layoutMetrics['layoutViewport']['clientHeight'])

def removeFragment (u):
    """ Remove fragment from url (i.e. #hashvalue) """
    s = urlsplit (u)
    return urlunsplit ((s.scheme, s.netloc, s.path, s.query, ''))

def getRequirements (dist):
    """ Get dependencies of a package.

    Figure out packages’ dependencies based on setup/distutils, then look at
    modules loaded and compute hashes of each loaded dependency.

    This does not and cannot protect against malicious people. It’s only
    purpose is to recreate this exact environment.
    """

    pending = {dist}
    have = set ()
    packages = []
    while pending:
        d = pkg_resources.get_distribution (pending.pop ())

        modules = list (filter (lambda x: x, d.get_metadata ('top_level.txt').split ('\n')))
        modhashes = {}
        # hash loaded modules
        for m in sys.modules.values ():
            f = getattr (m, '__file__', None)
            pkg = getattr (m, '__package__', None)
            # is loaded?
            if pkg in modules:
                if f:
                    with open (f, 'rb') as fd:
                        contents = fd.read ()
                        h = hashlib.new ('sha512')
                        h.update (contents)
                        modhashes[m.__name__] = {'sha512': h.hexdigest (), 'len': len (contents)}
                else:
                    modhashes[m.__name__] = {}

        # only if one of the packages’ modules is actually loaded
        if modhashes:
            packages.append ({'projectName': d.project_name, 'modules': modhashes, 'version': d.version})

        have.add (dist)
        pending.update (d.requires ())
        pending.difference_update (have)
    return packages