2008-05-15 17:28:44 +01:00
|
|
|
<?php
|
2008-05-19 13:27:08 +01:00
|
|
|
/*
|
2008-05-15 17:28:44 +01:00
|
|
|
* Laconica - a distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2008, Controlez-Vous, Inc.
|
2008-05-19 13:27:08 +01:00
|
|
|
*
|
2008-05-15 17:28:44 +01:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2008-05-19 13:27:08 +01:00
|
|
|
*
|
2008-05-15 17:28:44 +01:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2008-05-19 13:27:08 +01:00
|
|
|
*
|
2008-05-15 17:28:44 +01:00
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2008-05-17 16:47:01 +01:00
|
|
|
if (!defined('LACONICA')) { exit(1); }
|
2008-05-15 17:28:44 +01:00
|
|
|
|
2008-05-17 18:54:16 +01:00
|
|
|
require_once(INSTALLDIR.'/lib/settingsaction.php');
|
|
|
|
|
2008-05-15 17:28:44 +01:00
|
|
|
class ProfilesettingsAction extends SettingsAction {
|
2008-05-19 13:27:08 +01:00
|
|
|
|
2008-06-18 04:57:39 +01:00
|
|
|
function show_top($arr) {
|
|
|
|
$msg = $arr[0];
|
|
|
|
$success = $arr[1];
|
2008-06-11 17:33:08 +01:00
|
|
|
if ($msg) {
|
|
|
|
$this->message($msg, $success);
|
|
|
|
} else {
|
2008-06-12 17:52:01 +01:00
|
|
|
common_element('div', 'instructions',
|
|
|
|
_t('You can update your personal profile info here '.
|
2008-06-18 04:57:39 +01:00
|
|
|
'so people know more about you.'));
|
2008-06-11 17:33:08 +01:00
|
|
|
}
|
2008-06-18 04:57:39 +01:00
|
|
|
$this->settings_menu();
|
|
|
|
}
|
|
|
|
|
|
|
|
function show_form($msg=NULL, $success=false) {
|
|
|
|
$user = common_current_user();
|
|
|
|
$profile = $user->getProfile();
|
|
|
|
common_show_header(_t('Profile settings'), NULL, array($msg, $success),
|
|
|
|
array($this, 'show_top'));
|
|
|
|
|
2008-05-17 18:04:30 +01:00
|
|
|
common_element_start('form', array('method' => 'POST',
|
2008-05-15 17:28:44 +01:00
|
|
|
'id' => 'profilesettings',
|
2008-05-19 13:27:08 +01:00
|
|
|
'action' =>
|
2008-05-15 17:28:44 +01:00
|
|
|
common_local_url('profilesettings')));
|
2008-05-18 02:55:51 +01:00
|
|
|
# too much common patterns here... abstractable?
|
2008-05-19 13:27:08 +01:00
|
|
|
common_input('nickname', _t('Nickname'),
|
2008-06-12 17:52:01 +01:00
|
|
|
($this->arg('nickname')) ? $this->arg('nickname') : $profile->nickname,
|
|
|
|
_t('1-64 lowercase letters or numbers, no punctuation or spaces'));
|
2008-05-18 02:55:51 +01:00
|
|
|
common_input('fullname', _t('Full name'),
|
|
|
|
($this->arg('fullname')) ? $this->arg('fullname') : $profile->fullname);
|
|
|
|
common_input('email', _t('Email address'),
|
2008-06-12 17:52:01 +01:00
|
|
|
($this->arg('email')) ? $this->arg('email') : $user->email,
|
|
|
|
_t('Used only for updates, announcements, and password recovery'));
|
2008-05-18 02:55:51 +01:00
|
|
|
common_input('homepage', _t('Homepage'),
|
2008-06-12 17:52:01 +01:00
|
|
|
($this->arg('homepage')) ? $this->arg('homepage') : $profile->homepage,
|
|
|
|
_t('URL of your homepage, blog, or profile on another site'));
|
2008-05-20 22:19:45 +01:00
|
|
|
common_textarea('bio', _t('Bio'),
|
2008-06-12 17:52:01 +01:00
|
|
|
($this->arg('bio')) ? $this->arg('bio') : $profile->bio,
|
|
|
|
_t('Describe yourself and your interests in 140 chars'));
|
2008-05-18 02:55:51 +01:00
|
|
|
common_input('location', _t('Location'),
|
2008-06-12 17:52:01 +01:00
|
|
|
($this->arg('location')) ? $this->arg('location') : $profile->location,
|
|
|
|
_t('Where you are, like "City, State (or Region), Country"'));
|
2008-05-20 18:47:59 +01:00
|
|
|
common_submit('submit', _t('Save'));
|
2008-05-17 18:04:30 +01:00
|
|
|
common_element_end('form');
|
2008-05-15 17:28:44 +01:00
|
|
|
common_show_footer();
|
|
|
|
}
|
2008-05-19 13:27:08 +01:00
|
|
|
|
2008-05-15 17:28:44 +01:00
|
|
|
function handle_post() {
|
2008-05-21 12:27:07 +01:00
|
|
|
|
|
|
|
$nickname = $this->trimmed('nickname');
|
|
|
|
$fullname = $this->trimmed('fullname');
|
|
|
|
$email = $this->trimmed('email');
|
|
|
|
$homepage = $this->trimmed('homepage');
|
|
|
|
$bio = $this->trimmed('bio');
|
|
|
|
$location = $this->trimmed('location');
|
|
|
|
|
|
|
|
# Some validation
|
|
|
|
|
|
|
|
if (!Validate::email($email, true)) {
|
|
|
|
$this->show_form(_t('Not a valid email address.'));
|
|
|
|
return;
|
|
|
|
} else if (!Validate::string($nickname, array('min_length' => 1,
|
|
|
|
'max_length' => 64,
|
|
|
|
'format' => VALIDATE_NUM . VALIDATE_ALPHA_LOWER))) {
|
|
|
|
$this->show_form(_t('Nickname must have only letters and numbers and no spaces.'));
|
|
|
|
return;
|
|
|
|
} else if (!is_null($homepage) && (strlen($homepage) > 0) &&
|
|
|
|
!Validate::uri($homepage, array('allowed_schemes' => array('http', 'https')))) {
|
|
|
|
$this->show_form(_t('Homepage is not a valid URL.'));
|
|
|
|
return;
|
|
|
|
} else if (!is_null($fullname) && strlen($fullname) > 255) {
|
|
|
|
$this->show_form(_t('Fullname is too long (max 255 chars).'));
|
|
|
|
return;
|
|
|
|
} else if (!is_null($bio) && strlen($bio) > 140) {
|
|
|
|
$this->show_form(_t('Bio is too long (max 140 chars).'));
|
|
|
|
return;
|
|
|
|
} else if (!is_null($location) && strlen($location) > 255) {
|
|
|
|
$this->show_form(_t('Location is too long (max 255 chars).'));
|
|
|
|
return;
|
|
|
|
} else if ($this->nickname_exists($nickname)) {
|
|
|
|
$this->show_form(_t('Nickname already exists.'));
|
|
|
|
return;
|
|
|
|
} else if ($this->email_exists($email)) {
|
|
|
|
$this->show_form(_t('Email address already exists.'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-05-15 17:28:44 +01:00
|
|
|
$user = common_current_user();
|
2008-05-19 13:27:08 +01:00
|
|
|
|
2008-06-19 04:36:19 +01:00
|
|
|
$user->query('BEGIN');
|
2008-05-20 20:14:12 +01:00
|
|
|
|
2008-06-22 16:32:20 +01:00
|
|
|
if (strcmp($user->nickname, $nickname) != 0) {
|
2008-06-22 16:37:54 +01:00
|
|
|
|
|
|
|
common_debug('Updating user nickname from ' . $user->nickname . ' to ' . $nickname,
|
|
|
|
__FILE__);
|
|
|
|
|
2008-06-22 16:32:20 +01:00
|
|
|
$original = clone($user);
|
2008-06-22 16:23:06 +01:00
|
|
|
|
2008-06-22 16:32:20 +01:00
|
|
|
$user->nickname = $nickname;
|
2008-06-22 16:26:28 +01:00
|
|
|
|
2008-06-22 16:32:20 +01:00
|
|
|
$result = $user->updateKeys($original);
|
2008-06-22 16:23:06 +01:00
|
|
|
|
2008-06-22 16:32:20 +01:00
|
|
|
if ($result === FALSE) {
|
|
|
|
common_log_db_error($user, 'UPDATE', __FILE__);
|
|
|
|
common_server_error(_t('Couldnt update user.'));
|
|
|
|
return;
|
|
|
|
}
|
2008-05-15 17:28:44 +01:00
|
|
|
}
|
|
|
|
|
2008-06-22 16:32:20 +01:00
|
|
|
if (strcmp($user->email, $email) != 0) {
|
2008-06-22 16:23:06 +01:00
|
|
|
|
2008-06-22 16:37:54 +01:00
|
|
|
common_debug('Updating user email from ' . $user->nickname . ' to ' . $nickname,
|
|
|
|
__FILE__);
|
|
|
|
|
2008-06-22 16:23:06 +01:00
|
|
|
# We don't update email directly; it gets done by confirmemail
|
2008-06-22 15:20:15 +01:00
|
|
|
|
|
|
|
$confirm->code = common_good_rand(16);
|
|
|
|
$confirm->user_id = $user->id;
|
2008-06-22 17:16:07 +01:00
|
|
|
$confirm->address = $email;
|
|
|
|
$confirm->address_type = 'email';
|
2008-06-22 15:20:15 +01:00
|
|
|
|
|
|
|
$result = $confirm->insert();
|
2008-06-22 16:16:11 +01:00
|
|
|
|
2008-06-22 15:20:15 +01:00
|
|
|
if (!$result) {
|
|
|
|
common_log_db_error($confirm, 'INSERT', __FILE__);
|
|
|
|
common_server_error(_t('Couldnt confirm email.'));
|
|
|
|
return FALSE;
|
|
|
|
}
|
2008-06-22 17:16:07 +01:00
|
|
|
|
2008-06-22 15:20:15 +01:00
|
|
|
# XXX: try not to do this in the middle of a transaction
|
|
|
|
|
|
|
|
mail_confirm_address($confirm->code,
|
|
|
|
$profile->nickname,
|
|
|
|
$email);
|
|
|
|
}
|
|
|
|
|
2008-05-15 17:28:44 +01:00
|
|
|
$profile = $user->getProfile();
|
|
|
|
|
2008-05-19 13:27:08 +01:00
|
|
|
$orig_profile = clone($profile);
|
|
|
|
|
2008-05-15 17:28:44 +01:00
|
|
|
$profile->nickname = $user->nickname;
|
2008-05-21 12:27:07 +01:00
|
|
|
$profile->fullname = $fullname;
|
|
|
|
$profile->homepage = $homepage;
|
|
|
|
$profile->bio = $bio;
|
|
|
|
$profile->location = $location;
|
2008-05-17 21:21:32 +01:00
|
|
|
$profile->profileurl = common_profile_url($nickname);
|
2008-05-19 13:27:08 +01:00
|
|
|
|
2008-06-19 04:32:12 +01:00
|
|
|
$result = $profile->update($orig_profile);
|
|
|
|
|
|
|
|
if (!$result) {
|
2008-06-22 15:20:15 +01:00
|
|
|
common_log_db_error($profile, 'UPDATE', __FILE__);
|
2008-05-15 17:28:44 +01:00
|
|
|
common_server_error(_t('Couldnt save profile.'));
|
|
|
|
return;
|
|
|
|
}
|
2008-05-19 13:27:08 +01:00
|
|
|
|
2008-06-22 15:20:15 +01:00
|
|
|
$user->query('COMMIT');
|
|
|
|
|
2008-06-12 19:40:28 +01:00
|
|
|
common_broadcast_profile($profile);
|
2008-06-19 04:32:12 +01:00
|
|
|
|
2008-05-15 17:28:44 +01:00
|
|
|
$this->show_form(_t('Settings saved.'), TRUE);
|
|
|
|
}
|
2008-05-21 12:27:07 +01:00
|
|
|
|
|
|
|
function nickname_exists($nickname) {
|
|
|
|
$user = common_current_user();
|
|
|
|
$other = User::staticGet('nickname', $nickname);
|
|
|
|
if (!$other) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return $other->id != $user->id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function email_exists($email) {
|
|
|
|
$user = common_current_user();
|
|
|
|
$other = User::staticGet('email', $email);
|
|
|
|
if (!$other) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return $other->id != $user->id;
|
|
|
|
}
|
|
|
|
}
|
2008-05-15 17:28:44 +01:00
|
|
|
}
|