3 * StatusNet, the distributed open-source microblogging tool
5 * Register a new user account
9 * LICENCE: This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Affero General Public License for more details.
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
24 * @author Evan Prodromou <evan@status.net>
25 * @copyright 2008-2009 StatusNet, Inc.
26 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27 * @link http://status.net/
30 if (!defined('STATUSNET') && !defined('LACONICA')) {
35 * An action for registering a new user account
39 * @author Evan Prodromou <evan@status.net>
40 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
41 * @link http://status.net/
44 class RegisterAction extends Action
47 * Has there been an error?
56 var $registered = false;
63 * @return string title
66 function prepare($args)
68 parent::prepare($args);
69 $this->code = $this->trimmed('code');
71 if (empty($this->code)) {
72 common_ensure_session();
73 if (array_key_exists('invitecode', $_SESSION)) {
74 $this->code = $_SESSION['invitecode'];
78 if (common_config('site', 'inviteonly') && empty($this->code)) {
79 $this->clientError(_('Sorry, only invited people can register.'));
83 if (!empty($this->code)) {
84 $this->invite = Invitation::staticGet('code', $this->code);
85 if (empty($this->invite)) {
86 $this->clientError(_('Sorry, invalid invitation code.'));
89 // Store this in case we need it
90 common_ensure_session();
91 $_SESSION['invitecode'] = $this->code;
100 * @return string title
105 if ($this->registered) {
106 return _('Registration successful');
108 return _('Register');
113 * Handle input, produce output
115 * Switches on request method; either shows the form or handles its input.
117 * Checks if registration is closed and shows an error if so.
119 * @param array $args $_REQUEST data
124 function handle($args)
126 parent::handle($args);
128 if (common_config('site', 'closed')) {
129 $this->clientError(_('Registration not allowed.'));
130 } else if (common_logged_in()) {
131 $this->clientError(_('Already logged in.'));
132 } else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
133 $this->tryRegister();
139 function showScripts()
141 parent::showScripts();
142 $this->autofocus('nickname');
146 * Try to register a user
148 * Validates the input and tries to save a new user and profile
149 * record. On success, shows an instructions page.
154 function tryRegister()
156 if (Event::handle('StartRegistrationTry', array($this))) {
157 $token = $this->trimmed('token');
158 if (!$token || $token != common_session_token()) {
159 $this->showForm(_('There was a problem with your session token. '.
160 'Try again, please.'));
164 $nickname = $this->trimmed('nickname');
165 $email = $this->trimmed('email');
166 $fullname = $this->trimmed('fullname');
167 $homepage = $this->trimmed('homepage');
168 $bio = $this->trimmed('bio');
169 $location = $this->trimmed('location');
171 // We don't trim these... whitespace is OK in a password!
172 $password = $this->arg('password');
173 $confirm = $this->arg('confirm');
175 // invitation code, if any
176 $code = $this->trimmed('code');
179 $invite = Invitation::staticGet($code);
182 if (common_config('site', 'inviteonly') && !($code && $invite)) {
183 $this->clientError(_('Sorry, only invited people can register.'));
188 $nickname = common_canonical_nickname($nickname);
189 $email = common_canonical_email($email);
191 if (!$this->boolean('license')) {
192 $this->showForm(_('You can\'t register if you don\'t '.
193 'agree to the license.'));
194 } else if ($email && !Validate::email($email, true)) {
195 $this->showForm(_('Not a valid email address.'));
196 } else if (!Validate::string($nickname, array('min_length' => 1,
198 'format' => NICKNAME_FMT))) {
199 $this->showForm(_('Nickname must have only lowercase letters '.
200 'and numbers and no spaces.'));
201 } else if ($this->nicknameExists($nickname)) {
202 $this->showForm(_('Nickname already in use. Try another one.'));
203 } else if (!User::allowed_nickname($nickname)) {
204 $this->showForm(_('Not a valid nickname.'));
205 } else if ($this->emailExists($email)) {
206 $this->showForm(_('Email address already exists.'));
207 } else if (!is_null($homepage) && (strlen($homepage) > 0) &&
208 !Validate::uri($homepage,
209 array('allowed_schemes' =>
210 array('http', 'https')))) {
211 $this->showForm(_('Homepage is not a valid URL.'));
213 } else if (!is_null($fullname) && mb_strlen($fullname) > 255) {
214 $this->showForm(_('Full name is too long (max 255 chars).'));
216 } else if (Profile::bioTooLong($bio)) {
217 $this->showForm(sprintf(_('Bio is too long (max %d chars).'),
220 } else if (!is_null($location) && mb_strlen($location) > 255) {
221 $this->showForm(_('Location is too long (max 255 chars).'));
223 } else if (strlen($password) < 6) {
224 $this->showForm(_('Password must be 6 or more characters.'));
226 } else if ($password != $confirm) {
227 $this->showForm(_('Passwords don\'t match.'));
228 } else if ($user = User::register(array('nickname' => $nickname,
229 'password' => $password,
231 'fullname' => $fullname,
232 'homepage' => $homepage,
234 'location' => $location,
237 $this->showForm(_('Invalid username or password.'));
241 if (!common_set_user($user)) {
242 $this->serverError(_('Error setting user.'));
245 // this is a real login
246 common_real_login(true);
247 if ($this->boolean('rememberme')) {
248 common_debug('Adding rememberme cookie for ' . $nickname);
249 common_rememberme($user);
252 Event::handle('EndRegistrationTry', array($this));
254 // Re-init language env in case it changed (not yet, but soon)
255 common_init_language();
256 $this->showSuccess();
258 $this->showForm(_('Invalid username or password.'));
264 * Does the given nickname already exist?
266 * Checks a canonical nickname against the database.
268 * @param string $nickname nickname to check
270 * @return boolean true if the nickname already exists
273 function nicknameExists($nickname)
275 $user = User::staticGet('nickname', $nickname);
276 return ($user !== false);
280 * Does the given email address already exist?
282 * Checks a canonical email address against the database.
284 * @param string $email email address to check
286 * @return boolean true if the address already exists
289 function emailExists($email)
291 $email = common_canonical_email($email);
292 if (!$email || strlen($email) == 0) {
295 $user = User::staticGet('email', $email);
296 return ($user !== false);
299 // overrrided to add entry-title class
300 function showPageTitle() {
301 if (Event::handle('StartShowPageTitle', array($this))) {
302 $this->element('h1', array('class' => 'entry-title'), $this->title());
306 // overrided to add hentry, and content-inner class
307 function showContentBlock()
309 $this->elementStart('div', array('id' => 'content', 'class' => 'hentry'));
310 $this->showPageTitle();
311 $this->showPageNoticeBlock();
312 $this->elementStart('div', array('id' => 'content_inner',
313 'class' => 'entry-content'));
314 // show the actual content (forms, lists, whatever)
315 $this->showContent();
316 $this->elementEnd('div');
317 $this->elementEnd('div');
321 * Instructions or a notice for the page
323 * Shows the error, if any, or instructions for registration.
328 function showPageNotice()
330 if ($this->registered) {
332 } else if ($this->error) {
333 $this->element('p', 'error', $this->error);
336 common_markup_to_html(_('With this form you can create '.
338 'You can then post notices and '.
339 'link up to friends and colleagues. '));
341 $this->elementStart('div', 'instructions');
343 $this->elementEnd('div');
348 * Wrapper for showing a page
350 * Stores an error and shows the page
352 * @param string $error Error, if any
357 function showForm($error=null)
359 $this->error = $error;
364 * Show the page content
366 * Either shows the registration form or, if registration was successful,
367 * instructions for using the site.
372 function showContent()
374 if ($this->registered) {
375 $this->showSuccessContent();
377 $this->showFormContent();
382 * Show the registration form
387 function showFormContent()
389 $code = $this->trimmed('code');
394 $invite = Invitation::staticGet($code);
397 if (common_config('site', 'inviteonly') && !($code && $invite)) {
398 $this->clientError(_('Sorry, only invited people can register.'));
402 $this->elementStart('form', array('method' => 'post',
403 'id' => 'form_register',
404 'class' => 'form_settings',
405 'action' => common_local_url('register')));
406 $this->elementStart('fieldset');
407 $this->element('legend', null, 'Account settings');
408 $this->hidden('token', common_session_token());
411 $this->hidden('code', $this->code);
414 $this->elementStart('ul', 'form_data');
415 if (Event::handle('StartRegistrationFormData', array($this))) {
416 $this->elementStart('li');
417 $this->input('nickname', _('Nickname'), $this->trimmed('nickname'),
418 _('1-64 lowercase letters or numbers, '.
419 'no punctuation or spaces. Required.'));
420 $this->elementEnd('li');
421 $this->elementStart('li');
422 $this->password('password', _('Password'),
423 _('6 or more characters. Required.'));
424 $this->elementEnd('li');
425 $this->elementStart('li');
426 $this->password('confirm', _('Confirm'),
427 _('Same as password above. Required.'));
428 $this->elementEnd('li');
429 $this->elementStart('li');
430 if ($this->invite && $this->invite->address_type == 'email') {
431 $this->input('email', _('Email'), $this->invite->address,
432 _('Used only for updates, announcements, '.
433 'and password recovery'));
435 $this->input('email', _('Email'), $this->trimmed('email'),
436 _('Used only for updates, announcements, '.
437 'and password recovery'));
439 $this->elementEnd('li');
440 $this->elementStart('li');
441 $this->input('fullname', _('Full name'),
442 $this->trimmed('fullname'),
443 _('Longer name, preferably your "real" name'));
444 $this->elementEnd('li');
445 $this->elementStart('li');
446 $this->input('homepage', _('Homepage'),
447 $this->trimmed('homepage'),
448 _('URL of your homepage, blog, '.
449 'or profile on another site'));
450 $this->elementEnd('li');
451 $this->elementStart('li');
452 $maxBio = Profile::maxBio();
454 $bioInstr = sprintf(_('Describe yourself and your interests in %d chars'),
457 $bioInstr = _('Describe yourself and your interests');
459 $this->textarea('bio', _('Bio'),
460 $this->trimmed('bio'),
462 $this->elementEnd('li');
463 $this->elementStart('li');
464 $this->input('location', _('Location'),
465 $this->trimmed('location'),
466 _('Where you are, like "City, '.
467 'State (or Region), Country"'));
468 $this->elementEnd('li');
469 Event::handle('EndRegistrationFormData', array($this));
470 $this->elementStart('li', array('id' => 'settings_rememberme'));
471 $this->checkbox('rememberme', _('Remember me'),
472 $this->boolean('rememberme'),
473 _('Automatically login in the future; '.
474 'not for shared computers!'));
475 $this->elementEnd('li');
476 $attrs = array('type' => 'checkbox',
478 'class' => 'checkbox',
481 if ($this->boolean('license')) {
482 $attrs['checked'] = 'checked';
484 $this->elementStart('li');
485 $this->element('input', $attrs);
486 $this->elementStart('label', array('class' => 'checkbox', 'for' => 'license'));
487 $this->text(_('My text and files are available under '));
488 $this->element('a', array('href' => common_config('license', 'url')),
489 common_config('license', 'title'), _("Creative Commons Attribution 3.0"));
490 $this->text(_(' except this private data: password, '.
491 'email address, IM address, and phone number.'));
492 $this->elementEnd('label');
493 $this->elementEnd('li');
495 $this->elementEnd('ul');
496 $this->submit('submit', _('Register'));
497 $this->elementEnd('fieldset');
498 $this->elementEnd('form');
502 * Show some information about registering for the site
504 * Save the registration flag, run showPage
509 function showSuccess()
511 $this->registered = true;
516 * Show some information about registering for the site
518 * Gives some information and options for new registrees.
523 function showSuccessContent()
525 $nickname = $this->arg('nickname');
527 $profileurl = common_local_url('showstream',
528 array('nickname' => $nickname));
530 $this->elementStart('div', 'success');
531 $instr = sprintf(_('Congratulations, %s! And welcome to %%%%site.name%%%%. '.
532 'From here, you may want to...'. "\n\n" .
533 '* Go to [your profile](%s) '.
534 'and post your first message.' . "\n" .
535 '* Add a [Jabber/GTalk address]'.
536 '(%%%%action.imsettings%%%%) '.
537 'so you can send notices '.
538 'through instant messages.' . "\n" .
539 '* [Search for people](%%%%action.peoplesearch%%%%) '.
540 'that you may know or '.
541 'that share your interests. ' . "\n" .
542 '* Update your [profile settings]'.
543 '(%%%%action.profilesettings%%%%)'.
544 ' to tell others more about you. ' . "\n" .
545 '* Read over the [online docs](%%%%doc.help%%%%)'.
546 ' for features you may have missed. ' . "\n\n" .
547 'Thanks for signing up and we hope '.
548 'you enjoy using this service.'),
549 $nickname, $profileurl);
551 $this->raw(common_markup_to_html($instr));
553 $have_email = $this->trimmed('email');
555 $emailinstr = _('(You should receive a message by email '.
556 'momentarily, with ' .
557 'instructions on how to confirm '.
558 'your email address.)');
559 $this->raw(common_markup_to_html($emailinstr));
561 $this->elementEnd('div');
565 * Show the login group nav menu
570 function showLocalNav()
572 $nav = new LoginGroupNav($this);