-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
49bf90f
commit f7dcb8f
Showing
56 changed files
with
2,846 additions
and
1,436 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,178 @@ | ||
<?PHP | ||
header("Content-Type: application/json; charset=UTF-8"); | ||
|
||
require_once('../other/dbconfig.php'); | ||
|
||
$dbname = $db['dbname']; | ||
$dbtype = $db['type']; | ||
if($db['type'] != "type") { | ||
$dbserver = $db['type'].':host='.$db['host'].';dbname='.$dbname.';charset=utf8mb4'; | ||
$dboptions = array(); | ||
try { | ||
$mysqlcon = new PDO($dbserver, $db['user'], $db['pass'], $dboptions); | ||
} catch (PDOException $e) { | ||
echo 'Database Connection failed: <b>'.$e->getMessage().'</b>'; | ||
exit; | ||
} | ||
} | ||
|
||
if (isset($_GET['groups'])) { | ||
$sgidname = $all = '----------_none_selected_----------'; | ||
$sgid = -1; | ||
if(isset($_GET['all'])) { | ||
$all = 1; | ||
} | ||
if(isset($_GET['sgid'])) { | ||
$sgid = htmlspecialchars_decode($_GET['sgid']); | ||
} | ||
if(isset($_GET['sgidname'])) { | ||
$sgidname = htmlspecialchars_decode($_GET['sgidname']); | ||
} | ||
|
||
if($sgid == -1 && $sgidname == '----------_none_selected_----------' && $all == '----------_none_selected_----------') { | ||
$json = array( | ||
"usage" => array( | ||
"all" => array( | ||
"desc" => "Get details about all TeamSpeak servergroups", | ||
"usage" => "Use \$_GET parameter 'all' without any value", | ||
"example" => "/api/?groups&all" | ||
), | ||
"sgid" => array( | ||
"desc" => "Get details about TeamSpeak servergroups by the servergroup TS-database-ID", | ||
"usage" => "Use \$_GET parameter 'sgid' and add as value the servergroup TS-database-ID", | ||
"example" => "/api/?groups&sgid=123" | ||
), | ||
"sgidname" => array( | ||
"desc" => "Get details about TeamSpeak servergroups by servergroup name or a part of it", | ||
"usage" => "Use \$_GET parameter 'sgidname' and add as value a name or a part of it", | ||
"example" => "/api/?groups&sgidname=Level01" | ||
) | ||
) | ||
); | ||
} else { | ||
if ($all == 1) { | ||
$dbdata = $mysqlcon->prepare("SELECT * FROM `$dbname`.`groups`"); | ||
} else { | ||
$dbdata = $mysqlcon->prepare("SELECT * FROM `$dbname`.`groups` WHERE (`sgidname` LIKE :sgidname OR `sgid` LIKE :sgid)"); | ||
} | ||
$dbdata->bindValue(':sgidname', '%'.$sgidname.'%', PDO::PARAM_STR); | ||
$dbdata->bindValue(':sgid', (int) $sgid, PDO::PARAM_INT); | ||
$dbdata->execute(); | ||
$json = $dbdata->fetchAll(PDO::FETCH_ASSOC|PDO::FETCH_UNIQUE); | ||
foreach ($json as $sgid => $sqlpart) { | ||
if ($sqlpart['icondate'] != 0 && $sqlpart['sgidname'] == 'ServerIcon') { | ||
$json[$sgid]['iconpath'] = './tsicons/servericon.png'; | ||
} elseif ($sqlpart['icondate'] != 0) { | ||
$json[$sgid]['iconpath'] = './tsicons/'.$sgid.'.png'; | ||
} | ||
} | ||
} | ||
} elseif (isset($_GET['rankconfig'])) { | ||
$dbdata = $mysqlcon->prepare("SELECT * FROM `$dbname`.`cfg_params` WHERE `param` in ('rankup_definition', 'rankup_time_assess_mode')"); | ||
$dbdata->execute(); | ||
$sql = $dbdata->fetchAll(PDO::FETCH_KEY_PAIR); | ||
$json = array(); | ||
if ($sql['rankup_time_assess_mode'] == 1) { | ||
$modedesc = "active time"; | ||
} else { | ||
$modedesc = "online time"; | ||
} | ||
$json['rankup_time_assess_mode'] = array ( | ||
"mode" => $sql['rankup_time_assess_mode'], | ||
"mode_desc" => $modedesc | ||
); | ||
$count = 0; | ||
krsort($sql['rankup_definition']); | ||
foreach (explode(',', $sql['rankup_definition']) as $entry) { | ||
list($key, $value) = explode('=>', $entry); | ||
$addnewvalue1[$count] = array( | ||
"grpid" => $value, | ||
"seconds" => $key | ||
); | ||
$count++; | ||
$json['rankup_definition'] = $addnewvalue1; | ||
} | ||
} elseif (isset($_GET['server'])) { | ||
$dbdata = $mysqlcon->prepare("SELECT 0 as `row`, `$dbname`.`stats_server`.* FROM `$dbname`.`stats_server`"); | ||
$dbdata->execute(); | ||
$json = $dbdata->fetchAll(PDO::FETCH_ASSOC|PDO::FETCH_UNIQUE); | ||
} elseif (isset($_GET['user'])) { | ||
$uuid = $name = '----------_none_selected_----------'; | ||
$part = $cldbid = 0; | ||
if(isset($_GET['uuid'])) { | ||
$uuid = htmlspecialchars_decode($_GET['uuid']); | ||
} | ||
if(isset($_GET['cldbid'])) { | ||
$cldbid = htmlspecialchars_decode($_GET['cldbid']); | ||
} | ||
if(isset($_GET['name'])) { | ||
$name = htmlspecialchars_decode($_GET['name']); | ||
} | ||
if(isset($_GET['part'])) { | ||
$part = (htmlspecialchars_decode($_GET['part']) - 1) * 10; | ||
} | ||
|
||
if($uuid == '----------_none_selected_----------' && $name == '----------_none_selected_----------' && $cldbid == 0) { | ||
$json = array( | ||
"usage" => array( | ||
"uuid" => array( | ||
"desc" => "Get details about TeamSpeak user by unique client ID", | ||
"usage" => "Use \$_GET parameter 'uuid' and add as value one unique client ID or a part of it", | ||
"example" => "/api/?user&uuid=xrTKhT/HDl4ea0WoFDQH2zOpmKg=" | ||
), | ||
"cldbid" => array( | ||
"desc" => "Get details about TeamSpeak user by client TS-database ID", | ||
"usage" => "Use \$_GET parameter 'cldbid' and add as value a single client TS-database ID", | ||
"example" => "/api/?user&cldbid=7775" | ||
), | ||
"name" => array( | ||
"desc" => "Get details about TeamSpeak user by client nickname", | ||
"usage" => "Use \$_GET parameter 'name' and add as value a name or a part of it", | ||
"example" => "/api/?user&name=Newcomer1989" | ||
), | ||
"part" => array( | ||
"desc" => "Define, which part of the result you want to get. This is needed, when more then 10 clients are inside the result. At default you will get the first 10 clients. To get the next 10 clients, you will need to answer for part 2.", | ||
"usage" => "Use \$_GET parameter 'part' and add as value a number above 1", | ||
"example" => "/api/?user&name=TeamSpeakUser&part=2" | ||
) | ||
) | ||
); | ||
} else { | ||
$dbdata = $mysqlcon->prepare("SELECT `uuid`,`cldbid`,`rank`,`count`,`name`,`idle`,`cldgroup`,`online`,`nextup`,`lastseen`,`grpid`,`except`,`grpsince` FROM `$dbname`.`user` WHERE (`uuid` LIKE :uuid OR `cldbid` LIKE :cldbid OR `name` LIKE :name) LIMIT :start, :limit"); | ||
$dbdata->bindValue(':uuid', '%'.$uuid.'%', PDO::PARAM_STR); | ||
$dbdata->bindValue(':cldbid', (int) $cldbid, PDO::PARAM_INT); | ||
$dbdata->bindValue(':name', '%'.$name.'%', PDO::PARAM_STR); | ||
$dbdata->bindValue(':start', (int) $part, PDO::PARAM_INT); | ||
$dbdata->bindValue(':limit', (int) 10, PDO::PARAM_INT); | ||
$dbdata->execute(); | ||
$json = $dbdata->fetchAll(PDO::FETCH_ASSOC|PDO::FETCH_UNIQUE); | ||
} | ||
} else { | ||
$json = array( | ||
"usage" => array( | ||
"groups" => array( | ||
"desc" => "Get details about the TeamSpeak servergroups", | ||
"usage" => "Use \$_GET parameter 'groups'", | ||
"example" => "/api/?groups" | ||
), | ||
"rankconfig" => array( | ||
"desc" => "Get the rankup definition, which contains the assignment of (needed) time to servergroup", | ||
"usage" => "Use \$_GET parameter 'rankconfig'", | ||
"example" => "/api/?rankconfig" | ||
), | ||
"server" => array( | ||
"desc" => "Get details about the TeamSpeak server", | ||
"usage" => "Use \$_GET parameter 'server'", | ||
"example" => "/api/?server" | ||
), | ||
"user" => array( | ||
"desc" => "Get details about the TeamSpeak user", | ||
"usage" => "Use \$_GET parameter 'user'", | ||
"example" => "/api/?user" | ||
) | ||
) | ||
); | ||
} | ||
|
||
echo json_encode($json); | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.