Fix the user URL, can save changes made on addresses
[platal.git] / modules / profile / addresses.inc.php
CommitLineData
0b14f91d
FB
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
d5489b09 22class ProfileAddress
0b14f91d 23{
d5489b09
FB
24 private $bool;
25 private $pub;
26
27 public function __construct()
28 {
29 $this->bool = new ProfileBool();
30 $this->pub = new ProfilePub();
31 }
32
33 private function geolocAddress(array &$address, &$success)
7568a515
FB
34 {
35 require_once 'geoloc.inc.php';
c24a06aa 36 $success = true;
7568a515
FB
37 if (@$address['parsevalid'] || (@$address['text'] && @$address['changed']) || !@$address['cityid']) {
38 $address = array_merge($address, empty_address());
39 $new = get_address_infos(@$address['text']);
40 if (compare_addresses_text(@$adress['text'], $geotxt = get_address_text($new))
41 || @$address['parsevalid']) {
42 $address = array_merge($address, $new);
43 } else {
44 $success = false;
45 $address = array_merge($address, cut_address(@$address['text']));
46 $address['geoloc'] = $geotxt;
47 $address['geoloc_cityid'] = $new['cityid'];
48 }
49 }
d5489b09
FB
50 if (@$address['changed']) {
51 $address['datemaj'] = time();
52 }
7568a515 53 $address['text'] = get_address_text($address);
7568a515
FB
54 }
55
d5489b09
FB
56 private function cleanAddress(ProfilePage &$page, array &$address)
57 {
58 if (@$address['changed']) {
59 $address['datemaj'] = time();
60 }
61 foreach ($address['tel'] as $t=>&$tel) {
62 if (@$tel['removed']) {
63 unset($address['tel'][$t]);
64 } else {
65 $tel['pub'] = $this->pub->value($page, 'pub', $tel['pub'], $success);
66 }
c24a06aa 67 unset($tel['removed']);
d5489b09 68 }
c24a06aa
FB
69 if (@$address['changed']) {
70 $address['datemaj'] = time();
71 }
72 $success = true;
d5489b09
FB
73 $address['secondaire'] = $this->bool->value($page, 'secondaire', $address['secondaire'], $success);
74 $address['mail'] = $this->bool->value($page, 'mail', $address['mail'], $success);
75 $address['temporary'] = $this->bool->value($page, 'temporary', $address['temporary'], $success);
c24a06aa 76 $address['current'] = $this->bool->value($page, 'current', @$address['current'], $success);
d5489b09 77 $address['pub'] = $this->pub->value($page, 'pub', $address['pub'], $success);
c24a06aa
FB
78 unset($address['parsevalid']);
79 unset($address['changed']);
80 unset($address['removed']);
81 unset($address['display']);
d5489b09
FB
82 }
83
0b14f91d
FB
84 public function value(ProfilePage &$page, $field, $value, &$success)
85 {
7568a515 86 $init = false;
0b14f91d 87 if (is_null($value)) {
7568a515
FB
88 $value = $page->values['addresses'];
89 $init = true;
0b14f91d
FB
90 }
91 foreach ($value as $key=>&$adr) {
7568a515 92 if (@$adr['removed']) {
0b14f91d
FB
93 unset($value[$key]);
94 }
95 }
7568a515
FB
96 $success = true;
97 foreach ($value as $key=>&$adr) {
98 $this->geolocAddress($adr, $s);
d5489b09 99 $this->cleanAddress($page, $adr);
7568a515
FB
100 if (!$init) {
101 $success = $success && $s;
102 }
103 }
0b14f91d
FB
104 return $value;
105 }
d5489b09
FB
106
107 private function saveTel($adrid, $telid, array &$tel)
108 {
109 XDB::execute("INSERT INTO tels (uid, adrid, telid,
110 tel_type, tel_pub, tel)
111 VALUES ({?}, {?}, {?},
112 {?}, {?}, {?})",
113 S::i('uid'), $adrid, $telid,
114 $tel['type'], $tel['pub'], $tel['tel']);
115 }
116
117 private function saveAddress($adrid, array &$address)
118 {
119 $flags = array();
120 if ($address['secondaire']) {
121 $flags[] = 'res-secondaire';
122 }
123 if ($address['mail']) {
124 $flags[] = 'courrier';
125 }
126 if ($address['temporary']) {
127 $flags[] = 'temporaire';
128 }
129 if ($address['current']) {
130 $flags[] = 'active';
131 }
132 $flags = implode(',', $flags);
c24a06aa 133 XDB::execute("INSERT INTO adresses (adr1, adr2, adr3,
d5489b09
FB
134 postcode, city, cityid,
135 country, region, regiontxt,
136 pub, datemaj, statut,
137 uid, adrid)
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);
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 }
0b14f91d
FB
165}
166
167class 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 }
176
177 protected function fetchData()
178 {
179 if (count($this->orig) > 0) {
180 $this->values = $this->orig;
181 return;
182 }
183 // Build the addresses tree
7568a515 184 $res = XDB::query("SELECT a.adrid AS id, a.adr1, a.adr2, a.adr3,
d5489b09 185 UNIX_TIMESTAMP(a.datemaj) AS datemaj,
7568a515 186 a.postcode, a.city, a.cityid, a.region, a.regiontxt,
d5489b09 187 a.pub, a.country, gp.pays AS countrytxt, gp.display,
7568a515
FB
188 FIND_IN_SET('res-secondaire', a.statut) AS secondaire,
189 FIND_IN_SET('courrier', a.statut) AS mail,
d5489b09 190 FIND_IN_SET('temporaire', a.statut) AS temporary,
7568a515
FB
191 FIND_IN_SET('active', a.statut) AS current
192 FROM adresses AS a
193 INNER JOIN geoloc_pays AS gp ON(gp.a2 = a.country)
194 WHERE uid = {?} AND NOT FIND_IN_SET('pro', statut)
0b14f91d
FB
195 ORDER BY adrid",
196 S::i('uid'));
c24a06aa
FB
197 if ($res->numRows() == 0) {
198 $this->values['addresses'] = array();
199 } else {
200 $this->values['addresses'] = $res->fetchAllAssoc();
201 }
0b14f91d 202
7568a515
FB
203 $res = XDB::iterator("SELECT adrid, tel_type AS type, tel_pub AS pub, tel
204 FROM tels
205 WHERE uid = {?}
206 ORDER BY adrid",
207 S::i('uid'));
0b14f91d 208 $i = 0;
c24a06aa 209 $adrNb = count($this->values['addresses']);
7568a515
FB
210 while ($tel = $res->next()) {
211 $adrid = $tel['adrid'];
212 unset($tel['adrid']);
c24a06aa 213 while ($i < $adrNb && $this->values['addresses'][$i]['id'] < $adrid) {
0b14f91d
FB
214 $i++;
215 }
c24a06aa
FB
216 if ($i >= $adrNb) {
217 break;
218 }
0b14f91d
FB
219 $address =& $this->values['addresses'][$i];
220 if (!isset($address['tel'])) {
221 $address['tel'] = array();
222 }
223 if ($address['id'] == $adrid) {
7568a515 224 $address['tel'][] = $tel;
0b14f91d
FB
225 }
226 }
7568a515 227 foreach ($this->values['addresses'] as $id=>&$address) {
c24a06aa
FB
228 if (!isset($address['tel'])) {
229 $address['tel'] = array();
230 }
7568a515
FB
231 unset($address['id']);
232 }
0b14f91d
FB
233 parent::fetchData();
234 }
0b14f91d
FB
235}
236
237// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
238?>