This repository has been archived on 2022-12-28. You can view files and clone it, but cannot push or open issues or pull requests.
apiOld/fah/json/api.php
2021-02-21 15:06:55 +08:00

41 lines
1.1 KiB
PHP

<?php
header("Content-type:application/json;charset=utf-8");
$error = null;
if($_GET['donor'] == null){
if($_GET['team'] == '*' or $_GET['team'] == ''){
echo @file_get_contents("database/teams/total/index.json");
}else{
if(file_exists("database/teams/each/".$_GET['team'].".json")){
echo @file_get_contents("database/teams/each/".$_GET['team'].".json");
}else{
header('HTTP/1.1 404 Not Found');
header('status: 404 Not Found');
echo '{"error":"404"}';
}
}
}else{
if($_GET['team'] != null){
header('HTTP/1.1 400 Bad Request');
header('status: 400 Bad Request');
echo '{"error":"400"}';
}
}
if($_GET['team'] == null){
if($_GET['donor'] == '*'){
echo @file_get_contents("database/donors/total/index.json");
}else{
if(file_exists("database/donors/each/".$_GET['team'].".json")){
echo @file_get_contents("database/donors/each/".$_GET['team'].".json");
}else{
header('HTTP/1.1 404 Not Found');
header('status: 404 Not Found');
echo '{"error":"404"}';
}
}
}else{
if($_GET['donor'] != null){
header('HTTP/1.1 400 Bad Request');
header('status: 400 Bad Request');
echo '{"error":"400"}';
}
}