Adds a common template to add phone numbers in the different pages of the profile
[platal.git] / modules / profile / general.inc.php
CommitLineData
fd38b30e
FB
1<?php
2/***************************************************************************
179afa7f 3 * Copyright (C) 2003-2008 Polytechnique.org *
fd38b30e
FB
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
22class ProfileNom implements ProfileSetting
23{
24 private function matchWord($old, $new, $newLen) {
93553cea 25 return ($i = strpos($old, $new)) !== false
fd38b30e
FB
26 && ($i == 0 || $old{$i-1} == ' ')
27 && ($i + $newLen == strlen($old) || $old{$i + $newLen} == ' ');
28 }
29
30 private function prepareField($value)
31 {
32 $value = strtoupper(replace_accent($value));
33 return preg_replace('/[^A-Z]/', ' ', $value);
34 }
35
36 public function value(ProfilePage &$page, $field, $value, &$success)
37 {
38 $success = true;
39 $current = S::v($field);
40 $init = S::v($field . '_ini');
41 if (is_null($value)) {
42 return $current;
43 }
44 if ($value == $current || $value == $init) {
45 return $value;
46 }
47 $ini = $this->prepareField($init);
48 $old = $this->prepareField($current);
49 $new = $this->prepareField($value);
50 $newLen = strlen($new);
51 $success = $this->matchWord($old, $new, $newLen)
3f89a071
FB
52 || $this->matchWord($ini, $new, $newLen)
53 || ($field == 'nom' && $new == 'DE ' . $old);
fd38b30e
FB
54 if (!$success) {
55 global $page;
a7d35093 56 $page->trigError("Le $field que tu as choisi ($value) est trop loin de ton $field initial ($init)"
fd38b30e
FB
57 . (($init == $current)? "" : " et de ton prénom précédent ($current)"));
58 }
59 return $success ? $value : $current;
60 }
61
62 public function save(ProfilePage &$page, $field, $new_value)
63 {
64 $_SESSION[$field] = $new_value;
65 }
66}
67
b04882ff
PC
68class ProfileSearchName implements ProfileSetting
69{
70
71 public function __construct()
72 {
73 }
74
75 public function value(ProfilePage &$page, $field, $value, &$success)
76 {
77 }
78
79 public function save(ProfilePage &$page, $field, $new_value)
80 {
81 }
82}
83
576777d7
FB
84class ProfileAppli implements ProfileSetting
85{
86 public function value(ProfilePage &$page, $field, $value, &$success)
87 {
88 $success = true;
89 if (is_null($value)) {
90 return $page->values[$field];
91 }
92 return $value;
93 }
94
95 public function save(ProfilePage &$page, $field, $new_value)
96 {
97 $index = ($field == 'appli1' ? 0 : 1);
98 if ($new_value['id'] > 0) {
99 XDB::execute("REPLACE INTO applis_ins
100 SET uid = {?}, aid = {?}, type = {?}, ordre = {?}",
101 S::i('uid'), $new_value['id'], $new_value['type'], $index);
102 } else {
103 XDB::execute("DELETE FROM applis_ins
104 WHERE uid = {?} AND ordre = {?}",
105 S::i('uid'), $index);
106 }
107 }
108}
109
b715c1e1
SJ
110class ProfileEmailDirectory implements ProfileSetting
111{
112 private $email;
113
114 public function __construct()
115 {
116 }
117
118 public function value(ProfilePage &$page, $field, $value, &$success)
119 {
120 $p = $page;
121 global $page;
122
123 $success = true;
124 if (!is_null($value)) {
125 $email_stripped = strtolower(trim($value));
126 if ((!isvalid_email($email_stripped)) && ($email_stripped) && ($p->values['email_directory'] == "new@new.new")) {
127 $page->assign('email_error', '1');
128 $page->assign('email_directory_error', $email_stripped);
129 $page->trigError('Adresse Email invalide');
130 $success = false;
131 } else {
132 $page->assign('email_error', '0');
133 }
134 }
135 return $value;
136 }
137
138 public function save(ProfilePage &$page, $field, $value)
139 {
140 }
141}
142
d1a2252a
GB
143class ProfileNetworking implements ProfileSetting
144{
145 private $email;
146 private $pub;
147 private $web;
92446a53 148 private $number;
d1a2252a
GB
149
150 public function __construct()
151 {
152 $this->email = new ProfileEmail();
153 $this->pub = new ProfilePub();
154 $this->web = new ProfileWeb();
92446a53 155 $this->number = new ProfileNumber();
d1a2252a
GB
156 }
157
158 public function value(ProfilePage &$page, $field, $value, &$success)
159 {
160 if (is_null($value)) {
161 $value = array();
162 $res = XDB::iterator("SELECT n.address, n.network_type AS type, n.pub, m.name
163 FROM profile_networking AS n
164 INNER JOIN profile_networking_enum AS m ON (n.network_type = m.network_type)
165 WHERE n.uid = {?}",
166 S::i('uid'));
167 while($network = $res->next()) {
168 $value[] = $network;
169 }
170 }
171 if (!is_array($value)) {
172 $value = array();
173 }
b715c1e1
SJ
174 $res = XDB::iterator("SELECT filter, network_type AS type
175 FROM profile_networking_enum;");
d1a2252a
GB
176 $filters = array();
177 while($filter = $res->next()) {
178 $filters[$filter['type']] = $filter['filter'];
179 }
180 $success = true;
181 foreach($value as $i=>&$network) {
92c3f9e5
GB
182 if (!trim($network['address'])) {
183 unset($value[$i]);
184 } else {
185 if (!isset($network['pub'])) {
186 $network['pub'] = 'private';
187 }
188 $network['error'] = false;
189 $network['pub'] = $this->pub->value($page, 'pub', $network['pub'], $s);
190 $s = true;
191 if ($filters[$network['type']] == 'web') {
192 $network['address'] = $this->web->value($page, 'address', $network['address'], $s);
193 } elseif ($filters[$network['type']] == 'email') {
194 $network['address'] = $this->email->value($page, 'address', $network['address'], $s);
195 } elseif ($filters[$network['type']] == 'number') {
196 $network['address'] = $this->number->value($page, 'address', $network['address'], $s);
197 }
198 if (!$s) {
199 $success = false;
200 $network['error'] = true;
201 }
d1a2252a
GB
202 }
203 }
204 return $value;
205 }
206
207 public function save(ProfilePage &$page, $field, $value)
208 {
209 XDB::execute("DELETE FROM profile_networking
210 WHERE uid = {?}",
211 S::i('uid'));
212 if (!count($value)) {
213 return;
214 }
215 $insert = array();
216 foreach ($value as $id=>$network) {
217 XDB::execute("INSERT INTO profile_networking (uid, nwid, network_type, address, pub)
218 VALUES ({?}, {?}, {?}, {?}, {?})",
219 S::i('uid'), $id, $network['type'], $network['address'], $network['pub']);
220 }
221 }
222}
223
fd38b30e
FB
224class ProfileGeneral extends ProfilePage
225{
226 protected $pg_template = 'profile/general.tpl';
227
228 public function __construct(PlWizard &$wiz)
229 {
230 parent::__construct($wiz);
b715c1e1
SJ
231 $this->settings['nom'] = $this->settings['prenom']
232 = new ProfileNom();
7bff4cb0 233 $this->settings['naissance'] = new ProfileDate();
bde2be3b 234 $this->settings['freetext_pub']
576777d7 235 = $this->settings['photo_pub']
93553cea
FB
236 = new ProfilePub();
237 $this->settings['freetext']
576777d7 238 = $this->settings['nationalite']
93553cea 239 = $this->settings['nick']
b04882ff
PC
240 = $this->settings['yourself']
241 = $this->settings['display_name']
242 = $this->settings['sort_name']
243 = $this->settings['tooltip_name']
93553cea 244 = null;
576777d7
FB
245 $this->settings['synchro_ax']
246 = new ProfileBool();
b715c1e1
SJ
247 $this->settings['email_directory']
248 = new ProfileEmail();
249 $this->settings['email_directory_new']
250 = new ProfileEmailDirectory();
d1a2252a 251 $this->settings['networking'] = new ProfileNetworking();
bde2be3b 252 $this->settings['tels'] = new ProfilePhones('user', 0);
576777d7
FB
253 $this->settings['appli1']
254 = $this->settings['appli2']
255 = new ProfileAppli();
bde2be3b 256 $this->watched= array('nom' => true, 'freetext' => true, 'tels' => true,
b715c1e1
SJ
257 'networking' => true, 'appli1' => true, 'appli2' => true,
258 'nationalite' => true, 'nick' => true);
93553cea
FB
259 }
260
7c2e0f0d 261 protected function _fetchData()
93553cea 262 {
576777d7 263 // Checkout all data...
7bff4cb0 264 $res = XDB::query("SELECT u.promo, u.promo_sortie, u.nom_usage, u.nationalite, u.naissance,
5e4417a9 265 t.display_tel as mobile, t.pub as mobile_pub,
b715c1e1 266 d.email_directory as email_directory,
93553cea 267 q.profile_freetext as freetext, q.profile_freetext_pub as freetext_pub,
576777d7 268 q.profile_nick as nick, q.profile_from_ax as synchro_ax, u.matricule_ax,
93553cea 269 IF(a1.aid IS NULL, -1, a1.aid) as appli_id1, a1.type as appli_type1,
b04882ff
PC
270 IF(a2.aid IS NULL, -1, a2.aid) as appli_id2, a2.type as appli_type2,
271 n.yourself, n.display AS display_name, n.sort AS sort_name,
272 n.tooltip AS tooltip_name
b715c1e1
SJ
273 FROM auth_user_md5 AS u
274 INNER JOIN auth_user_quick AS q ON(u.user_id = q.user_id)
275 INNER JOIN profile_names_display AS n ON(n.user_id = u.user_id)
b235d980 276 LEFT JOIN profile_phones AS t ON(u.user_id = t.uid AND link_type = 'user')
b715c1e1
SJ
277 LEFT JOIN profile_directory AS d ON(d.uid = u.user_id)
278 LEFT JOIN applis_ins AS a1 ON(a1.uid = u.user_id and a1.ordre = 0)
279 LEFT JOIN applis_ins AS a2 ON(a2.uid = u.user_id and a2.ordre = 1)
93553cea
FB
280 WHERE u.user_id = {?}", S::v('uid', -1));
281 $this->values = $res->fetchOneAssoc();
576777d7
FB
282
283 // Reformat formation data
284 $this->values['appli1'] = array('id' => $this->values['appli_id1'],
285 'type' => $this->values['appli_type1']);
286 unset($this->values['appli_id1']);
287 unset($this->values['appli_type1']);
288 $this->values['appli2'] = array('id' => $this->values['appli_id2'],
289 'type' => $this->values['appli_type2']);
290 unset($this->values['appli_id2']);
291 unset($this->values['appli_type2']);
292
293 // Retreive photo informations
294 $res = XDB::query("SELECT pub
295 FROM photo
296 WHERE uid = {?}", S::v('uid'));
297 $this->values['photo_pub'] = $res->fetchOneCell();
298
299 $res = XDB::query("SELECT COUNT(*)
300 FROM requests
301 WHERE type='photo' AND user_id = {?}",
302 S::v('uid'));
303 $this->values['nouvellephoto'] = $res->fetchOneCell();
b715c1e1 304
b04882ff
PC
305 // Retreive search names info
306 $this->values['search_names'] = XDB::iterator("
b715c1e1
SJ
307 SELECT sn.search_name, sn.name_type, sn.pub, sn.sn_id
308 FROM profile_names_search AS sn
309 WHERE sn.user_id = {?}
310 ORDER BY sn.name_type, search_score, search_name",
b04882ff 311 S::v('uid'));
bde2be3b
GB
312
313 // Retreive phones
314 $res = XDB::iterator("SELECT t.display_tel AS tel, t.tel_type AS type, t.pub, t.comment
315 FROM profile_phones AS t
316 WHERE t.uid = {?} AND t.link_type = 'user'
317 ORDER BY t.tel_id",
318 S::v('uid'));
319 $this->values['tels'] = $res->fetchAllAssoc();
93553cea
FB
320 }
321
7c2e0f0d 322 protected function _saveData()
93553cea 323 {
7bff4cb0
FB
324 if ($this->changed['nationalite'] || $this->changed['nom'] || $this->changed['prenom']
325 || $this->changed['naissance']) {
576777d7 326 XDB::execute("UPDATE auth_user_md5
7bff4cb0 327 SET nationalite = {?}, nom={?}, prenom={?}, naissance={?}
a7c28fff 328 WHERE user_id = {?}",
7bff4cb0
FB
329 $this->values['nationalite'], $this->values['nom'], $this->values['prenom'],
330 preg_replace('@(\d{2})/(\d{2})/(\d{4})@', '\3-\2-\1', $this->values['naissance']),
331 S::v('uid'));
576777d7 332 }
5e4417a9 333 if ($this->changed['nick'] || $this->changed['freetext'] || $this->changed['freetext_pub'] || $this->changed['synchro_ax']) {
576777d7 334 XDB::execute("UPDATE auth_user_quick
5e4417a9 335 SET profile_nick= {?},
1052148d 336 profile_freetext={?},
576777d7
FB
337 profile_freetext_pub={?}, profile_from_ax = {?}
338 WHERE user_id = {?}",
5e4417a9 339 $this->values['nick'],
576777d7
FB
340 $this->values['freetext'], $this->values['freetext_pub'],
341 $this->values['synchro_ax'], S::v('uid'));
342 }
b715c1e1
SJ
343 if ($this->changed['email_directory']) {
344 $new_email = ($this->values['email_directory'] == "new@new.new") ?
345 $this->values['email_directory_new'] : $this->values['email_directory'];
346 XDB::execute("REPLACE INTO profile_directory (uid, email_directory)
347 VALUES ({?}, {?})",
348 S::v('uid'), $new_email);
349 }
576777d7
FB
350 if ($this->changed['nick']) {
351 require_once('user.func.inc.php');
352 user_reindex(S::v('uid'));
353 }
a7c28fff
FB
354 if ($this->changed['photo_pub']) {
355 XDB::execute("UPDATE photo
356 SET pub = {?}
357 WHERE uid = {?}",
358 $this->values['photo_pub'], S::v('uid'));
359 }
b04882ff
PC
360 if ($this->changed['yourself'] || $this->changed['sort_name'] ||
361 $this-> changed['display_name'] || $this->changed['tooltip_name']) {
b715c1e1
SJ
362 XDB::execute("UPDATE profile_names_display AS n
363 SET n.yourself = {?},
364 n.sort = {?}, ". // SET
365 "n.display = {?}, ". // SET
366 "n.tooltip = {?} ". // SET
367 "WHERE n.user_id = {?}",
b04882ff
PC
368 $this->values['yourself'],
369 $this->values['sort_name'],
370 $this->values['display_name'],
371 $this->values['tooltip_name'],
372 S::v('uid'));
373 }
fd38b30e
FB
374 }
375
7c2e0f0d 376 public function _prepare(PlatalPage &$page, $id)
fd38b30e 377 {
fd38b30e 378 require_once "applis.func.inc.php";
d1a2252a 379
b715c1e1
SJ
380 require_once "emails.combobox.inc.php";
381 fill_email_combobox($page);
382
383 $res = XDB::iterator("SELECT nw.network_type AS type, nw.name
384 FROM profile_networking_enum AS nw
385 ORDER BY name");
d1a2252a 386 $page->assign('network_list', $res->fetchAllAssoc());
fd38b30e
FB
387 }
388}
389
390// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
391?>