This repository has been archived by the owner on Sep 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 69
/
raid_data.php
56 lines (50 loc) · 1.86 KB
/
raid_data.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
include('config/config.php');
global $map, $fork;
if (empty($raidApiKey)) {
http_response_code(401);
die();
}
if (!empty($_POST['key']) && $_POST['key'] == $raidApiKey && !empty($_POST['type'])) {
if ($_POST['type'] == "config") {
$data['lat'] = $startingLat;
$data['lon'] = $startingLng;
$data['maxLatlng'] = $maxLatLng;
$data['maxZoomOut'] = $maxZoomOut;
$data['title'] = $title;
header('Content-Type: application/json');
echo json_encode($data);
} elseif ($_POST['type'] == "data") {
$swLat = !empty($_POST['swLat']) ? $_POST['swLat'] : 0;
$neLng = !empty($_POST['neLng']) ? $_POST['neLng'] : 0;
$swLng = !empty($_POST['swLng']) ? $_POST['swLng'] : 0;
$neLat = !empty($_POST['neLat']) ? $_POST['neLat'] : 0;
$useragent = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : '';
if (empty($swLat) || empty($swLng) || empty($neLat) || empty($neLng) || preg_match("/curl|libcurl/", $useragent)) {
http_response_code(400);
die();
}
if ($maxLatLng > 0 && ((($neLat - $swLat) > $maxLatLng) || (($neLng - $swLng) > $maxLatLng))) {
http_response_code(400);
die();
}
if (strtolower($map) === "monocle") {
if (strtolower($fork) === "alternate") {
$scanner = new \Scanner\Monocle_Alternate();
} else {
$scanner = new \Scanner\Monocle();
}
} elseif (strtolower($map) === "rm") {
$scanner = new \Scanner\RocketMap();
}
$data = $scanner->get_gyms_api($swLat, $swLng, $neLat, $neLng);
header('Content-Type: application/json');
echo json_encode($data);
} else {
http_response_code(401);
die();
}
} else {
http_response_code(401);
die();
}