aboutsummaryrefslogtreecommitdiff
path: root/localwebsite/htdocs/index.php
blob: 0a4e8c512ae96d3b76e7089502743a8eabee0f71 (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
<?php

require_once __DIR__.'/../init.php';

$router = new router;

// modem
$router->add('modem/',         'Modem status_page');
$router->add('modem/verbose/', 'Modem verbose_page');
$router->add('modem/get.ajax', 'Modem status_get_ajax');

$router->add('routing/',                   'Modem routing_smallhome_page');
$router->add('routing/switch-small-home/', 'Modem routing_smallhome_switch');
$router->add('routing/{ipsets,dhcp}/',     'Modem routing_${1}_page');
$router->add('routing/ipsets/{add,del}/',  'Modem routing_ipsets_${1}');

$router->add('sms/',     'Modem sms');
// $router->add('modem/set.ajax', 'Modem ctl_set_ajax');

// inverter
$router->add('inverter/',            'Inverter status_page');
$router->add('inverter/status.ajax', 'Inverter status_ajax');

// misc
$router->add('/',        'Misc main');
$router->add('sensors/', 'Misc sensors_page');
$router->add('pump/',    'Misc pump_page');
$router->add('phpinfo/', 'Misc phpinfo');
$router->add('cams/',    'Misc cams');
$router->add('debug/',   'Misc debug');

// auth
$router->add('auth/',   'Auth auth');
$router->add('deauth/', 'Auth deauth');


$route = routerFind($router);
if ($route === false)
    (new FakeRequestHandler)->dispatch('404');

list($handler, $act, $RouterInput) = $route;

$handler_class = $handler.'Handler';
if (!class_exists($handler_class)) {
    debugError('index.php: class '.$handler_class.' not found');
    (new FakeRequestHandler)->dispatch('404');
}

(new $handler_class)->dispatch($act);