Stores more geocoding information in addresses.
[platal.git] / classes / address.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2011 Polytechnique.org *
4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
22 /** Class Address is meant to perform most of the access to the table profile_addresses.
23 *
24 * profile_addresses describes an Address, which can be related to either a
25 * Profile, a Job or a Company:
26 * - for a Profile:
27 * - `type` is set to 'home'
28 * - `pid` is set to the related profile pid (in profiles)
29 * - `id` is the id of the address in the list of those related to that profile
30 * - `jobid` is set to 0
31 *
32 * - for a Company:
33 * - `type` is set to 'hq'
34 * - `pid` is set to 0
35 * - `jobid` is set to the id of the company (in profile_job_enum)
36 * - `id` is set to 0 (only one address per Company)
37 *
38 * - for a Job:
39 * - `type` is set to 'job'
40 * - `pid` is set to the pid of the Profile of the related Job (in both profiles and profile_job)
41 * - `id` is the id of the job to which we refer (in profile_job)
42 * - `jobid` is set to 0
43 *
44 * - for a Group:
45 * - `type` is set to 'group'
46 * - `pid` is set to 0
47 * - `jobid` is set to 0
48 * - `groupid` is set to the group id
49 *
50 * Thus an Address can be linked to a Company, a Profile, or a Job.
51 */
52 class Address
53 {
54 const LINK_JOB = 'job';
55 const LINK_COMPANY = 'hq';
56 const LINK_PROFILE = 'home';
57 const LINK_GROUP = 'group';
58
59 // List of all available postal formattings.
60 private static $formattings = array('FRANCE' => 'FR');
61
62 // Abbreviations to be used to format French postal addresses.
63 private static $streetAbbreviations = array(
64 'ALLEE' => 'ALL',
65 'AVENUE' => 'AV',
66 'BOULEVARD' => 'BD',
67 'CENTRE' => 'CTRE',
68 'CENTRE COMMERCIAL' => 'CCAL',
69 'IMMEUBLE' => 'IMM',
70 'IMMEUBLES' => 'IMM',
71 'IMPASSE' => 'IMP',
72 'LIEU-DIT' => 'LD',
73 'LOTISSEMENT' => 'LOT',
74 'PASSAGE' => 'PAS',
75 'PLACE' => 'PL',
76 'RESIDENCE' => 'RES',
77 'ROND-POINT' => 'RPT',
78 'ROUTE' => 'RTE',
79 'SQUARE' => 'SQ',
80 'VILLAGE' => 'VLGE',
81 'ZONE D\'ACTIVITE' => 'ZA',
82 'ZONE D\'AMENAGEMENT CONCERTE' => 'ZAC',
83 'ZONE D\'AMENAGEMENT DIFFERE' => 'ZAD',
84 'ZONE INDUSTRIELLE' => 'ZI'
85 );
86 private static $otherAbbreviations = array(
87 'ADJUDANT' => 'ADJ',
88 'AERODROME' => 'AERD',
89 'AEROGARE' => 'AERG',
90 'AERONAUTIQUE' => 'AERN',
91 'AEROPORT' => 'AERP',
92 'AGENCE' => 'AGCE',
93 'AGRICOLE' => 'AGRIC',
94 'ANCIEN' => 'ANC',
95 'ANCIENNEMENT' => 'ANC',
96 'APPARTEMENT' => 'APP',
97 'APPARTEMENTS' => 'APP',
98 'ARMEMENT' => 'ARMT',
99 'ARRONDISSEMENT' => 'ARR',
100 'ASPIRANT' => 'ASP',
101 'ASSOCIATION' => 'ASSOC',
102 'ASSURANCE' => 'ASSUR',
103 'ATELIER' => 'AT',
104 'BARAQUEMENT' => 'BRQ',
105 'BAS' => 'BAS',
106 'BASSE' => 'BAS',
107 'BASSES' => 'BAS',
108 'BATAILLON' => 'BTN',
109 'BATAILLONS' => 'BTN',
110 'BATIMENT' => 'BAT',
111 'BATIMENTS' => 'BAT',
112 'BIS' => 'B',
113 'BOITE POSTALE' => 'BP',
114 'CABINET' => 'CAB',
115 'CANTON' => 'CANT',
116 'CARDINAL' => 'CDL',
117 'CASE POSTALE' => 'CP',
118 'CHAMBRE' => 'CHBR',
119 'CITADELLE' => 'CTD',
120 'COLLEGE' => 'COLL',
121 'COLONEL' => 'CNL',
122 'COLONIE' => 'COLO',
123 'COMITE' => 'CTE',
124 'COMMANDANT' => 'CDT',
125 'COMMERCIAL' => 'CIAL',
126 'COMMUNE' => 'COM',
127 'COMMUNAL' => 'COM',
128 'COMMUNAUX' => 'COM',
129 'COMPAGNIE' => 'CIE',
130 'COMPAGNON' => 'COMP',
131 'COMPAGNONS' => 'COMP',
132 'COOPERATIVE' => 'COOP',
133 'COURSE SPECIALE' => 'CS',
134 'CROIX' => 'CRX',
135 'DELEGATION' => 'DELEG',
136 'DEPARTEMENTAL' => 'DEP',
137 'DEPARTEMENTAUX' => 'DEP',
138 'DIRECTEUR' => 'DIR',
139 'DIRECTECTION' => 'DIR',
140 'DIVISION' => 'DIV',
141 'DOCTEUR' => 'DR',
142 'ECONOMIE' => 'ECO',
143 'ECONOMIQUE' => 'ECO',
144 'ECRIVAIN' => 'ECRIV',
145 'ECRIVAINS' => 'ECRIV',
146 'ENSEIGNEMENT' => 'ENST',
147 'ENSEMBLE' => 'ENS',
148 'ENTREE' => 'ENT',
149 'ENTREES' => 'ENT',
150 'ENTREPRISE' => 'ENTR',
151 'EPOUX' => 'EP',
152 'EPOUSE' => 'EP',
153 'ETABLISSEMENT' => 'ETS',
154 'ETAGE' => 'ETG',
155 'ETAT MAJOR' => 'EM',
156 'EVEQUE' => 'EVQ',
157 'FACULTE' => 'FAC',
158 'FORET' => 'FOR',
159 'FORESTIER' => 'FOR',
160 'FRANCAIS' => 'FR',
161 'FRANCAISE' => 'FR',
162 'FUSILIER' => 'FUS',
163 'GENDARMERIE' => 'GEND',
164 'GENERAL' => 'GAL',
165 'GOUVERNEMENTAL' => 'GOUV',
166 'GOUVERNEUR' => 'GOU',
167 'GRAND' => 'GD',
168 'GRANDE' => 'GDE',
169 'GRANDES' => 'GDES',
170 'GRANDS' => 'GDS',
171 'HAUT' => 'HT',
172 'HAUTE' => 'HTE',
173 'HAUTES' => 'HTES',
174 'HAUTS' => 'HTS',
175 'HOPITAL' => 'HOP',
176 'HOPITAUX' => 'HOP',
177 'HOSPICE' => 'HOSP',
178 'HOSPITALIER' => 'HOSP',
179 'HOTEL' => 'HOT',
180 'INFANTERIE' => 'INFANT',
181 'INFERIEUR' => 'INF',
182 'INFERIEUR' => 'INF',
183 'INGENIEUR' => 'ING',
184 'INSPECTEUR' => 'INSP',
185 'INSTITUT' => 'INST',
186 'INTERNATIONAL' => 'INTERN',
187 'INTERNATIONALE' => 'INTERN',
188 'LABORATOIRE' => 'LABO',
189 'LIEUTENANT' => 'LT',
190 'LIEUTENANT DE VAISSEAU' => 'LTDV',
191 'MADAME' => 'MME',
192 'MADEMOISELLE' => 'MLLE',
193 'MAGASIN' => 'MAG',
194 'MAISON' => 'MAIS',
195 'MAITRE' => 'ME',
196 'MARECHAL' => 'MAL',
197 'MARITIME' => 'MAR',
198 'MEDECIN' => 'MED',
199 'MEDICAL' => 'MED',
200 'MESDAMES' => 'MMES',
201 'MESDEMOISELLES' => 'MLLES',
202 'MESSIEURS' => 'MM',
203 'MILITAIRE' => 'MIL',
204 'MINISTERE' => 'MIN',
205 'MONSEIGNEUR' => 'MGR',
206 'MONSIEUR' => 'M',
207 'MUNICIPAL' => 'MUN',
208 'MUTUEL' => 'MUT',
209 'NATIONAL' => 'NAL',
210 'NOTRE DAME' => 'ND',
211 'NOUVEAU' => 'NOUV',
212 'NOUVEL' => 'NOUV',
213 'NOUVELLE' => 'NOUV',
214 'OBSERVATOIRE' => 'OBS',
215 'PASTEUR' => 'PAST',
216 'PETIT' => 'PT',
217 'PETITE' => 'PTE',
218 'PETITES' => 'PTES',
219 'PETITS' => 'PTS',
220 'POLICE' => 'POL',
221 'PREFET' => 'PREF',
222 'PREFECTURE' => 'PREF',
223 'PRESIDENT' => 'PDT',
224 'PROFESSEUR' => 'PR',
225 'PROFESSIONNEL' => 'PROF',
226 'PROFESSIONNELE' => 'PROF',
227 'PROLONGE' => 'PROL',
228 'PROLONGEE' => 'PROL',
229 'PROPRIETE' => 'PROP',
230 'QUATER' => 'Q',
231 'QUINQUIES' => 'C',
232 'RECTEUR' => 'RECT',
233 'REGIMENT' => 'RGT',
234 'REGION' => 'REG',
235 'REGIONAL' => 'REG',
236 'REGIONALE' => 'REG',
237 'REPUBLIQUE' => 'REP',
238 'RESTAURANT' => 'REST',
239 'SAINT' => 'ST',
240 'SAINTE' => 'STE',
241 'SAINTES' => 'STES',
242 'SAINTS' => 'STS',
243 'SANATORIUM' => 'SANA',
244 'SERGENT' => 'SGT',
245 'SERVICE' => 'SCE',
246 'SOCIETE' => 'SOC',
247 'SOUS COUVERT' => 'SC',
248 'SOUS-PREFET' => 'SPREF',
249 'SUPERIEUR' => 'SUP',
250 'SUPERIEURE' => 'SUP',
251 'SYNDICAT' => 'SYND',
252 'TECHNICIEN' => 'TECH',
253 'TECHNICIENNE' => 'TECH',
254 'TECHNICIQUE' => 'TECH',
255 'TER' => 'T',
256 'TRI SERVICE ARRIVEE' => 'TSA',
257 'TUNNEL' => 'TUN',
258 'UNIVERSITAIRE' => 'UNVT',
259 'UNIVERSITE' => 'UNIV',
260 'VELODROME' => 'VELOD',
261 'VEUVE' => 'VVE',
262 'VIEILLE' => 'VIEL',
263 'VIEILLES' => 'VIEL',
264 'VIEUX' => 'VX'
265 );
266 private static $entrepriseAbbreviations = array(
267 'COOPERATIVE D\'UTILISATION DE MATERIEL AGRICOLE EN COMMUN' => 'CUMA',
268 'ETABLISSEMENT PUBLIC A CARACTERE INDUSTRIEL ET COMMERCIAL' => 'EPIC',
269 'ETABLISSEMENT PUBLIC ADMINISTRATIF' => 'EPA',
270 'GROUPEMENT AGRICOLE D\'EXPLOITATION EN COMMUN' => 'GAEC',
271 'GROUPEMENT D\'INTERET ECONOMIQUE' => 'GIE',
272 'GROUPEMENT D\'INTERET PUBLIC' => 'GIP',
273 'GROUPEMENT EUROPEEN D\'INTERET ECONOMIQUE' => 'GEIE',
274 'OFFICE PUBLIC D\'HABITATION A LOYER MODERE' => 'OPHLM',
275 'SOCIETE A RESPONSABILITE LIMITEE' => 'SARL',
276 'SOCIETE ANONYME' => 'SA',
277 'SOCIETE CIVILE DE PLACEMENT COLLECTIF IMMOBILIER' => 'SCPI',
278 'SOCIETE CIVILE PROFESSIONNELLE' => 'SCP',
279 'SOCIETE COOPERATIVE OUVRIERE DE PRODUCTION ET DE CREDIT' => 'SCOP',
280 'SOCIETE D\'AMENAGEMENT FONCIER ET D\'EQUIPEMENT RURAL' => 'SAFER',
281 'SOCIETE D\'ECONOMIE MIXTE' => 'SEM',
282 'SOCIETE D\'INTERET COLLECTIF AGRICOLE' => 'SICA',
283 'SOCIETE D\'INVESTISSEMENT A CAPITAL VARIABLE' => 'SICAV',
284 'SOCIETE EN NOM COLLECTIF' => 'SNC',
285 'SOCIETE IMMOBILIERE POUR LE COMMERCE ET L\'INDUSTRIE' => 'SICOMI',
286 'SOCIETE MIXTE D\'INTERET AGRICOLE' => 'SMIA',
287 'SYNDICAT INTERCOMMUNAL A VOCATION MULTIPLE' => 'SIVOM',
288 'SYNDICAT INTERCOMMUNAL A VOCATION UNIQUE' => 'SIVU'
289 );
290
291 // Primary key fields: the quadruplet ($pid, $jobid, $type, $id) defines a unique address.
292 public $pid = 0;
293 public $jobid = 0;
294 public $groupid = 0;
295 public $type = Address::LINK_PROFILE;
296 public $id = 0;
297
298 // Geocoding fields.
299 public $text = '';
300 public $postalText = '';
301 public $types = '';
302 public $formatted_address = '';
303 public $components = array();
304 public $latitude = null;
305 public $longitude = null;
306 public $southwest_latitude = null;
307 public $southwest_longitude = null;
308 public $northeast_latitude = null;
309 public $northeast_longitude = null;
310 public $location_type = '';
311 public $partial_match = false;
312 public $componentsIds = '';
313 public $request = false;
314 public $geocoding_date = null;
315 public $geocoding_calls = 0;
316
317 // Database's field required for both 'home' and 'job' addresses.
318 public $pub = 'ax';
319
320 // Database's fields required for 'home' addresses.
321 public $flags = null; // 'current', 'temporary', 'secondary', 'mail', 'cedex', 'deliveryIssue'
322 public $comment = null;
323 public $current = null;
324 public $temporary = null;
325 public $secondary = null;
326 public $mail = null;
327 public $deliveryIssue = null;
328
329 // Remaining fields that do not belong to profile_addresses.
330 public $phones = array();
331 public $error = false;
332 public $changed = 0;
333 public $removed = 0;
334
335 public function __construct(array $data = array())
336 {
337 if (count($data) > 0) {
338 foreach ($data as $key => $val) {
339 $this->$key = $val;
340 }
341 }
342
343 if (!is_null($this->flags)) {
344 $this->flags = new PlFlagSet($this->flags);
345 } else {
346 static $flags = array('current', 'temporary', 'secondary', 'mail', 'deliveryIssue');
347
348 $this->flags = new PlFlagSet();
349 foreach ($flags as $flag) {
350 if (!is_null($this->$flag) && ($this->$flag == 1 || $this->$flag == 'on')) {
351 $this->flags->addFlag($flag, 1);
352 $this->$flag = null;
353 }
354 $this->flags->addFlag('cedex', (strpos(strtoupper(preg_replace(array("/[0-9,\"'#~:;_\- ]/", "/\r\n/"),
355 array('', "\n"), $this->text)), 'CEDEX')) !== false);
356 }
357 }
358 $this->request = !is_null(AddressReq::get_request($this->pid, $this->jobid, $this->groupid, $this->type, $this->text));
359 }
360
361 public function setId($id)
362 {
363 $this->id = $id;
364 }
365
366 public function phones()
367 {
368 return $this->phones;
369 }
370
371 public function addPhone(Phone $phone)
372 {
373 if ($phone->link_type == Phone::LINK_ADDRESS && $phone->pid == $this->pid) {
374 $this->phones[$phone->uniqueId()] = $phone;
375 }
376 }
377
378 public function hasFlag($flag)
379 {
380 return ($this->flags != null && $this->flags->hasFlag($flag));
381 }
382
383 public function addFlag($flag)
384 {
385 $this->flags->addFlag($flag);
386 }
387
388 /** Auxilary function for formatting postal addresses.
389 * If the needle is found in the haystack, it notifies the substitution's
390 * success, modifies the length accordingly and returns either the matching
391 * substitution or the needle.
392 */
393 private function substitute($needle, $haystack, &$length, &$success, $trim = false)
394 {
395 if (array_key_exists($needle, $haystack)) {
396 $success = true;
397 $length -= (strlen($needle) - strlen($haystack[$needle]));
398 return $haystack[$needle];
399 } elseif ($trim) {
400 $success = true;
401 if (strlen($needle) > 4) {
402 $length -= (strlen($needle) - 4);
403 $needle = $needle{4};
404 }
405 }
406 return $needle;
407 }
408
409 /** Checks if the line corresponds to a French street line.
410 * A line is considered a French street line if it starts by between 1 and 4 numbers.
411 */
412 private function isStreetFR($line)
413 {
414 return preg_match('/^\d{1,4}\D/', $line);
415 }
416
417 /** Retrieves a French street number and slit the rest of the line into an array.
418 * @param $words: array containing the rest of the line (a word per cell).
419 * @param $line: line to consider.
420 * Returns the street number.
421 */
422 private function getStreetNumberFR(&$line)
423 {
424 // First we define numbers and separators.
425 $numberReq = '(\d{1,4})\s*(BIS|TER|QUATER|[A-Z])?';
426 $separatorReq = '\s*(?:\\|-|&|A|ET)?\s*';
427
428 // Then we retrieve the number(s) and the rest of the line.
429 // $matches contains:
430 // -0: the full patern, here the given line,
431 // -1: the number,
432 // -2: its optionnal quantifier,
433 // -3: an optionnal second number,
434 // -4: the second number's optionnal quantifier,
435 // -5: the rest of the line.
436 preg_match('/^' . $numberReq . '(?:' . $separatorReq . $numberReq . ')?\s+(.*)/', $line, $matches);
437 $number = $matches[1];
438 $line = $matches[5];
439
440 // If there is a precision on the address, we concatenate it to the number.
441 if ($matches[2] != '') {
442 $number .= $matches[2]{0};
443 } elseif ($matches[4] != '') {
444 $number .= $matches[4]{0};
445 }
446
447 return $number;
448 }
449
450 /** Checks if the line corresponds to a French locality line.
451 * A line is considered a French locality line if it starts by exactly a
452 * postal code of exactly 5 numbers.
453 */
454 private function isLocalityFR($line)
455 {
456 return preg_match('/^\d{5}\D/', $line);
457 }
458
459 /** Retrieves a French postal code and slit the rest of the line into an array.
460 * @param $words: array containing the rest of the line (a word per cell).
461 * @param $line: line to consider.
462 * Returns the postal code, and cuts it out from the line.
463 */
464 private function getPostalCodeFR(&$line)
465 {
466 $number = substr($line, 0, 5);
467 $line = trim(substr($line, 5));
468 return $number;
469 }
470
471 /** Returns the address formated for French postal use (cf AFNOR XPZ 10-011).
472 * A postal addresse containts at most 6 lines of at most 38 characters each:
473 * - addressee's identification ("MONSIEUR JEAN DURAND", "DURAND SA"…),
474 * - delivery point identification ("CHEZ TOTO APPARTEMENT 2", "SERVICE ACHAT"…),
475 * - building localisation complement ("ENTREE A BATIMENT DES JONQUILLES", "ZONE INDUSTRIELLE OUEST"…),
476 * - N° and street name ("25 RUE DES FLEURS", "LES VIGNES"…),
477 * - delivery service, street localisation complement ("BP 40122", "BP 40112 AREYRES"…),
478 * - postal code and locality or cedex code and cedex ("33500 LIBOURNE", "33506 LIBOURNE CEDEX"…).
479 * Punctuation must be removed, all leters must be uppercased.
480 * Both locality and street name must not take more than 32 characters.
481 *
482 * @param $arrayText: array containing the address to be formated, one
483 * address line per array line.
484 * @param $count: array size.
485 */
486 private function formatPostalAddressFR($arrayText)
487 {
488 // First removes country if any.
489 $count = count($arrayText);
490 if ($arrayText[$count - 1] == 'FRANCE') {
491 unset($arrayText[$count - 1]);
492 --$count;
493 }
494
495 // All the lines must have less than 38 characters but street and
496 // locality lines whose limit is 32 characters.
497 foreach ($arrayText as $lineNumber => $line) {
498 if ($isStreetLine = $this->isStreetFR($line)) {
499 $formattedLine = $this->getStreetNumberFR($line) . ' ';
500 $limit = 32;
501 } elseif ($this->isLocalityFR($line)) {
502 $formattedLine = $this->getPostalCodeFR($line) . ' ';
503 $limit = 32;
504 } else {
505 $formattedLine = '';
506 $limit = 38;
507 }
508
509 $words = explode(' ', $line);
510 $count = count($words);
511 $length = $count - 1;
512 foreach ($words as $word) {
513 $length += strlen($word);
514 }
515
516 // Checks is length is ok. Otherwise, we try to shorten words and
517 // update the length of the current line accordingly.
518 for ($i = 0; $i < $count && $length > $limit; ++$i) {
519 $success = false;
520 if ($isStreetLine) {
521 $sub = $this->substitute($words[$i], Address::$streetAbbreviations, $length, $success, ($i == 0));
522 }
523 // Entreprises' substitution are only suitable for the first two lines.
524 if ($lineNumber <= 2 && !$success) {
525 $sub = $this->substitute($words[$i], Address::$entrepriseAbbreviations, $length, $success);
526 }
527 if (!$success) {
528 $sub = $this->substitute($words[$i], Address::$otherAbbreviations, $length, $success);
529 }
530
531 $formattedLine .= $sub . ' ';
532 }
533 for (; $i < $count; ++$i) {
534 $formattedLine .= $words[$i] . ' ';
535 }
536 $arrayText[$lineNumber] = trim($formattedLine);
537 }
538
539 return implode("\n", $arrayText);
540 }
541
542 // Formats postal addresses.
543 // First erases punctuation, accents… Then uppercase the address and finally
544 // calls the country's dedicated formatting function.
545 public function formatPostalAddress()
546 {
547 // Performs rough formatting.
548 $text = mb_strtoupper(replace_accent($this->text));
549 $text = str_replace(array(',', ';', '.', ':', '!', '?', '"', '«', '»'), '', $text);
550 $text = preg_replace('/( |\t)+/', ' ', $text);
551 $arrayText = explode("\n", $text);
552 $arrayText = array_map('trim', $arrayText);
553
554 // Formats according to country rules. Thus we first identify the
555 // country, then apply corresponding formatting or translate country
556 // into default language.
557 $count = count($arrayText);
558 list($countryId, $country) = XDB::fetchOneRow('SELECT gc.iso_3166_1_a2, gc.country
559 FROM geoloc_countries AS gc
560 INNER JOIN geoloc_languages AS gl ON (gc.iso_3166_1_a2 = gl.iso_3166_1_a2)
561 WHERE gl.countryPlain = {?} OR gc.countryPlain = {?}',
562 $arrayText[$count - 1], $arrayText[$count - 1]);
563 if (is_null($countryId)) {
564 $text = $this->formatPostalAddressFR($arrayText);
565 } elseif (in_array(strtoupper($countryId), Address::$formattings)) {
566 $text = call_user_func(array($this, 'formatPostalAddress' . strtoupper($countryId)), $arrayText);
567 } else {
568 $arrayText[$count - 1] = mb_strtoupper(replace_accent($country));
569 $text = implode("\n", $arrayText);
570 }
571
572 $this->postalText = $text;
573 }
574
575 public function format()
576 {
577 $this->text = trim($this->text);
578 $this->phones = Phone::formatFormArray($this->phones, $this->error, new ProfileVisibility($this->pub));
579 if ($this->removed == 1) {
580 if (!S::user()->checkPerms('directory_private') && Phone::hasPrivate($this->phones)) {
581 Platal::page()->trigWarning("L'adresse ne peut être supprimée car elle contient des informations pour lesquelles vous n'avez le droit d'édition.");
582 } else {
583 $this->text = '';
584 return true;
585 }
586 }
587
588 $this->formatPostalAddress();
589 if ($this->changed == 1) {
590 $gmapsGeocoder = new GMapsGeocoder();
591 $gmapsGeocoder->getGeocodedAddress($this);
592 }
593
594 $componants = array();
595 foreach ($this->components as $component) {
596 $componants[] = Geocoder::getComponentId($component);
597 }
598 $this->componentsIds = implode(',', $componants);
599
600 return true;
601 }
602
603 public function toFormArray()
604 {
605 $address = array(
606 'text' => $this->text,
607 'postalText' => $this->postalText,
608 'types' => $this->types,
609 'formatted_address' => $this->formatted_address,
610 'latitude' => $this->latitude,
611 'longitude' => $this->longitude,
612 'southwest_latitude' => $this->southwest_latitude,
613 'southwest_longitude' => $this->southwest_longitude,
614 'northeast_latitude' => $this->northeast_latitude,
615 'northeast_longitude' => $this->northeast_longitude,
616 'location_type' => $this->location_type,
617 'partial_match' => $this->partial_match,
618 'componentsIds' => $this->componentsIds,
619 'geocoding_date' => $this->geocoding_date,
620 'geocoding_calls' => $this->geocoding_calls,
621 'request' => $this->request
622 );
623
624 if ($this->type == self::LINK_PROFILE || $this->type == self::LINK_JOB) {
625 $address['pub'] = $this->pub;
626 }
627 if ($this->type == self::LINK_PROFILE) {
628 static $flags = array('current', 'temporary', 'secondary', 'mail', 'cedex', 'deliveryIssue');
629 foreach ($flags as $flag) {
630 $address[$flag] = $this->flags->hasFlag($flag);
631 }
632 $address['comment'] = $this->comment;
633 $address['phones'] = Phone::formatFormArray($this->phones);
634 }
635
636 return $address;
637 }
638
639 private function toString()
640 {
641 $address = $this->text;
642 if ($this->type == self::LINK_PROFILE || $this->type == self::LINK_JOB) {
643 static $pubs = array('public' => 'publique', 'ax' => 'annuaire AX', 'private' => 'privé');
644 $address .= ' (affichage ' . $pubs[$this->pub];
645 }
646 if ($this->type == self::LINK_PROFILE) {
647 static $flags = array(
648 'current' => 'actuelle',
649 'temporary' => 'temporaire',
650 'secondary' => 'secondaire',
651 'mail' => 'conctactable par courier',
652 'deliveryIssue' => 'n\'habite pas à l\'adresse indiquée',
653 'cedex' => 'type cédex',
654 );
655
656 if (!$this->flags->hasFlag('temporary')) {
657 $address .= ', permanente';
658 }
659 if (!$this->flags->hasFlag('secondary')) {
660 $address .= ', principale';
661 }
662 foreach ($flags as $flag => $flagName) {
663 if ($this->flags->hasFlag($flag)) {
664 $address .= ', ' . $flagName;
665 }
666 }
667 if ($this->comment) {
668 $address .= ', commentaire : ' . $this->comment;
669 }
670 if ($phones = Phone::formArrayToString($this->phones)) {
671 $address .= ', ' . $phones;
672 }
673 } elseif ($this->type == self::LINK_JOB) {
674 $address .= ')';
675 }
676 return $address;
677 }
678
679 private function isEmpty()
680 {
681 return (!$this->text || $this->text == '');
682 }
683
684 public function save()
685 {
686 if (!$this->isEmpty()) {
687 XDB::execute('INSERT IGNORE INTO profile_addresses (pid, jobid, groupid, type, id, flags, text, postalText, pub, comment,
688 types, formatted_address, location_type, partial_match, latitude, longitude,
689 southwest_latitude, southwest_longitude, northeast_latitude, northeast_longitude,
690 geocoding_date, geocoding_calls)
691 VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?},
692 {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, NOW(), {?})',
693 $this->pid, $this->jobid, $this->groupid, $this->type, $this->id, $this->flags, $this->text, $this->postalText, $this->pub, $this->comment,
694 $this->types, $this->formatted_address, $this->location_type, $this->partial_match, $this->latitude, $this->longitude,
695 $this->southwest_latitude, $this->southwest_longitude, $this->northeast_latitude, $this->northeast_longitude, $this->geocoding_calls);
696
697 if ($this->componentsIds) {
698 foreach (explode(',', $this->componentsIds) as $component_id) {
699 XDB::execute('INSERT IGNORE INTO profile_addresses_components (pid, jobid, groupid, type, id, component_id)
700 VALUES ({?}, {?}, {?}, {?}, {?}, {?})',
701 $this->pid, $this->jobid, $this->groupid, $this->type, $this->id, $component_id);
702 }
703 }
704
705 if ($this->type == self::LINK_PROFILE) {
706 Phone::savePhones($this->phones, $this->pid, Phone::LINK_ADDRESS, $this->id);
707 }
708 }
709 }
710
711 public function updateGeocoding($text)
712 {
713 $id = null;
714 $texts = XDB::fetchAllAssoc('id', 'SELECT id, text
715 FROM profile_addresses
716 WHERE pid = {?} AND jobid = {?} AND groupid = {?} AND type = {?}',
717 $this->pid, $this->jobid, $this->groupid, $this->type);
718 $text = preg_replace('/\s+/', ' ', $text);
719 foreach ($texts as $key => $value) {
720 if (strcmp($text, preg_replace('/\s+/', ' ', $value)) == 0) {
721 $id = $key;
722 break;
723 }
724 }
725 if (!is_null($id)) {
726 XDB::execute('UPDATE profile_addresses
727 SET text = {?}, postalText = {?}, types = {?}, formatted_address = {?},
728 location_type = {?}, partial_match = {?}, latitude = {?}, longitude = {?},
729 southwest_latitude = {?}, southwest_longitude = {?}, northeast_latitude = {?}, northeast_longitude = {?},
730 geocoding_date = {?}, geocoding_calls = NOW()
731 WHERE pid = {?} AND jobid = {?} AND groupid = {?} AND type = {?} AND id = {?}',
732 $this->text, $this->postalText, $this->types, $this->formatted_address,
733 $this->location_type, $this->partial_match, $this->latitude, $this->longitude,
734 $this->southwest_latitude, $this->southwest_longitude, $this->northeast_latitude, $this->northeast_longitude,
735 $this->pid, $this->jobid, $this->groupid, $this->type, $id, $this->geocoding_calls);
736
737 XDB::execute('DELETE FROM profile_addresses_components
738 WHERE pid = {?} AND jobid = {?} AND groupid = {?} AND type = {?} AND id = {?}',
739 $this->pid, $this->jobid, $this->groupid, $this->type, $id);
740 if ($this->componentsIds) {
741 foreach (explode(',', $this->componentsIds) as $component_id) {
742 XDB::execute('INSERT IGNORE INTO profile_addresses_components (pid, jobid, groupid, type, id, component_id)
743 VALUES ({?}, {?}, {?}, {?}, {?}, {?})',
744 $this->pid, $this->jobid, $this->groupid, $this->type, $id, $component_id);
745 }
746 }
747 }
748 }
749
750 public function delete()
751 {
752 XDB::execute('DELETE FROM profile_addresses
753 WHERE pid = {?} AND jobid = {?} AND groupid = {?} AND type = {?} AND id = {?}',
754 $this->pid, $this->jobid, $this->groupid, $this->type, $this->id);
755 }
756
757 static public function deleteAddresses($pid, $type, $jobid = null, $groupid = null, $deletePrivate = true)
758 {
759 $where = '';
760 if (!is_null($pid)) {
761 $where = XDB::format(' AND pid = {?}', $pid);
762 }
763 if (!is_null($jobid)) {
764 $where = XDB::format(' AND jobid = {?}', $jobid);
765 }
766 if (!is_null($groupid)) {
767 $where = XDB::format(' AND groupid = {?}', $groupid);
768 }
769 XDB::execute('DELETE FROM profile_addresses
770 WHERE type = {?}' . $where . (($deletePrivate) ? '' : ' AND pub IN (\'public\', \'ax\')'),
771 $type);
772 if ($type == self::LINK_PROFILE) {
773 Phone::deletePhones($pid, Phone::LINK_ADDRESS, null, $deletePrivate);
774 }
775 }
776
777 /** Saves addresses into the database.
778 * @param $data: an array of form formatted addresses.
779 * @param $pid, $type, $linkid: pid, type and id concerned by the update.
780 */
781 static public function saveFromArray(array $data, $pid, $type = self::LINK_PROFILE, $linkid = null, $savePrivate = true)
782 {
783 foreach ($data as $id => $value) {
784 if ($value['pub'] != 'private' || $savePrivate) {
785 if (!is_null($linkid)) {
786 $value['id'] = $linkid;
787 } else {
788 $value['id'] = $id;
789 }
790 if (!is_null($pid)) {
791 $value['pid'] = $pid;
792 }
793 if (!is_null($type)) {
794 $value['type'] = $type;
795 }
796 $address = new Address($value);
797 $address->save();
798 }
799 }
800 }
801
802 static private function formArrayWalk(array $data, $function, &$success = true, $requiresEmptyAddress = false)
803 {
804 $addresses = array();
805 foreach ($data as $item) {
806 $address = new Address($item);
807 $success = ($address->format() && $success);
808 if (!$address->isEmpty()) {
809 $addresses[] = call_user_func(array($address, $function));
810 }
811 }
812 if (count($address) == 0 && $requiresEmptyAddress) {
813 $address = new Address();
814 $addresses[] = call_user_func(array($address, $function));
815 }
816 return $addresses;
817 }
818
819 // Compares two addresses. First sort by publicity, then place primary
820 // addresses before secondary addresses.
821 static private function compare(array $a, array $b)
822 {
823 $value = ProfileVisibility::comparePublicity($a, $b);
824 if ($value == 0) {
825 if ($a['secondary'] != $b['secondary']) {
826 $value = $a['secondary'] ? 1 : -1;
827 }
828 }
829 return $value;
830 }
831
832 // Formats an array of form addresses into an array of form formatted addresses.
833 static public function formatFormArray(array $data, &$success = true)
834 {
835 $addresses = self::formArrayWalk($data, 'toFormArray', $success, true);
836
837 // Only a single address can be the profile's current address and she must have one.
838 $hasCurrent = false;
839 foreach ($addresses as $key => &$address) {
840 if (isset($address['current']) && $address['current']) {
841 if ($hasCurrent) {
842 $address['current'] = false;
843 } else {
844 $hasCurrent = true;
845 }
846 }
847 }
848 if (!$hasCurrent && count($value) > 0) {
849 foreach ($value as &$address) {
850 $address['current'] = true;
851 break;
852 }
853 }
854
855 usort($addresses, 'Address::compare');
856 return $addresses;
857 }
858
859 static public function formArrayToString(array $data)
860 {
861 return implode(', ', self::formArrayWalk($data, 'toString'));
862 }
863
864 static public function hasPrivate(array $addresses)
865 {
866 foreach ($addresses as $address) {
867 if ($address['pub'] == 'private') {
868 return true;
869 }
870 }
871 return false;
872 }
873
874 static public function iterate(array $pids = array(), array $types = array(),
875 array $jobids = array(), array $pubs = array())
876 {
877 return new AddressIterator($pids, $types, $jobids, $pubs);
878 }
879 }
880
881 /** Iterator over a set of Phones
882 *
883 * @param $pid, $type, $jobid, $pub
884 *
885 * The iterator contains the phones that correspond to the value stored in the
886 * parameters' arrays.
887 */
888 class AddressIterator implements PlIterator
889 {
890 private $dbiter;
891
892 public function __construct(array $pids, array $types, array $jobids, array $pubs)
893 {
894 $where = array();
895 if (count($pids) != 0) {
896 $where[] = XDB::format('(pa.pid IN {?})', $pids);
897 }
898 if (count($types) != 0) {
899 $where[] = XDB::format('(pa.type IN {?})', $types);
900 }
901 if (count($jobids) != 0) {
902 $where[] = XDB::format('(pa.jobid IN {?})', $jobids);
903 }
904 if (count($pubs) != 0) {
905 $where[] = XDB::format('(pa.pub IN {?})', $pubs);
906 }
907 $sql = 'SELECT pa.pid, pa.jobid, pa.groupid, pa.type, pa.id, pa.flags, pa.text, pa.postalText, pa.pub, pa.comment,
908 pa.types, pa.formatted_address, pa.location_type, pa.partial_match, pa.latitude, pa.longitude,
909 pa.southwest_latitude, pa.southwest_longitude, pa.northeast_latitude, pa.northeast_longitude,
910 pa.geocoding_date, pa.geocoding_calls,
911 GROUP_CONCAT(DISTINCT pc.component_id SEPARATOR \',\') AS componentsIds,
912 pace1.long_name AS postalCode, pace2.long_name AS locality, pace3.long_name AS administrativeArea, pace4.long_name AS country
913 FROM profile_addresses AS pa
914 LEFT JOIN profile_addresses_components AS pc ON (pa.pid = pc.pid AND pa.jobid = pc.jobid AND pa.groupid = pc.groupid
915 AND pa.type = pc.type AND pa.id = pc.id)
916 LEFT JOIN profile_addresses_components_enum AS pace1 ON (FIND_IN_SET(\'postal_code\', pace1.types))
917 LEFT JOIN profile_addresses_components_enum AS pace2 ON (FIND_IN_SET(\'locality\', pace2.types))
918 LEFT JOIN profile_addresses_components_enum AS pace3 ON (FIND_IN_SET(\'administrative_area_level_1\', pace3.types))
919 LEFT JOIN profile_addresses_components_enum AS pace4 ON (FIND_IN_SET(\'country\', pace4.types))
920 LEFT JOIN profile_addresses_components AS pac1 ON (pa.pid = pac1.pid AND pa.jobid = pac1.jobid AND pa.groupid = pac1.groupid
921 AND pa.id = pac1.id AND pa.type = pac1.type AND pace1.id = pac1.component_id)
922 LEFT JOIN profile_addresses_components AS pac2 ON (pa.pid = pac2.pid AND pa.jobid = pac2.jobid AND pa.groupid = pac2.groupid
923 AND pa.id = pac2.id AND pa.type = pac2.type AND pace2.id = pac2.component_id)
924 LEFT JOIN profile_addresses_components AS pac3 ON (pa.pid = pac3.pid AND pa.jobid = pac3.jobid AND pa.groupid = pac3.groupid
925 AND pa.id = pac3.id AND pa.type = pac3.type AND pace3.id = pac3.component_id)
926 LEFT JOIN profile_addresses_components AS pac4 ON (pa.pid = pac4.pid AND pa.jobid = pac4.jobid AND pa.groupid = pac4.groupid
927 AND pa.id = pac4.id AND pa.type = pac4.type AND pace4.id = pac4.component_id)
928
929 ' . ((count($where) > 0) ? 'WHERE ' . implode(' AND ', $where) : '') . '
930 GROUP BY pa.pid, pa.jobid, pa.groupid, pa.type, pa.id
931 ORDER BY pa.pid, pa.jobid, pa.id';
932 $this->dbiter = XDB::iterator($sql);
933 }
934
935 public function next()
936 {
937 if (is_null($this->dbiter)) {
938 return null;
939 }
940 $data = $this->dbiter->next();
941 if (is_null($data)) {
942 return null;
943 }
944 // Adds phones to addresses.
945 $it = Phone::iterate(array($data['pid']), array(Phone::LINK_ADDRESS), array($data['id']));
946 while ($phone = $it->next()) {
947 $data['phones'][$phone->id] = $phone->toFormArray();
948 }
949 return new Address($data);
950 }
951
952 public function total()
953 {
954 return $this->dbiter->total();
955 }
956
957 public function first()
958 {
959 return $this->dbiter->first();
960 }
961
962 public function last()
963 {
964 return $this->dbiter->last();
965 }
966
967 public function value()
968 {
969 return $this->dbiter;
970 }
971 }
972
973 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
974 ?>