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