aboutsummaryrefslogtreecommitdiff
path: root/tor-metrics/generate.py
blob: 4315e7d0a3bba8f4d5c0f7e02d4fdc0a900ece1b (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
#!/usr/bin/env python3

'''
File: generate.py (executable)

Generate complete set of relay HTML pages and copy static files to
config.CONFIG['output_root'] defined in config.py

Default output directory: ./www
'''

import os
import sys
from shutil import copytree
import config
from relays import Relays

ABS_PATH = os.path.dirname(os.path.abspath(__file__))

if __name__ == '__main__':
    RELAY_SET = Relays()

    # generate relay HTML documents
    RELAY_SET.create_output_dir()
    RELAY_SET.write_misc(
        template    = 'index.html',
        path        = 'index.html',
        path_prefix = './',
        is_index    = True,
    )
    RELAY_SET.write_misc(
        template  = 'all.html',
        path      = 'misc/all.html'
    )
    RELAY_SET.write_misc(
        template  = 'misc-families.html',
        path      = 'misc/families-by-bandwidth.html',
        sorted_by = '1.bandwidth'
    )
    RELAY_SET.write_misc(
        template  = 'misc-families.html',
        path      = 'misc/families-by-exit-count.html',
        sorted_by = '1.exit_count,1.bandwidth'
    )
    RELAY_SET.write_misc(
        template  = 'misc-families.html',
        path      = 'misc/families-by-middle-count.html',
        sorted_by = '1.middle_count,1.bandwidth'
    )
    RELAY_SET.write_misc(
        template  = 'misc-families.html',
        path      = 'misc/families-by-first-seen.html',
        sorted_by = '1.first_seen,1.bandwidth'
    )
    RELAY_SET.write_misc(
        template  = 'misc-networks.html',
        path      = 'misc/networks-by-bandwidth.html',
        sorted_by = '1.bandwidth'
    )
    RELAY_SET.write_misc(
        template  = 'misc-networks.html',
        path      = 'misc/networks-by-exit-count.html',
        sorted_by = '1.exit_count,1.bandwidth'
    )
    RELAY_SET.write_misc(
        template  = 'misc-networks.html',
        path      = 'misc/networks-by-middle-count.html',
        sorted_by = '1.middle_count,1.bandwidth'
    )
    RELAY_SET.write_misc(
        template  = 'misc-networks.html',
        path      = 'misc/networks-by-first-seen.html',
        sorted_by = '1.first_seen,1.bandwidth'
    )
    RELAY_SET.write_pages_by_key('as')
    RELAY_SET.write_pages_by_key('contact')
    RELAY_SET.write_pages_by_key('country')
    RELAY_SET.write_pages_by_key('family')
    RELAY_SET.write_pages_by_key('flag')
    RELAY_SET.write_pages_by_key('platform')
    RELAY_SET.write_pages_by_key('first_seen')
    RELAY_SET.write_relay_info()

    # copy static directory and its contents
    STATIC_SRC_PATH = os.path.join(ABS_PATH, 'static')
    STATIC_DEST_PATH = os.path.join(config.CONFIG['output_root'], 'static')
    if not os.path.exists(STATIC_DEST_PATH):
        copytree(STATIC_SRC_PATH, STATIC_DEST_PATH)