2008-05-14 15:54:36 +01:00
|
|
|
<?php
|
2009-01-18 13:37:58 +00:00
|
|
|
/**
|
2009-08-25 23:12:20 +01:00
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
2008-05-20 20:14:12 +01:00
|
|
|
*
|
2009-01-18 13:37:58 +00:00
|
|
|
* Register a new user account
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: This program is free software: you can redistribute it and/or modify
|
2008-05-14 20:26:48 +01:00
|
|
|
* 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-20 20:14:12 +01:00
|
|
|
*
|
2008-05-14 20:26:48 +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-20 20:14:12 +01:00
|
|
|
*
|
2008-05-14 20:26:48 +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/>.
|
2009-01-18 13:37:58 +00:00
|
|
|
*
|
|
|
|
* @category Login
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2009-08-25 23:12:20 +01:00
|
|
|
* @copyright 2008-2009 StatusNet, Inc.
|
2009-01-18 13:37:58 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2008-05-14 20:26:48 +01:00
|
|
|
*/
|
|
|
|
|
2015-03-01 11:36:19 +00:00
|
|
|
if (!defined('GNUSOCIAL') && !defined('STATUSNET')) { exit(1); }
|
2009-01-18 13:37:58 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* An action for registering a new user account
|
|
|
|
*
|
|
|
|
* @category Login
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2009-01-18 13:37:58 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2009-01-18 13:37:58 +00:00
|
|
|
*/
|
2008-12-23 19:49:23 +00:00
|
|
|
class RegisterAction extends Action
|
|
|
|
{
|
2009-01-18 13:37:58 +00:00
|
|
|
/**
|
|
|
|
* Has there been an error?
|
|
|
|
*/
|
|
|
|
var $error = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Have we registered?
|
|
|
|
*/
|
|
|
|
var $registered = false;
|
|
|
|
|
2009-11-03 23:23:28 +00:00
|
|
|
/**
|
|
|
|
* Are we processing an invite?
|
|
|
|
*/
|
|
|
|
var $invite = null;
|
|
|
|
|
2009-04-17 20:52:26 +01:00
|
|
|
/**
|
|
|
|
* Prepare page to run
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @param $args
|
|
|
|
* @return string title
|
|
|
|
*/
|
2015-01-18 12:06:12 +00:00
|
|
|
protected function prepare(array $args=array())
|
2009-04-17 20:52:26 +01:00
|
|
|
{
|
2009-04-17 21:03:33 +01:00
|
|
|
parent::prepare($args);
|
2009-04-17 20:52:26 +01:00
|
|
|
$this->code = $this->trimmed('code');
|
|
|
|
|
|
|
|
if (empty($this->code)) {
|
|
|
|
common_ensure_session();
|
2009-04-17 21:03:33 +01:00
|
|
|
if (array_key_exists('invitecode', $_SESSION)) {
|
2009-04-17 20:52:26 +01:00
|
|
|
$this->code = $_SESSION['invitecode'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (common_config('site', 'inviteonly') && empty($this->code)) {
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Client error displayed when trying to register to an invite-only site without an invitation.
|
2009-11-08 22:22:13 +00:00
|
|
|
$this->clientError(_('Sorry, only invited people can register.'));
|
2009-04-17 20:52:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($this->code)) {
|
2013-08-18 12:04:58 +01:00
|
|
|
$this->invite = Invitation::getKV('code', $this->code);
|
2015-01-18 12:06:12 +00:00
|
|
|
if (!$this->invite instanceof Invitation) {
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Client error displayed when trying to register to an invite-only site without a valid invitation.
|
2009-11-08 22:22:13 +00:00
|
|
|
$this->clientError(_('Sorry, invalid invitation code.'));
|
2009-04-17 20:52:26 +01:00
|
|
|
}
|
|
|
|
// Store this in case we need it
|
|
|
|
common_ensure_session();
|
|
|
|
$_SESSION['invitecode'] = $this->code;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-01-18 13:37:58 +00:00
|
|
|
/**
|
|
|
|
* Title of the page
|
|
|
|
*
|
|
|
|
* @return string title
|
|
|
|
*/
|
|
|
|
function title()
|
|
|
|
{
|
|
|
|
if ($this->registered) {
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Title for registration page after a succesful registration.
|
2009-01-18 13:37:58 +00:00
|
|
|
return _('Registration successful');
|
|
|
|
} else {
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Title for registration page.
|
|
|
|
return _m('TITLE','Register');
|
2009-01-18 13:37:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle input, produce output
|
|
|
|
*
|
|
|
|
* Switches on request method; either shows the form or handles its input.
|
|
|
|
*
|
|
|
|
* Checks if registration is closed and shows an error if so.
|
|
|
|
*
|
|
|
|
* @param array $args $_REQUEST data
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-12-23 19:33:23 +00:00
|
|
|
function handle($args)
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
parent::handle($args);
|
|
|
|
|
|
|
|
if (common_config('site', 'closed')) {
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Client error displayed when trying to register to a closed site.
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->clientError(_('Registration not allowed.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
} else if (common_logged_in()) {
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Client error displayed when trying to register while already logged in.
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->clientError(_('Already logged in.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
2009-01-18 13:37:58 +00:00
|
|
|
$this->tryRegister();
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
2009-01-18 13:37:58 +00:00
|
|
|
$this->showForm();
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-03 20:42:50 +01:00
|
|
|
function showScripts()
|
|
|
|
{
|
|
|
|
parent::showScripts();
|
|
|
|
$this->autofocus('nickname');
|
|
|
|
}
|
|
|
|
|
2009-01-18 13:37:58 +00:00
|
|
|
/**
|
|
|
|
* Try to register a user
|
|
|
|
*
|
|
|
|
* Validates the input and tries to save a new user and profile
|
|
|
|
* record. On success, shows an instructions page.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function tryRegister()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-04-16 18:34:19 +01:00
|
|
|
if (Event::handle('StartRegistrationTry', array($this))) {
|
|
|
|
$token = $this->trimmed('token');
|
|
|
|
if (!$token || $token != common_session_token()) {
|
2011-04-03 22:47:46 +01:00
|
|
|
// TRANS: Client error displayed when the session token does not match or is not given.
|
2009-04-16 18:34:19 +01:00
|
|
|
$this->showForm(_('There was a problem with your session token. '.
|
2009-04-17 20:52:26 +01:00
|
|
|
'Try again, please.'));
|
2009-04-16 18:34:19 +01:00
|
|
|
return;
|
|
|
|
}
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-04-16 18:34:19 +01:00
|
|
|
$nickname = $this->trimmed('nickname');
|
|
|
|
$email = $this->trimmed('email');
|
|
|
|
$fullname = $this->trimmed('fullname');
|
|
|
|
$homepage = $this->trimmed('homepage');
|
|
|
|
$bio = $this->trimmed('bio');
|
|
|
|
$location = $this->trimmed('location');
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-11-09 19:01:46 +00:00
|
|
|
// We don't trim these... whitespace is OK in a password!
|
2009-04-16 18:34:19 +01:00
|
|
|
$password = $this->arg('password');
|
|
|
|
$confirm = $this->arg('confirm');
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-04-16 18:34:19 +01:00
|
|
|
// invitation code, if any
|
|
|
|
$code = $this->trimmed('code');
|
2009-02-26 21:36:10 +00:00
|
|
|
|
2009-04-16 18:34:19 +01:00
|
|
|
if ($code) {
|
2013-08-18 12:04:58 +01:00
|
|
|
$invite = Invitation::getKV($code);
|
2009-04-16 18:34:19 +01:00
|
|
|
}
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-04-16 18:34:19 +01:00
|
|
|
if (common_config('site', 'inviteonly') && !($code && $invite)) {
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Client error displayed when trying to register to an invite-only site without an invitation.
|
2009-11-08 22:22:13 +00:00
|
|
|
$this->clientError(_('Sorry, only invited people can register.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-04-16 18:34:19 +01:00
|
|
|
|
|
|
|
// Input scrubbing
|
2010-11-29 22:15:25 +00:00
|
|
|
try {
|
2013-10-16 13:58:22 +01:00
|
|
|
$nickname = Nickname::normalize($nickname, true);
|
2010-11-29 22:15:25 +00:00
|
|
|
} catch (NicknameException $e) {
|
|
|
|
$this->showForm($e->getMessage());
|
2013-10-16 13:58:22 +01:00
|
|
|
return;
|
2010-11-29 22:15:25 +00:00
|
|
|
}
|
2009-04-16 18:34:19 +01:00
|
|
|
$email = common_canonical_email($email);
|
|
|
|
|
|
|
|
if (!$this->boolean('license')) {
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Form validation error displayed when trying to register without agreeing to the site license.
|
|
|
|
$this->showForm(_('You cannot register if you do not '.
|
2009-04-17 20:52:26 +01:00
|
|
|
'agree to the license.'));
|
2009-10-26 14:31:12 +00:00
|
|
|
} else if ($email && !Validate::email($email, common_config('email', 'check_domain'))) {
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Form validation error displayed when trying to register without a valid e-mail address.
|
2009-04-16 18:34:19 +01:00
|
|
|
$this->showForm(_('Not a valid email address.'));
|
|
|
|
} else if ($this->emailExists($email)) {
|
2011-04-03 23:12:52 +01:00
|
|
|
// TRANS: Form validation error displayed when trying to register with an already registered e-mail address.
|
2009-04-16 18:34:19 +01:00
|
|
|
$this->showForm(_('Email address already exists.'));
|
|
|
|
} else if (!is_null($homepage) && (strlen($homepage) > 0) &&
|
2013-10-07 13:46:09 +01:00
|
|
|
!common_valid_http_url($homepage)) {
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Form validation error displayed when trying to register with an invalid homepage URL.
|
2009-04-16 18:34:19 +01:00
|
|
|
$this->showForm(_('Homepage is not a valid URL.'));
|
|
|
|
} else if (!is_null($fullname) && mb_strlen($fullname) > 255) {
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Form validation error displayed when trying to register with a too long full name.
|
2010-10-21 12:20:21 +01:00
|
|
|
$this->showForm(_('Full name is too long (maximum 255 characters).'));
|
2009-08-21 13:03:40 +01:00
|
|
|
} else if (Profile::bioTooLong($bio)) {
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Form validation error on registration page when providing too long a bio text.
|
|
|
|
// TRANS: %d is the maximum number of characters for bio; used for plural.
|
2010-10-21 12:20:21 +01:00
|
|
|
$this->showForm(sprintf(_m('Bio is too long (maximum %d character).',
|
|
|
|
'Bio is too long (maximum %d characters).',
|
|
|
|
Profile::maxBio()),
|
2009-08-21 13:03:40 +01:00
|
|
|
Profile::maxBio()));
|
2009-04-16 18:34:19 +01:00
|
|
|
} else if (!is_null($location) && mb_strlen($location) > 255) {
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Form validation error displayed when trying to register with a too long location.
|
2010-10-21 12:20:21 +01:00
|
|
|
$this->showForm(_('Location is too long (maximum 255 characters).'));
|
2009-04-16 18:34:19 +01:00
|
|
|
} else if (strlen($password) < 6) {
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Form validation error displayed when trying to register with too short a password.
|
2009-04-16 18:34:19 +01:00
|
|
|
$this->showForm(_('Password must be 6 or more characters.'));
|
|
|
|
} else if ($password != $confirm) {
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Form validation error displayed when trying to register with non-matching passwords.
|
|
|
|
$this->showForm(_('Passwords do not match.'));
|
2015-03-01 11:36:19 +00:00
|
|
|
} else {
|
|
|
|
try {
|
|
|
|
$user = User::register(array('nickname' => $nickname,
|
2009-04-17 20:52:26 +01:00
|
|
|
'password' => $password,
|
|
|
|
'email' => $email,
|
|
|
|
'fullname' => $fullname,
|
|
|
|
'homepage' => $homepage,
|
|
|
|
'bio' => $bio,
|
|
|
|
'location' => $location,
|
2015-03-01 11:45:58 +00:00
|
|
|
'code' => $code));
|
2015-03-01 11:36:19 +00:00
|
|
|
// success!
|
|
|
|
if (!common_set_user($user)) {
|
|
|
|
// TRANS: Server error displayed when saving fails during user registration.
|
|
|
|
$this->serverError(_('Error setting user.'));
|
|
|
|
}
|
|
|
|
// this is a real login
|
|
|
|
common_real_login(true);
|
|
|
|
if ($this->boolean('rememberme')) {
|
|
|
|
common_debug('Adding rememberme cookie for ' . $nickname);
|
|
|
|
common_rememberme($user);
|
|
|
|
}
|
2009-04-16 18:34:19 +01:00
|
|
|
|
2015-03-01 11:36:19 +00:00
|
|
|
// Re-init language env in case it changed (not yet, but soon)
|
|
|
|
common_init_language();
|
2010-01-10 00:23:41 +00:00
|
|
|
|
2015-03-01 11:36:19 +00:00
|
|
|
Event::handle('EndRegistrationTry', array($this));
|
2011-04-28 01:40:51 +01:00
|
|
|
|
2015-03-01 11:36:19 +00:00
|
|
|
$this->showSuccess();
|
|
|
|
} catch (Exception $e) {
|
|
|
|
// TRANS: Form validation error displayed when trying to register with an invalid username or password.
|
|
|
|
$this->showForm($e->getMessage());
|
|
|
|
}
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-18 13:37:58 +00:00
|
|
|
/**
|
|
|
|
* Does the given email address already exist?
|
|
|
|
*
|
|
|
|
* Checks a canonical email address against the database.
|
|
|
|
*
|
|
|
|
* @param string $email email address to check
|
|
|
|
*
|
|
|
|
* @return boolean true if the address already exists
|
|
|
|
*/
|
|
|
|
function emailExists($email)
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
$email = common_canonical_email($email);
|
|
|
|
if (!$email || strlen($email) == 0) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-08-18 12:04:58 +01:00
|
|
|
$user = User::getKV('email', $email);
|
2010-02-04 21:08:34 +00:00
|
|
|
return is_object($user);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2009-01-22 04:26:15 +00:00
|
|
|
// overrrided to add entry-title class
|
|
|
|
function showPageTitle() {
|
2009-04-16 18:34:19 +01:00
|
|
|
if (Event::handle('StartShowPageTitle', array($this))) {
|
|
|
|
$this->element('h1', array('class' => 'entry-title'), $this->title());
|
|
|
|
}
|
2009-01-22 04:26:15 +00:00
|
|
|
}
|
2009-01-26 15:57:39 +00:00
|
|
|
|
2014-06-21 20:01:17 +01:00
|
|
|
// overrided to add h-entry, and content-inner class
|
2009-01-22 04:26:15 +00:00
|
|
|
function showContentBlock()
|
2009-04-17 20:52:26 +01:00
|
|
|
{
|
2014-06-21 20:01:17 +01:00
|
|
|
$this->elementStart('div', array('id' => 'content', 'class' => 'h-entry'));
|
2009-04-17 20:52:26 +01:00
|
|
|
$this->showPageTitle();
|
|
|
|
$this->showPageNoticeBlock();
|
|
|
|
$this->elementStart('div', array('id' => 'content_inner',
|
2014-06-21 20:01:17 +01:00
|
|
|
'class' => 'e-content'));
|
2009-04-17 20:52:26 +01:00
|
|
|
// show the actual content (forms, lists, whatever)
|
|
|
|
$this->showContent();
|
|
|
|
$this->elementEnd('div');
|
|
|
|
$this->elementEnd('div');
|
|
|
|
}
|
2009-01-22 04:26:15 +00:00
|
|
|
|
2009-01-18 13:37:58 +00:00
|
|
|
/**
|
|
|
|
* Instructions or a notice for the page
|
|
|
|
*
|
|
|
|
* Shows the error, if any, or instructions for registration.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function showPageNotice()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-01-18 13:37:58 +00:00
|
|
|
if ($this->registered) {
|
|
|
|
return;
|
|
|
|
} else if ($this->error) {
|
|
|
|
$this->element('p', 'error', $this->error);
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
2009-01-18 13:37:58 +00:00
|
|
|
$instr =
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Page notice on registration page.
|
2009-01-18 13:37:58 +00:00
|
|
|
common_markup_to_html(_('With this form you can create '.
|
2010-04-10 00:47:27 +01:00
|
|
|
'a new account. ' .
|
2009-01-18 13:37:58 +00:00
|
|
|
'You can then post notices and '.
|
2011-02-16 23:39:53 +00:00
|
|
|
'link up to friends and colleagues.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementStart('div', 'instructions');
|
|
|
|
$this->raw($instr);
|
|
|
|
$this->elementEnd('div');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-18 13:37:58 +00:00
|
|
|
/**
|
|
|
|
* Wrapper for showing a page
|
|
|
|
*
|
|
|
|
* Stores an error and shows the page
|
|
|
|
*
|
|
|
|
* @param string $error Error, if any
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function showForm($error=null)
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-01-18 13:37:58 +00:00
|
|
|
$this->error = $error;
|
|
|
|
$this->showPage();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the page content
|
|
|
|
*
|
|
|
|
* Either shows the registration form or, if registration was successful,
|
|
|
|
* instructions for using the site.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function showContent()
|
|
|
|
{
|
|
|
|
if ($this->registered) {
|
|
|
|
$this->showSuccessContent();
|
|
|
|
} else {
|
|
|
|
$this->showFormContent();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the registration form
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function showFormContent()
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
$code = $this->trimmed('code');
|
|
|
|
|
2009-02-26 21:36:10 +00:00
|
|
|
$invite = null;
|
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($code) {
|
2013-08-18 12:04:58 +01:00
|
|
|
$invite = Invitation::getKV($code);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (common_config('site', 'inviteonly') && !($code && $invite)) {
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Client error displayed when trying to register to an invite-only site without an invitation.
|
2009-11-08 22:22:13 +00:00
|
|
|
$this->clientError(_('Sorry, only invited people can register.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementStart('form', array('method' => 'post',
|
2009-04-17 20:52:26 +01:00
|
|
|
'id' => 'form_register',
|
|
|
|
'class' => 'form_settings',
|
|
|
|
'action' => common_local_url('register')));
|
2009-01-18 19:42:08 +00:00
|
|
|
$this->elementStart('fieldset');
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Fieldset legend on accout registration page.
|
2009-01-18 19:42:08 +00:00
|
|
|
$this->element('legend', null, 'Account settings');
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->hidden('token', common_session_token());
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-04-17 20:52:26 +01:00
|
|
|
if ($this->code) {
|
|
|
|
$this->hidden('code', $this->code);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2009-01-19 03:09:13 +00:00
|
|
|
$this->elementStart('ul', 'form_data');
|
2009-04-16 18:34:19 +01:00
|
|
|
if (Event::handle('StartRegistrationFormData', array($this))) {
|
|
|
|
$this->elementStart('li');
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Field label on account registration page.
|
2009-04-16 18:34:19 +01:00
|
|
|
$this->input('nickname', _('Nickname'), $this->trimmed('nickname'),
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Field title on account registration page.
|
2011-01-21 21:45:37 +00:00
|
|
|
_('1-64 lowercase letters or numbers, no punctuation or spaces.'));
|
2009-04-16 18:34:19 +01:00
|
|
|
$this->elementEnd('li');
|
|
|
|
$this->elementStart('li');
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Field label on account registration page.
|
2009-04-16 18:34:19 +01:00
|
|
|
$this->password('password', _('Password'),
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Field title on account registration page.
|
2011-01-21 21:45:37 +00:00
|
|
|
_('6 or more characters.'));
|
2009-04-16 18:34:19 +01:00
|
|
|
$this->elementEnd('li');
|
|
|
|
$this->elementStart('li');
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Field label on account registration page. In this field the password has to be entered a second time.
|
|
|
|
$this->password('confirm', _m('PASSWORD','Confirm'),
|
|
|
|
// TRANS: Field title on account registration page.
|
|
|
|
_('Same as password above.'));
|
2009-04-16 18:34:19 +01:00
|
|
|
$this->elementEnd('li');
|
|
|
|
$this->elementStart('li');
|
2009-04-17 20:52:26 +01:00
|
|
|
if ($this->invite && $this->invite->address_type == 'email') {
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Field label on account registration page.
|
|
|
|
$this->input('email', _m('LABEL','Email'), $this->invite->address,
|
|
|
|
// TRANS: Field title on account registration page.
|
2009-04-17 20:52:26 +01:00
|
|
|
_('Used only for updates, announcements, '.
|
2011-02-16 23:39:53 +00:00
|
|
|
'and password recovery.'));
|
2009-04-16 18:34:19 +01:00
|
|
|
} else {
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Field label on account registration page.
|
|
|
|
$this->input('email', _m('LABEL','Email'), $this->trimmed('email'),
|
|
|
|
// TRANS: Field title on account registration page.
|
2009-04-17 20:52:26 +01:00
|
|
|
_('Used only for updates, announcements, '.
|
2011-02-16 23:39:53 +00:00
|
|
|
'and password recovery.'));
|
2009-04-16 18:34:19 +01:00
|
|
|
}
|
|
|
|
$this->elementEnd('li');
|
|
|
|
$this->elementStart('li');
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Field label on account registration page.
|
2009-04-16 18:34:19 +01:00
|
|
|
$this->input('fullname', _('Full name'),
|
2009-04-17 20:52:26 +01:00
|
|
|
$this->trimmed('fullname'),
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Field title on account registration page.
|
|
|
|
_('Longer name, preferably your "real" name.'));
|
2009-04-16 18:34:19 +01:00
|
|
|
$this->elementEnd('li');
|
|
|
|
$this->elementStart('li');
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Field label on account registration page.
|
2009-04-16 18:34:19 +01:00
|
|
|
$this->input('homepage', _('Homepage'),
|
2009-04-17 20:52:26 +01:00
|
|
|
$this->trimmed('homepage'),
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Field title on account registration page.
|
2009-04-17 20:52:26 +01:00
|
|
|
_('URL of your homepage, blog, '.
|
2011-02-16 23:39:53 +00:00
|
|
|
'or profile on another site.'));
|
2009-04-16 18:34:19 +01:00
|
|
|
$this->elementEnd('li');
|
|
|
|
$this->elementStart('li');
|
2009-08-21 13:03:40 +01:00
|
|
|
$maxBio = Profile::maxBio();
|
|
|
|
if ($maxBio > 0) {
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Text area title in form for account registration. Plural
|
2010-10-21 12:20:21 +01:00
|
|
|
// TRANS: is decided by the number of characters available for the
|
|
|
|
// TRANS: biography (%d).
|
2011-03-18 16:04:38 +00:00
|
|
|
$bioInstr = sprintf(_m('Describe yourself and your interests in %d character.',
|
|
|
|
'Describe yourself and your interests in %d characters.',
|
2010-10-21 12:20:21 +01:00
|
|
|
$maxBio),
|
2009-08-21 13:03:40 +01:00
|
|
|
$maxBio);
|
|
|
|
} else {
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Text area title on account registration page.
|
|
|
|
$bioInstr = _('Describe yourself and your interests.');
|
2009-08-21 13:03:40 +01:00
|
|
|
}
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Text area label on account registration page.
|
2009-04-16 18:34:19 +01:00
|
|
|
$this->textarea('bio', _('Bio'),
|
2009-04-17 20:52:26 +01:00
|
|
|
$this->trimmed('bio'),
|
2009-08-21 13:03:40 +01:00
|
|
|
$bioInstr);
|
2009-04-16 18:34:19 +01:00
|
|
|
$this->elementEnd('li');
|
|
|
|
$this->elementStart('li');
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Field label on account registration page.
|
2009-04-16 18:34:19 +01:00
|
|
|
$this->input('location', _('Location'),
|
2009-04-17 20:52:26 +01:00
|
|
|
$this->trimmed('location'),
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Field title on account registration page.
|
2009-04-17 20:52:26 +01:00
|
|
|
_('Where you are, like "City, '.
|
2011-02-16 23:39:53 +00:00
|
|
|
'State (or Region), Country".'));
|
2009-04-16 18:34:19 +01:00
|
|
|
$this->elementEnd('li');
|
|
|
|
Event::handle('EndRegistrationFormData', array($this));
|
|
|
|
$this->elementStart('li', array('id' => 'settings_rememberme'));
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Checkbox label on account registration page.
|
2009-04-16 18:34:19 +01:00
|
|
|
$this->checkbox('rememberme', _('Remember me'),
|
2009-04-17 20:52:26 +01:00
|
|
|
$this->boolean('rememberme'),
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Checkbox title on account registration page.
|
2009-04-17 20:52:26 +01:00
|
|
|
_('Automatically login in the future; '.
|
|
|
|
'not for shared computers!'));
|
2009-04-16 18:34:19 +01:00
|
|
|
$this->elementEnd('li');
|
|
|
|
$attrs = array('type' => 'checkbox',
|
2009-04-17 20:52:26 +01:00
|
|
|
'id' => 'license',
|
|
|
|
'class' => 'checkbox',
|
|
|
|
'name' => 'license',
|
|
|
|
'value' => 'true');
|
2009-04-16 18:34:19 +01:00
|
|
|
if ($this->boolean('license')) {
|
|
|
|
$attrs['checked'] = 'checked';
|
|
|
|
}
|
|
|
|
$this->elementStart('li');
|
|
|
|
$this->element('input', $attrs);
|
|
|
|
$this->elementStart('label', array('class' => 'checkbox', 'for' => 'license'));
|
2010-05-14 00:47:58 +01:00
|
|
|
$this->raw($this->licenseCheckbox());
|
|
|
|
$this->elementEnd('label');
|
|
|
|
$this->elementEnd('li');
|
|
|
|
}
|
|
|
|
$this->elementEnd('ul');
|
2011-03-29 23:48:19 +01:00
|
|
|
// TRANS: Button text to register a user on account registration page.
|
2011-03-18 16:04:38 +00:00
|
|
|
$this->submit('submit', _m('BUTTON','Register'));
|
2010-05-14 00:47:58 +01:00
|
|
|
$this->elementEnd('fieldset');
|
|
|
|
$this->elementEnd('form');
|
|
|
|
}
|
|
|
|
|
|
|
|
function licenseCheckbox()
|
|
|
|
{
|
|
|
|
$out = '';
|
|
|
|
switch (common_config('license', 'type')) {
|
|
|
|
case 'private':
|
|
|
|
$out .= htmlspecialchars(sprintf(
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Copyright checkbox label in registration dialog, for private sites.
|
|
|
|
// TRANS: %1$s is the StatusNet sitename.
|
2010-05-14 00:47:58 +01:00
|
|
|
_('I understand that content and data of %1$s are private and confidential.'),
|
|
|
|
common_config('site', 'name')));
|
|
|
|
// fall through
|
|
|
|
case 'allrightsreserved':
|
|
|
|
if ($out != '') {
|
|
|
|
$out .= ' ';
|
|
|
|
}
|
|
|
|
if (common_config('license', 'owner')) {
|
|
|
|
$out .= htmlspecialchars(sprintf(
|
2011-03-18 16:04:38 +00:00
|
|
|
// TRANS: Copyright checkbox label in registration dialog, for all rights reserved with a specified copyright owner.
|
|
|
|
// TRANS: %1$s is the license owner.
|
2010-05-14 00:47:58 +01:00
|
|
|
_('My text and files are copyright by %1$s.'),
|
|
|
|
common_config('license', 'owner')));
|
|
|
|
} else {
|
|
|
|
// TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
|
|
|
|
$out .= htmlspecialchars(_('My text and files remain under my own copyright.'));
|
|
|
|
}
|
|
|
|
// TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
|
|
|
|
$out .= ' ' . _('All rights reserved.');
|
|
|
|
break;
|
|
|
|
case 'cc': // fall through
|
|
|
|
default:
|
|
|
|
// TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
|
2010-04-09 18:11:11 +01:00
|
|
|
$message = _('My text and files are available under %s ' .
|
|
|
|
'except this private data: password, ' .
|
|
|
|
'email address, IM address, and phone number.');
|
|
|
|
$link = '<a href="' .
|
|
|
|
htmlspecialchars(common_config('license', 'url')) .
|
|
|
|
'">' .
|
|
|
|
htmlspecialchars(common_config('license', 'title')) .
|
|
|
|
'</a>';
|
2010-05-14 00:47:58 +01:00
|
|
|
$out .= sprintf(htmlspecialchars($message), $link);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2010-05-14 00:47:58 +01:00
|
|
|
return $out;
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2009-01-18 13:37:58 +00:00
|
|
|
/**
|
|
|
|
* Show some information about registering for the site
|
|
|
|
*
|
|
|
|
* Save the registration flag, run showPage
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function showSuccess()
|
|
|
|
{
|
|
|
|
$this->registered = true;
|
|
|
|
$this->showPage();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show some information about registering for the site
|
|
|
|
*
|
|
|
|
* Gives some information and options for new registrees.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function showSuccessContent()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2011-04-28 01:40:51 +01:00
|
|
|
if (Event::handle('StartRegisterSuccess', array($this))) {
|
2011-04-14 23:45:05 +01:00
|
|
|
$nickname = $this->arg('nickname');
|
|
|
|
|
|
|
|
$profileurl = common_local_url('showstream',
|
|
|
|
array('nickname' => $nickname));
|
|
|
|
|
|
|
|
$this->elementStart('div', 'success');
|
|
|
|
// TRANS: Text displayed after successful account registration.
|
|
|
|
// TRANS: %1$s is the registered nickname, %2$s is the profile URL.
|
|
|
|
// TRANS: This message contains Markdown links in the form [link text](link)
|
|
|
|
// TRANS: and variables in the form %%%%variable%%%%. Please mind the syntax.
|
|
|
|
$instr = sprintf(_('Congratulations, %1$s! And welcome to %%%%site.name%%%%. '.
|
|
|
|
'From here, you may want to...'. "\n\n" .
|
|
|
|
'* Go to [your profile](%2$s) '.
|
|
|
|
'and post your first message.' . "\n" .
|
|
|
|
'* Add a [Jabber/GTalk address]'.
|
|
|
|
'(%%%%action.imsettings%%%%) '.
|
|
|
|
'so you can send notices '.
|
|
|
|
'through instant messages.' . "\n" .
|
|
|
|
'* [Search for people](%%%%action.peoplesearch%%%%) '.
|
|
|
|
'that you may know or '.
|
|
|
|
'that share your interests. ' . "\n" .
|
|
|
|
'* Update your [profile settings]'.
|
|
|
|
'(%%%%action.profilesettings%%%%)'.
|
|
|
|
' to tell others more about you. ' . "\n" .
|
|
|
|
'* Read over the [online docs](%%%%doc.help%%%%)'.
|
|
|
|
' for features you may have missed. ' . "\n\n" .
|
|
|
|
'Thanks for signing up and we hope '.
|
|
|
|
'you enjoy using this service.'),
|
|
|
|
$nickname, $profileurl);
|
|
|
|
|
|
|
|
$this->raw(common_markup_to_html($instr));
|
|
|
|
|
|
|
|
$have_email = $this->trimmed('email');
|
|
|
|
if ($have_email) {
|
|
|
|
// TRANS: Instruction text on how to deal with the e-mail address confirmation e-mail.
|
|
|
|
$emailinstr = _('(You should receive a message by email '.
|
|
|
|
'momentarily, with ' .
|
|
|
|
'instructions on how to confirm '.
|
|
|
|
'your email address.)');
|
|
|
|
$this->raw(common_markup_to_html($emailinstr));
|
|
|
|
}
|
|
|
|
$this->elementEnd('div');
|
|
|
|
|
2011-04-28 01:40:51 +01:00
|
|
|
Event::handle('EndRegisterSuccess', array($this));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
}
|
2008-08-27 01:19:27 +01:00
|
|
|
|
2009-01-18 13:37:58 +00:00
|
|
|
/**
|
|
|
|
* Show the login group nav menu
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function showLocalNav()
|
|
|
|
{
|
2011-04-14 23:45:05 +01:00
|
|
|
if (common_logged_in()) {
|
|
|
|
parent::showLocalNav();
|
|
|
|
} else {
|
|
|
|
$nav = new LoginGroupNav($this);
|
|
|
|
$nav->show();
|
|
|
|
}
|
2011-03-09 15:11:59 +00:00
|
|
|
}
|
2011-03-16 14:05:07 +00:00
|
|
|
|
2011-04-14 23:45:05 +01:00
|
|
|
/**
|
|
|
|
* Show a bit of login context
|
|
|
|
*
|
|
|
|
* @return nothing
|
|
|
|
*/
|
2011-03-16 14:05:07 +00:00
|
|
|
function showProfileBlock()
|
|
|
|
{
|
2011-04-14 23:45:05 +01:00
|
|
|
if (common_logged_in()) {
|
|
|
|
parent::showProfileBlock();
|
|
|
|
}
|
2011-03-16 14:05:07 +00:00
|
|
|
}
|
2008-05-14 15:54:36 +01:00
|
|
|
}
|