Fix display of the type of the phone numbers in the pdf. (Closes #1151)
[platal.git] / upgrade / newdirectory-0.0.1 / addresses.php
CommitLineData
8f2f5083
SJ
1#!/usr/bin/php5
2<?php
3require_once 'connect.db.inc.php';
4require_once 'geocoding.inc.php';
5
6$globals->debug = 0; // Do not store backtraces.
7
8ed67daa
SJ
8$res = XDB::query('SELECT MIN(pid), MAX(pid)
9 FROM profiles');
8f2f5083
SJ
10
11$pids = $res->fetchOneRow();
12
13$minPid = $pids[0];
14$maxPid = $pids[1];
15
4e2f2ad2 16echo "This will take a few minutes.\n";
8f2f5083
SJ
17
18// Fills the 'text' field in profile_addresses.
19for ($pid = $minPid; $pid < $maxPid + 1; ++$pid) {
20 $res = XDB::iterator("SELECT a.adrid AS id, a.adr1, a.adr2, a.adr3,
21 UNIX_TIMESTAMP(a.datemaj) AS datemaj,
22 a.postcode, a.city, a.cityid, a.region, a.regiontxt,
23 a.pub, a.country, gp.pays AS countrytxt, gp.display,
24 FIND_IN_SET('coord-checked', a.statut) AS checked,
25 FIND_IN_SET('res-secondaire', a.statut) AS secondaire,
26 FIND_IN_SET('courrier', a.statut) AS mail,
27 FIND_IN_SET('temporaire', a.statut) AS temporary,
28 FIND_IN_SET('active', a.statut) AS current,
29 FIND_IN_SET('pro', a.statut) AS pro,
30 a.glat AS precise_lat, a.glng AS precise_lon
8ed67daa
SJ
31 FROM #x4dat#.adresses AS a
32 INNER JOIN #x4dat#.geoloc_pays AS gp ON (gp.a2 = a.country)
33 INNER JOIN account_profiles AS ap ON (a.uid = ap.uid AND FIND_IN_SET('owner', ap.perms))
34 WHERE ap.pid = {?}
35 ORDER BY a.adrid",
8f2f5083
SJ
36 $pid);
37
38 while ($address = $res->next()) {
39 $text = get_address_text($address);
40 XDB::iterator('UPDATE profile_addresses
41 SET text = {?}
42 WHERE pid = {?} AND type = {?} AND id = {?}',
43 $text, $pid, $address['pro'] ? 'job' : 'home', $address['id']);
44 }
45}
46
8f2f5083
SJ
47function get_address_text($adr)
48{
8ed67daa
SJ
49 $t = '';
50 if (isset($adr['adr1']) && $adr['adr1']) $t .= $adr['adr1'];
51 if (isset($adr['adr2']) && $adr['adr2']) $t .= "\n".$adr['adr2'];
52 if (isset($adr['adr3']) && $adr['adr3']) $t .= "\n".$adr['adr3'];
53 $l = '';
8f2f5083
SJ
54 if (isset($adr['display']) && $adr['display']) {
55 $keys = explode(' ', $adr['display']);
56 foreach ($keys as $key) {
57 if (isset($adr[$key])) {
8ed67daa 58 $l .= ' ' . $adr[$key];
8f2f5083 59 } else {
8ed67daa 60 $l .= ' ' . $key;
8f2f5083
SJ
61 }
62 }
63 if ($l) substr($l, 1);
64 } elseif ($adr['country'] == 'US' || $adr['country'] == 'CA' || $adr['country'] == 'GB') {
8ed67daa
SJ
65 if ($adr['city']) $l .= $adr['city'] . ",\n";
66 if ($adr['region']) $l .= $adr['region'] . ' ';
8f2f5083
SJ
67 if ($adr['postcode']) $l .= $adr['postcode'];
68 } else {
8ed67daa 69 if (isset($adr['postcode']) && $adr['postcode']) $l .= $adr['postcode'] . ' ';
8f2f5083
SJ
70 if (isset($adr['city']) && $adr['city']) $l .= $adr['city'];
71 }
8ed67daa 72 if ($l) $t .= "\n" . trim($l);
8f2f5083 73 if ($adr['country'] != '00' && (!$adr['countrytxt'] || $adr['countrytxt'] == strtoupper($adr['countrytxt']))) {
8ed67daa
SJ
74 $res = XDB::query('SELECT countryFR
75 FROM geoloc_countries
76 WHERE iso_3166_1_a2 = {?}',
8f2f5083
SJ
77 $adr['country']);
78 $adr['countrytxt'] = $res->fetchOneCell();
79 }
80 if (isset($adr['countrytxt']) && $adr['countrytxt']) {
8ed67daa 81 $t .= "\n" . $adr['countrytxt'];
8f2f5083
SJ
82 }
83 return trim($t);
84}
85
86/* vim:set et sw=4 sts=4 ts=4: */
87?>