2018-12-27 04:23:10 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Created by PhpStorm.
|
|
|
|
* User: jedi
|
|
|
|
* Date: 12/27/18
|
|
|
|
* Time: 2:49 AM
|
|
|
|
*/
|
|
|
|
|
2018-12-27 07:27:47 +00:00
|
|
|
include "backend.php";
|
|
|
|
|
2018-12-27 04:23:10 +00:00
|
|
|
function auth(){
|
|
|
|
if(!isset($_SERVER['PHP_AUTH_USER']))
|
|
|
|
return false;
|
|
|
|
if(!isset($_SERVER['PHP_AUTH_PW']))
|
|
|
|
return false;
|
|
|
|
if($_SERVER['PHP_AUTH_USER']!="c3cloc")
|
|
|
|
return false;
|
2018-12-27 20:31:06 +00:00
|
|
|
if($_SERVER['PHP_AUTH_PW']!="findetalles")
|
2018-12-27 04:23:10 +00:00
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-12-27 07:52:14 +00:00
|
|
|
function get_founditems(){
|
2018-12-27 04:23:10 +00:00
|
|
|
global $mysqli;
|
|
|
|
$res = $mysqli->query("SELECT * FROM items ORDER BY id ASC");
|
|
|
|
$ret = array();
|
|
|
|
while ($row = $res->fetch_assoc()) {
|
|
|
|
$ret[] = $row;
|
|
|
|
}
|
|
|
|
return $ret;
|
|
|
|
}
|
|
|
|
|
2018-12-27 07:52:14 +00:00
|
|
|
function get_lostitems(){
|
|
|
|
global $mysqli;
|
|
|
|
$res = $mysqli->query("SELECT * FROM lost ORDER BY id ASC");
|
|
|
|
$ret = array();
|
|
|
|
while ($row = $res->fetch_assoc()) {
|
|
|
|
$ret[] = $row;
|
|
|
|
}
|
|
|
|
return $ret;
|
|
|
|
}
|
|
|
|
|
2018-12-27 18:51:29 +00:00
|
|
|
function get_matches(){
|
|
|
|
global $mysqli;
|
|
|
|
$res = $mysqli->query("SELECT matches.id AS id, matches.f_id as f_id, matches.l_id as l_id, lost.was as l_desc, items.was as f_desc "
|
|
|
|
."FROM lost, items, matches WHERE lost.id = matches.l_id and items.id = matches.f_id ORDER BY matches.id ASC;");
|
|
|
|
$ret = array();
|
|
|
|
while ($row = $res->fetch_assoc()) {
|
|
|
|
$ret[] = $row;
|
|
|
|
}
|
|
|
|
return $ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_stats(){
|
|
|
|
global $mysqli;
|
|
|
|
$ret = array();
|
|
|
|
$ret["lost"]=0;
|
|
|
|
$ret["found"]=0;
|
|
|
|
$res = $mysqli->query("SELECT COUNT(*) AS c FROM lost ORDER BY id ASC");
|
|
|
|
if ($row = $res->fetch_assoc()) {
|
|
|
|
$ret["lost"] = $row["c"];
|
|
|
|
}
|
|
|
|
$res = $mysqli->query("SELECT COUNT(*) AS c FROM items ORDER BY id ASC");
|
|
|
|
if ($row = $res->fetch_assoc()) {
|
|
|
|
$ret["found"] = $row["c"];
|
|
|
|
}
|
|
|
|
$res = $mysqli->query("SELECT COUNT(*) AS c FROM matches ORDER BY id ASC");
|
|
|
|
if ($row = $res->fetch_assoc()) {
|
|
|
|
$ret["match"] = $row["c"];
|
|
|
|
}
|
|
|
|
return $ret;
|
|
|
|
}
|
|
|
|
|
2018-12-27 19:52:35 +00:00
|
|
|
if(file_exists("currentgithash"))
|
|
|
|
$hash = file_get_contents("currentgithash");
|
|
|
|
|
2018-12-27 07:27:47 +00:00
|
|
|
$page = isset($_GET["page"])?$_GET["page"]:"dashboard";
|
|
|
|
|
2018-12-27 04:23:10 +00:00
|
|
|
if (!auth()) {
|
|
|
|
header('WWW-Authenticate: Basic realm="C3CLOC"');
|
|
|
|
header('HTTP/1.0 401 Unauthorized');
|
2018-12-27 07:27:47 +00:00
|
|
|
include "templates/404.php";
|
2018-12-27 04:23:10 +00:00
|
|
|
exit;
|
|
|
|
} else {
|
2018-12-27 07:27:47 +00:00
|
|
|
include "templates/page.php";
|
2018-12-27 04:23:10 +00:00
|
|
|
}
|
|
|
|
?>
|