Updates education and adapts AX data to merge them into Xorg data (Closes #891).
[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 54 if (!$success) {
d7610c35
FB
55 Platal::page()->trigError("Le $field que tu as choisi ($value) est trop loin de ton $field initial ($init)"
56 . (($init == $current)? "" : " et de ton prénom précédent ($current)"));
fd38b30e
FB
57 }
58 return $success ? $value : $current;
59 }
60
61 public function save(ProfilePage &$page, $field, $new_value)
62 {
63 $_SESSION[$field] = $new_value;
64 }
65}
66
b04882ff
PC
67class ProfileSearchName implements ProfileSetting
68{
69
70 public function __construct()
71 {
72 }
73
74 public function value(ProfilePage &$page, $field, $value, &$success)
75 {
76 }
77
78 public function save(ProfilePage &$page, $field, $new_value)
79 {
80 }
81}
82
043bbacf 83class ProfileEdu implements ProfileSetting
576777d7 84{
043bbacf
SJ
85 public function __construct()
86 {
87 }
88
5ba8842e 89 static function sortByGradYear($line1, $line2) {
22f0a0a8
SJ
90 $a = (int) $line1['grad_year'];
91 $b = (int) $line2['grad_year'];
92 if ($a == $b) {
5ba8842e
SJ
93 return 0;
94 }
22f0a0a8 95 return ($a < $b) ? -1 : 1;
5ba8842e
SJ
96 }
97
576777d7
FB
98 public function value(ProfilePage &$page, $field, $value, &$success)
99 {
100 $success = true;
043bbacf
SJ
101 if (is_null($value) || !is_array($value)) {
102 $value = array();
1504ac45 103 $res = XDB::iterator("SELECT eduid, degreeid, fieldid, grad_year, program
043bbacf
SJ
104 FROM profile_education
105 WHERE uid = {?}
106 ORDER BY id",
107 S::v('uid'));
108 while($edu = $res->next()) {
109 $value[] = $edu;
110 }
111 } else {
112 $i = 0;
113 foreach ($value as $key=>&$edu) {
114 if (($edu['grad_year'] < 1921) || ($edu['grad_year'] > (date('Y') + 4))) {
115 Platal::page()->trigError('L\'année d\'obtention du diplôme est mal renseignée, elle doit être du type : 2004.');
116 $edu['error'] = true;
117 $success = false;
118 }
119 if ($key != $i) {
120 $value[$i] = $edu;
121 unset($value[$key]);
122 }
123 $i++;
124 }
5ba8842e 125 usort($value, array("ProfileEdu", "sortByGradYear"));
576777d7
FB
126 }
127 return $value;
128 }
129
043bbacf 130 public function save(ProfilePage &$page, $field, $value)
576777d7 131 {
043bbacf
SJ
132 XDB::execute("DELETE FROM profile_education
133 WHERE uid = {?}",
134 S::i('uid'));
135 foreach ($value as $eduid=>&$edu) {
136 if ($edu['eduid'] != '') {
137 XDB::execute("INSERT INTO profile_education
1504ac45
SJ
138 SET id = {?}, uid = {?}, eduid = {?}, degreeid = {?},
139 fieldid = {?}, grad_year = {?}, program = {?}",
140 $eduid, S::i('uid'), $edu['eduid'], $edu['degreeid'],
141 $edu['fieldid'], $edu['grad_year'], $edu['program']);
043bbacf 142 }
576777d7
FB
143 }
144 }
043bbacf 145
576777d7
FB
146}
147
b715c1e1
SJ
148class ProfileEmailDirectory implements ProfileSetting
149{
b715c1e1
SJ
150 public function __construct()
151 {
152 }
153
154 public function value(ProfilePage &$page, $field, $value, &$success)
155 {
ad3fee9d 156 $p = Platal::page();
b715c1e1
SJ
157
158 $success = true;
159 if (!is_null($value)) {
160 $email_stripped = strtolower(trim($value));
ad3fee9d
SJ
161 if ((!isvalid_email($email_stripped)) && ($email_stripped) && ($page->values['email_directory'] == "new@example.org")) {
162 $p->assign('email_error', '1');
163 $p->assign('email_directory_error', $email_stripped);
164 $p->trigError('Adresse Email invalide');
b715c1e1
SJ
165 $success = false;
166 } else {
ad3fee9d 167 $p->assign('email_error', '0');
b715c1e1
SJ
168 }
169 }
170 return $value;
171 }
172
173 public function save(ProfilePage &$page, $field, $value)
174 {
175 }
176}
177
d1a2252a
GB
178class ProfileNetworking implements ProfileSetting
179{
180 private $email;
181 private $pub;
182 private $web;
92446a53 183 private $number;
d1a2252a
GB
184
185 public function __construct()
186 {
187 $this->email = new ProfileEmail();
188 $this->pub = new ProfilePub();
189 $this->web = new ProfileWeb();
92446a53 190 $this->number = new ProfileNumber();
d1a2252a
GB
191 }
192
193 public function value(ProfilePage &$page, $field, $value, &$success)
194 {
195 if (is_null($value)) {
196 $value = array();
197 $res = XDB::iterator("SELECT n.address, n.network_type AS type, n.pub, m.name
198 FROM profile_networking AS n
199 INNER JOIN profile_networking_enum AS m ON (n.network_type = m.network_type)
200 WHERE n.uid = {?}",
201 S::i('uid'));
202 while($network = $res->next()) {
203 $value[] = $network;
204 }
205 }
206 if (!is_array($value)) {
207 $value = array();
208 }
b715c1e1
SJ
209 $res = XDB::iterator("SELECT filter, network_type AS type
210 FROM profile_networking_enum;");
d1a2252a
GB
211 $filters = array();
212 while($filter = $res->next()) {
213 $filters[$filter['type']] = $filter['filter'];
214 }
215 $success = true;
216 foreach($value as $i=>&$network) {
92c3f9e5
GB
217 if (!trim($network['address'])) {
218 unset($value[$i]);
219 } else {
220 if (!isset($network['pub'])) {
221 $network['pub'] = 'private';
222 }
223 $network['error'] = false;
224 $network['pub'] = $this->pub->value($page, 'pub', $network['pub'], $s);
225 $s = true;
226 if ($filters[$network['type']] == 'web') {
227 $network['address'] = $this->web->value($page, 'address', $network['address'], $s);
228 } elseif ($filters[$network['type']] == 'email') {
229 $network['address'] = $this->email->value($page, 'address', $network['address'], $s);
230 } elseif ($filters[$network['type']] == 'number') {
231 $network['address'] = $this->number->value($page, 'address', $network['address'], $s);
232 }
233 if (!$s) {
234 $success = false;
235 $network['error'] = true;
236 }
d1a2252a
GB
237 }
238 }
239 return $value;
240 }
241
242 public function save(ProfilePage &$page, $field, $value)
243 {
244 XDB::execute("DELETE FROM profile_networking
245 WHERE uid = {?}",
246 S::i('uid'));
247 if (!count($value)) {
248 return;
249 }
250 $insert = array();
251 foreach ($value as $id=>$network) {
252 XDB::execute("INSERT INTO profile_networking (uid, nwid, network_type, address, pub)
253 VALUES ({?}, {?}, {?}, {?}, {?})",
254 S::i('uid'), $id, $network['type'], $network['address'], $network['pub']);
255 }
256 }
257}
258
fd38b30e
FB
259class ProfileGeneral extends ProfilePage
260{
261 protected $pg_template = 'profile/general.tpl';
262
263 public function __construct(PlWizard &$wiz)
264 {
265 parent::__construct($wiz);
b715c1e1
SJ
266 $this->settings['nom'] = $this->settings['prenom']
267 = new ProfileNom();
7bff4cb0 268 $this->settings['naissance'] = new ProfileDate();
bde2be3b 269 $this->settings['freetext_pub']
576777d7 270 = $this->settings['photo_pub']
93553cea
FB
271 = new ProfilePub();
272 $this->settings['freetext']
576777d7 273 = $this->settings['nationalite']
8450c2aa
SJ
274 = $this->settings['nationalite2']
275 = $this->settings['nationalite3']
93553cea 276 = $this->settings['nick']
b04882ff
PC
277 = $this->settings['yourself']
278 = $this->settings['display_name']
279 = $this->settings['sort_name']
280 = $this->settings['tooltip_name']
93553cea 281 = null;
576777d7
FB
282 $this->settings['synchro_ax']
283 = new ProfileBool();
b715c1e1
SJ
284 $this->settings['email_directory']
285 = new ProfileEmail();
286 $this->settings['email_directory_new']
287 = new ProfileEmailDirectory();
d1a2252a 288 $this->settings['networking'] = new ProfileNetworking();
043bbacf
SJ
289 $this->settings['tels'] = new ProfilePhones('user', 0);
290 $this->settings['edus'] = new ProfileEdu();
bde2be3b 291 $this->watched= array('nom' => true, 'freetext' => true, 'tels' => true,
043bbacf 292 'networking' => true, 'edus' => true,
8450c2aa
SJ
293 'nationalite' => true, 'nationalite2' => true,
294 'nationalite3' => true, 'nick' => true);
93553cea
FB
295 }
296
7c2e0f0d 297 protected function _fetchData()
93553cea 298 {
576777d7 299 // Checkout all data...
8450c2aa
SJ
300 $res = XDB::query("SELECT u.promo, u.promo_sortie, u.nom_usage, u.nationalite,
301 u.nationalite2, u.nationalite3, u.naissance,
5e4417a9 302 t.display_tel as mobile, t.pub as mobile_pub,
b715c1e1 303 d.email_directory as email_directory,
93553cea 304 q.profile_freetext as freetext, q.profile_freetext_pub as freetext_pub,
576777d7 305 q.profile_nick as nick, q.profile_from_ax as synchro_ax, u.matricule_ax,
b04882ff
PC
306 n.yourself, n.display AS display_name, n.sort AS sort_name,
307 n.tooltip AS tooltip_name
b715c1e1
SJ
308 FROM auth_user_md5 AS u
309 INNER JOIN auth_user_quick AS q ON(u.user_id = q.user_id)
310 INNER JOIN profile_names_display AS n ON(n.user_id = u.user_id)
b235d980 311 LEFT JOIN profile_phones AS t ON(u.user_id = t.uid AND link_type = 'user')
b715c1e1 312 LEFT JOIN profile_directory AS d ON(d.uid = u.user_id)
93553cea
FB
313 WHERE u.user_id = {?}", S::v('uid', -1));
314 $this->values = $res->fetchOneAssoc();
576777d7 315
576777d7
FB
316 // Retreive photo informations
317 $res = XDB::query("SELECT pub
318 FROM photo
319 WHERE uid = {?}", S::v('uid'));
320 $this->values['photo_pub'] = $res->fetchOneCell();
321
322 $res = XDB::query("SELECT COUNT(*)
323 FROM requests
324 WHERE type='photo' AND user_id = {?}",
325 S::v('uid'));
326 $this->values['nouvellephoto'] = $res->fetchOneCell();
b715c1e1 327
b04882ff
PC
328 // Retreive search names info
329 $this->values['search_names'] = XDB::iterator("
b715c1e1
SJ
330 SELECT sn.search_name, sn.name_type, sn.pub, sn.sn_id
331 FROM profile_names_search AS sn
332 WHERE sn.user_id = {?}
333 ORDER BY sn.name_type, search_score, search_name",
b04882ff 334 S::v('uid'));
bde2be3b
GB
335
336 // Retreive phones
337 $res = XDB::iterator("SELECT t.display_tel AS tel, t.tel_type AS type, t.pub, t.comment
338 FROM profile_phones AS t
339 WHERE t.uid = {?} AND t.link_type = 'user'
340 ORDER BY t.tel_id",
341 S::v('uid'));
342 $this->values['tels'] = $res->fetchAllAssoc();
93553cea
FB
343 }
344
7c2e0f0d 345 protected function _saveData()
93553cea 346 {
8450c2aa
SJ
347 if ($this->changed['nationalite'] || $this->changed['nationalite2'] || $this->changed['nationalite3']
348 || $this->changed['nom'] || $this->changed['prenom'] || $this->changed['naissance']) {
349 if ($this->values['nationalite3'] == "") {
350 $this->values['nationalite3'] = NULL;
351 }
352 if ($this->values['nationalite2'] == "") {
353 $this->values['nationalite2'] = $this->values['nationalite3'];
354 $this->values['nationalite3'] = NULL;
355 }
356 if ($this->values['nationalite'] == "") {
357 $this->values['nationalite'] = $this->values['nationalite2'];
358 $this->values['nationalite2'] = $this->values['nationalite3'];
359 $this->values['nationalite3'] = NULL;
360 }
361
576777d7 362 XDB::execute("UPDATE auth_user_md5
8450c2aa 363 SET nationalite = {?}, nationalite2 = {?}, nationalite3 = {?}, nom={?}, prenom={?}, naissance={?}
a7c28fff 364 WHERE user_id = {?}",
8450c2aa
SJ
365 $this->values['nationalite'], $this->values['nationalite2'], $this->values['nationalite3'],
366 $this->values['nom'], $this->values['prenom'],
7bff4cb0
FB
367 preg_replace('@(\d{2})/(\d{2})/(\d{4})@', '\3-\2-\1', $this->values['naissance']),
368 S::v('uid'));
576777d7 369 }
5e4417a9 370 if ($this->changed['nick'] || $this->changed['freetext'] || $this->changed['freetext_pub'] || $this->changed['synchro_ax']) {
576777d7 371 XDB::execute("UPDATE auth_user_quick
5e4417a9 372 SET profile_nick= {?},
1052148d 373 profile_freetext={?},
576777d7
FB
374 profile_freetext_pub={?}, profile_from_ax = {?}
375 WHERE user_id = {?}",
5e4417a9 376 $this->values['nick'],
576777d7
FB
377 $this->values['freetext'], $this->values['freetext_pub'],
378 $this->values['synchro_ax'], S::v('uid'));
379 }
b715c1e1 380 if ($this->changed['email_directory']) {
6ea6d9c1 381 $new_email = ($this->values['email_directory'] == "new@example.org") ?
b715c1e1 382 $this->values['email_directory_new'] : $this->values['email_directory'];
039ed1a1
SJ
383 if ($new_email == "") {
384 $new_email = NULL;
385 }
b715c1e1
SJ
386 XDB::execute("REPLACE INTO profile_directory (uid, email_directory)
387 VALUES ({?}, {?})",
388 S::v('uid'), $new_email);
389 }
576777d7
FB
390 if ($this->changed['nick']) {
391 require_once('user.func.inc.php');
392 user_reindex(S::v('uid'));
393 }
a7c28fff
FB
394 if ($this->changed['photo_pub']) {
395 XDB::execute("UPDATE photo
396 SET pub = {?}
397 WHERE uid = {?}",
398 $this->values['photo_pub'], S::v('uid'));
399 }
b04882ff
PC
400 if ($this->changed['yourself'] || $this->changed['sort_name'] ||
401 $this-> changed['display_name'] || $this->changed['tooltip_name']) {
b715c1e1
SJ
402 XDB::execute("UPDATE profile_names_display AS n
403 SET n.yourself = {?},
404 n.sort = {?}, ". // SET
405 "n.display = {?}, ". // SET
406 "n.tooltip = {?} ". // SET
407 "WHERE n.user_id = {?}",
b04882ff
PC
408 $this->values['yourself'],
409 $this->values['sort_name'],
410 $this->values['display_name'],
411 $this->values['tooltip_name'],
412 S::v('uid'));
413 }
fd38b30e
FB
414 }
415
04334c61 416 public function _prepare(PlPage &$page, $id)
fd38b30e 417 {
f711b03f 418 require_once "education.func.inc.php";
d1a2252a 419
043bbacf
SJ
420 $res = XDB::iterator("SELECT id, field
421 FROM profile_education_field_enum
422 ORDER BY field");
423 $page->assign('edu_fields', $res->fetchAllAssoc());
424
b715c1e1
SJ
425 require_once "emails.combobox.inc.php";
426 fill_email_combobox($page);
427
428 $res = XDB::iterator("SELECT nw.network_type AS type, nw.name
429 FROM profile_networking_enum AS nw
430 ORDER BY name");
d1a2252a 431 $page->assign('network_list', $res->fetchAllAssoc());
fd38b30e
FB
432 }
433}
434
435// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
436?>