1b15158e3f8cfcc91eb29315dc55e1a6fa062ef7
[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
314 // Database's field required for both 'home' and 'job' addresses.
315 public $pub = 'ax';
316
317 // Database's fields required for 'home' addresses.
318 public $flags = null; // 'current', 'temporary', 'secondary', 'mail', 'cedex', 'deliveryIssue'
319 public $comment = null;
320 public $current = null;
321 public $temporary = null;
322 public $secondary = null;
323 public $mail = null;
324 public $deliveryIssue = null;
325
326 // Remaining fields that do not belong to profile_addresses.
327 public $phones = array();
328 public $error = false;
329 public $changed = 0;
330 public $removed = 0;
331
332 public function __construct(array $data = array())
333 {
334 if (count($data) > 0) {
335 foreach ($data as $key => $val) {
336 $this->$key = $val;
337 }
338 }
339
340 if (!is_null($this->flags)) {
341 $this->flags = new PlFlagSet($this->flags);
342 } else {
343 static $flags = array('current', 'temporary', 'secondary', 'mail', 'deliveryIssue');
344
345 $this->flags = new PlFlagSet();
346 foreach ($flags as $flag) {
347 if (!is_null($this->$flag) && ($this->$flag == 1 || $this->$flag == 'on')) {
348 $this->flags->addFlag($flag, 1);
349 $this->$flag = null;
350 }
351 $this->flags->addFlag('cedex', (strpos(strtoupper(preg_replace(array("/[0-9,\"'#~:;_\- ]/", "/\r\n/"),
352 array('', "\n"), $this->text)), 'CEDEX')) !== false);
353 }
354 }
355 }
356
357 public function setId($id)
358 {
359 $this->id = $id;
360 }
361
362 public function phones()
363 {
364 return $this->phones;
365 }
366
367 public function addPhone(Phone $phone)
368 {
369 if ($phone->link_type == Phone::LINK_ADDRESS && $phone->pid == $this->pid) {
370 $this->phones[$phone->uniqueId()] = $phone;
371 }
372 }
373
374 public function hasFlag($flag)
375 {
376 return ($this->flags != null && $this->flags->hasFlag($flag));
377 }
378
379 public function addFlag($flag)
380 {
381 $this->flags->addFlag($flag);
382 }
383
384 /** Auxilary function for formatting postal addresses.
385 * If the needle is found in the haystack, it notifies the substitution's
386 * success, modifies the length accordingly and returns either the matching
387 * substitution or the needle.
388 */
389 private function substitute($needle, $haystack, &$length, &$success, $trim = false)
390 {
391 if (array_key_exists($needle, $haystack)) {
392 $success = true;
393 $length -= (strlen($needle) - strlen($haystack[$needle]));
394 return $haystack[$needle];
395 } elseif ($trim) {
396 $success = true;
397 if (strlen($needle) > 4) {
398 $length -= (strlen($needle) - 4);
399 $needle = $needle{4};
400 }
401 }
402 return $needle;
403 }
404
405 /** Checks if the line corresponds to a French street line.
406 * A line is considered a French street line if it starts by between 1 and 4 numbers.
407 */
408 private function isStreetFR($line)
409 {
410 return preg_match('/^\d{1,4}\D/', $line);
411 }
412
413 /** Retrieves a French street number and slit the rest of the line into an array.
414 * @param $words: array containing the rest of the line (a word per cell).
415 * @param $line: line to consider.
416 * Returns the street number.
417 */
418 private function getStreetNumberFR(&$line)
419 {
420 // First we define numbers and separators.
421 $numberReq = '(\d{1,4})\s*(BIS|TER|QUATER|[A-Z])?';
422 $separatorReq = '\s*(?:\\|-|&|A|ET)?\s*';
423
424 // Then we retrieve the number(s) and the rest of the line.
425 // $matches contains:
426 // -0: the full patern, here the given line,
427 // -1: the number,
428 // -2: its optionnal quantifier,
429 // -3: an optionnal second number,
430 // -4: the second number's optionnal quantifier,
431 // -5: the rest of the line.
432 preg_match('/^' . $numberReq . '(?:' . $separatorReq . $numberReq . ')?\s+(.*)/', $line, $matches);
433 $number = $matches[1];
434 $line = $matches[5];
435
436 // If there is a precision on the address, we concatenate it to the number.
437 if ($matches[2] != '') {
438 $number .= $matches[2]{0};
439 } elseif ($matches[4] != '') {
440 $number .= $matches[4]{0};
441 }
442
443 return $number;
444 }
445
446 /** Checks if the line corresponds to a French locality line.
447 * A line is considered a French locality line if it starts by exactly a
448 * postal code of exactly 5 numbers.
449 */
450 private function isLocalityFR($line)
451 {
452 return preg_match('/^\d{5}\D/', $line);
453 }
454
455 /** Retrieves a French postal code and slit the rest of the line into an array.
456 * @param $words: array containing the rest of the line (a word per cell).
457 * @param $line: line to consider.
458 * Returns the postal code, and cuts it out from the line.
459 */
460 private function getPostalCodeFR(&$line)
461 {
462 $number = substr($line, 0, 5);
463 $line = trim(substr($line, 5));
464 return $number;
465 }
466
467 /** Returns the address formated for French postal use (cf AFNOR XPZ 10-011).
468 * A postal addresse containts at most 6 lines of at most 38 characters each:
469 * - addressee's identification ("MONSIEUR JEAN DURAND", "DURAND SA"…),
470 * - delivery point identification ("CHEZ TOTO APPARTEMENT 2", "SERVICE ACHAT"…),
471 * - building localisation complement ("ENTREE A BATIMENT DES JONQUILLES", "ZONE INDUSTRIELLE OUEST"…),
472 * - N° and street name ("25 RUE DES FLEURS", "LES VIGNES"…),
473 * - delivery service, street localisation complement ("BP 40122", "BP 40112 AREYRES"…),
474 * - postal code and locality or cedex code and cedex ("33500 LIBOURNE", "33506 LIBOURNE CEDEX"…).
475 * Punctuation must be removed, all leters must be uppercased.
476 * Both locality and street name must not take more than 32 characters.
477 *
478 * @param $arrayText: array containing the address to be formated, one
479 * address line per array line.
480 * @param $count: array size.
481 */
482 private function formatPostalAddressFR($arrayText)
483 {
484 // First removes country if any.
485 $count = count($arrayText);
486 if ($arrayText[$count - 1] == 'FRANCE') {
487 unset($arrayText[$count - 1]);
488 --$count;
489 }
490
491 // All the lines must have less than 38 characters but street and
492 // locality lines whose limit is 32 characters.
493 foreach ($arrayText as $lineNumber => $line) {
494 if ($isStreetLine = $this->isStreetFR($line)) {
495 $formattedLine = $this->getStreetNumberFR($line) . ' ';
496 $limit = 32;
497 } elseif ($this->isLocalityFR($line)) {
498 $formattedLine = $this->getPostalCodeFR($line) . ' ';
499 $limit = 32;
500 } else {
501 $formattedLine = '';
502 $limit = 38;
503 }
504
505 $words = explode(' ', $line);
506 $count = count($words);
507 $length = $count - 1;
508 foreach ($words as $word) {
509 $length += strlen($word);
510 }
511
512 // Checks is length is ok. Otherwise, we try to shorten words and
513 // update the length of the current line accordingly.
514 for ($i = 0; $i < $count && $length > $limit; ++$i) {
515 $success = false;
516 if ($isStreetLine) {
517 $sub = $this->substitute($words[$i], Address::$streetAbbreviations, $length, $success, ($i == 0));
518 }
519 // Entreprises' substitution are only suitable for the first two lines.
520 if ($lineNumber <= 2 && !$success) {
521 $sub = $this->substitute($words[$i], Address::$entrepriseAbbreviations, $length, $success);
522 }
523 if (!$success) {
524 $sub = $this->substitute($words[$i], Address::$otherAbbreviations, $length, $success);
525 }
526
527 $formattedLine .= $sub . ' ';
528 }
529 for (; $i < $count; ++$i) {
530 $formattedLine .= $words[$i] . ' ';
531 }
532 $arrayText[$lineNumber] = trim($formattedLine);
533 }
534
535 return implode("\n", $arrayText);
536 }
537
538 // Formats postal addresses.
539 // First erases punctuation, accents… Then uppercase the address and finally
540 // calls the country's dedicated formatting function.
541 public function formatPostalAddress()
542 {
543 // Performs rough formatting.
544 $text = mb_strtoupper(replace_accent($this->text));
545 $text = str_replace(array(',', ';', '.', ':', '!', '?', '"', '«', '»'), '', $text);
546 $text = preg_replace('/( |\t)+/', ' ', $text);
547 $arrayText = explode("\n", $text);
548 $arrayText = array_map('trim', $arrayText);
549
550 // Formats according to country rules. Thus we first identify the
551 // country, then apply corresponding formatting or translate country
552 // into default language.
553 $count = count($arrayText);
554 list($countryId, $country) = XDB::fetchOneRow('SELECT gc.iso_3166_1_a2, gc.country
555 FROM geoloc_countries AS gc
556 INNER JOIN geoloc_languages AS gl ON (gc.iso_3166_1_a2 = gl.iso_3166_1_a2)
557 WHERE gl.countryPlain = {?} OR gc.countryPlain = {?}',
558 $arrayText[$count - 1], $arrayText[$count - 1]);
559 if (is_null($countryId)) {
560 $text = $this->formatPostalAddressFR($arrayText);
561 } elseif (in_array(strtoupper($countryId), Address::$formattings)) {
562 $text = call_user_func(array($this, 'formatPostalAddress' . strtoupper($countryId)), $arrayText);
563 } else {
564 $arrayText[$count - 1] = mb_strtoupper(replace_accent($country));
565 $text = implode("\n", $arrayText);
566 }
567
568 $this->postalText = $text;
569 }
570
571 public function format()
572 {
573 $this->text = trim($this->text);
574 $this->phones = Phone::formatFormArray($this->phones, $this->error, new ProfileVisibility($this->pub));
575 if ($this->removed == 1) {
576 if (!S::user()->checkPerms('directory_private') && Phone::hasPrivate($this->phones)) {
577 Platal::page()->trigWarning("L'adresse ne peut être supprimée car elle contient des informations pour lesquelles vous n'avez le droit d'édition.");
578 } else {
579 $this->text = '';
580 return true;
581 }
582 }
583
584 $this->formatPostalAddress();
585 if ($this->changed == 1) {
586 $gmapsGeocoder = new GMapsGeocoder();
587 $gmapsGeocoder->getGeocodedAddress($this);
588 }
589
590 $componants = array();
591 foreach ($this->components as $component) {
592 $componants[] = Geocoder::getComponentId($component);
593 }
594 $this->componentsIds = implode(',', $componants);
595
596 return true;
597 }
598
599 public function toFormArray()
600 {
601 $address = array(
602 'text' => $this->text,
603 'postalText' => $this->postalText,
604 'types' => $this->types,
605 'formatted_address' => $this->formatted_address,
606 'latitude' => $this->latitude,
607 'longitude' => $this->longitude,
608 'southwest_latitude' => $this->southwest_latitude,
609 'southwest_longitude' => $this->southwest_longitude,
610 'northeast_latitude' => $this->northeast_latitude,
611 'northeast_longitude' => $this->northeast_longitude,
612 'location_type' => $this->location_type,
613 'partial_match' => $this->partial_match,
614 'componentsIds' => $this->componentsIds
615 );
616
617 if ($this->type == self::LINK_PROFILE || $this->type == self::LINK_JOB) {
618 $address['pub'] = $this->pub;
619 }
620 if ($this->type == self::LINK_PROFILE) {
621 static $flags = array('current', 'temporary', 'secondary', 'mail', 'cedex', 'deliveryIssue');
622 foreach ($flags as $flag) {
623 $address[$flag] = $this->flags->hasFlag($flag);
624 }
625 $address['comment'] = $this->comment;
626 $address['phones'] = Phone::formatFormArray($this->phones);
627 }
628
629 return $address;
630 }
631
632 private function toString()
633 {
634 $address = $this->text;
635 if ($this->type == self::LINK_PROFILE || $this->type == self::LINK_JOB) {
636 static $pubs = array('public' => 'publique', 'ax' => 'annuaire AX', 'private' => 'privé');
637 $address .= ' (affichage ' . $pubs[$this->pub];
638 }
639 if ($this->type == self::LINK_PROFILE) {
640 static $flags = array(
641 'current' => 'actuelle',
642 'temporary' => 'temporaire',
643 'secondary' => 'secondaire',
644 'mail' => 'conctactable par courier',
645 'deliveryIssue' => 'n\'habite pas à l\'adresse indiquée',
646 'cedex' => 'type cédex',
647 );
648
649 if (!$this->flags->hasFlag('temporary')) {
650 $address .= ', permanente';
651 }
652 if (!$this->flags->hasFlag('secondary')) {
653 $address .= ', principale';
654 }
655 foreach ($flags as $flag => $flagName) {
656 if ($this->flags->hasFlag($flag)) {
657 $address .= ', ' . $flagName;
658 }
659 }
660 if ($this->comment) {
661 $address .= ', commentaire : ' . $this->comment;
662 }
663 if ($phones = Phone::formArrayToString($this->phones)) {
664 $address .= ', ' . $phones;
665 }
666 } elseif ($this->type == self::LINK_JOB) {
667 $address .= ')';
668 }
669 return $address;
670 }
671
672 private function isEmpty()
673 {
674 return (!$this->text || $this->text == '');
675 }
676
677 public function save()
678 {
679 if (!$this->isEmpty()) {
680 XDB::execute('INSERT IGNORE INTO profile_addresses (pid, jobid, groupid, type, id, flags, text, postalText, pub, comment,
681 types, formatted_address, location_type, partial_match, latitude, longitude,
682 southwest_latitude, southwest_longitude, northeast_latitude, northeast_longitude)
683 VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?},
684 {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?})',
685 $this->pid, $this->jobid, $this->groupid, $this->type, $this->id, $this->flags, $this->text, $this->postalText, $this->pub, $this->comment,
686 $this->types, $this->formatted_address, $this->location_type, $this->partial_match, $this->latitude, $this->longitude,
687 $this->southwest_latitude, $this->southwest_longitude, $this->northeast_latitude, $this->northeast_longitude);
688
689 if ($this->componentsIds) {
690 foreach (explode(',', $this->componentsIds) as $component_id) {
691 XDB::execute('INSERT IGNORE INTO profile_addresses_components (pid, jobid, groupid, type, id, component_id)
692 VALUES ({?}, {?}, {?}, {?}, {?}, {?})',
693 $this->pid, $this->jobid, $this->groupid, $this->type, $this->id, $component_id);
694 }
695 }
696
697 if ($this->type == self::LINK_PROFILE) {
698 Phone::savePhones($this->phones, $this->pid, Phone::LINK_ADDRESS, $this->id);
699 }
700 }
701 }
702
703 public function delete()
704 {
705 XDB::execute('DELETE FROM profile_addresses
706 WHERE pid = {?} AND jobid = {?} AND groupid = {?} AND type = {?} AND id = {?}',
707 $this->pid, $this->jobid, $this->groupid, $this->type, $this->id);
708 }
709
710 static public function deleteAddresses($pid, $type, $jobid = null, $groupid = null, $deletePrivate = true)
711 {
712 $where = '';
713 if (!is_null($pid)) {
714 $where = XDB::format(' AND pid = {?}', $pid);
715 }
716 if (!is_null($jobid)) {
717 $where = XDB::format(' AND jobid = {?}', $jobid);
718 }
719 if (!is_null($groupid)) {
720 $where = XDB::format(' AND groupid = {?}', $groupid);
721 }
722 XDB::execute('DELETE FROM profile_addresses
723 WHERE type = {?}' . $where . (($deletePrivate) ? '' : ' AND pub IN (\'public\', \'ax\')'),
724 $type);
725 if ($type == self::LINK_PROFILE) {
726 Phone::deletePhones($pid, Phone::LINK_ADDRESS, null, $deletePrivate);
727 }
728 }
729
730 /** Saves addresses into the database.
731 * @param $data: an array of form formatted addresses.
732 * @param $pid, $type, $linkid: pid, type and id concerned by the update.
733 */
734 static public function saveFromArray(array $data, $pid, $type = self::LINK_PROFILE, $linkid = null, $savePrivate = true)
735 {
736 foreach ($data as $id => $value) {
737 if ($value['pub'] != 'private' || $savePrivate) {
738 if (!is_null($linkid)) {
739 $value['id'] = $linkid;
740 } else {
741 $value['id'] = $id;
742 }
743 if (!is_null($pid)) {
744 $value['pid'] = $pid;
745 }
746 if (!is_null($type)) {
747 $value['type'] = $type;
748 }
749 $address = new Address($value);
750 $address->save();
751 }
752 }
753 }
754
755 static private function formArrayWalk(array $data, $function, &$success = true, $requiresEmptyAddress = false)
756 {
757 $addresses = array();
758 foreach ($data as $item) {
759 $address = new Address($item);
760 $success = ($address->format() && $success);
761 if (!$address->isEmpty()) {
762 $addresses[] = call_user_func(array($address, $function));
763 }
764 }
765 if (count($address) == 0 && $requiresEmptyAddress) {
766 $address = new Address();
767 $addresses[] = call_user_func(array($address, $function));
768 }
769 return $addresses;
770 }
771
772 // Compares two addresses. First sort by publicity, then place primary
773 // addresses before secondary addresses.
774 static private function compare(array $a, array $b)
775 {
776 $value = ProfileVisibility::comparePublicity($a, $b);
777 if ($value == 0) {
778 if ($a['secondary'] != $b['secondary']) {
779 $value = $a['secondary'] ? 1 : -1;
780 }
781 }
782 return $value;
783 }
784
785 // Formats an array of form addresses into an array of form formatted addresses.
786 static public function formatFormArray(array $data, &$success = true)
787 {
788 $addresses = self::formArrayWalk($data, 'toFormArray', $success, true);
789
790 // Only a single address can be the profile's current address and she must have one.
791 $hasCurrent = false;
792 foreach ($addresses as $key => &$address) {
793 if (isset($address['current']) && $address['current']) {
794 if ($hasCurrent) {
795 $address['current'] = false;
796 } else {
797 $hasCurrent = true;
798 }
799 }
800 }
801 if (!$hasCurrent && count($value) > 0) {
802 foreach ($value as &$address) {
803 $address['current'] = true;
804 break;
805 }
806 }
807
808 usort($addresses, 'Address::compare');
809 return $addresses;
810 }
811
812 static public function formArrayToString(array $data)
813 {
814 return implode(', ', self::formArrayWalk($data, 'toString'));
815 }
816
817 static public function hasPrivate(array $addresses)
818 {
819 foreach ($addresses as $address) {
820 if ($address['pub'] == 'private') {
821 return true;
822 }
823 }
824 return false;
825 }
826
827 static public function iterate(array $pids = array(), array $types = array(),
828 array $jobids = array(), array $pubs = array())
829 {
830 return new AddressIterator($pids, $types, $jobids, $pubs);
831 }
832 }
833
834 /** Iterator over a set of Phones
835 *
836 * @param $pid, $type, $jobid, $pub
837 *
838 * The iterator contains the phones that correspond to the value stored in the
839 * parameters' arrays.
840 */
841 class AddressIterator implements PlIterator
842 {
843 private $dbiter;
844
845 public function __construct(array $pids, array $types, array $jobids, array $pubs)
846 {
847 $where = array();
848 if (count($pids) != 0) {
849 $where[] = XDB::format('(pa.pid IN {?})', $pids);
850 }
851 if (count($types) != 0) {
852 $where[] = XDB::format('(pa.type IN {?})', $types);
853 }
854 if (count($jobids) != 0) {
855 $where[] = XDB::format('(pa.jobid IN {?})', $jobids);
856 }
857 if (count($pubs) != 0) {
858 $where[] = XDB::format('(pa.pub IN {?})', $pubs);
859 }
860 $sql = 'SELECT pa.pid, pa.jobid, pa.groupid, pa.type, pa.id, pa.flags, pa.text, pa.postalText, pa.pub, pa.comment,
861 pa.types, pa.formatted_address, pa.location_type, pa.partial_match, pa.latitude, pa.longitude,
862 pa.southwest_latitude, pa.southwest_longitude, pa.northeast_latitude, pa.northeast_longitude,
863 GROUP_CONCAT(DISTINCT pc.component_id SEPARATOR \',\') AS componentsIds
864 FROM profile_addresses AS pa
865 LEFT JOIN profile_addresses_components AS pc ON (pa.pid = pc.pid AND pa.jobid = pc.jobid AND pa.groupid = pc.groupid
866 AND pa.type = pc.type AND pa.id = pc.id)
867 ' . ((count($where) > 0) ? 'WHERE ' . implode(' AND ', $where) : '') . '
868 GROUP BY pa.pid, pa.jobid, pa.groupid, pa.type, pa.id
869 ORDER BY pa.pid, pa.jobid, pa.id';
870 $this->dbiter = XDB::iterator($sql);
871 }
872
873 public function next()
874 {
875 if (is_null($this->dbiter)) {
876 return null;
877 }
878 $data = $this->dbiter->next();
879 if (is_null($data)) {
880 return null;
881 }
882 // Adds phones to addresses.
883 $it = Phone::iterate(array($data['pid']), array(Phone::LINK_ADDRESS), array($data['id']));
884 while ($phone = $it->next()) {
885 $data['phones'][$phone->id] = $phone->toFormArray();
886 }
887 return new Address($data);
888 }
889
890 public function total()
891 {
892 return $this->dbiter->total();
893 }
894
895 public function first()
896 {
897 return $this->dbiter->first();
898 }
899
900 public function last()
901 {
902 return $this->dbiter->last();
903 }
904
905 public function value()
906 {
907 return $this->dbiter;
908 }
909 }
910
911 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
912 ?>