8408c1520fa24cd8acaf6668e4576ff0e6d7a8a4
2 /***************************************************************************
3 * Copyright (C) 2003-2009 Polytechnique.org *
4 * http://opensource.polytechnique.org/ *
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. *
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. *
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 *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
22 interface ProfileSetting
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.
28 * If value is null, the default value should be returned.
29 * TODO: check this does not conflict with some possible values.
31 * Whatever happen, this function must always returns the function to
32 * show on the page to the user.
34 public function value(ProfilePage
&$page, $field, $value, &$success);
36 /** Save the new value for the given field.
38 public function save(ProfilePage
&$page, $field, $new_value);
41 abstract class ProfileNoSave
implements ProfileSetting
43 public function save(ProfilePage
&$page, $field, $new_value) { }
46 class ProfileWeb
extends ProfileNoSave
48 public function value(ProfilePage
&$page, $field, $value, &$success)
50 if (is_null($value)) {
51 return isset($page->values
[$field]) ?
$page->values
[$field] : S
::v($field);
53 $value = trim($value);
54 $success = empty($value) ||
preg_match("{^(https?|ftp)://[a-zA-Z0-9._%#+/?=&~-]+$}i", $value);
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');
63 class ProfileEmail
extends ProfileNoSave
65 public function value(ProfilePage
&$page, $field, $value, &$success)
67 if (is_null($value)) {
68 return isset($page->values
[$field]) ?
$page->values
[$field] : S
::v($field);
70 $value = trim($value);
71 $success = empty($value) ||
isvalid_email($value);
73 Platal
::page()->trigError('Adresse Email invalide');
79 class ProfileNumber
extends ProfileNoSave
81 public function value(ProfilePage
&$page, $field, $value, &$success)
83 if (is_null($value)) {
84 return isset($page->values
[$field]) ?
$page->values
[$field] : S
::v($field);
86 $value = trim($value);
87 $success = empty($value) ||
is_numeric($value);
89 Platal
::page()->trigError('Numéro invalide');
96 class ProfileTel
extends ProfileNoSave
98 public function value(ProfilePage
&$page, $field, $value, &$success)
100 if (is_null($value)) {
101 return isset($page->values
[$field]) ?
$page->values
[$field] : S
::v($field);
103 require_once('profil.func.inc.php');
104 $value = format_phone_number($value);
109 $value = format_display_number($value,$error);
112 Platal
::page()->trigError('Le préfixe international du numéro de téléphone est inconnu. ');
118 class ProfilePhones
implements ProfileSetting
123 protected $link_type;
126 public function __construct($type, $link_id, $id = 0)
131 $this->id
= S
::i('uid');
133 $this->tel
= new ProfileTel();
134 $this->pub
= new ProfilePub();
135 $this->link_type
= $type;
136 $this->link_id
= $link_id;
139 public function value(ProfilePage
&$page, $field, $value, &$success)
142 if (is_null($value) ||
!is_array($value)) {
144 $res = XDB
::iterator("SELECT t.display_tel AS tel, t.tel_type AS type, t.pub, t.comment
145 FROM profile_phones AS t
146 WHERE t.uid = {?} AND t.link_type = {?}
148 $this->id
, $this->link_type
);
149 $value = $res->fetchAllAssoc();
151 foreach ($value as $key=>&$phone) {
152 if (@$phone['removed']) {
155 unset($phone['removed']);
156 $phone['pub'] = $this->pub
->value($page, 'pub', $phone['pub'], $s);
157 $phone['tel'] = $this->tel
->value($page, 'tel', $phone['tel'], $s);
158 if(!isset($phone['type']) ||
($phone['type'] != 'fixed' && $phone['type'] != 'mobile' && $phone['type'] != 'fax')) {
159 $phone['type'] = 'fixed';
163 $phone['error'] = true
;
166 if (!isset($phone['comment'])) {
167 $phone['comment'] = '';
174 private function saveTel($telid, array &$phone)
176 if ($phone['tel'] != '') {
177 XDB
::execute("INSERT INTO profile_phones (uid, link_type, link_id, tel_id, tel_type,
178 search_tel, display_tel, pub, comment)
179 VALUES ({?}, {?}, {?}, {?}, {?},
180 {?}, {?}, {?}, {?})",
181 $this->id
, $this->link_type
, $this->link_id
, $telid, $phone['type'],
182 format_phone_number($phone['tel']), $phone['tel'], $phone['pub'], $phone['comment']);
186 public function save(ProfilePage
&$page, $field, $value)
188 XDB
::execute("DELETE FROM profile_phones
189 WHERE uid = {?} AND link_type = {?} AND link_id = {?}",
190 $this->id
, $this->link_type
, $this->link_id
);
191 $this->saveTels($field, $value);
194 //Only saves phones without a delete operation
195 public function saveTels($field, $value)
197 foreach ($value as $telid=>&$phone) {
198 $this->saveTel($telid, $phone);
203 class ProfilePub
extends ProfileNoSave
205 public function value(ProfilePage
&$page, $field, $value, &$success)
208 if (is_null($value)) {
209 return isset($page->values
[$field]) ?
$page->values
[$field] : S
::v($field);
213 } elseif ($value == 'on') { // Checkbox
220 class ProfileBool
extends ProfileNoSave
222 public function value(ProfilePage
&$page, $field, $value, &$success)
225 if (is_null($value)) {
226 $value = isset($page->values
[$field]) ?
$page->values
[$field] : null
;
228 return $value ?
"1" : "";
232 class ProfileDate
extends ProfileNoSave
234 public function value(ProfilePage
&$page, $field, $value, &$success)
237 if (is_null($value)) {
238 $value = preg_replace('/(\d{4})-(\d{2})-(\d{2})/', '\3/\2/\1', @$page->values
[$field]);
240 $success = preg_match('@(\d{2})/(\d{2})/(\d{4})@', $value, $matches);
242 Platal
::page()->trigError("Les dates doivent être au format jj/mm/aaaa");
244 $day = (int)$matches[1];
245 $month = (int)$matches[2];
246 $year = (int)$matches[3];
247 $success = ($day > 0 && $day <= 31) && ($month > 0 && $month <= 12) && ($year > 1900 && $year <= 2020);
249 Platal
::page()->trigError("La date n'a pas une valeur valide");
257 abstract class ProfileGeoloc
implements ProfileSetting
259 protected function geolocAddress(array &$address, &$success)
261 require_once 'geoloc.inc.php';
263 if ($address['changed'] == 1) {
264 cleanText($address['text']);
265 geolocGoogle($address);
266 $address['updateTime'] = time();
268 if (isset($address['geoloc'])) {
271 unset($address['changed']);
273 if (isset($address['geoloc_choice']) && $address['geoloc_choice'] == 0) {
274 $mailer = new PlMailer('geoloc/geoloc.mail.tpl');
275 $mailer->assign('text', $address['text']);
276 $mailer->assign('geoloc', $address['geoloc']);
278 } elseif (isset($address['geoloc_choice'])) {
279 unset($address['geoloc'], $address['geoloc_choice']);
285 abstract class ProfilePage
implements PlWizardPage
288 protected $pg_template;
289 protected $settings = array(); // A set ProfileSetting objects
290 protected $errors = array(); // A set of boolean with the value check errors
291 protected $changed = array(); // A set of boolean indicating wether the value has been changed
292 protected $watched = array(); // A set of boolean indicating the fields that are watched
294 public $orig = array();
295 public $values = array();
297 public function __construct(PlWizard
&$wiz)
299 $this->wizard
=& $wiz;
302 protected function _fetchData()
306 protected function fetchData()
308 if (count($this->orig
) > 0) {
309 $this->values
= $this->orig
;
314 foreach ($this->settings
as $field=>&$setting) {
316 if (!is_null($setting)) {
317 $this->values
[$field] = $setting->value($this, $field, null
, $success);
318 } else if (!isset($this->values
[$field])) {
319 $this->values
[$field] = S
::v($field);
321 $this->errors
[$field] = false
;
323 $this->orig
= $this->values
;
326 protected function _saveData()
330 protected function saveData()
332 require_once 'notifs.inc.php';
333 foreach ($this->settings
as $field=>&$setting) {
334 if (!is_null($setting) && $this->changed
[$field]) {
335 $setting->save($this, $field, $this->values
[$field]);
337 if ($this->changed
[$field] && @$this->watched
[$field]) {
338 register_profile_update(S
::i('uid'), $field);
343 // Update the last modification date
344 XDB
::execute('REPLACE INTO user_changes
345 SET user_id = {?}', S
::v('uid'));
346 if (!S
::has('suid')) {
347 register_watch_op(S
::i('uid'), WATCH_FICHE
);
350 S
::logger()->log('profil', $platal->pl_self(1));
353 protected function checkChanges()
355 $newvalues = $this->values
;
356 $this->values
= array();
358 $this->values
= $newvalues;
360 foreach ($this->settings
as $field=>&$setting) {
361 if ($this->orig
[$field] != $this->values
[$field]) {
362 $this->changed
[$field] = true
;
365 $this->changed
[$field] = false
;
371 protected function markChange()
375 public function template()
377 return 'profile/base.tpl';
380 protected function _prepare(PlPage
&$page, $id)
384 public function prepare(PlPage
&$page, $id)
386 if (count($this->values
) == 0) {
389 foreach ($this->values
as $field=>&$value) {
390 $page->assign($field, $value);
392 $this->_prepare($page, $id);
393 $page->assign('profile_page', $this->pg_template
);
394 $page->assign('errors', $this->errors
);
397 public function process()
399 $global_success = true
;
401 foreach ($this->settings
as $field=>&$setting) {
403 if (!is_null($setting)) {
404 $this->values
[$field] = $setting->value($this, $field, Post
::v($field, ''), $success);
407 $this->values
[$field] = Post
::v($field, '');
409 $this->errors
[$field] = !$success;
410 $global_success = $global_success && $success;
412 if ($global_success) {
413 if ($this->checkChanges()) {
417 return Post
::has('next_page') ? PlWizard
::NEXT_PAGE
: PlWizard
::CURRENT_PAGE
;
419 Platal
::page()->trigError("Certains champs n'ont pas pu être validés, merci de corriger les informations "
420 . "de ton profil et de revalider ta demande");
421 return PlWizard
::CURRENT_PAGE
;
425 require_once dirname(__FILE__
) . '/general.inc.php';
426 require_once dirname(__FILE__
) . '/addresses.inc.php';
427 require_once dirname(__FILE__
) . '/groups.inc.php';
428 require_once dirname(__FILE__
) . '/decos.inc.php';
429 require_once dirname(__FILE__
) . '/jobs.inc.php';
430 require_once dirname(__FILE__
) . '/skills.inc.php';
431 require_once dirname(__FILE__
) . '/mentor.inc.php';
433 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: