Integrates new phone table in profile and other pages
[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) {
182 if(!isset($network['pub'])) {
183 $network['pub'] = 'private';
184 }
185 $network['error'] = false;
186 $network['pub'] = $this->pub->value($page, 'pub', $network['pub'], $s);
187 $s = true;
188 if ($filters[$network['type']] == 'web') {
189 $network['address'] = $this->web->value($page, 'address', $network['address'], $s);
190 } elseif ($filters[$network['type']] == 'email') {
191 $network['address'] = $this->email->value($page, 'address', $network['address'], $s);
92446a53
PC
192 } elseif ($filters[$network['type']] == 'number') {
193 $network['address'] = $this->number->value($page, 'address', $network['address'], $s);
d1a2252a
GB
194 }
195 if (!$s) {
196 $success = false;
197 $network['error'] = true;
198 }
199 }
200 return $value;
201 }
202
203 public function save(ProfilePage &$page, $field, $value)
204 {
205 XDB::execute("DELETE FROM profile_networking
206 WHERE uid = {?}",
207 S::i('uid'));
208 if (!count($value)) {
209 return;
210 }
211 $insert = array();
212 foreach ($value as $id=>$network) {
213 XDB::execute("INSERT INTO profile_networking (uid, nwid, network_type, address, pub)
214 VALUES ({?}, {?}, {?}, {?}, {?})",
215 S::i('uid'), $id, $network['type'], $network['address'], $network['pub']);
216 }
217 }
218}
219
fd38b30e
FB
220class ProfileGeneral extends ProfilePage
221{
222 protected $pg_template = 'profile/general.tpl';
223
224 public function __construct(PlWizard &$wiz)
225 {
226 parent::__construct($wiz);
b715c1e1
SJ
227 $this->settings['nom'] = $this->settings['prenom']
228 = new ProfileNom();
7bff4cb0 229 $this->settings['naissance'] = new ProfileDate();
93553cea 230 $this->settings['mobile_pub']
93553cea 231 = $this->settings['freetext_pub']
576777d7 232 = $this->settings['photo_pub']
93553cea
FB
233 = new ProfilePub();
234 $this->settings['freetext']
576777d7 235 = $this->settings['nationalite']
93553cea 236 = $this->settings['nick']
b04882ff
PC
237 = $this->settings['yourself']
238 = $this->settings['display_name']
239 = $this->settings['sort_name']
240 = $this->settings['tooltip_name']
93553cea 241 = null;
576777d7
FB
242 $this->settings['synchro_ax']
243 = new ProfileBool();
93553cea 244 $this->settings['mobile'] = new ProfileTel();
b715c1e1
SJ
245 $this->settings['email_directory']
246 = new ProfileEmail();
247 $this->settings['email_directory_new']
248 = new ProfileEmailDirectory();
d1a2252a 249 $this->settings['networking'] = new ProfileNetworking();
576777d7
FB
250 $this->settings['appli1']
251 = $this->settings['appli2']
252 = new ProfileAppli();
b715c1e1
SJ
253 $this->watched= array('nom' => true, 'freetext' => true, 'mobile' => true,
254 'networking' => true, 'appli1' => true, 'appli2' => true,
255 'nationalite' => true, 'nick' => true);
93553cea
FB
256 }
257
7c2e0f0d 258 protected function _fetchData()
93553cea 259 {
576777d7 260 // Checkout all data...
7bff4cb0 261 $res = XDB::query("SELECT u.promo, u.promo_sortie, u.nom_usage, u.nationalite, u.naissance,
5e4417a9 262 t.display_tel as mobile, t.pub as mobile_pub,
b715c1e1 263 d.email_directory as email_directory,
93553cea 264 q.profile_freetext as freetext, q.profile_freetext_pub as freetext_pub,
576777d7 265 q.profile_nick as nick, q.profile_from_ax as synchro_ax, u.matricule_ax,
93553cea 266 IF(a1.aid IS NULL, -1, a1.aid) as appli_id1, a1.type as appli_type1,
b04882ff
PC
267 IF(a2.aid IS NULL, -1, a2.aid) as appli_id2, a2.type as appli_type2,
268 n.yourself, n.display AS display_name, n.sort AS sort_name,
269 n.tooltip AS tooltip_name
b715c1e1
SJ
270 FROM auth_user_md5 AS u
271 INNER JOIN auth_user_quick AS q ON(u.user_id = q.user_id)
272 INNER JOIN profile_names_display AS n ON(n.user_id = u.user_id)
5e4417a9 273 LEFT JOIN telephone AS t ON(u.user_id = t.uid AND link_type = 'user')
b715c1e1
SJ
274 LEFT JOIN profile_directory AS d ON(d.uid = u.user_id)
275 LEFT JOIN applis_ins AS a1 ON(a1.uid = u.user_id and a1.ordre = 0)
276 LEFT JOIN applis_ins AS a2 ON(a2.uid = u.user_id and a2.ordre = 1)
93553cea
FB
277 WHERE u.user_id = {?}", S::v('uid', -1));
278 $this->values = $res->fetchOneAssoc();
576777d7
FB
279
280 // Reformat formation data
281 $this->values['appli1'] = array('id' => $this->values['appli_id1'],
282 'type' => $this->values['appli_type1']);
283 unset($this->values['appli_id1']);
284 unset($this->values['appli_type1']);
285 $this->values['appli2'] = array('id' => $this->values['appli_id2'],
286 'type' => $this->values['appli_type2']);
287 unset($this->values['appli_id2']);
288 unset($this->values['appli_type2']);
289
290 // Retreive photo informations
291 $res = XDB::query("SELECT pub
292 FROM photo
293 WHERE uid = {?}", S::v('uid'));
294 $this->values['photo_pub'] = $res->fetchOneCell();
295
296 $res = XDB::query("SELECT COUNT(*)
297 FROM requests
298 WHERE type='photo' AND user_id = {?}",
299 S::v('uid'));
300 $this->values['nouvellephoto'] = $res->fetchOneCell();
b715c1e1 301
b04882ff
PC
302 // Retreive search names info
303 $this->values['search_names'] = XDB::iterator("
b715c1e1
SJ
304 SELECT sn.search_name, sn.name_type, sn.pub, sn.sn_id
305 FROM profile_names_search AS sn
306 WHERE sn.user_id = {?}
307 ORDER BY sn.name_type, search_score, search_name",
b04882ff 308 S::v('uid'));
93553cea
FB
309 }
310
7c2e0f0d 311 protected function _saveData()
93553cea 312 {
7bff4cb0
FB
313 if ($this->changed['nationalite'] || $this->changed['nom'] || $this->changed['prenom']
314 || $this->changed['naissance']) {
576777d7 315 XDB::execute("UPDATE auth_user_md5
7bff4cb0 316 SET nationalite = {?}, nom={?}, prenom={?}, naissance={?}
a7c28fff 317 WHERE user_id = {?}",
7bff4cb0
FB
318 $this->values['nationalite'], $this->values['nom'], $this->values['prenom'],
319 preg_replace('@(\d{2})/(\d{2})/(\d{4})@', '\3-\2-\1', $this->values['naissance']),
320 S::v('uid'));
576777d7 321 }
5e4417a9 322 if ($this->changed['nick'] || $this->changed['freetext'] || $this->changed['freetext_pub'] || $this->changed['synchro_ax']) {
576777d7 323 XDB::execute("UPDATE auth_user_quick
5e4417a9 324 SET profile_nick= {?},
1052148d 325 profile_freetext={?},
576777d7
FB
326 profile_freetext_pub={?}, profile_from_ax = {?}
327 WHERE user_id = {?}",
5e4417a9 328 $this->values['nick'],
576777d7
FB
329 $this->values['freetext'], $this->values['freetext_pub'],
330 $this->values['synchro_ax'], S::v('uid'));
331 }
b715c1e1
SJ
332 if ($this->changed['email_directory']) {
333 $new_email = ($this->values['email_directory'] == "new@new.new") ?
334 $this->values['email_directory_new'] : $this->values['email_directory'];
335 XDB::execute("REPLACE INTO profile_directory (uid, email_directory)
336 VALUES ({?}, {?})",
337 S::v('uid'), $new_email);
338 }
5e4417a9
GB
339 if ($this->changed['mobile'] || $this->changed['mobile_pub']) {
340 require_once('profil.func.inc.php');
341 $fmt_phone = format_phone_number($this->values['mobile']);
342 XDB::execute("DELETE FROM telephone
343 WHERE uid = {?} AND link_type = 'user'",
344 S::v('uid'));
345 if ($fmt_phone != '') {
346 XDB::execute("INSERT INTO telephone (uid, link_type, link_id, tel_id, tel_type, search_tel, display_tel, pub)
347 VALUES ({?}, 'user', '0', '0', 'mobile', {?}, {?}, {?})",
348 S::v('uid'), $fmt_phone, $this->values['mobile'], $this->values['mobile_pub']);
349 }
350 }
576777d7
FB
351 if ($this->changed['nick']) {
352 require_once('user.func.inc.php');
353 user_reindex(S::v('uid'));
354 }
a7c28fff
FB
355 if ($this->changed['photo_pub']) {
356 XDB::execute("UPDATE photo
357 SET pub = {?}
358 WHERE uid = {?}",
359 $this->values['photo_pub'], S::v('uid'));
360 }
b04882ff
PC
361 if ($this->changed['yourself'] || $this->changed['sort_name'] ||
362 $this-> changed['display_name'] || $this->changed['tooltip_name']) {
b715c1e1
SJ
363 XDB::execute("UPDATE profile_names_display AS n
364 SET n.yourself = {?},
365 n.sort = {?}, ". // SET
366 "n.display = {?}, ". // SET
367 "n.tooltip = {?} ". // SET
368 "WHERE n.user_id = {?}",
b04882ff
PC
369 $this->values['yourself'],
370 $this->values['sort_name'],
371 $this->values['display_name'],
372 $this->values['tooltip_name'],
373 S::v('uid'));
374 }
fd38b30e
FB
375 }
376
7c2e0f0d 377 public function _prepare(PlatalPage &$page, $id)
fd38b30e 378 {
fd38b30e 379 require_once "applis.func.inc.php";
d1a2252a 380
b715c1e1
SJ
381 require_once "emails.combobox.inc.php";
382 fill_email_combobox($page);
383
384 $res = XDB::iterator("SELECT nw.network_type AS type, nw.name
385 FROM profile_networking_enum AS nw
386 ORDER BY name");
d1a2252a 387 $page->assign('network_list', $res->fetchAllAssoc());
fd38b30e
FB
388 }
389}
390
391// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
392?>