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