-
Notifications
You must be signed in to change notification settings - Fork 2
/
ffGeoJsonp.php
50 lines (40 loc) · 1.42 KB
/
ffGeoJsonp.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
<?php header('content-type: application/json; charset=utf-8');
function is_valid_callback($subject)
{
$identifier_syntax
= '/^[$_\p{L}][$_\p{L}\p{Mn}\p{Mc}\p{Nd}\p{Pc}\x{200C}\x{200D}]*+$/u';
$reserved_words = array('break', 'do', 'instanceof', 'typeof', 'case',
'else', 'new', 'var', 'catch', 'finally', 'return', 'void', 'continue',
'for', 'switch', 'while', 'debugger', 'function', 'this', 'with',
'default', 'if', 'throw', 'delete', 'in', 'try', 'class', 'enum',
'extends', 'super', 'const', 'export', 'import', 'implements', 'let',
'private', 'public', 'yield', 'interface', 'package', 'protected',
'static', 'null', 'true', 'false');
return preg_match($identifier_syntax, $subject)
&& ! in_array(mb_strtolower($subject, 'UTF-8'), $reserved_words);
}
$url ="../data/ffGeoJson.json";
if ( isset($_GET['mode']) ) {
switch($_GET['mode']) {
case "summary":
$url = "../data/ffSummarizedDir.json";
break;
case "geojson":
$url ="../data/ffGeoJson.json";
break;
default:
$url ="../data/ffGeoJson.json";
break;
}
}
$data = file_get_contents($url);
$json = json_encode($data);
$json = json_decode($json);
# JSON if no callback
if( ! isset($_GET['callback']) )
exit($json);
# JSONP if valid callback
if(is_valid_callback($_GET['callback']))
exit("{$_GET['callback']}($json)");
# Otherwise, bad request
header('status: 400 Bad Request', true, 400);