Improved www.ttss.krakow.pl
Jacek Kowalski
2017-03-17 ced30990541a35ded43912901ba67c9a4b30ed5a
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
<?php
if(php_sapi_name() !== 'cli') die();
 
$chars = 'aąbcćdeęfghijklłmnńoóprsśtuvwxyzżź0123456789';
$len = mb_strlen($chars);
 
$replacements = [
    '&Oacute;' => 'Ó',
    '&oacute;' => 'ó',
    '&Eacute;' => 'É',
    '&eacute;' => 'é',
];
 
$stops = [];
for($i = 0; $i < $len; $i++) {
    for($j = 0; $j < $len; $j++) {
        $char = mb_substr($chars, $i, 1).mb_substr($chars, $j, 1);
        $json = file_get_contents('http://www.ttss.krakow.pl/internetservice/services/lookup/autocomplete/json?query='.urlencode($char));
        $elements = json_decode($json, 1);
        foreach($elements as $element) {
            if($element['type'] == 'divider') continue;
            if($element['type'] == 'route') continue;
            if($element['type'] != 'stop') {
                throw new Exception('Unknown element: '.var_export($element, 1));
            }
            
            $stops[$element['id']] = strtr($element['name'], $replacements);
        }
    }
}
 
asort($stops);
var_export($stops);