Add nearby players list

master
Skylar Ittner 8 years ago
parent 1c5483b3c2
commit d816b6846d

@ -32,7 +32,7 @@ if (!preg_match('/-?[0-9]{1,3}\.[0-9]{3,}/', $VARS['long'])) {
sendError("Longitude (long) is in the wrong format.", true); sendError("Longitude (long) is in the wrong format.", true);
} }
$radius = 1; $radius = .25;
if (!is_empty($VARS['radius']) && is_numeric($VARS['radius'])) { if (!is_empty($VARS['radius']) && is_numeric($VARS['radius'])) {
$radius = intval($VARS['radius']); $radius = intval($VARS['radius']);
} }
@ -41,20 +41,18 @@ $userlocation = GeoLocation::fromDegrees($VARS['lat'], $VARS['long']);
$searchbounds = $userlocation->boundingCoordinates($radius, 'miles'); $searchbounds = $userlocation->boundingCoordinates($radius, 'miles');
$people = $database->select('players', ['uuid', 'level', 'latitude', 'longitude', 'lastping'], ['AND' => [ $people = $database->select('players', ['uuid', 'level', 'nickname', 'teamid', 'energy', 'maxenergy'], ['AND' => [
'latitude[>]' => $searchbounds[0]->getLatitudeInDegrees(), 'latitude[>]' => $searchbounds[0]->getLatitudeInDegrees(),
'latitude[<]' => $searchbounds[1]->getLatitudeInDegrees(), 'latitude[<]' => $searchbounds[1]->getLatitudeInDegrees(),
'longitude[>]' => $searchbounds[0]->getLongitudeInDegrees(), 'longitude[>]' => $searchbounds[0]->getLongitudeInDegrees(),
'longitude[<]' => $searchbounds[1]->getLongitudeInDegrees(), 'longitude[<]' => $searchbounds[1]->getLongitudeInDegrees(),
'#lastping[>]' => 'DATE_SUB(NOW(), INTERVAL 5 MINUTE)'], 'lastping[>]' => date('Y-m-d H:i:s', strtotime('-1 minute'))],
"LIMIT" => 50 "LIMIT" => 20
]); ]);
var_dump($database->error());
if (!$people) { $out = ["status" => "OK", "people" => []];
die('[]'); foreach ($people as $person) {
} $out['people'][] = ["uuid" => $person["uuid"], "name" => $person["nickname"], "team" => $person["teamid"]];
for ($i = 0; $i < count($people); $i++) {
$people[$i]['username'] = file_get_contents('https://sso.netsyms.com/api/getname.php?uuid=' . $people[$i]['uuid']);
} }
echo json_encode($people); echo json_encode($out);