X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=modules%2Fprofile%2Fpage.inc.php;h=9ea18d9e1f57603c6a9f51592a3a9e365a9052e1;hb=87db81e71e24db248d1a5059dcd28781b0e2e75f;hp=43d068359157c49ca0d57bf9fe4c4262c4c75367;hpb=f9bebf66a51f0920e55eb6d2c60c88e2eafbc598;p=platal.git diff --git a/modules/profile/page.inc.php b/modules/profile/page.inc.php index 43d0683..9ea18d9 100644 --- a/modules/profile/page.inc.php +++ b/modules/profile/page.inc.php @@ -1,6 +1,6 @@ values[$field]) ? $page->values[$field] : S::v($field); } - $success = !preg_match('/[<>{}@&#~\/:;?,!§*_`\[\]|%$^=]/', $value, $matches); + $value = trim($value); + $success = empty($value) || is_numeric($value); if (!$success) { - Platal::page()->trigError('Le numéro de téléphone contient un caractère interdit : ' . pl_entities($matches[0][0])); + Platal::page()->trigError('Numéro invalide'); } return $value; } } -class ProfilePub extends ProfileNoSave +class ProfileSettingPhones implements ProfileSetting +{ + public function value(ProfilePage &$page, $field, $value, &$success) + { + $success = true; + $phones = array(); + + if (is_null($value)) { + $it = Phone::iterate(array($page->pid()), array(Phone::LINK_PROFILE), array(0)); + while ($phone = $it->next()) { + $success = ($phone->format() && $success); + $phones[] = $phone->toFormArray(); + } + if (count($phones) == 0) { + $phone = new Phone(); + $phones[] = $phone->toFormArray(); + } + return $phones; + } + + return Phone::formatFormArray($value, $success); + } + + public function save(ProfilePage &$page, $field, $value) + { + Phone::deletePhones($page->pid(), Phone::LINK_PROFILE); + Phone::savePhones($value, $page->pid(), Phone::LINK_PROFILE); + } + + public function getText($value) { + return Phone::formArrayToString($value); + } +} + +class ProfileSettingPub extends ProfileNoSave { public function value(ProfilePage &$page, $field, $value, &$success) { @@ -100,28 +142,32 @@ class ProfilePub extends ProfileNoSave if (is_null($value)) { return isset($page->values[$field]) ? $page->values[$field] : S::v($field); } - if (is_null($value) || !$value) { + if (!$value) { $value = 'private'; - } else if ($value == 'on') { // Checkbox + } elseif ($value == 'on') { // Checkbox $value = 'public'; } return $value; } + + public function getText($value) { + return $value; + } } -class ProfileBool extends ProfileNoSave +class ProfileSettingBool extends ProfileNoSave { public function value(ProfilePage &$page, $field, $value, &$success) { $success = true; if (is_null($value)) { - $value = @$page->values[$field]; + $value = isset($page->values[$field]) ? $page->values[$field] : null; } return $value ? "1" : ""; } } -class ProfileDate extends ProfileNoSave +class ProfileSettingDate extends ProfileNoSave { public function value(ProfilePage &$page, $field, $value, &$success) { @@ -144,50 +190,13 @@ class ProfileDate extends ProfileNoSave } return $value; } -} -abstract class ProfileGeoloc implements ProfileSetting -{ - protected function geolocAddress(array &$address, &$success) + public static function toSQLDate($value) { - require_once 'geoloc.inc.php'; - $success = true; - unset($address['geoloc']); - unset($address['geoloc_cityid']); - if (@$address['parsevalid'] - || (@$address['text'] && @$address['changed']) - || (@$address['text'] && !@$address['cityid'])) { - $address = array_merge($address, empty_address()); - $new = get_address_infos(@$address['text']); - if (compare_addresses_text(@$address['text'], $geotxt = get_address_text($new)) - || (@$address['parsevalid'] && @$address['cityid'])) { - $address = array_merge($address, $new); - $address['checked'] = true; - } else if (@$address['parsevalid']) { - $address = array_merge($address, cut_address(@$address['text'])); - $address['checked'] = true; - $mailer = new PlMailer('geoloc/geoloc.mail.tpl'); - $mailer->assign('text', get_address_text($address)); - $mailer->assign('geoloc', $geotxt); - $mailer->send(); - } else if (@$address['changed'] || !@$address['checked']) { - $success = false; - $address = array_merge($address, cut_address(@$address['text'])); - $address['checked'] = false; - $address['geoloc'] = $geotxt; - $address['geoloc_cityid'] = $new['cityid']; - } else { - $address = array_merge($address, cut_address(@$address['text'])); - $address['checked'] = true; - } - } - $address['precise_lat'] = rtrim($address['precise_lat'], '.0'); - $address['precise_lon'] = rtrim($address['precise_lon'], '.0'); - $address['text'] = get_address_text($address); + return preg_replace('@(\d{2})/(\d{2})/(\d{4})@', '\3-\2-\1', $value); } } - abstract class ProfilePage implements PlWizardPage { protected $wizard; @@ -199,10 +208,14 @@ abstract class ProfilePage implements PlWizardPage public $orig = array(); public $values = array(); + public $profile = null; + public $owner = null; public function __construct(PlWizard &$wiz) { $this->wizard =& $wiz; + $this->profile = $this->wizard->getUserData('profile'); + $this->owner = $this->wizard->getUserData('owner'); } protected function _fetchData() @@ -236,24 +249,50 @@ abstract class ProfilePage implements PlWizardPage protected function saveData() { require_once 'notifs.inc.php'; + $changedFields = array(); foreach ($this->settings as $field=>&$setting) { - if (!is_null($setting) && $this->changed[$field]) { - $setting->save($this, $field, $this->values[$field]); - } - if ($this->changed[$field] && @$this->watched[$field]) { - register_profile_update(S::i('uid'), $field); + if ($this->changed[$field]) { + if (!is_null($setting)) { + $changedFields[$field] = array( + str_replace("\n", " - ", $setting->getText($this->orig[$field])), + str_replace("\n", " - ", $setting->getText($this->values[$field])), + ); + } else { + $changedFields[$field] = array( + str_replace("\n", " - ", $this->orig[$field]), + str_replace("\n", " - ", $this->values[$field]), + ); + } + if (!is_null($setting)) { + $setting->save($this, $field, $this->values[$field]); + } + if (isset($this->watched[$field]) && $this->watched[$field]) { + WatchProfileUpdate::register($this->profile, $field); + } } } $this->_saveData(); // Update the last modification date - XDB::execute('REPLACE INTO user_changes - SET user_id = {?}', S::v('uid')); - if (!S::has('suid')) { - register_watch_op(S::i('uid'), WATCH_FICHE); - } + XDB::execute('UPDATE profiles + SET last_change = NOW() + WHERE pid = {?}', $this->pid()); global $platal; - S::logger()->log('profil', $platal->pl_self(1)); + S::logger()->log('profil', $platal->pl_self(2)); + + /** If the update was made by a third party and the profile corresponds + * to a registered user, stores both former and new text. + * This will be daily sent to the user. + */ + $owner = $this->profile->owner(); + $user = S::user(); + if ($owner->isActive() && $owner->id() != $user->id()) { + foreach ($changedFields as $field => $values) { + XDB::execute('REPLACE INTO profile_modifications (pid, uid, field, oldText, newText) + VALUES ({?}, {?}, {?}, {?}, {?})', + $this->pid(), $user->id(), $field, $values[0], $values[1]); + } + } } protected function checkChanges() @@ -283,6 +322,16 @@ abstract class ProfilePage implements PlWizardPage return 'profile/base.tpl'; } + public function pid() + { + return $this->profile->id(); + } + + public function hrpid() + { + return $this->profile->hrpid(); + } + protected function _prepare(PlPage &$page, $id) { } @@ -296,11 +345,13 @@ abstract class ProfilePage implements PlWizardPage $page->assign($field, $value); } $this->_prepare($page, $id); + $page->assign('profile', $this->profile); + $page->assign('owner', $this->owner); $page->assign('profile_page', $this->pg_template); $page->assign('errors', $this->errors); } - public function process() + public function process(&$global_success) { $global_success = true; $this->fetchData(); @@ -323,9 +374,14 @@ abstract class ProfilePage implements PlWizardPage return Post::has('next_page') ? PlWizard::NEXT_PAGE : PlWizard::CURRENT_PAGE; } Platal::page()->trigError("Certains champs n'ont pas pu être validés, merci de corriger les informations " - . "de ton profil et de revalider ta demande"); + . "de ton profil et de revalider ta demande."); return PlWizard::CURRENT_PAGE; } + + public function success() + { + return 'Ton profil a bien été mis à jour.'; + } } require_once dirname(__FILE__) . '/general.inc.php';