Import/Core_geoip.php
[Pman.Core] / Import / Core_geoip.php
1 <?php
2
3 require_once 'Pman/Roo.php';
4
5 class Pman_Core_Import_Core_geoip extends Pman_Roo
6 {
7     static $cli_desc = "Insert the geoip database";
8     
9     static $cli_opts = array();
10     
11     var $id_mapping = array();
12
13     function getAuth()
14     {
15         $ff = HTML_FlexyFramework::get();
16         if (!$ff->cli) {
17             die("access denied");
18         }
19         HTML_FlexyFramework::ensureSingle(__FILE__, $this);
20         return true;
21     }
22     
23     function post()
24     {
25         $this->get();
26     }
27     
28     var $processed = 0;
29     var $total = 0;
30     var $echo = '';
31     
32     function get()
33     {
34         
35         PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, array($this, 'onPearError'));
36         
37         $location = '/tmp/GeoLite2-City-Locations.csv';
38         $block = '/tmp/GeoLite2-City-Blocks.csv';
39         
40         if(!file_exists($location) || !file_exists($block)){
41             $this->jerr('GeoLite2-City-Locations.csv OR GeoLite2-City-Blocks.csv does not exists?!');
42         }
43         
44         $this->log("Insert location data start");
45         
46         $this->insertLocation($location);
47         
48         $this->log("Insert Block data start");
49         
50         $this->insertBlock($block);
51         
52         $this->jok("DONE");
53     }
54     
55     function insertLocation($csv)
56     {
57         ini_set("auto_detect_line_endings", true);
58         
59         
60         
61         $fh = fopen($csv, 'r');
62         
63         if (!$fh) {
64             $this->jerr("invalid location file");
65         }
66         
67         $req = array(
68             'GEONAME_ID', 'CONTINENT_CODE', 'CONTINENT_NAME',
69             'COUNTRY_ISO_CODE', 'COUNTRY_NAME', 'SUBDIVISION_ISO_CODE',
70             'SUBDIVISION_NAME', 'CITY_NAME', 'METRO_CODE',
71             'TIME_ZONE'
72         );
73         
74         $cols = false;
75         
76         $this->processed = 0;
77         $this->total = count(file($csv));
78         $this->echo = '';
79         
80         while(false !== ($n = fgetcsv($fh,10000, ',', '"'))) {
81             if(!array_filter($n)){ // empty row
82                 continue;
83             }
84             
85             if (!$cols) {
86                 $cols = array();
87                 foreach($n as $k) {
88                     $cols[] = strtoupper(trim($k));
89                 }
90                 
91                 if (empty($cols)) {
92                     continue;
93                 }
94                 foreach($req as $r) {
95                     if (!in_array($r,$cols)) {
96                         $cols = false;
97                         break;
98                     }
99                 }
100                 continue;
101             }
102             
103             $row = array();
104             
105             foreach($cols as $i=>$k) {
106                 $row[$k] = trim($n[$i]);
107             }
108             
109             $this->processLocation($row);
110             
111             echo "\033[K"; // Erase to end of line:
112             
113             $echo = '';
114             
115             if (strlen($echo)) {
116                 echo "\033[".strlen($echo)."D";    // Move $length characters backward
117             }
118             
119             $echo = str_pad(ROUND(($this->processed / $this->total),2) * 100, 3, ' ', STR_PAD_LEFT) .
120                 " % (" . str_pad(($this->processed), strlen($this->total), ' ', STR_PAD_LEFT) .
121                 " / {$this->total}) - out {$this->out_count}";
122
123
124             echo $this->echo;
125
126             if($this->processed == $this->total){
127                 echo "\n";
128             }
129         }
130         
131     }
132     
133     function insertBlock($csv)
134     {
135         ini_set("auto_detect_line_endings", true);
136         
137         $fh = fopen($csv, 'r');
138         if (!$fh) {
139             $this->jerr("invalid location file");
140         }
141         
142         $req = array(
143             'NETWORK_START_IP', 'NETWORK_MASK_LENGTH', 'GEONAME_ID',
144             'REGISTERED_COUNTRY_GEONAME_ID', 'REPRESENTED_COUNTRY_GEONAME_ID', 'POSTAL_CODE',
145             'LATITUDE', 'LONGITUDE', 'IS_ANONYMOUS_PROXY',
146             'IS_SATELLITE_PROVIDER'
147         );
148         
149         $cols = false;
150         
151         while(false !== ($n = fgetcsv($fh,10000, ',', '"'))) {
152             if(!array_filter($n)){ // empty row
153                 continue;
154             }
155             
156             if (!$cols) {
157                 $cols = array();
158                 foreach($n as $k) {
159                     $cols[] = strtoupper(trim($k));
160                 }
161                 
162                 if (empty($cols)) {
163                     continue;
164                 }
165                 foreach($req as $r) {
166                     if (!in_array($r,$cols)) {
167                         $cols = false;
168                         break;
169                     }
170                 }
171                 continue;
172             }
173             
174             $row = array();
175             
176             foreach($cols as $i=>$k) {
177                 $row[$k] = trim($n[$i]);
178             }
179             
180             $this->processBlock($row);
181         }
182         
183     }
184     
185     
186     
187     function processLocation($row)
188     {   
189         $continent = $this->processContinent($row['CONTINENT_CODE'], $row['CONTINENT_NAME']);
190         
191         $country = $this->processCountry($row['COUNTRY_ISO_CODE'], $row['COUNTRY_NAME'], $continent);
192         
193         $division = $this->processDivision($row['SUBDIVISION_ISO_CODE'], $row['SUBDIVISION_NAME']);
194         
195         $city = $this->processCity($row['CITY_NAME'], $row['METRO_CODE'], $row['TIME_ZONE'], $country, $division);
196         
197         if(!empty($city) && !empty($city->id)){
198             $this->id_mapping[$row['GEONAME_ID']] = $city->id;
199         }
200     }
201     
202     function processContinent($code, $name)
203     {
204         if(empty($code)){
205             return false;
206         }
207         
208         $continent = DB_DataObject::factory('core_geoip_continent');
209         if(!$continent->get('code', $code)){
210             $continent->setFrom(array(
211                 'code' => $code,
212                 'name' => (!empty($name)) ? $name : $code
213             ));
214
215             $continent->insert();
216         }
217         
218         return $continent;
219     }
220     
221     function processCountry($code, $name, $continent)
222     {
223         if(empty($code)){
224             return false;
225         }
226         
227         $country = DB_DataObject::factory('core_geoip_country');
228         if(!$country->get('code', $code)){
229             $country->setFrom(array(
230                 'code' => $code,
231                 'name' => (!empty($name)) ? $name : $code,
232                 'continent_id' => (!empty($continent) && !empty($continent->id)) ? $continent->id : 0
233             ));
234
235             $country->insert();
236         }
237         
238         return $country;
239     }
240     
241     function processDivision($code, $name)
242     {
243         if(empty($code)){
244             return false;
245         }
246         
247         $division = DB_DataObject::factory('core_geoip_division');
248         if(!$division->get('code', $code)){
249             $division->setFrom(array(
250                 'code' => $code,
251                 'name' => (!empty($name)) ? $name : $code
252             ));
253
254             $division->insert();
255         }
256         
257         return $division;
258     }
259     
260     function processCity($name, $metro_code, $time_zone, $country, $division)
261     {
262         if(empty($name)){
263             return false;
264         }
265         
266         $city = DB_DataObject::factory('core_geoip_city');
267         
268         if($city->get('name', $name)){
269             return $city;
270         }
271         
272         $city->setFrom(array(
273             'name' => $name,
274             'metro_code' => $metro_code,
275             'time_zone' => $time_zone,
276             'country_id' => (!empty($country) && !empty($country->id)) ? $country->id : 0,
277             'division_id' => (!empty($division) && !empty($division->id)) ? $division->id : 0
278         ));
279         
280         $city->insert();
281         
282         return $city;
283         
284     }
285     
286     function processBlock($row)
287     {
288         if(empty($this->id_mapping[$row['GEONAME_ID']])){
289             $this->log("Missing mapping for {$row['GEONAME_ID']}");
290             $this->log("IP : {$row['NETWORK_START_IP']}");
291             return;
292         }
293         
294         $network_mapping = DB_DataObject::factory('core_geoip_network_mapping');
295         
296         $start_ip = array_pop(explode(":", $row['NETWORK_START_IP']));
297         
298         $network_mapping->setFrom(array(
299             'start_ip' => $start_ip,
300             'mask_length' => pow(2, (128 - $row['NETWORK_MASK_LENGTH'])),
301             'city_id' => $this->id_mapping[$row['GEONAME_ID']]
302         ));
303         
304         if(!$network_mapping->find(true)){
305             $network_mapping->insert();
306         }
307         
308         $location = DB_DataObject::factory('core_geoip_location');
309         if(!$location->get('city_id', $network_mapping->city_id)){
310             $location->setFrom(array(
311                 'latitude' => $row['LATITUDE'],
312                 'longitude' => $row['LONGITUDE'],
313                 'city_id' => $network_mapping->city_id
314             ));
315         }
316         
317         
318         if(!empty($row['POSTAL_CODE'])){
319             $city = DB_DataObject::factory('core_geoip_city');
320             if($city->get($network_mapping->city_id)){
321                 return;
322             }
323
324             $oc = clone($city);
325             $city->postal_code = $row['POSTAL_CODE'];
326             
327             $city->update($oc);
328         }
329         
330     }
331     
332     function log($str)
333     {
334         echo "$str \n";
335     }
336 }