List updated fields in carnet notification (only rss and panel for now,
[platal.git] / modules / profile / addresses.inc.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2007 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 ProfileAddress extends ProfileGeoloc
23 {
24 private $bool;
25 private $pub;
26 private $tel;
27
28 public function __construct()
29 {
30 $this->bool = new ProfileBool();
31 $this->pub = new ProfilePub();
32 $this->tel = new ProfileTel();
33 }
34
35 private function cleanAddress(ProfilePage &$page, array &$address, &$success)
36 {
37 if (@$address['changed']) {
38 $address['datemaj'] = time();
39 }
40 $success = true;
41 foreach ($address['tel'] as $t=>&$tel) {
42 if (@$tel['removed'] || !trim($tel['tel'])) {
43 unset($address['tel'][$t]);
44 } else {
45 $tel['pub'] = $this->pub->value($page, 'pub', $tel['pub'], $s);
46 $tel['tel'] = $this->tel->value($page, 'tel', $tel['tel'], $s);
47 if (!$s) {
48 $tel['error'] = true;
49 $success = false;
50 }
51 }
52 unset($tel['removed']);
53 }
54 $address['checked'] = $this->bool->value($page, 'checked', $address['checked'], $s);
55 $address['secondaire'] = $this->bool->value($page, 'secondaire', $address['secondaire'], $s);
56 $address['mail'] = $this->bool->value($page, 'mail', $address['mail'], $s);
57 $address['temporary'] = $this->bool->value($page, 'temporary', $address['temporary'], $s);
58 $address['current'] = $this->bool->value($page, 'current', @$address['current'], $s);
59 $address['pub'] = $this->pub->value($page, 'pub', $address['pub'], $s);
60 unset($address['parsevalid']);
61 unset($address['changed']);
62 unset($address['removed']);
63 unset($address['display']);
64 }
65
66 public function value(ProfilePage &$page, $field, $value, &$success)
67 {
68 $init = false;
69 if (is_null($value)) {
70 $value = $page->values['addresses'];
71 $init = true;
72 }
73 foreach ($value as $key=>&$adr) {
74 if (@$adr['removed']) {
75 unset($value[$key]);
76 }
77 }
78 $current = 0;
79 foreach ($value as $key=>&$adr) {
80 if (@$adr['current']) {
81 $current++;
82 }
83 }
84 if (!$init && $current != 1 && count($value) > 0) {
85 $success = false;
86 } else {
87 $success = true;
88 }
89 foreach ($value as $key=>&$adr) {
90 $ls = true;
91 $this->geolocAddress($adr, $s);
92 $ls = ($ls && $s);
93 $this->cleanAddress($page, $adr, $s);
94 $ls = ($ls && $s);
95 if (!trim($adr['text'])) {
96 unset($value[$key]);
97 } else if (!$init) {
98 $success = ($success && $ls);
99 }
100 }
101 return $value;
102 }
103
104 private function saveTel($adrid, $telid, array &$tel)
105 {
106 XDB::execute("INSERT INTO tels (uid, adrid, telid,
107 tel_type, tel_pub, tel)
108 VALUES ({?}, {?}, {?},
109 {?}, {?}, {?})",
110 S::i('uid'), $adrid, $telid,
111 $tel['type'], $tel['pub'], $tel['tel']);
112 }
113
114 private function saveAddress($adrid, array &$address)
115 {
116 $flags = array();
117 if ($address['secondaire']) {
118 $flags[] = 'res-secondaire';
119 }
120 if ($address['mail']) {
121 $flags[] = 'courrier';
122 }
123 if ($address['temporary']) {
124 $flags[] = 'temporaire';
125 }
126 if ($address['current']) {
127 $flags[] = 'active';
128 }
129 if ($address['checked']) {
130 $flags[] = 'coord-checked';
131 }
132 $flags = implode(',', $flags);
133 XDB::execute("INSERT INTO adresses (adr1, adr2, adr3,
134 postcode, city, cityid,
135 country, region, regiontxt,
136 pub, datemaj, statut,
137 uid, adrid, glat, glng)
138 VALUES ({?}, {?}, {?},
139 {?}, {?}, {?},
140 {?}, {?}, {?},
141 {?}, FROM_UNIXTIME({?}), {?},
142 {?}, {?}, {?}, {?})",
143 $address['adr1'], $address['adr2'], $address['adr3'],
144 $address['postcode'], $address['city'], $address['cityid'],
145 $address['country'], $address['region'], $address['regiontxt'],
146 $address['pub'], $address['datemaj'], $flags,
147 S::i('uid'), $adrid, $address['precise_lat'], $address['precise_lon']);
148 foreach ($address['tel'] as $telid=>&$tel) {
149 $this->saveTel($adrid, $telid, $tel);
150 }
151 }
152
153 public function save(ProfilePage &$page, $field, $value)
154 {
155 XDB::execute("DELETE FROM adresses
156 WHERE uid = {?}",
157 S::i('uid'));
158 XDB::execute("DELETE FROM tels
159 WHERE uid = {?}",
160 S::i('uid'));
161 foreach ($value as $adrid=>&$address) {
162 $this->saveAddress($adrid, $address);
163 }
164 }
165 }
166
167 class ProfileAddresses extends ProfilePage
168 {
169 protected $pg_template = 'profile/adresses.tpl';
170
171 public function __construct(PlWizard &$wiz)
172 {
173 parent::__construct($wiz);
174 $this->settings['addresses'] = new ProfileAddress();
175 $this->watched['addresses'] = true;
176 }
177
178 protected function _fetchData()
179 {
180 // Build the addresses tree
181 $res = XDB::query("SELECT a.adrid AS id, a.adr1, a.adr2, a.adr3,
182 UNIX_TIMESTAMP(a.datemaj) AS datemaj,
183 a.postcode, a.city, a.cityid, a.region, a.regiontxt,
184 a.pub, a.country, gp.pays AS countrytxt, gp.display,
185 FIND_IN_SET('coord-checked', a.statut) AS checked,
186 FIND_IN_SET('res-secondaire', a.statut) AS secondaire,
187 FIND_IN_SET('courrier', a.statut) AS mail,
188 FIND_IN_SET('temporaire', a.statut) AS temporary,
189 FIND_IN_SET('active', a.statut) AS current,
190 a.glat AS precise_lat, a.glng AS precise_lon
191 FROM adresses AS a
192 INNER JOIN geoloc_pays AS gp ON(gp.a2 = a.country)
193 WHERE uid = {?} AND NOT FIND_IN_SET('pro', statut)
194 ORDER BY adrid",
195 S::i('uid'));
196 if ($res->numRows() == 0) {
197 $this->values['addresses'] = array();
198 } else {
199 $this->values['addresses'] = $res->fetchAllAssoc();
200 }
201
202 $res = XDB::iterator("SELECT adrid, tel_type AS type, tel_pub AS pub, tel
203 FROM tels
204 WHERE uid = {?}
205 ORDER BY adrid",
206 S::i('uid'));
207 $i = 0;
208 $adrNb = count($this->values['addresses']);
209 while ($tel = $res->next()) {
210 $adrid = $tel['adrid'];
211 unset($tel['adrid']);
212 while ($i < $adrNb && $this->values['addresses'][$i]['id'] < $adrid) {
213 $i++;
214 }
215 if ($i >= $adrNb) {
216 break;
217 }
218 $address =& $this->values['addresses'][$i];
219 if (!isset($address['tel'])) {
220 $address['tel'] = array();
221 }
222 if ($address['id'] == $adrid) {
223 $address['tel'][] = $tel;
224 }
225 }
226 foreach ($this->values['addresses'] as $id=>&$address) {
227 if (!isset($address['tel'])) {
228 $address['tel'] = array();
229 }
230 unset($address['id']);
231 }
232 }
233 }
234
235 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
236 ?>