]> git.mxchange.org Git - fba.git/blob - templates/views/scoreboard.html
f76775d55037e8bff1c0e1bb8d465d2f0ff3c4ba
[fba.git] / templates / views / scoreboard.html
1 {% extends "base.html" %}
2
3 {% block title %}Scoreboard - {% if mode == 'software' %}TOP {{amount}} used software{% elif mode == 'detection_mode' %}Detection mode statistics{% elif mode == 'block_level' %}TOP {{amount}} block level statistics{% elif mode == 'obfuscation' %}Obfuscation statistics{% elif mode == 'obfuscator' %}TOP {{amount}} obfuscating software{% elif mode == 'avg_peers' %}TOP {{amount}} average peer count{% elif mode == 'command' %}TOP {{amount}} commands{% elif mode == 'error_code' %}TOP {{amount}} error codes{% elif mode == 'reference' %}TOP {{amount}} referencing instances{% elif mode == 'blocked' %}TOP {{amount}} deferated instances{% elif mode == 'blocker' %}TOP {{amount}} deferating instances{% endif %}{% endblock %}
4
5 {% block header %}
6     {% if mode == 'blocker' %}
7         <h1>Top {{amount}} defederating instances</h1>
8     {% elif mode == 'blocked' %}
9         <h1>Top {{amount}} defederated instances</h1>
10     {% elif mode == 'reference' %}
11         <h1>Top {{amount}} referencing instances</h1>
12     {% elif mode == 'software' %}
13         <h1>Top {{amount}} used software</h1>
14     {% elif mode == 'command' %}
15         <h1>TOP {{amount}} commands</h1>
16     {% elif mode == 'error_code' %}
17         <h1>TOP {{amount}} error codes</h1>
18     {% elif mode == 'detection_mode' %}
19         <h1>Detection mode statistics</h1>
20     {% elif mode == 'avg_peers' %}
21         <h1>TOP {{amount}} average peer count</h1>
22     {% elif mode == 'obfuscator' %}
23         <h1>TOP {{amount}} obfuscating software</h1>
24     {% elif mode == 'obfuscation' %}
25         <h1>Obfuscation statistics</h1>
26     {% elif mode == 'block_level' %}
27         <h1>TOP {{amount}} block levels</h1>
28     {% else %}
29         <h1 style="color: red">mode={{mode}} not supported</h1>
30     {% endif %}
31 {% endblock %}
32
33 {% block content %}
34     <div class="scoreboard">
35         <table class="table-with-rows">
36             <thead>
37                 <th>№</th>
38                 <th>{% if mode in ('software', 'avg_peers', 'obfuscator') %}Software{% elif mode == 'obfuscation' %}Obfuscation status{% elif mode == 'detection_mode' %}Detection mode{% elif mode == 'error_code' %}Error code{% else %}Instance{% endif %}</th>
39                 <th>{% if mode == 'reference' %}References{% elif mode == 'avg_peers' %}Average{% elif mode in('software', 'error_code', 'obfuscator', 'obfuscation', 'block_level', 'detection_mode') %}Total{% else %}Blocks{% endif %}</th>
40             </thead>
41
42             <tbody>
43             {% for entry in scores %}
44                 <tr>
45                     <td>{{loop.index}}</td>
46                     <td>
47                         {% if mode in ('error_code', 'avg_peers', 'obfuscator', 'obfuscation') %}
48                             {{entry['domain']}}
49                         {% elif entry['domain'] == None %}
50                             -
51                         {% elif mode == 'block_level' %}
52                             <a href="top?mode={{mode}}&amp;value={{entry['domain']}}&amp;amount=50">{{entry['domain']}}</a>
53                         {% elif mode in ('software', 'detection_mode', 'command') %}
54                             <a href="list?mode={{mode}}&amp;value={{entry['domain']}}&amp;amount=50">{{entry['domain']}}</a>
55                         {% else %}
56                             {% with domain=entry['domain'] %}
57                             {% include "widgets/links.html" %}
58                             {% endwith %}
59                         {% endif %}
60                     </td>
61                     <td>{{entry['score']}}</td>
62                 </tr>
63             {% endfor %}
64             </tbody>
65         </table>
66     </div>
67 {% endblock %}
68
69 {% block footer %}
70     {% if mode == 'error_code' %}
71         <div class="notice">
72             <h3>Error codes:</h3>
73             <ul>
74                 <li>Error code 999 is fake and covers a lot of reasons why the domain/instance is not reachable. Mostly that the domain is not resolvable or the server refused connection.</li>
75             </ul>
76         </div>
77     {% elif mode == 'detection_mode' %}
78         <div class="notice">
79             <h3>Detection modes:</h3>
80             <div>
81                 Detection is done in following order:
82             </div>
83             <ol>
84                 <li><b>AUTO_DISCOVERY</b>: <code>/.well-known/nodeinfo</code> was reachable and software type was found in nodeinfo response</li>
85                 <li><b>STATIC_CHECK</b>: Node information was found by probing for well-known URLs</li>
86                 <li><b>GENERATOR</b>: Meta data <code>generator</code> was found in HTML code</li>
87                 <li><b>PLATFORM</b>: Meta data <code>og:platform</code> was found in HTML code</li>
88                 <li><b>SITE_NAME</b>: Meta data <code>og:site_name</code> was found in HTML code</li>
89                 <li><b>None</b>: the instance was not reachable or the used software was not stated</li>
90             </ol>
91         </div>
92     {% elif mode == 'obfuscation' %}
93         <div class="notice">
94             <h3>Obfuscation status:</h3>
95             <ul>
96                 <li>Only supported networks are counted here.</li>
97                 <li><b>None</b> means not determined yet or erroneous.</li>
98             </ul>
99         </div>
100     {% endif %}
101     <a href="{{base_url}}/">Index</a> /
102     {{ super() }}
103 {% endblock %}