summaryrefslogtreecommitdiff
path: root/localwebsite/handlers/ModemHandler.php
blob: 88fe4630147757477cbbfc9d6c1bc3fe1562ea93 (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
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
<?php

class ModemHandler extends RequestHandler
{

    public function __construct()
    {
        parent::__construct();
        $this->tpl->add_static('modem.js');
    }

    public function GET_status_page() {
        global $config;

        $this->tpl->set([
            'modems' => $config['modems'],
            'js_modems' => array_keys($config['modems']),
        ]);

        $this->tpl->set_title('Состояние модемов');
        $this->tpl->render_page('modem_status_page.twig');
    }

    public function GET_status_get_ajax() {
        global $config;
        list($id) = $this->input('id');
        if (!isset($config['modems'][$id]))
            ajax_error('invalid modem id: '.$id);

        $modem_data = self::getModemData(
            $config['modems'][$id]['ip'],
            $config['modems'][$id]['legacy_token_auth']);

        ajax_ok([
            'html' => $this->tpl->render('modem_data.twig', [
                'loading' => false,
                'modem_data' => $modem_data
            ])
        ]);
    }


    public function GET_routing_smallhome_page() {
        global $config;

        list($error) = $this->input('error');
        $upstream = self::getCurrentSmallHomeUpstream();

        $current_upstream = [
            'key' => $upstream,
            'label' => $config['modems'][$upstream]['label']
        ];

        $this->tpl->set([
            'error' => $error,
            'current' => $current_upstream,
            'modems' => $config['modems'],
        ]);
        $this->tpl->set_title('Маршрутизация');
        $this->tpl->render_page('routing_page.twig');
    }

    public function GET_routing_smallhome_switch() {
        global $config;
        list($new_upstream) = $this->input('upstream');
        if (!isset($config['modems'][$new_upstream]))
            redirect('/routing/?error='.urlencode('invalid upstream'));

        $current_upstream = self::getCurrentSmallHomeUpstream();
        if ($current_upstream != $new_upstream) {
            if ($current_upstream != $config['routing_default'])
                MyOpenWrtUtils::ipsetDel($current_upstream, $config['routing_smallhome_ip']);
            if ($new_upstream != $config['routing_default'])
                MyOpenWrtUtils::ipsetAdd($new_upstream, $config['routing_smallhome_ip']);
        }

        redirect('/routing/');
    }

    public function GET_routing_ipsets_page() {
        list($error) = $this->input('error');

        $ip_sets = MyOpenWrtUtils::ipsetListAll();
        $this->tpl->set([
            'sets' => $ip_sets,
            'error' => $error
        ]);
        $this->tpl->set_title('Маршрутизация: IP sets');
        $this->tpl->render_page('routing_ipsets_page.twig');
    }

    public function GET_routing_ipsets_del() {
        list($set, $ip) = $this->input('set, ip');
        self::validateIpsetsInput($set, $ip);

        $output = MyOpenWrtUtils::ipsetDel($set, $ip);

        $url = '/routing/ipsets/';
        if ($output != '')
            $url .= '?error='.urlencode($output);
        redirect($url);
    }

    public function POST_routing_ipsets_add() {
        list($set, $ip) = $this->input('set, ip');
        self::validateIpsetsInput($set, $ip);

        $output = MyOpenWrtUtils::ipsetAdd($set, $ip);

        $url = '/routing/ipsets/';
        if ($output != '')
            $url .= '?error='.urlencode($output);
        redirect($url);
    }

    public function GET_routing_dhcp_page() {
        $leases = MyOpenWrtUtils::getDHCPLeases();
        $this->tpl->set([
            'leases' => $leases
        ]);
        $this->tpl->set_title('Маршрутизация: DHCP');
        $this->tpl->render_page('routing_dhcp_page.twig');
    }

    public function GET_sms_page() {
        global $config;

        list($selected) = $this->input('modem');
        if (!$selected)
            $selected = array_key_first($config['modems']);

        $cfg = $config['modems'][$selected];
        $e3372 = new E3372($cfg['ip'], $cfg['legacy_token_auth']);
        $messages = $e3372->getSMSList();

        $this->tpl->set([
            'modems_list' => array_keys($config['modems']),
            'modems' => $config['modems'],
            'selected_modem' => $selected,
            'messages' => $messages
         ]);
        $this->tpl->set_title('Модемы: SMS-сообщения');
        $this->tpl->render_page('sms_page.twig');
    }

    protected static function getModemData(string $ip, bool $need_auth = true): array {
        $modem = new E3372($ip, $need_auth);
        $signal = $modem->getDeviceSignal();
        $status = $modem->getMonitoringStatus();
        $traffic = $modem->getTrafficStats();
        return [
            'type' => e3372::getNetworkTypeLabel($status['CurrentNetworkType']),
            'level' => $status['SignalIcon'] ?? 0,
            'rssi' => $signal['rssi'],
            'sinr' => $signal['sinr'],
            'connected_time' => secondsToTime($traffic['CurrentConnectTime']),
            'downloaded' => bytesToUnitsLabel(gmp_init($traffic['CurrentDownload'])),
            'uploaded' => bytesToUnitsLabel(gmp_init($traffic['CurrentUpload'])),
        ];
    }

    protected static function getCurrentSmallHomeUpstream() {
        global $config;

        $upstream = null;
        $ip_sets = MyOpenWrtUtils::ipsetListAll();
        foreach ($ip_sets as $set => $ips) {
            if (in_array($config['routing_smallhome_ip'], $ips)) {
                $upstream = $set;
                break;
            }
        }
        if (is_null($upstream))
            $upstream = $config['routing_default'];

        return $upstream;
    }

    protected static function validateIpsetsInput($set, $ip) {
        global $config;

        if (!isset($config['modems'][$set]))
            redirect('/routing/ipsets/?error='.urlencode('invalid set: '.$set));

        if (($slashpos = strpos($ip, '/')) !== false)
            $ip = substr($ip, 0, $slashpos);

        if (!filter_var($ip, FILTER_VALIDATE_IP))
            redirect('/routing/ipsets/?error='.urlencode('invalid ip/network: '.$ip));
    }

}