75 lines
1.3 KiB
PHP
75 lines
1.3 KiB
PHP
<?php
|
|
ob_start();
|
|
include('dynmap_access.php');
|
|
ob_end_clean();
|
|
|
|
session_start();
|
|
|
|
if(isset($_SESSION['userid'])) {
|
|
$userid = $_SESSION['userid'];
|
|
}
|
|
else {
|
|
$userid = '-guest-';
|
|
}
|
|
|
|
$loggedin = false;
|
|
if(strcmp($userid, '-guest-')) {
|
|
$loggedin = true;
|
|
}
|
|
|
|
$lines = file('dynmap_config.php');
|
|
array_shift($lines);
|
|
array_pop($lines);
|
|
$json = json_decode(implode(' ',$lines));
|
|
|
|
header('Content-type: text/plain; charset=utf-8');
|
|
|
|
if($json->loginrequired && !$loggedin) {
|
|
echo "{ \"error\": \"login-required\" }";
|
|
}
|
|
else {
|
|
$uid = '[' . strtolower($userid) . ']';
|
|
$json->loggedin = $loggedin;
|
|
$wcnt = count($json->worlds);
|
|
for($i = 0; $i < $wcnt; $i++) {
|
|
$w = $json->worlds[$i];
|
|
if($w->protected) {
|
|
$ss = stristr($worldaccess[$w->name], $uid);
|
|
if($ss !== false) {
|
|
$newworlds[] = $w;
|
|
}
|
|
else {
|
|
$w = null;
|
|
}
|
|
}
|
|
else {
|
|
$newworlds[] = $w;
|
|
}
|
|
if($w != null) {
|
|
$mcnt = count($w->maps);
|
|
$newmaps = array();
|
|
for($j = 0; $j < $mcnt; $j++) {
|
|
$m = $w->maps[$j];
|
|
if($m->protected) {
|
|
$ss = stristr($mapaccess[$w->name . '.' . $m->prefix], $uid);
|
|
if($ss !== false) {
|
|
$newmaps[] = $m;
|
|
}
|
|
}
|
|
else {
|
|
$newmaps[] = $m;
|
|
}
|
|
}
|
|
$w->maps = $newmaps;
|
|
}
|
|
}
|
|
$json->worlds = $newworlds;
|
|
|
|
echo json_encode($json);
|
|
}
|
|
|
|
|
|
|
|
?>
|
|
|