aboutsummaryrefslogtreecommitdiff
path: root/localwebsite/classes/MyOpenWrtUtils.php
blob: 6bdfec2091064b08d5872c0c5039f04ae39aac15 (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
<?php

class MyOpenWrtUtils {

    // public static function getRoutingTable(?string $table = null): array {
    //     $arguments = ['route-show'];
    //     if ($table)
    //         $arguments[] = $table;
    //
    //     return self::toList(self::run($arguments));
    // }
    //
    // public static function getRoutingRules(): array {
    //     return self::toList(self::run(['rule-show']));
    // }
    //
    // public static function ipsetList(string $set_name): array {
    //     return self::toList(self::run(['ipset-list', $set_name]));
    // }

    public static function ipsetListAll(): array {
        global $config;

        $args = ['ipset-list-all'];
        $args = array_merge($args, array_keys($config['modems']));

        $lines = self::toList(self::run($args));

        $sets = [];
        $cur_set = null;
        foreach ($lines as $line) {
            if (startsWith($line, '>')) {
                $cur_set = substr($line, 1);
                if (!isset($sets[$cur_set]))
                    $sets[$cur_set] = [];
                continue;
            }

            if (is_null($cur_set)) {
                debugError(__METHOD__.': cur_set is not set');
                continue;
            }

            $sets[$cur_set][] = $line;
        }

        return $sets;
    }

    public static function ipsetAdd(string $set_name, string $ip) {
        return self::run(['ipset-add', $set_name, $ip]);
    }

    public static function ipsetDel(string $set_name, string $ip) {
        return self::run(['ipset-del', $set_name, $ip]);
    }

    public static function getDHCPLeases(): array {
        $list = self::toList(self::run(['dhcp-leases']));
        $list = array_map('self::toDHCPLease', $list);
        return $list;
    }


    //
    // http functions
    //

    private static function run(array $arguments) {
        $url = self::getLink($arguments);

        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        $body = curl_exec($ch);
        $code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
        if ($code != 200)
            throw new Exception(__METHOD__.': http code '.$code);

        curl_close($ch);
        return trim($body);
    }

    private static function getLink($arguments) {
        global $config;

        $url = 'http://'.$config['openwrt_ip'].'/cgi-bin/luci/command/cfg099944';
        if (!empty($arguments)) {
            $arguments = array_map(function($arg) {
                $arg = str_replace('/', '_', $arg);
                return urlencode($arg);
            }, $arguments);
            $arguments = implode('%20', $arguments);

            $url .= '/';
            $url .= $arguments;
        }

        return $url;
    }


    //
    // parsing functions
    //

    private static function toList(string $s): array {
        if ($s == '')
            return [];
        return explode("\n", $s);
    }

    private static function toDHCPLease(string $s): array {
        $words = explode(' ', $s);
        $time = array_shift($words);
        $mac = array_shift($words);
        $ip = array_shift($words);
        array_pop($words);
        $hostname = trim(implode(' ', $words));
        if (!$hostname || $hostname == '*')
            $hostname = '?';
        return [
            'time' => $time,
            'time_s' => date('d M, H:i:s', $time),
            'mac' => $mac,
            'ip' => $ip,
            'hostname' => $hostname
        ];
    }

}