Merge commit 'origin/fusionax' into account
[platal.git] / modules / profile / page.inc.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2009 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 interface 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);
39 }
40
41 abstract class ProfileNoSave implements ProfileSetting
42 {
43 public function save(ProfilePage &$page, $field, $new_value) { }
44 }
45
46 class ProfileWeb extends ProfileNoSave
47 {
48 public function value(ProfilePage &$page, $field, $value, &$success)
49 {
50 if (is_null($value)) {
51 return isset($page->values[$field]) ? $page->values[$field] : S::v($field);
52 }
53 $value = trim($value);
54 $success = empty($value) || preg_match("{^(https?|ftp)://[a-zA-Z0-9._%#+/?=&~-]+$}i", $value);
55 if (!$success) {
56 Platal::page()->trigError('URL Incorrecte : une url doit commencer par http:// ou https:// ou ftp://'
57 . ' et ne pas contenir de caractères interdits');
58 }
59 return $value;
60 }
61 }
62
63 class ProfileEmail extends ProfileNoSave
64 {
65 public function value(ProfilePage &$page, $field, $value, &$success)
66 {
67 if (is_null($value)) {
68 return isset($page->values[$field]) ? $page->values[$field] : S::v($field);
69 }
70 $value = trim($value);
71 $success = empty($value) || isvalid_email($value);
72 if (!$success) {
73 Platal::page()->trigError('Adresse Email invalide');
74 }
75 return $value;
76 }
77 }
78
79 class ProfileNumber extends ProfileNoSave
80 {
81 public function value(ProfilePage &$page, $field, $value, &$success)
82 {
83 if (is_null($value)) {
84 return isset($page->values[$field]) ? $page->values[$field] : S::v($field);
85 }
86 $value = trim($value);
87 $success = empty($value) || is_numeric($value);
88 if (!$success) {
89 Platal::page()->trigError('Numéro invalide');
90 }
91 return $value;
92 }
93 }
94
95
96 class ProfileTel extends ProfileNoSave
97 {
98 public function value(ProfilePage &$page, $field, $value, &$success)
99 {
100 if (is_null($value)) {
101 return isset($page->values[$field]) ? $page->values[$field] : S::v($field);
102 }
103 require_once('profil.func.inc.php');
104 $value = format_phone_number($value);
105 if($value == '') {
106 $success = true;
107 return $value;
108 }
109 $value = format_display_number($value,$error);
110 $success = !$error;
111 if (!$success) {
112 Platal::page()->trigError('Le préfixe international du numéro de téléphone est inconnu. ');
113 }
114 return $value;
115 }
116 }
117
118 class ProfilePhones implements ProfileSetting
119 {
120 private $tel;
121 private $pub;
122 protected $link_type;
123 protected $link_id;
124
125 public function __construct($type, $link_id)
126 {
127 $this->tel = new ProfileTel();
128 $this->pub = new ProfilePub();
129 $this->link_type = $type;
130 $this->link_id = $link_id;
131 }
132
133 public function value(ProfilePage &$page, $field, $value, &$success)
134 {
135 $success = true;
136 if (is_null($value)) {
137 $value = array();
138 $res = XDB::iterator('SELECT display_tel AS tel, tel_type AS type, pub, comment
139 FROM profile_phones
140 WHERE uid = {?} AND link_type = {?}
141 ORDER BY tel_id',
142 $page->pid(), $this->link_type);
143 if ($res->numRows() > 0) {
144 $value = $res->fetchAllAssoc();
145 } else {
146 $value = array(
147 0 => array(
148 'type' => 'fixed',
149 'tel' => '',
150 'pub' => 'private',
151 'comment' => '',
152 )
153 );
154 }
155 }
156 foreach ($value as $key=>&$phone) {
157 if (isset($phone['removed']) && $phone['removed']) {
158 unset($value[$key]);
159 } else {
160 unset($phone['removed']);
161 $phone['pub'] = $this->pub->value($page, 'pub', $phone['pub'], $s);
162 $phone['tel'] = $this->tel->value($page, 'tel', $phone['tel'], $s);
163 if(!isset($phone['type']) || ($phone['type'] != 'fixed' && $phone['type'] != 'mobile' && $phone['type'] != 'fax')) {
164 $phone['type'] = 'fixed';
165 $s = false;
166 }
167 if (!$s) {
168 $phone['error'] = true;
169 $success = false;
170 }
171 if (!isset($phone['comment'])) {
172 $phone['comment'] = '';
173 }
174 }
175 }
176 return $value;
177 }
178
179 private function saveTel($pid, $telid, array &$phone)
180 {
181 if ($phone['tel'] != '') {
182 XDB::execute("INSERT INTO profile_phones (uid, link_type, link_id, tel_id, tel_type,
183 search_tel, display_tel, pub, comment)
184 VALUES ({?}, {?}, {?}, {?}, {?},
185 {?}, {?}, {?}, {?})",
186 $pid, $this->link_type, $this->link_id, $telid, $phone['type'],
187 format_phone_number($phone['tel']), $phone['tel'], $phone['pub'], $phone['comment']);
188 }
189 }
190
191 public function save(ProfilePage &$page, $field, $value)
192 {
193 XDB::execute("DELETE FROM profile_phones
194 WHERE uid = {?} AND link_type = {?} AND link_id = {?}",
195 $page->pid(), $this->link_type, $this->link_id);
196 $this->saveTels($page->pid(), $field, $value);
197 }
198
199 //Only saves phones without a delete operation
200 public function saveTels($pid, $field, $value)
201 {
202 foreach ($value as $telid=>&$phone) {
203 $this->saveTel($pid, $telid, $phone);
204 }
205 }
206 }
207
208 class ProfilePub extends ProfileNoSave
209 {
210 public function value(ProfilePage &$page, $field, $value, &$success)
211 {
212 $success = true;
213 if (is_null($value)) {
214 return isset($page->values[$field]) ? $page->values[$field] : S::v($field);
215 }
216 if (!$value) {
217 $value = 'private';
218 } elseif ($value == 'on') { // Checkbox
219 $value = 'public';
220 }
221 return $value;
222 }
223 }
224
225 class ProfileBool extends ProfileNoSave
226 {
227 public function value(ProfilePage &$page, $field, $value, &$success)
228 {
229 $success = true;
230 if (is_null($value)) {
231 $value = isset($page->values[$field]) ? $page->values[$field] : null;
232 }
233 return $value ? "1" : "";
234 }
235 }
236
237 class ProfileDate extends ProfileNoSave
238 {
239 public function value(ProfilePage &$page, $field, $value, &$success)
240 {
241 $success = true;
242 if (is_null($value)) {
243 $value = preg_replace('/(\d{4})-(\d{2})-(\d{2})/', '\3/\2/\1', @$page->values[$field]);
244 } else {
245 $success = preg_match('@(\d{2})/(\d{2})/(\d{4})@', $value, $matches);
246 if (!$success) {
247 Platal::page()->trigError("Les dates doivent être au format jj/mm/aaaa");
248 } else {
249 $day = (int)$matches[1];
250 $month = (int)$matches[2];
251 $year = (int)$matches[3];
252 $success = ($day > 0 && $day <= 31) && ($month > 0 && $month <= 12) && ($year > 1900 && $year <= 2020);
253 if (!$success) {
254 Platal::page()->trigError("La date n'a pas une valeur valide");
255 }
256 }
257 }
258 return $value;
259 }
260 }
261
262 abstract class ProfileGeocoding implements ProfileSetting
263 {
264 protected function geocodeAddress(array &$address, &$success)
265 {
266 require_once 'geocoding.inc.php';
267 $success = true;
268 if (isset($address['changed']) && $address['changed'] == 1) {
269 $gmapsGeocoder = new GMapsGeocoder();
270 $address = $gmapsGeocoder->getGeocodedAddress($address);
271 if (isset($address['geoloc'])) {
272 $success = false;
273 }
274 }
275 if (isset($address['geoloc_choice']) && ($address['geoloc_choice'] == 0)) {
276 $mailer = new PlMailer('geoloc/geoloc.mail.tpl');
277 $mailer->assign('text', $address['text']);
278 $mailer->assign('geoloc', $address['geoloc']);
279 $mailer->send();
280 $gmapsGeocoder = new GMapsGeocoder();
281 $address = $gmapsGeocoder->stripGeocodingFromAddress($address);
282 }
283 }
284 }
285
286
287 abstract class ProfilePage implements PlWizardPage
288 {
289 protected $wizard;
290 protected $pg_template;
291 protected $settings = array(); // A set ProfileSetting objects
292 protected $errors = array(); // A set of boolean with the value check errors
293 protected $changed = array(); // A set of boolean indicating wether the value has been changed
294 protected $watched = array(); // A set of boolean indicating the fields that are watched
295
296 public $orig = array();
297 public $values = array();
298 public $profile = null;
299 public $owner = null;
300
301 public function __construct(PlWizard &$wiz)
302 {
303 $this->wizard =& $wiz;
304 $this->profile = $this->wizard->getUserData('profile');
305 $this->owner = $this->wizard->getUserData('owner');
306 }
307
308 protected function _fetchData()
309 {
310 }
311
312 protected function fetchData()
313 {
314 if (count($this->orig) > 0) {
315 $this->values = $this->orig;
316 return;
317 }
318
319 $this->_fetchData();
320 foreach ($this->settings as $field=>&$setting) {
321 $success = false;
322 if (!is_null($setting)) {
323 $this->values[$field] = $setting->value($this, $field, null, $success);
324 } else if (!isset($this->values[$field])) {
325 $this->values[$field] = S::v($field);
326 }
327 $this->errors[$field] = false;
328 }
329 $this->orig = $this->values;
330 }
331
332 protected function _saveData()
333 {
334 }
335
336 protected function saveData()
337 {
338 require_once 'notifs.inc.php';
339 foreach ($this->settings as $field=>&$setting) {
340 if (!is_null($setting) && $this->changed[$field]) {
341 $setting->save($this, $field, $this->values[$field]);
342 }
343 if ($this->changed[$field] && @$this->watched[$field]) {
344 WatchProfileUpdate::register($this->profile, $field);
345 }
346 }
347 $this->_saveData();
348
349 // Update the last modification date
350 XDB::execute('UPDATE profiles
351 SET last_change = NOW()
352 WHERE pid = {?}', $this->pid());
353 global $platal;
354 S::logger()->log('profil', $platal->pl_self(2));
355 }
356
357 protected function checkChanges()
358 {
359 $newvalues = $this->values;
360 $this->values = array();
361 $this->fetchData();
362 $this->values = $newvalues;
363 $changes = false;
364 foreach ($this->settings as $field=>&$setting) {
365 if ($this->orig[$field] != $this->values[$field]) {
366 $this->changed[$field] = true;
367 $changes = true;
368 } else {
369 $this->changed[$field] = false;
370 }
371 }
372 return $changes;
373 }
374
375 protected function markChange()
376 {
377 }
378
379 public function template()
380 {
381 return 'profile/base.tpl';
382 }
383
384 public function pid()
385 {
386 return $this->profile->id();
387 }
388
389 public function hrpid()
390 {
391 return $this->profile->hrpid();
392 }
393
394 protected function _prepare(PlPage &$page, $id)
395 {
396 }
397
398 public function prepare(PlPage &$page, $id)
399 {
400 if (count($this->values) == 0) {
401 $this->fetchData();
402 }
403 foreach ($this->values as $field=>&$value) {
404 $page->assign($field, $value);
405 }
406 $this->_prepare($page, $id);
407 $page->assign('profile', $this->profile);
408 $page->assign('owner', $this->owner);
409 $page->assign('profile_page', $this->pg_template);
410 $page->assign('errors', $this->errors);
411 }
412
413 public function process(&$global_success)
414 {
415 $global_success = true;
416 $this->fetchData();
417 foreach ($this->settings as $field=>&$setting) {
418 $success = false;
419 if (!is_null($setting)) {
420 $this->values[$field] = $setting->value($this, $field, Post::v($field, ''), $success);
421 } else {
422 $success = true;
423 $this->values[$field] = Post::v($field, '');
424 }
425 $this->errors[$field] = !$success;
426 $global_success = $global_success && $success;
427 }
428 if ($global_success) {
429 if ($this->checkChanges()) {
430 $this->saveData();
431 $this->markChange();
432 }
433 return Post::has('next_page') ? PlWizard::NEXT_PAGE : PlWizard::CURRENT_PAGE;
434 }
435 Platal::page()->trigError("Certains champs n'ont pas pu être validés, merci de corriger les informations "
436 . "de ton profil et de revalider ta demande.");
437 return PlWizard::CURRENT_PAGE;
438 }
439
440 public function success()
441 {
442 return 'Ton profil a bien été mis à jour.';
443 }
444 }
445
446 require_once dirname(__FILE__) . '/general.inc.php';
447 require_once dirname(__FILE__) . '/addresses.inc.php';
448 require_once dirname(__FILE__) . '/groups.inc.php';
449 require_once dirname(__FILE__) . '/decos.inc.php';
450 require_once dirname(__FILE__) . '/jobs.inc.php';
451 require_once dirname(__FILE__) . '/skills.inc.php';
452 require_once dirname(__FILE__) . '/mentor.inc.php';
453
454 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
455 ?>