forked from bgaultier/laboite-webapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
93 lines (83 loc) · 3 KB
/
index.php
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
<?php
/*
laboîte-webapp v0.1 is a PHP+MySQL web application that allows the
remote configuration of devices connected to Internet.
Copyright (C) 2013 Baptiste Gaultier
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
// start new or resume existing session
session_start();
// load and initialize any global libraries
require_once 'models.php';
require_once 'controllers.php';
// internationalization
if(isset($_SESSION['locale']))
$language = $_SESSION['locale'];
else {
$language = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
if($language == "fr")
$language = "fr_FR";
else
$language = "en_US";
}
putenv("LANG=$language");
setlocale(LC_ALL, $language);
$domain = 'messages';
bindtextdomain($domain, "./templates/locale");
textdomain($domain);
// route the request internally
$uri = $_SERVER['REQUEST_URI'];
if ('/' == $uri)
list_devices_action($_SESSION['id']);
elseif ('/devices' == $uri)
list_devices_action($_SESSION['id']);
elseif ('/login' == $uri)
login_action();
elseif ('/logout' == $uri)
logout_action();
elseif ('/signup' == $uri)
signup_action();
elseif ('/account' == $uri)
account_action($_SESSION['email']);
elseif ('/help' == $uri)
help_action();
elseif ('/thanks' == $uri)
thanks_action();
elseif ('/about' == $uri)
about_action();
elseif ('/device.json' == substr($uri, 0, 12) && isset($_GET['id'])) {
header('Content-type: application/json; charset=utf-8');
get_device_action($_SESSION['id'], $_GET['id']);
}
elseif ('/add' == substr($uri, 0, 4)) {
add_device_action($_SESSION['id']);
list_devices_action($_SESSION['id']);
}
elseif ('/delete' == substr($uri, 0, 7) && isset($_GET['id'])) {
delete_device_action($_SESSION['id'], $_GET['id']);
list_devices_action($_SESSION['id']);
}
elseif ('/regenerate' == substr($uri, 0, 11) && isset($_GET['id']))
regenerate_device_apikey_action($_SESSION['id'], $_GET['id']);
elseif ('/apps' == $uri)
list_apps_action($_SESSION['id']);
elseif ('/apps.json' == $uri) {
header('Content-type: application/json; charset=utf8');
list_apps_json_action($_SESSION['id']);
}
elseif ('/app.json' == substr($uri, 0, 9) && isset($_GET['id'])) {
header('Content-type: application/json; charset=utf-8');
get_user_app_action($_SESSION['id'], $_GET['id']);
}
else
login_action();
?>