Should fix promotion edition.
[platal.git] / modules / profile / general.inc.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2010 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 require_once 'name.func.inc.php';
23
24 class ProfileSettingSearchNames implements ProfileSetting
25 {
26 private $private_name_end;
27 private $search_names;
28 private $name_types;
29
30 public function __construct() {
31 $this->name_types = DirEnum::getOptions(DirEnum::NAMES);
32 }
33
34 private function matchWord($old, $new, $newLen)
35 {
36 return ($i = strpos($old, $new)) !== false
37 && ($i == 0 || $old{$i-1} == ' ')
38 && ($i + $newLen == strlen($old) || $old{$i + $newLen} == ' ');
39 }
40
41 private function prepareField($value)
42 {
43 return name_to_basename($value);
44 }
45
46 private function prepare(ProfilePage &$page, $field, $value, $init, &$success)
47 {
48 $success = true;
49 $ini = $this->prepareField($init);
50 $new = $this->prepareField($value);
51 $newLen = strlen($new);
52 $success = $this->matchWord($ini, $new, $newLen)
53 || ($field == 'lastname' && $new == 'DE ' . $ini);
54 if (!$success) {
55 $field = strtolower($field);
56 Platal::page()->trigError("Le " . $this->name_types[$field] . " que tu as choisi (" . $value .
57 ") est trop loin de ton " . $this->name_types[$field] . " initial (" . $init . ").");
58 }
59 return $success ? $value : $init;
60 }
61
62 /* Removes duplicated entries for the fields that do not allow them. */
63 private function clean($value)
64 {
65 $single_types = XDB::fetchAllAssoc('id',
66 'SELECT id, 0
67 FROM profile_name_enum
68 WHERE NOT FIND_IN_SET(\'allow_duplicates\', flags)');
69
70 foreach ($value as $key => $item) {
71 if (isset($single_types[$item['typeid']])) {
72 if ($single_types[$item['typeid']] === true) {
73 unset($value[$key]);
74 } else {
75 $single_types[$item['typeid']] = true;
76 }
77 }
78 }
79
80 return $value;
81 }
82
83 public function value(ProfilePage &$page, $field, $value, &$success)
84 {
85 $success = true;
86 $success_tmp = true;
87
88 if (is_null($value)) {
89 $sn_all = XDB::iterator("SELECT CONCAT(sn.particle, sn.name) AS name,
90 sn.particle, sn.typeid, e.type, e.name AS type_name,
91 FIND_IN_SET('has_particle', e.flags) AS has_particle,
92 FIND_IN_SET('always_displayed', e.flags) AS always_displayed,
93 FIND_IN_SET('public', e.flags) AS pub
94 FROM profile_name AS sn
95 INNER JOIN profile_name_enum AS e ON (e.id = sn.typeid)
96 WHERE sn.pid = {?} AND NOT FIND_IN_SET('not_displayed', e.flags)
97 ORDER BY NOT FIND_IN_SET('always_displayed', e.flags), e.id, sn.name",
98 $page->pid());
99
100 $sn_types = XDB::iterator("SELECT id, type, name,
101 FIND_IN_SET('has_particle', flags) AS has_particle
102 FROM profile_name_enum
103 WHERE NOT FIND_IN_SET('not_displayed', flags)
104 AND FIND_IN_SET('always_displayed', flags)
105 ORDER BY id");
106
107 $value = array();
108 $sn = $sn_all->next();
109 while ($sn_type = $sn_types->next()) {
110 if ($sn_type['id'] == $sn['typeid']) {
111 $value[] = $sn;
112 if ($sn) {
113 $sn = $sn_all->next();
114 }
115 } else {
116 $value[] = array('name' => '',
117 'particle' => '',
118 'typeid' => $sn_type['id'],
119 'type' => $sn_type['type'],
120 'type_name' => $sn_type['name'],
121 'has_particle' => $sn_type['has_particle'],
122 'always_displayed' => 1,
123 'pub' => 1);
124 }
125 }
126 if ($sn) {
127 do {
128 $value[] = $sn;
129 } while ($sn = $sn_all->next());
130 }
131 $value = $this->clean($value);
132 } else {
133 require_once 'name.func.inc.php';
134
135 $value = $this->clean($value);
136 $res = XDB::query("SELECT s.particle, s.name
137 FROM profile_name AS s
138 INNER JOIN profile_name_enum AS e ON (e.id = s.typeid)
139 WHERE s.pid = {?} AND (e.type = 'lastname' OR e.type = 'firstname')
140 ORDER BY e.type = 'firstname'",
141 $page->pid());
142 $res = $res->fetchAllAssoc();
143 $initial = array();
144 $initial['lastname'] = $res[0]['particle'] . $res[0]['name'];
145 $initial['firstname'] = $res[1]['name'];
146 $sn_types = build_types();
147 $this->search_names = array();
148 foreach ($value as &$sn) {
149 $sn['name'] = trim($sn['name']);
150 if ($sn['type'] == 'firstname' || $sn['type'] == 'lastname') {
151 $sn['name'] = $this->prepare($page, $sn['type'], $sn['name'],
152 $initial[$sn['type']], $success_tmp);
153 $success = $success && $success_tmp;
154 }
155 if ($sn['pub']) {
156 if (isset($sn['particle']) && ($sn['particle'] != '')) {
157 // particle is before first blank
158 list($particle, $name) = explode(' ', $sn['name'], 2);
159 $particle = trim($particle) . ' ';
160 if (!$name) {
161 // particle is before first quote
162 list($particle, $name) = explode('\'', $sn['name'], 2);
163 $particle = trim($particle);
164 if (!$name) {
165 // actually there is no particle
166 $particle = '';
167 $name = $sn['name'];
168 }
169 }
170 } else {
171 $particle = '';
172 $name = $sn['name'];
173 }
174 }
175 if ($sn['name'] != '') {
176 if ($sn['pub']) {
177 $this->search_names[$sn['typeid']] = array('fullname' => $sn['name'],
178 'name' => $name,
179 'particle' => $particle,
180 'pub' => $sn['pub']);
181 } else {
182 if (isset($this->search_names[$sn['typeid']])) {
183 $this->search_names[$sn['typeid']][] = $sn['name'];
184 } else {
185 $this->search_names[$sn['typeid']] = array('fullname' => $sn['name']);
186 }
187 $sn['type_name'] = $sn_types[$sn['typeid']];
188 }
189 }
190 }
191 $res = XDB::query("SELECT public_name, private_name
192 FROM profile_display
193 WHERE pid = {?}",
194 S::v('uid'));
195 list($public_name, $private_name) = $res->fetchOneRow();
196 if ($success) {
197 $sn_types_private = build_types('private');
198 $this->private_name_end = build_private_name($this->search_names, $sn_types_private);
199 $private_name = $public_name . $this->private_name_end;
200 }
201 Platal::page()->assign('public_name', $public_name);
202 Platal::page()->assign('private_name', $private_name);
203 }
204
205 return $value;
206 }
207
208 public function save(ProfilePage &$page, $field, $value)
209 {
210 require_once 'name.func.inc.php';
211 $sn_old = build_sn_pub($page->pid());
212 XDB::execute("DELETE FROM s
213 USING profile_name AS s
214 INNER JOIN profile_name_enum AS e ON (s.typeid = e.id)
215 WHERE s.pid = {?} AND NOT FIND_IN_SET('not_displayed', e.flags)",
216 $page->pid());
217 $has_new = set_alias_names($this->search_names, $sn_old, $page->pid(), $page->owner->id());
218
219 // Only requires validation if modification in public names
220 if ($has_new) {
221 $new_names = new NamesReq(S::user(), $this->search_names, $this->private_name_end);
222 $new_names->submit();
223 Platal::page()->trigWarning('La demande de modification de tes noms a bien été prise en compte.' .
224 ' Tu recevras un email dès que ces changements auront été effectués.');
225 } else {
226 $display_names = array();
227 build_display_names($display_names, $this->search_names,
228 $page->profile->isFemale(), $this->private_name_end);
229 set_profile_display($display_names, $page->pid());
230 }
231 }
232 }
233
234 class ProfileSettingEdu implements ProfileSetting
235 {
236 public function __construct() {
237 }
238
239 static function sortByGradYear($line1, $line2) {
240 $a = (int) $line1['grad_year'];
241 $b = (int) $line2['grad_year'];
242 if ($a == $b) {
243 return 0;
244 }
245 return ($a < $b) ? -1 : 1;
246 }
247
248 public function value(ProfilePage &$page, $field, $value, &$success)
249 {
250 $success = true;
251 if (is_null($value) || !is_array($value)) {
252 $value = array();
253 $value = XDB::fetchAllAssoc("SELECT eduid, degreeid, fieldid, grad_year, program
254 FROM profile_education
255 WHERE pid = {?} AND !FIND_IN_SET('primary', flags)
256 ORDER BY id",
257 $page->pid());
258 } else {
259 $i = 0;
260 foreach ($value as $key=>&$edu) {
261 if (($edu['grad_year'] < 1921) || ($edu['grad_year'] > (date('Y') + 4))) {
262 Platal::page()->trigError('L\'année d\'obtention du diplôme est mal renseignée, elle doit être du type : 2004.');
263 $edu['error'] = true;
264 $success = false;
265 }
266 if ($key != $i) {
267 $value[$i] = $edu;
268 unset($value[$key]);
269 }
270 $i++;
271 }
272 usort($value, array("ProfileSettingEdu", "sortByGradYear"));
273 }
274 return $value;
275 }
276
277 public function save(ProfilePage &$page, $field, $value)
278 {
279 XDB::execute("DELETE FROM profile_education
280 WHERE pid = {?} AND !FIND_IN_SET('primary', flags)",
281 $page->pid());
282 foreach ($value as $eduid=>&$edu) {
283 if ($edu['eduid'] != '') {
284 XDB::execute("INSERT INTO profile_education
285 SET id = {?}, pid = {?}, eduid = {?}, degreeid = {?},
286 fieldid = {?}, grad_year = {?}, program = {?}",
287 $eduid, $page->pid(), $edu['eduid'], $edu['degreeid'],
288 $edu['fieldid'], $edu['grad_year'], $edu['program']);
289 }
290 }
291 }
292 }
293
294 class ProfileSettingEmailDirectory implements ProfileSetting
295 {
296 public function __construct(){}
297 public function save(ProfilePage &$page, $field, $value){}
298
299 public function value(ProfilePage &$page, $field, $value, &$success)
300 {
301 $p = Platal::page();
302
303 $success = true;
304 if (!is_null($value)) {
305 $email_stripped = strtolower(trim($value));
306 if ((!isvalid_email($email_stripped)) && ($email_stripped) && ($page->values['email_directory'] == "new@example.org")) {
307 $p->assign('email_error', '1');
308 $p->assign('email_directory_error', $email_stripped);
309 $p->trigError('Adresse Email invalide');
310 $success = false;
311 } else {
312 $p->assign('email_error', '0');
313 }
314 }
315 return $value;
316 }
317 }
318
319 class ProfileSettingNetworking implements ProfileSetting
320 {
321 private $email;
322 private $pub;
323 private $web;
324 private $number;
325
326 public function __construct()
327 {
328 $this->email = new ProfileSettingEmail();
329 $this->pub = new ProfileSettingPub();
330 $this->web = new ProfileSettingWeb();
331 $this->number = new ProfileSettingNumber();
332 }
333
334 public function value(ProfilePage &$page, $field, $value, &$success)
335 {
336 if (is_null($value)) {
337 $value = XDB::fetchAllAssoc("SELECT n.address, n.network_type AS type, n.pub, m.name
338 FROM profile_networking AS n
339 INNER JOIN profile_networking_enum AS m ON (n.network_type = m.network_type)
340 WHERE n.pid = {?}",
341 $page->pid());
342 }
343 if (!is_array($value)) {
344 $value = array();
345 }
346 $filters = XDB::fetchAllAssoc('type', 'SELECT filter, network_type AS type
347 FROM profile_networking_enum;');
348 $success = true;
349 foreach($value as $i=>&$network) {
350 if (!trim($network['address'])) {
351 unset($value[$i]);
352 } else {
353 if (!isset($network['pub'])) {
354 $network['pub'] = 'private';
355 }
356 $network['error'] = false;
357 $network['pub'] = $this->pub->value($page, 'pub', $network['pub'], $s);
358 $s = true;
359 if ($filters[$network['type']] == 'web') {
360 $network['address'] = $this->web->value($page, 'address', $network['address'], $s);
361 } elseif ($filters[$network['type']] == 'email') {
362 $network['address'] = $this->email->value($page, 'address', $network['address'], $s);
363 } elseif ($filters[$network['type']] == 'number') {
364 $network['address'] = $this->number->value($page, 'address', $network['address'], $s);
365 }
366 if (!$s) {
367 $success = false;
368 $network['error'] = true;
369 }
370 }
371 }
372 return $value;
373 }
374
375 public function save(ProfilePage &$page, $field, $value)
376 {
377 XDB::execute("DELETE FROM profile_networking
378 WHERE pid = {?}",
379 $page->pid());
380 if (!count($value)) {
381 return;
382 }
383 $insert = array();
384 foreach ($value as $id=>$network) {
385 XDB::execute("INSERT INTO profile_networking (pid, nwid, network_type, address, pub)
386 VALUES ({?}, {?}, {?}, {?}, {?})",
387 $page->pid(), $id, $network['type'], $network['address'], $network['pub']);
388 }
389 }
390 }
391
392 class ProfileSettingPromo implements ProfileSetting
393 {
394 public function __construct(){}
395
396 public function save(ProfilePage &$page, $field, $value)
397 {
398 $gradYearNew = $value;
399 if ($page->profile->mainEducation() == 'X') {
400 $gradYearNew += $page->profile->mainEducationDuration();
401 }
402 if (($page->profile->mainEducation() != 'X'
403 && $value == $page->profile->entry_year + $page->profile->mainEducationDuration())
404 || ($page->profile->mainEducation() == 'X' && $value == $page->profile->entry_year)) {
405 XDB::execute('UPDATE profile_display
406 SET promo = {?}
407 WHERE pid = {?}',
408 $page->profile->mainEducation() . strval($value), $page->profile->id());
409 XDB::execute('UPDATE profile_education
410 SET grad_year = {?}
411 WHERE pid = {?} AND FIND_IN_SET(\'primary\', flags)',
412 $gradYearNew, $page->profile->id());
413 Platal::page()->trigSuccess('Ton statut « orange » a été supprimé.');
414 } else {
415 require_once 'validations.inc.php';
416
417 $myorange = new OrangeReq(S::user(), $gradYearNew);
418 $myorange->submit();
419 Platal::page()->trigSuccess('Tu pourras changer l\'affichage de ta promotion dès que ta nouvelle promotion aura été validée.');
420 }
421 }
422
423 public function value(ProfilePage &$page, $field, $value, &$success)
424 {
425 $entryYear = $page->profile->entry_year;
426 $gradYear = $page->profile->grad_year;
427 $yearpromo = $page->profile->grad_year;
428 if ($page->profile->mainEducation() == 'X') {
429 $yearpromo -= $page->profile->mainEducationDuration();
430 }
431 $success = true;
432 if (is_null($value) || $value == $yearpromo) {
433 if ($gradYear != $entryYear + $page->profile->mainEducationDuration()) {
434 $promoChoice = array();
435 for ($i = $entryYear; $i <= $gradYear - $page->profile->mainEducationDuration(); ++$i) {
436 if ($page->profile->mainEducation() == 'X') {
437 $promoChoice[] = $page->profile->mainEducation() . strval($i);
438 } else {
439 $promoChoice[] = $page->profile->mainEducation() . strval($i + $page->profile->mainEducationDuration());
440 }
441 }
442 Platal::page()->assign('promo_choice', $promoChoice);
443 }
444 return $yearpromo;
445 }
446
447 // If this profile belongs to an X, $promoNew needs to be changed to
448 // the graduation year.
449 $gradYearNew = $value;
450 if ($page->profile->mainEducation() == 'X') {
451 $gradYearNew += $page->profile->mainEducationDuration();
452 }
453
454 if ($value < 1000 || $value > 9999) {
455 Platal::page()->trigError('L\'année de sortie doit être un nombre de quatre chiffres.');
456 $success = false;
457 } elseif ($gradYearNew < $entryYear + $page->profile->mainEducationDuration()) {
458 Platal::page()->trigError('Trop tôt&nbsp;!');
459 $success = false;
460 }
461 return intval($value);
462 }
463 }
464
465
466 class ProfileSettingGeneral extends ProfilePage
467 {
468 protected $pg_template = 'profile/general.tpl';
469
470 public function __construct(PlWizard &$wiz)
471 {
472 parent::__construct($wiz);
473 $this->settings['search_names']
474 = new ProfileSettingSearchNames();
475 $this->settings['birthdate'] = new ProfileSettingDate();
476 $this->settings['freetext_pub']
477 = $this->settings['photo_pub']
478 = new ProfileSettingPub();
479 $this->settings['freetext']
480 = $this->settings['nationality1']
481 = $this->settings['nationality2']
482 = $this->settings['nationality3']
483 = $this->settings['yourself']
484 = $this->settings['promo_display']
485 = null;
486 $this->settings['email_directory']
487 = new ProfileSettingEmail();
488 $this->settings['email_directory_new']
489 = new ProfileSettingEmailDirectory();
490 $this->settings['networking'] = new ProfileSettingNetworking();
491 $this->settings['tels'] = new ProfileSettingPhones('user', 0);
492 $this->settings['edus'] = new ProfileSettingEdu();
493 $this->settings['promo'] = new ProfileSettingPromo();
494 $this->watched= array('freetext' => true, 'tels' => true,
495 'networking' => true, 'edus' => true,
496 'nationality1' => true, 'nationality2' => true,
497 'nationality3' => true, 'search_names' => true);
498 }
499
500 protected function _fetchData()
501 {
502 // Checkout all data...
503 $res = XDB::query("SELECT p.nationality1, p.nationality2, p.nationality3, p.birthdate,
504 pp.display_tel as mobile, pp.pub as mobile_pub,
505 p.email_directory as email_directory, pd.promo AS promo_display,
506 p.freetext, p.freetext_pub, p.ax_id AS matricule_ax, pd.yourself
507 FROM profiles AS p
508 INNER JOIN profile_display AS pd ON (pd.pid = p.pid)
509 LEFT JOIN profile_phones AS pp ON (pp.pid = p.pid AND link_type = 'user')
510 WHERE p.pid = {?}", $this->pid());
511 $this->values = $res->fetchOneAssoc();
512 if ($this->owner) {
513 $this->values['yourself'] = $this->owner->displayName();
514 }
515
516 // Retreive photo informations
517 $res = XDB::query("SELECT pub
518 FROM profile_photos
519 WHERE pid = {?}", $this->pid());
520 $this->values['photo_pub'] = $res->fetchOneCell();
521
522 if ($this->owner) {
523 $res = XDB::query("SELECT COUNT(*)
524 FROM requests
525 WHERE type = 'photo' AND uid = {?}",
526 $this->owner->id());
527 $this->values['nouvellephoto'] = $res->fetchOneCell();
528 } else {
529 $this->values['nouvellephoto'] = 0;
530 }
531 }
532
533 protected function _saveData()
534 {
535 if ($this->changed['nationality1'] || $this->changed['nationality2'] || $this->changed['nationality3']
536 || $this->changed['birthdate'] || $this->changed['freetext'] || $this->changed['freetext_pub']
537 || $this->changed['email_directory']) {
538 if ($this->values['nationality3'] == "") {
539 $this->values['nationality3'] = NULL;
540 }
541 if ($this->values['nationality2'] == "") {
542 $this->values['nationality2'] = $this->values['nationality3'];
543 $this->values['nationality3'] = NULL;
544 }
545 if ($this->values['nationality1'] == "") {
546 $this->values['nationality1'] = $this->values['nationality2'];
547 $this->values['nationality2'] = $this->values['nationality3'];
548 $this->values['nationality3'] = NULL;
549 }
550 $new_email = ($this->values['email_directory'] == "new@example.org") ?
551 $this->values['email_directory_new'] : $this->values['email_directory'];
552 if ($new_email == "") {
553 $new_email = NULL;
554 }
555
556 XDB::execute("UPDATE profiles
557 SET nationality1 = {?}, nationality2 = {?}, nationality3 = {?}, birthdate = {?},
558 freetext = {?}, freetext_pub = {?}, email_directory = {?}
559 WHERE pid = {?}",
560 $this->values['nationality1'], $this->values['nationality2'], $this->values['nationality3'],
561 preg_replace('@(\d{2})/(\d{2})/(\d{4})@', '\3-\2-\1', $this->values['birthdate']),
562 $this->values['freetext'], $this->values['freetext_pub'], $new_email, $this->pid());
563 }
564 if ($this->changed['photo_pub']) {
565 XDB::execute("UPDATE profile_photos
566 SET pub = {?}
567 WHERE pid = {?}",
568 $this->values['photo_pub'], $this->pid());
569 }
570 if ($this->changed['yourself']) {
571 XDB::execute('UPDATE accounts
572 SET display_name = {?}
573 WHERE uid = {?}',
574 $this->values['yourself'], $this->owner->id());
575 }
576 if ($this->changed['promo_display']) {
577 if ($this->values['promo_display']{0} == $this->profile->mainEducation()) {
578 if (($this->profile->mainEducation() == 'X'
579 && intval(substr($this->values['promo_display'], 1, 4)) >= $this->profile->entry_year)
580 || ($this->profile->mainEducation() != 'X'
581 && intval(substr($this->values['promo_display'], 1, 4)) >= $this->profile->entry_year + $this->profile->mainEducationDuration())) {
582 XDB::execute('UPDATE profile_display
583 SET promo = {?}
584 WHERE pid = {?}',
585 $this->values['promo_display'], $this->pid());
586 }
587 }
588 }
589 }
590
591 public function _prepare(PlPage &$page, $id)
592 {
593 require_once "education.func.inc.php";
594
595 $res = XDB::query("SELECT id, field
596 FROM profile_education_field_enum
597 ORDER BY field");
598 $page->assign('edu_fields', $res->fetchAllAssoc());
599
600 require_once "emails.combobox.inc.php";
601 fill_email_combobox($page, $this->owner, $this->profile);
602
603 $res = XDB::query("SELECT nw.network_type AS type, nw.name
604 FROM profile_networking_enum AS nw
605 ORDER BY name");
606 $page->assign('network_list', $res->fetchAllAssoc());
607
608 $res = XDB::query("SELECT public_name, private_name
609 FROM profile_display
610 WHERE pid = {?}",
611 $this->pid());
612 $res = $res->fetchOneRow();
613 $page->assign('public_name', $res[0]);
614 $page->assign('private_name', $res[1]);
615 $page->assign('isFemale', $this->profile->isFemale() ? 1 : 0);
616 }
617 }
618
619 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
620 ?>