Avoid copy of geoloc_pays during database migration.
[platal.git] / modules / profile / general.inc.php
CommitLineData
fd38b30e
FB
1<?php
2/***************************************************************************
9f5bd98e 3 * Copyright (C) 2003-2010 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
c4b45374 22class ProfileSearchNames implements ProfileSetting
fd38b30e 23{
dced83b4
SJ
24 private $private_name_end;
25 private $search_names;
c4b45374 26
e5bcd851
FB
27 private function matchWord($old, $new, $newLen)
28 {
93553cea 29 return ($i = strpos($old, $new)) !== false
fd38b30e
FB
30 && ($i == 0 || $old{$i-1} == ' ')
31 && ($i + $newLen == strlen($old) || $old{$i + $newLen} == ' ');
32 }
33
34 private function prepareField($value)
35 {
a953f7e7 36 $value = mb_strtoupper($value);
fd38b30e
FB
37 return preg_replace('/[^A-Z]/', ' ', $value);
38 }
39
c4b45374 40 private function prepare(ProfilePage &$page, $field, $value, $init, &$success)
fd38b30e
FB
41 {
42 $success = true;
dced83b4
SJ
43 $ini = $this->prepareField($init);
44 $new = $this->prepareField($value);
c4b45374
SJ
45 $newLen = strlen($new);
46 $success = $this->matchWord($ini, $new, $newLen)
6cb58d39 47 || ($field == 'lastname' && $new == 'DE ' . $ini);
fd38b30e 48 if (!$success) {
c4b45374
SJ
49 $field = strtolower($field);
50 Platal::page()->trigError("Le " . $field . " que tu as choisi (" . $value .
51 ") est trop loin de ton " . $field . " initial (" . $init . ").");
fd38b30e 52 }
c4b45374 53 return $success ? $value : $init;
fd38b30e
FB
54 }
55
c4b45374 56 public function value(ProfilePage &$page, $field, $value, &$success)
fd38b30e 57 {
dced83b4 58 $success = true;
c4b45374 59 $success_tmp = true;
09f9ebea 60
c4b45374
SJ
61 if (is_null($value)) {
62 $sn_all = XDB::iterator("SELECT CONCAT(sn.particle, sn.name) AS name,
6cb58d39 63 sn.particle, sn.typeid, e.type, e.name AS type_name,
c4b45374
SJ
64 FIND_IN_SET('has_particle', e.flags) AS has_particle,
65 FIND_IN_SET('always_displayed', e.flags) AS always_displayed,
66 FIND_IN_SET('public', e.flags) AS pub
97a98687
SJ
67 FROM profile_name AS sn
68 INNER JOIN profile_name_enum AS e ON (e.id = sn.typeid)
c4b45374
SJ
69 WHERE sn.pid = {?} AND NOT FIND_IN_SET('not_displayed', e.flags)
70 ORDER BY NOT FIND_IN_SET('always_displayed', e.flags), e.id, sn.name",
111b2736 71 $page->pid());
c4b45374 72
6cb58d39
SJ
73 $sn_types = XDB::iterator("SELECT id, type, name,
74 FIND_IN_SET('has_particle', flags) AS has_particle
97a98687 75 FROM profile_name_enum
c4b45374
SJ
76 WHERE NOT FIND_IN_SET('not_displayed', flags)
77 AND FIND_IN_SET('always_displayed', flags)
78 ORDER BY id");
79
80 $value = array();
81 $sn = $sn_all->next();
82 while ($sn_type = $sn_types->next()) {
83 if ($sn_type['id'] == $sn['typeid']) {
84 $value[] = $sn;
111b2736
FB
85 if ($sn) {
86 $sn = $sn_all->next();
87 }
c4b45374 88 } else {
09f9ebea
SJ
89 $value[] = array('name' => '',
90 'particle' => '',
91 'typeid' => $sn_type['id'],
92 'type' => $sn_type['type'],
93 'type_name' => $sn_type['name'],
c4b45374 94 'has_particle' => $sn_type['has_particle'],
09f9ebea
SJ
95 'always_displayed' => 1,
96 'pub' => 1);
c4b45374
SJ
97 }
98 }
6cb58d39
SJ
99 if ($sn) {
100 do {
101 $value[] = $sn;
102 } while ($sn = $sn_all->next());
111b2736 103 }
c4b45374 104 } else {
6cb58d39
SJ
105 require_once 'name.func.inc.php';
106
c4b45374 107 $res = XDB::query("SELECT s.particle, s.name
97a98687
SJ
108 FROM profile_name AS s
109 INNER JOIN profile_name_enum AS e ON (e.id = s.typeid)
6cb58d39
SJ
110 WHERE s.pid = {?} AND e.type LIKE '%ini'
111 ORDER BY e.type = 'firstname_ini'",
111b2736 112 $page->pid());
c4b45374
SJ
113 $res = $res->fetchAllAssoc();
114 $initial = array();
6cb58d39
SJ
115 $initial['lastname'] = $res[0]['particle'] . $res[0]['name'];
116 $initial['firstname'] = $res[1]['name'];
117 $sn_types = build_types();
dced83b4
SJ
118 $this->search_names = array();
119 foreach ($value as &$sn) {
c4b45374 120 $sn['name'] = trim($sn['name']);
6cb58d39 121 if ($sn['type'] == 'firstname' || $sn['type'] == 'lastname') {
c4b45374
SJ
122 $sn['name'] = $this->prepare($page, $sn['type'], $sn['name'],
123 $initial[$sn['type']], $success_tmp);
124 $success = $success && $success_tmp;
125 }
dced83b4
SJ
126 if ($sn['pub']) {
127 if (isset($sn['particle']) && ($sn['particle'] != '')) {
128 list($particle, $name) = explode(' ', $sn['name'], 2);
129 $particle = trim($particle) . ' ';
130 if (!$name) {
131 list($particle, $name) = explode('\'', $sn['name'], 2);
132 $particle = trim($particle);
133 }
134 } else {
135 $particle = '';
136 $name = $sn['name'];
137 }
138 }
c4b45374 139 if ($sn['name'] != '') {
dced83b4
SJ
140 if ($sn['pub']) {
141 $this->search_names[$sn['typeid']] = array('fullname' => $sn['name'],
142 'name' => $name,
143 'particle' => $particle,
144 'pub' => $sn['pub']);
c4b45374 145 } else {
dced83b4
SJ
146 if (isset($this->search_names[$sn['typeid']])) {
147 $this->search_names[$sn['typeid']][] = $sn['name'];
148 } else {
149 $this->search_names[$sn['typeid']] = array('fullname' => $sn['name']);
150 }
6cb58d39 151 $sn['type_name'] = $sn_types[$sn['typeid']];
c4b45374
SJ
152 }
153 }
154 }
dced83b4
SJ
155 $res = XDB::query("SELECT public_name, private_name
156 FROM profile_display
157 WHERE pid = {?}",
158 S::v('uid'));
159 list($public_name, $private_name) = $res->fetchOneRow();
160 if ($success) {
dced83b4
SJ
161 $sn_types_private = build_types('private');
162 $this->private_name_end = build_private_name($this->search_names, $sn_types_private);
163 $private_name = $public_name . $this->private_name_end;
164 }
165 Platal::page()->assign('public_name', $public_name);
166 Platal::page()->assign('private_name', $private_name);
fd38b30e 167 }
09f9ebea 168
c4b45374 169 return $value;
fd38b30e
FB
170 }
171
c4b45374 172 public function save(ProfilePage &$page, $field, $value)
fd38b30e 173 {
dced83b4
SJ
174 require_once 'name.func.inc.php';
175 $sn_old = build_sn_pub();
c4b45374 176 XDB::execute("DELETE FROM s
97a98687
SJ
177 USING profile_name AS s
178 INNER JOIN profile_name_enum AS e ON (s.typeid = e.id)
c4b45374 179 WHERE s.pid = {?} AND NOT FIND_IN_SET('not_displayed', e.flags)",
111b2736 180 $page->pid());
dced83b4
SJ
181 $has_new = set_alias_names($this->search_names, $sn_old);
182
183 // Only requires validation if modification in public names
184 if ($has_new) {
185 $new_names = new NamesReq(S::user(), $this->search_names, $this->private_name_end);
186 $new_names->submit();
9f3c170a 187 Platal::page()->trigWarning("La demande de modification de tes noms a bien été prise en compte." .
dced83b4
SJ
188 " Tu recevras un email dès que ces changements auront été effectués.");
189 } else {
190 $display_names = array();
191 build_display_names($display_names, $this->search_names, $this->private_name_end);
192 set_profile_display($display_names);
c4b45374 193 }
fd38b30e
FB
194 }
195}
196
043bbacf 197class ProfileEdu implements ProfileSetting
576777d7 198{
e5bcd851
FB
199 public function __construct() {
200 }
043bbacf 201
5ba8842e 202 static function sortByGradYear($line1, $line2) {
22f0a0a8
SJ
203 $a = (int) $line1['grad_year'];
204 $b = (int) $line2['grad_year'];
205 if ($a == $b) {
5ba8842e
SJ
206 return 0;
207 }
22f0a0a8 208 return ($a < $b) ? -1 : 1;
5ba8842e
SJ
209 }
210
576777d7
FB
211 public function value(ProfilePage &$page, $field, $value, &$success)
212 {
213 $success = true;
043bbacf
SJ
214 if (is_null($value) || !is_array($value)) {
215 $value = array();
111b2736
FB
216 $value = XDB::fetchAllAssoc("SELECT eduid, degreeid, fieldid, grad_year, program
217 FROM profile_education
218 WHERE uid = {?} AND !FIND_IN_SET('primary', flags)
219 ORDER BY id",
220 $page->pid());
043bbacf
SJ
221 } else {
222 $i = 0;
223 foreach ($value as $key=>&$edu) {
224 if (($edu['grad_year'] < 1921) || ($edu['grad_year'] > (date('Y') + 4))) {
225 Platal::page()->trigError('L\'année d\'obtention du diplôme est mal renseignée, elle doit être du type : 2004.');
226 $edu['error'] = true;
227 $success = false;
228 }
229 if ($key != $i) {
230 $value[$i] = $edu;
231 unset($value[$key]);
232 }
233 $i++;
234 }
5ba8842e 235 usort($value, array("ProfileEdu", "sortByGradYear"));
576777d7
FB
236 }
237 return $value;
238 }
239
043bbacf 240 public function save(ProfilePage &$page, $field, $value)
576777d7 241 {
043bbacf 242 XDB::execute("DELETE FROM profile_education
fb2c09c9 243 WHERE uid = {?} AND !FIND_IN_SET('primary', flags)",
e5bcd851 244 $page->pid());
043bbacf
SJ
245 foreach ($value as $eduid=>&$edu) {
246 if ($edu['eduid'] != '') {
247 XDB::execute("INSERT INTO profile_education
1504ac45
SJ
248 SET id = {?}, uid = {?}, eduid = {?}, degreeid = {?},
249 fieldid = {?}, grad_year = {?}, program = {?}",
e5bcd851 250 $eduid, $page->pid(), $edu['eduid'], $edu['degreeid'],
1504ac45 251 $edu['fieldid'], $edu['grad_year'], $edu['program']);
043bbacf 252 }
576777d7
FB
253 }
254 }
255}
256
b715c1e1
SJ
257class ProfileEmailDirectory implements ProfileSetting
258{
b814a8b8
SJ
259 public function __construct(){}
260 public function save(ProfilePage &$page, $field, $value){}
b715c1e1
SJ
261
262 public function value(ProfilePage &$page, $field, $value, &$success)
263 {
ad3fee9d 264 $p = Platal::page();
b715c1e1
SJ
265
266 $success = true;
267 if (!is_null($value)) {
268 $email_stripped = strtolower(trim($value));
ad3fee9d
SJ
269 if ((!isvalid_email($email_stripped)) && ($email_stripped) && ($page->values['email_directory'] == "new@example.org")) {
270 $p->assign('email_error', '1');
271 $p->assign('email_directory_error', $email_stripped);
272 $p->trigError('Adresse Email invalide');
b715c1e1
SJ
273 $success = false;
274 } else {
ad3fee9d 275 $p->assign('email_error', '0');
b715c1e1
SJ
276 }
277 }
278 return $value;
279 }
b715c1e1
SJ
280}
281
d1a2252a
GB
282class ProfileNetworking implements ProfileSetting
283{
284 private $email;
285 private $pub;
286 private $web;
92446a53 287 private $number;
d1a2252a
GB
288
289 public function __construct()
290 {
291 $this->email = new ProfileEmail();
292 $this->pub = new ProfilePub();
293 $this->web = new ProfileWeb();
92446a53 294 $this->number = new ProfileNumber();
d1a2252a
GB
295 }
296
297 public function value(ProfilePage &$page, $field, $value, &$success)
298 {
299 if (is_null($value)) {
111b2736
FB
300 $value = XDB::fetchAllAssoc("SELECT n.address, n.network_type AS type, n.pub, m.name
301 FROM profile_networking AS n
302 INNER JOIN profile_networking_enum AS m ON (n.network_type = m.network_type)
303 WHERE n.uid = {?}",
304 $page->pid());
d1a2252a
GB
305 }
306 if (!is_array($value)) {
307 $value = array();
308 }
111b2736
FB
309 $filters = XDB::fetchAllAssoc('type', 'SELECT filter, network_type AS type
310 FROM profile_networking_enum;');
d1a2252a
GB
311 $success = true;
312 foreach($value as $i=>&$network) {
92c3f9e5
GB
313 if (!trim($network['address'])) {
314 unset($value[$i]);
315 } else {
316 if (!isset($network['pub'])) {
317 $network['pub'] = 'private';
318 }
319 $network['error'] = false;
320 $network['pub'] = $this->pub->value($page, 'pub', $network['pub'], $s);
321 $s = true;
322 if ($filters[$network['type']] == 'web') {
323 $network['address'] = $this->web->value($page, 'address', $network['address'], $s);
324 } elseif ($filters[$network['type']] == 'email') {
325 $network['address'] = $this->email->value($page, 'address', $network['address'], $s);
326 } elseif ($filters[$network['type']] == 'number') {
327 $network['address'] = $this->number->value($page, 'address', $network['address'], $s);
328 }
329 if (!$s) {
330 $success = false;
331 $network['error'] = true;
332 }
d1a2252a
GB
333 }
334 }
335 return $value;
336 }
337
338 public function save(ProfilePage &$page, $field, $value)
339 {
340 XDB::execute("DELETE FROM profile_networking
341 WHERE uid = {?}",
e5bcd851 342 $page->pid());
d1a2252a
GB
343 if (!count($value)) {
344 return;
345 }
346 $insert = array();
347 foreach ($value as $id=>$network) {
348 XDB::execute("INSERT INTO profile_networking (uid, nwid, network_type, address, pub)
349 VALUES ({?}, {?}, {?}, {?}, {?})",
e5bcd851 350 $page->pid(), $id, $network['type'], $network['address'], $network['pub']);
d1a2252a
GB
351 }
352 }
353}
354
fd38b30e
FB
355class ProfileGeneral extends ProfilePage
356{
357 protected $pg_template = 'profile/general.tpl';
358
359 public function __construct(PlWizard &$wiz)
360 {
361 parent::__construct($wiz);
c4b45374
SJ
362 $this->settings['search_names']
363 = new ProfileSearchNames();
e5bcd851 364 $this->settings['birthdate'] = new ProfileDate();
bde2be3b 365 $this->settings['freetext_pub']
576777d7 366 = $this->settings['photo_pub']
93553cea
FB
367 = new ProfilePub();
368 $this->settings['freetext']
e5bcd851
FB
369 = $this->settings['nationality1']
370 = $this->settings['nationality2']
371 = $this->settings['nationality3']
b04882ff 372 = $this->settings['yourself']
62835757 373 = $this->settings['promo']
93553cea 374 = null;
b715c1e1
SJ
375 $this->settings['email_directory']
376 = new ProfileEmail();
377 $this->settings['email_directory_new']
378 = new ProfileEmailDirectory();
d1a2252a 379 $this->settings['networking'] = new ProfileNetworking();
043bbacf
SJ
380 $this->settings['tels'] = new ProfilePhones('user', 0);
381 $this->settings['edus'] = new ProfileEdu();
6e32823c 382 $this->watched= array('freetext' => true, 'tels' => true,
043bbacf 383 'networking' => true, 'edus' => true,
e5bcd851 384 'nationality1' => true, 'nationality2' => true,
4ca15c31 385 'nationality3' => true, 'search_names' => true);
93553cea
FB
386 }
387
7c2e0f0d 388 protected function _fetchData()
93553cea 389 {
576777d7 390 // Checkout all data...
62835757 391 $res = XDB::query("SELECT p.promo, e.entry_year AS entry_year, e.grad_year AS grad_year,
e5bcd851 392 pr.nationality1, pr.nationality2, pr.nationality3, pr.birthdate,
5e4417a9 393 t.display_tel as mobile, t.pub as mobile_pub,
b715c1e1 394 d.email_directory as email_directory,
d1e61677 395 pr.freetext, pr.freetext_pub, pr.ax_id AS matricule_ax, p.yourself
e5bcd851 396 FROM profiles AS pr
e5bcd851
FB
397 INNER JOIN profile_display AS p ON (p.pid = pr.pid)
398 INNER JOIN profile_education AS e ON (e.uid = pr.pid AND FIND_IN_SET('primary', e.flags))
399 LEFT JOIN profile_phones AS t ON (t.uid = pr.pid AND link_type = 'user')
400 LEFT JOIN profile_directory AS d ON (d.uid = pr.pid)
401 WHERE pr.pid = {?}", $this->pid());
93553cea 402 $this->values = $res->fetchOneAssoc();
4ca15c31
FB
403 if ($this->owner) {
404 $this->values['yourself'] = $this->owner->displayName();
405 }
576777d7 406
576777d7
FB
407 // Retreive photo informations
408 $res = XDB::query("SELECT pub
5c4ea53f
FB
409 FROM profile_photos
410 WHERE pid = {?}", $this->pid());
576777d7
FB
411 $this->values['photo_pub'] = $res->fetchOneCell();
412
e5bcd851
FB
413 if ($this->owner) {
414 $res = XDB::query("SELECT COUNT(*)
415 FROM requests
416 WHERE type='photo' AND user_id = {?}",
417 $this->owner->id());
418 $this->values['nouvellephoto'] = $res->fetchOneCell();
419 } else {
420 $this->values['nouvellephoto'] = 0;
421 }
b715c1e1 422
62835757 423 // Proposes choice for promotion
fb2c09c9
SJ
424 if ($this->values['entry_year'] != $this->values['grad_year'] - 3) {
425 for ($i = $this->values['entry_year']; $i < $this->values['grad_year'] - 2; $i++) {
426 $this->values['promo_choice'][] = "X" . $i;
427 }
428 }
93553cea
FB
429 }
430
7c2e0f0d 431 protected function _saveData()
93553cea 432 {
e5bcd851 433 if ($this->changed['nationality1'] || $this->changed['nationality2'] || $this->changed['nationality3']
be638e73 434 || $this->changed['birthdate'] || $this->changed['freetext'] || $this->changed['freetext_pub']) {
e5bcd851
FB
435 if ($this->values['nationality3'] == "") {
436 $this->values['nationality3'] = NULL;
8450c2aa 437 }
e5bcd851
FB
438 if ($this->values['nationality2'] == "") {
439 $this->values['nationality2'] = $this->values['nationality3'];
440 $this->values['nationality3'] = NULL;
8450c2aa 441 }
e5bcd851
FB
442 if ($this->values['nationality1'] == "") {
443 $this->values['nationality1'] = $this->values['nationality2'];
444 $this->values['nationality2'] = $this->values['nationality3'];
445 $this->values['nationality3'] = NULL;
8450c2aa
SJ
446 }
447
e5bcd851
FB
448 XDB::execute("UPDATE profiles
449 SET nationality1 = {?}, nationality2 = {?}, nationality3 = {?}, birthdate = {?},
450 freetext = {?}, freetext_pub = {?}
d1e61677 451 WHERE pid = {?}",
e5bcd851
FB
452 $this->values['nationality1'], $this->values['nationality2'], $this->values['nationality3'],
453 preg_replace('@(\d{2})/(\d{2})/(\d{4})@', '\3-\2-\1', $this->values['birthdate']),
d1e61677 454 $this->values['freetext'], $this->values['freetext_pub'], $this->pid());
576777d7 455 }
b715c1e1 456 if ($this->changed['email_directory']) {
6ea6d9c1 457 $new_email = ($this->values['email_directory'] == "new@example.org") ?
b715c1e1 458 $this->values['email_directory_new'] : $this->values['email_directory'];
039ed1a1
SJ
459 if ($new_email == "") {
460 $new_email = NULL;
461 }
b715c1e1
SJ
462 XDB::execute("REPLACE INTO profile_directory (uid, email_directory)
463 VALUES ({?}, {?})",
e5bcd851 464 $this->pid(), $new_email);
b715c1e1 465 }
a7c28fff 466 if ($this->changed['photo_pub']) {
5c4ea53f 467 XDB::execute("UPDATE profile_photos
a7c28fff 468 SET pub = {?}
5c4ea53f 469 WHERE pid = {?}",
e5bcd851 470 $this->values['photo_pub'], $this->pid());
a7c28fff 471 }
c4b45374 472 if ($this->changed['yourself']) {
4ca15c31
FB
473 XDB::execute('UPDATE accounts
474 SET display_name = {?}
475 WHERE pid = {?}', $this->pid());
fb2c09c9 476 }
62835757 477 if ($this->changed['promo']) {
fb2c09c9 478 XDB::execute("UPDATE profile_display
d1319488
FB
479 SET promo = {?}
480 WHERE pid = {?}",
4ca15c31 481 $this->values['promo'], $this->pid());
b04882ff 482 }
fd38b30e
FB
483 }
484
04334c61 485 public function _prepare(PlPage &$page, $id)
fd38b30e 486 {
f711b03f 487 require_once "education.func.inc.php";
d1a2252a 488
111b2736
FB
489 $res = XDB::query("SELECT id, field
490 FROM profile_education_field_enum
491 ORDER BY field");
043bbacf
SJ
492 $page->assign('edu_fields', $res->fetchAllAssoc());
493
b715c1e1 494 require_once "emails.combobox.inc.php";
e5bcd851 495 fill_email_combobox($page, $this->owner, $this->profile);
b715c1e1 496
111b2736
FB
497 $res = XDB::query("SELECT nw.network_type AS type, nw.name
498 FROM profile_networking_enum AS nw
499 ORDER BY name");
d1a2252a 500 $page->assign('network_list', $res->fetchAllAssoc());
c4b45374
SJ
501
502 $res = XDB::query("SELECT public_name, private_name
503 FROM profile_display
504 WHERE pid = {?}",
111b2736 505 $this->pid());
c4b45374
SJ
506 $res = $res->fetchOneRow();
507 $page->assign('public_name', $res[0]);
508 $page->assign('private_name', $res[1]);
fd38b30e
FB
509 }
510}
511
512// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
513?>