Do not notify death to a deceased user (Closes #1354).
[platal.git] / modules / profile / page.inc.php
CommitLineData
f118f685
FB
1<?php
2/***************************************************************************
9f5bd98e 3 * Copyright (C) 2003-2010 Polytechnique.org *
f118f685
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
fd38b30e
FB
22interface ProfileSetting
23{
24 /** Get a field and a value, check that the given value is
25 * valid, if not, return a corrected value. If no valid value can be
26 * computed from the input data, the success flag is set to false.
27 *
28 * If value is null, the default value should be returned.
29 * TODO: check this does not conflict with some possible values.
30 *
31 * Whatever happen, this function must always returns the function to
32 * show on the page to the user.
33 */
34 public function value(ProfilePage &$page, $field, $value, &$success);
35
36 /** Save the new value for the given field.
37 */
38 public function save(ProfilePage &$page, $field, $new_value);
a0fce0c6
SJ
39
40 /** Get text from the value.
41 */
42 public function getText($value);
fd38b30e
FB
43}
44
45abstract class ProfileNoSave implements ProfileSetting
46{
47 public function save(ProfilePage &$page, $field, $new_value) { }
a0fce0c6
SJ
48
49 public function getText($value) {
50 return $value;
51 }
fd38b30e
FB
52}
53
12bcf04b 54class ProfileSettingWeb extends ProfileNoSave
fd38b30e
FB
55{
56 public function value(ProfilePage &$page, $field, $value, &$success)
57 {
58 if (is_null($value)) {
59 return isset($page->values[$field]) ? $page->values[$field] : S::v($field);
60 }
37d44b3b
FB
61 $value = trim($value);
62 $success = empty($value) || preg_match("{^(https?|ftp)://[a-zA-Z0-9._%#+/?=&~-]+$}i", $value);
fd38b30e 63 if (!$success) {
d7610c35
FB
64 Platal::page()->trigError('URL Incorrecte : une url doit commencer par http:// ou https:// ou ftp://'
65 . ' et ne pas contenir de caractères interdits');
fd38b30e
FB
66 }
67 return $value;
68 }
69}
70
12bcf04b 71class ProfileSettingEmail extends ProfileNoSave
37d44b3b
FB
72{
73 public function value(ProfilePage &$page, $field, $value, &$success)
74 {
75 if (is_null($value)) {
76 return isset($page->values[$field]) ? $page->values[$field] : S::v($field);
77 }
78 $value = trim($value);
37d44b3b
FB
79 $success = empty($value) || isvalid_email($value);
80 if (!$success) {
d7610c35 81 Platal::page()->trigError('Adresse Email invalide');
37d44b3b
FB
82 }
83 return $value;
84 }
85}
86
12bcf04b 87class ProfileSettingNumber extends ProfileNoSave
92446a53
PC
88{
89 public function value(ProfilePage &$page, $field, $value, &$success)
90 {
91 if (is_null($value)) {
92 return isset($page->values[$field]) ? $page->values[$field] : S::v($field);
93 }
94 $value = trim($value);
95 $success = empty($value) || is_numeric($value);
96 if (!$success) {
ad3fee9d 97 Platal::page()->trigError('Numéro invalide');
92446a53
PC
98 }
99 return $value;
100 }
101}
102
12bcf04b 103class ProfileSettingPhones implements ProfileSetting
bde2be3b 104{
bde2be3b
GB
105 public function value(ProfilePage &$page, $field, $value, &$success)
106 {
107 $success = true;
0b6c8b36 108 $phones = array();
ed01acac 109
0b6c8b36
SJ
110 if (is_null($value)) {
111 $it = Phone::iterate(array($page->pid()), array(Phone::LINK_PROFILE), array(0));
112 while ($phone = $it->next()) {
113 $success = ($phone->format() && $success);
114 $phones[] = $phone->toFormArray();
ed01acac 115 }
0b6c8b36
SJ
116 if (count($phones) == 0) {
117 $phone = new Phone();
118 $phones[] = $phone->toFormArray();
bde2be3b 119 }
0b6c8b36 120 return $phones;
31dede92
FB
121 } else {
122 $phones = Phone::formatFormArray($value, $success);
123 if (!$success) {
124 Platal::page()->trigError('Numéro de téléphone invalide');
125 }
42ec0fe2 126 return $phones;
bde2be3b 127 }
bde2be3b
GB
128 }
129
130 public function save(ProfilePage &$page, $field, $value)
131 {
0b6c8b36
SJ
132 Phone::deletePhones($page->pid(), Phone::LINK_PROFILE);
133 Phone::savePhones($value, $page->pid(), Phone::LINK_PROFILE);
bde2be3b 134 }
a0fce0c6 135
e45ad94e
FB
136 public function getText($value)
137 {
0b6c8b36 138 return Phone::formArrayToString($value);
a0fce0c6 139 }
bde2be3b
GB
140}
141
12bcf04b 142class ProfileSettingPub extends ProfileNoSave
93553cea
FB
143{
144 public function value(ProfilePage &$page, $field, $value, &$success)
145 {
146 $success = true;
147 if (is_null($value)) {
148 return isset($page->values[$field]) ? $page->values[$field] : S::v($field);
149 }
041a5cec 150 if (!$value) {
93553cea 151 $value = 'private';
041a5cec 152 } elseif ($value == 'on') { // Checkbox
93553cea
FB
153 $value = 'public';
154 }
155 return $value;
156 }
a0fce0c6
SJ
157
158 public function getText($value) {
159 return $value;
160 }
93553cea
FB
161}
162
12bcf04b 163class ProfileSettingBool extends ProfileNoSave
576777d7
FB
164{
165 public function value(ProfilePage &$page, $field, $value, &$success)
166 {
167 $success = true;
168 if (is_null($value)) {
041a5cec 169 $value = isset($page->values[$field]) ? $page->values[$field] : null;
576777d7 170 }
ee12da4e 171 return $value ? "1" : "";
576777d7
FB
172 }
173}
174
12bcf04b 175class ProfileSettingDate extends ProfileNoSave
7bff4cb0 176{
42ec0fe2
FB
177 private $allowEmpty;
178
179 public function __construct($allowEmpty = false)
180 {
181 $this->allowEmpty = $allowEmpty;
182 }
183
7bff4cb0
FB
184 public function value(ProfilePage &$page, $field, $value, &$success)
185 {
186 $success = true;
187 if (is_null($value)) {
188 $value = preg_replace('/(\d{4})-(\d{2})-(\d{2})/', '\3/\2/\1', @$page->values[$field]);
189 } else {
42ec0fe2
FB
190 $value = trim($value);
191 if (empty($value) && $this->allowEmpty) {
192 return null;
193 }
7bff4cb0
FB
194 $success = preg_match('@(\d{2})/(\d{2})/(\d{4})@', $value, $matches);
195 if (!$success) {
d7610c35 196 Platal::page()->trigError("Les dates doivent être au format jj/mm/aaaa");
4fc3b113 197 } else {
7bff4cb0
FB
198 $day = (int)$matches[1];
199 $month = (int)$matches[2];
200 $year = (int)$matches[3];
201 $success = ($day > 0 && $day <= 31) && ($month > 0 && $month <= 12) && ($year > 1900 && $year <= 2020);
202 if (!$success) {
d7610c35 203 Platal::page()->trigError("La date n'a pas une valeur valide");
7bff4cb0
FB
204 }
205 }
206 }
207 return $value;
208 }
87db81e7
FB
209
210 public static function toSQLDate($value)
211 {
212 return preg_replace('@(\d{2})/(\d{2})/(\d{4})@', '\3-\2-\1', $value);
213 }
7bff4cb0
FB
214}
215
fd38b30e 216abstract class ProfilePage implements PlWizardPage
f118f685
FB
217{
218 protected $wizard;
fd38b30e
FB
219 protected $pg_template;
220 protected $settings = array(); // A set ProfileSetting objects
93553cea 221 protected $errors = array(); // A set of boolean with the value check errors
576777d7 222 protected $changed = array(); // A set of boolean indicating wether the value has been changed
a2a1c2f2 223 protected $watched = array(); // A set of boolean indicating the fields that are watched
fd38b30e 224
93553cea 225 public $orig = array();
fd38b30e 226 public $values = array();
e5bcd851
FB
227 public $profile = null;
228 public $owner = null;
f118f685
FB
229
230 public function __construct(PlWizard &$wiz)
231 {
232 $this->wizard =& $wiz;
e5bcd851
FB
233 $this->profile = $this->wizard->getUserData('profile');
234 $this->owner = $this->wizard->getUserData('owner');
f118f685
FB
235 }
236
7c2e0f0d
FB
237 protected function _fetchData()
238 {
239 }
240
fd38b30e
FB
241 protected function fetchData()
242 {
93553cea
FB
243 if (count($this->orig) > 0) {
244 $this->values = $this->orig;
245 return;
246 }
7c2e0f0d
FB
247
248 $this->_fetchData();
93553cea
FB
249 foreach ($this->settings as $field=>&$setting) {
250 $success = false;
251 if (!is_null($setting)) {
252 $this->values[$field] = $setting->value($this, $field, null, $success);
253 } else if (!isset($this->values[$field])) {
254 $this->values[$field] = S::v($field);
255 }
256 $this->errors[$field] = false;
257 }
258 $this->orig = $this->values;
fd38b30e
FB
259 }
260
7c2e0f0d
FB
261 protected function _saveData()
262 {
263 }
264
31cbd100 265 public function saveData()
fd38b30e 266 {
a2a1c2f2 267 require_once 'notifs.inc.php';
a0fce0c6 268 $changedFields = array();
93553cea 269 foreach ($this->settings as $field=>&$setting) {
a0fce0c6
SJ
270 if ($this->changed[$field]) {
271 if (!is_null($setting)) {
272 $changedFields[$field] = array(
f5751460
SJ
273 preg_replace('/(\r\n|\n|\r)/', ' - ', $setting->getText($this->orig[$field])),
274 preg_replace('/(\r\n|\n|\r)/', ' - ', $setting->getText($this->values[$field])),
a0fce0c6
SJ
275 );
276 } else {
277 $changedFields[$field] = array(
f5751460
SJ
278 preg_replace('/(\r\n|\n|\r)/', ' - ', $this->orig[$field]),
279 preg_replace('/(\r\n|\n|\r)/', ' - ', $this->values[$field]),
a0fce0c6
SJ
280 );
281 }
282 if (!is_null($setting)) {
283 $setting->save($this, $field, $this->values[$field]);
284 }
285 if (isset($this->watched[$field]) && $this->watched[$field]) {
286 WatchProfileUpdate::register($this->profile, $field);
287 }
a2a1c2f2 288 }
93553cea 289 }
7c2e0f0d 290 $this->_saveData();
576777d7
FB
291
292 // Update the last modification date
4e7bf1e0
FB
293 XDB::execute('UPDATE profiles
294 SET last_change = NOW()
295 WHERE pid = {?}', $this->pid());
576777d7 296 global $platal;
e5bcd851 297 S::logger()->log('profil', $platal->pl_self(2));
a0fce0c6 298
f5751460
SJ
299 /** Stores all profile modifications for active users in order to:
300 * -daily notify the user in case of third party edition,
301 * -display the modification to the secretaries for verification in
302 * case of an edition made by the user.
a0fce0c6
SJ
303 */
304 $owner = $this->profile->owner();
305 $user = S::user();
f5751460 306 if ($owner->isActive()) {
a0fce0c6 307 foreach ($changedFields as $field => $values) {
f5751460
SJ
308 XDB::execute('INSERT INTO profile_modifications (pid, uid, field, oldText, newText, type, timestamp)
309 VALUES ({?}, {?}, {?}, {?}, {?}, {?}, NOW())
310 ON DUPLICATE KEY UPDATE uid = VALUES(uid), oldText = IF(VALUES(type) != type, VALUES(oldText), oldText),
311 newText = VALUES(newText), type = VALUES(type), timestamp = NOW()',
312 $this->pid(), $user->id(), $field, $values[0], $values[1], ($owner->id() == $user->id()) ? 'self' : 'third_party');
a0fce0c6
SJ
313 }
314 }
31cbd100 315 return true;
93553cea
FB
316 }
317
318 protected function checkChanges()
319 {
320 $newvalues = $this->values;
321 $this->values = array();
322 $this->fetchData();
323 $this->values = $newvalues;
576777d7 324 $changes = false;
93553cea
FB
325 foreach ($this->settings as $field=>&$setting) {
326 if ($this->orig[$field] != $this->values[$field]) {
576777d7
FB
327 $this->changed[$field] = true;
328 $changes = true;
329 } else {
330 $this->changed[$field] = false;
93553cea
FB
331 }
332 }
576777d7 333 return $changes;
93553cea
FB
334 }
335
336 protected function markChange()
337 {
fd38b30e
FB
338 }
339
f118f685
FB
340 public function template()
341 {
fd38b30e 342 return 'profile/base.tpl';
f118f685
FB
343 }
344
e5bcd851
FB
345 public function pid()
346 {
347 return $this->profile->id();
348 }
349
350 public function hrpid()
351 {
352 return $this->profile->hrpid();
353 }
354
04334c61 355 protected function _prepare(PlPage &$page, $id)
7c2e0f0d
FB
356 {
357 }
358
04334c61 359 public function prepare(PlPage &$page, $id)
f118f685 360 {
fd38b30e
FB
361 if (count($this->values) == 0) {
362 $this->fetchData();
fd38b30e
FB
363 }
364 foreach ($this->values as $field=>&$value) {
365 $page->assign($field, $value);
366 }
7c2e0f0d 367 $this->_prepare($page, $id);
e5bcd851
FB
368 $page->assign('profile', $this->profile);
369 $page->assign('owner', $this->owner);
fd38b30e 370 $page->assign('profile_page', $this->pg_template);
93553cea 371 $page->assign('errors', $this->errors);
f118f685
FB
372 }
373
eb563236 374 public function process(&$global_success)
f118f685 375 {
fd38b30e
FB
376 $global_success = true;
377 $this->fetchData();
378 foreach ($this->settings as $field=>&$setting) {
379 $success = false;
93553cea 380 if (!is_null($setting)) {
85cc366b 381 $this->values[$field] = $setting->value($this, $field, Post::v($field, ''), $success);
93553cea
FB
382 } else {
383 $success = true;
85cc366b 384 $this->values[$field] = Post::v($field, '');
93553cea
FB
385 }
386 $this->errors[$field] = !$success;
fd38b30e
FB
387 $global_success = $global_success && $success;
388 }
389 if ($global_success) {
93553cea 390 if ($this->checkChanges()) {
31cbd100
FB
391 /* Save changes atomically to avoid inconsistent state
392 * in case of error.
393 */
394 if (!XDB::runTransaction(array($this, 'saveData'))) {
395 $global_success = false;
396 return PlWizard::CURRENT_PAGE;
397 }
93553cea 398 $this->markChange();
fd38b30e 399 }
3f09ff52
SJ
400 // XXX: removes this code once all merge related issues have been fixed.
401 static $issues = array(0 => array('name', 'promo', 'phone', 'education'), 1 => array('address'), 2 => array('job'));
402 if (isset($issues[Post::i('valid_page')])) {
aadf2259 403 foreach ($issues[Post::i('valid_page')] as $issue) {
3f09ff52
SJ
404 XDB::execute("UPDATE profile_merge_issues
405 SET issues = REPLACE(issues, {?}, '')
406 WHERE pid = {?}",
407 $issue, $this->pid());
408 }
409 }
93553cea 410 return Post::has('next_page') ? PlWizard::NEXT_PAGE : PlWizard::CURRENT_PAGE;
fd38b30e 411 }
42ec0fe2
FB
412 $text = "Certains champs n'ont pas pu être validés, merci de corriger les informations "
413 . (S::user()->isMe($this->owner) ? "de ton profil et de revalider ta demande."
414 : "du profil et de revalider ta demande.");
415 Platal::page()->trigError($text);
f118f685
FB
416 return PlWizard::CURRENT_PAGE;
417 }
eb563236
SJ
418
419 public function success()
420 {
42ec0fe2
FB
421 if (S::user()->isMe($this->owner)) {
422 return 'Ton profil a bien été mis à jour.';
423 } else {
424 return 'Le profil a bien été mis à jour.';
425 }
eb563236 426 }
f118f685
FB
427}
428
fd38b30e 429require_once dirname(__FILE__) . '/general.inc.php';
0b14f91d 430require_once dirname(__FILE__) . '/addresses.inc.php';
92412b28 431require_once dirname(__FILE__) . '/groups.inc.php';
a7c28fff 432require_once dirname(__FILE__) . '/decos.inc.php';
3950bc21 433require_once dirname(__FILE__) . '/jobs.inc.php';
f25e1a56 434require_once dirname(__FILE__) . '/skills.inc.php';
6457b5e4 435require_once dirname(__FILE__) . '/mentor.inc.php';
f118f685
FB
436
437// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
438?>