80 lines
2.4 KiB
PHP
80 lines
2.4 KiB
PHP
<?php
|
|
/* μlogger
|
|
*
|
|
* Copyright(C) 2017 Bartek Fabiszewski (www.fabiszewski.net)
|
|
*
|
|
* This is free software; you can redistribute it and/or modify it under
|
|
* the terms of the GNU 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
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
require_once(dirname(__DIR__) . "/helpers/auth.php");
|
|
require_once(ROOT_DIR . "/helpers/config.php");
|
|
require_once(ROOT_DIR . "/helpers/lang.php");
|
|
|
|
$auth = new uAuth();
|
|
$config = uConfig::getInstance();
|
|
$langStrings = (new uLang($config))->getStrings();
|
|
|
|
$result = [];
|
|
$resultAuth = [
|
|
"isAdmin" => $auth->isAdmin(),
|
|
"isAuthenticated" => $auth->isAuthenticated()
|
|
];
|
|
if ($auth->isAuthenticated()) {
|
|
$resultAuth["userId"] = $auth->user->id;
|
|
$resultAuth["userLogin"] = $auth->user->login;
|
|
}
|
|
|
|
$resultConfig = [
|
|
"colorExtra" => $config->colorExtra,
|
|
"colorHilite" => $config->colorHilite,
|
|
"colorNormal" => $config->colorNormal,
|
|
"colorStart" => $config->colorStart,
|
|
"colorStop" => $config->colorStop,
|
|
"googleKey" => $config->googleKey,
|
|
"initLatitude" => $config->initLatitude,
|
|
"initLongitude" => $config->initLongitude,
|
|
"interval" => $config->interval,
|
|
"lang" => $config->lang,
|
|
"mapApi" => $config->mapApi,
|
|
"passLenMin" => $config->passLenMin,
|
|
"passStrength" => $config->passStrength,
|
|
"publicTracks" => $config->publicTracks,
|
|
"requireAuth" => $config->requireAuthentication,
|
|
"strokeColor" => $config->strokeColor,
|
|
"strokeOpacity" => $config->strokeOpacity,
|
|
"strokeWeight" => $config->strokeWeight,
|
|
"units" => $config->units,
|
|
"uploadMaxSize" => $config->uploadMaxSize,
|
|
"layers" => []
|
|
];
|
|
foreach ($config->olLayers as $key => $val) {
|
|
$resultConfig["layers"][$key] = $val;
|
|
}
|
|
|
|
$resultLang = [
|
|
"langArr" => uLang::getLanguages()
|
|
];
|
|
foreach ($langStrings as $key => $val) {
|
|
$resultLang[$key] = $val;
|
|
}
|
|
|
|
$result["auth"] = $resultAuth;
|
|
$result["config"] = $resultConfig;
|
|
$result["lang"] = $resultLang;
|
|
|
|
header("Content-type: application/json");
|
|
echo json_encode($result);
|
|
|
|
?>
|