2008-05-14 15:54:36 +01:00
|
|
|
<?php
|
2008-05-20 20:14:12 +01:00
|
|
|
/*
|
2008-05-14 20:26:48 +01:00
|
|
|
* Laconica - a distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2008, Controlez-Vous, Inc.
|
2008-05-20 20:14:12 +01:00
|
|
|
*
|
2008-05-14 20:26:48 +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-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/>.
|
|
|
|
*/
|
|
|
|
|
2008-05-17 16:47:01 +01:00
|
|
|
if (!defined('LACONICA')) { exit(1); }
|
2008-05-14 15:54:36 +01:00
|
|
|
|
|
|
|
class RegisterAction extends Action {
|
2008-05-20 20:14:12 +01:00
|
|
|
|
2008-05-14 15:54:36 +01:00
|
|
|
function handle($args) {
|
2008-05-17 17:37:49 +01:00
|
|
|
parent::handle($args);
|
2008-05-20 20:14:12 +01:00
|
|
|
|
2008-05-14 15:54:36 +01:00
|
|
|
if (common_logged_in()) {
|
|
|
|
common_user_error(_t('Already logged in.'));
|
2008-05-17 18:15:01 +01:00
|
|
|
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
2008-05-14 15:54:36 +01:00
|
|
|
$this->try_register();
|
|
|
|
} else {
|
|
|
|
$this->show_form();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function try_register() {
|
2008-05-21 12:27:07 +01:00
|
|
|
$nickname = $this->trimmed('nickname');
|
|
|
|
$email = $this->trimmed('email');
|
|
|
|
|
|
|
|
# We don't trim these... whitespace is OK in a password!
|
|
|
|
|
2008-05-14 15:54:36 +01:00
|
|
|
$password = $this->arg('password');
|
|
|
|
$confirm = $this->arg('confirm');
|
2008-05-17 18:50:22 +01:00
|
|
|
|
2008-05-14 15:54:36 +01:00
|
|
|
# Input scrubbing
|
2008-05-20 20:14:12 +01:00
|
|
|
|
2008-05-14 15:54:36 +01:00
|
|
|
$nickname = common_canonical_nickname($nickname);
|
|
|
|
$email = common_canonical_email($email);
|
2008-05-20 20:14:12 +01:00
|
|
|
|
2008-05-28 17:42:22 +01:00
|
|
|
if (!$this->boolean('license')) {
|
|
|
|
$this->show_form(_t('You can\'t register if you don\'t agree to the license.'));
|
|
|
|
} else if (!Validate::email($email, true)) {
|
2008-05-21 12:27:07 +01:00
|
|
|
$this->show_form(_t('Not a valid email address.'));
|
|
|
|
} else if (!Validate::string($nickname, array('min_length' => 1,
|
|
|
|
'max_length' => 64,
|
|
|
|
'format' => VALIDATE_NUM . VALIDATE_ALPHA_LOWER))) {
|
2008-06-11 15:18:24 +01:00
|
|
|
$this->show_form(_t('Nickname must have only lowercase letters and numbers and no spaces.'));
|
2008-05-21 12:27:07 +01:00
|
|
|
} else if ($this->nickname_exists($nickname)) {
|
|
|
|
$this->show_form(_t('Nickname already exists.'));
|
2008-05-14 15:54:36 +01:00
|
|
|
} else if ($this->email_exists($email)) {
|
|
|
|
$this->show_form(_t('Email address already exists.'));
|
|
|
|
} else if ($password != $confirm) {
|
|
|
|
$this->show_form(_t('Passwords don\'t match.'));
|
|
|
|
} else if ($this->register_user($nickname, $password, $email)) {
|
2008-05-17 20:30:30 +01:00
|
|
|
# success!
|
|
|
|
if (!common_set_user($nickname)) {
|
|
|
|
common_server_error(_t('Error setting user.'));
|
|
|
|
return;
|
|
|
|
}
|
2008-05-17 18:54:16 +01:00
|
|
|
common_redirect(common_local_url('profilesettings'));
|
2008-05-14 15:54:36 +01:00
|
|
|
} else {
|
|
|
|
$this->show_form(_t('Invalid username or password.'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# checks if *CANONICAL* nickname exists
|
2008-05-20 20:14:12 +01:00
|
|
|
|
2008-05-14 15:54:36 +01:00
|
|
|
function nickname_exists($nickname) {
|
|
|
|
$user = User::staticGet('nickname', $nickname);
|
|
|
|
return ($user !== false);
|
|
|
|
}
|
|
|
|
|
|
|
|
# checks if *CANONICAL* email exists
|
2008-05-20 20:14:12 +01:00
|
|
|
|
2008-05-14 15:54:36 +01:00
|
|
|
function email_exists($email) {
|
2008-05-17 18:36:26 +01:00
|
|
|
$email = common_canonical_email($email);
|
2008-05-14 15:54:36 +01:00
|
|
|
$user = User::staticGet('email', $email);
|
|
|
|
return ($user !== false);
|
|
|
|
}
|
|
|
|
|
|
|
|
function register_user($nickname, $password, $email) {
|
|
|
|
# TODO: wrap this in a transaction!
|
|
|
|
$profile = new Profile();
|
|
|
|
$profile->nickname = $nickname;
|
2008-05-17 21:21:32 +01:00
|
|
|
$profile->profileurl = common_profile_url($nickname);
|
2008-05-17 21:14:11 +01:00
|
|
|
$profile->created = DB_DataObject_Cast::dateTime(); # current time
|
2008-05-20 20:14:12 +01:00
|
|
|
|
2008-05-14 15:54:36 +01:00
|
|
|
$id = $profile->insert();
|
|
|
|
if (!$id) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
$user = new User();
|
|
|
|
$user->id = $id;
|
|
|
|
$user->nickname = $nickname;
|
|
|
|
$user->password = common_munge_password($password, $id);
|
|
|
|
$user->email = $email;
|
2008-05-17 21:14:11 +01:00
|
|
|
$user->created = DB_DataObject_Cast::dateTime(); # current time
|
2008-05-22 19:55:00 +01:00
|
|
|
$user->uri = common_mint_tag('user:'.$id);
|
|
|
|
|
2008-05-14 15:54:36 +01:00
|
|
|
$result = $user->insert();
|
|
|
|
if (!$result) {
|
|
|
|
# Try to clean up...
|
|
|
|
$profile->delete();
|
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
}
|
2008-05-20 20:14:12 +01:00
|
|
|
|
2008-05-14 15:54:36 +01:00
|
|
|
function show_form($error=NULL) {
|
2008-05-28 17:42:22 +01:00
|
|
|
global $config;
|
2008-05-28 18:07:52 +01:00
|
|
|
|
2008-05-17 18:06:17 +01:00
|
|
|
common_show_header(_t('Register'));
|
2008-05-28 18:07:52 +01:00
|
|
|
if ($error) {
|
|
|
|
common_element('div', 'error', $error);
|
2008-06-11 17:33:08 +01:00
|
|
|
} else {
|
|
|
|
common_element('div', 'instructions',
|
|
|
|
_t('You can create a new account with the following form. ' .
|
|
|
|
'Your user name must be 1-64 characters, only lowercase letters or numbers. ' .
|
|
|
|
'Passwords have to match, and your email address should be valid.'));
|
2008-05-28 18:07:52 +01:00
|
|
|
}
|
2008-05-17 17:43:49 +01:00
|
|
|
common_element_start('form', array('method' => 'POST',
|
2008-05-14 15:54:36 +01:00
|
|
|
'id' => 'login',
|
2008-05-17 18:04:30 +01:00
|
|
|
'action' => common_local_url('register')));
|
2008-05-20 18:47:59 +01:00
|
|
|
common_input('nickname', _t('Nickname'));
|
|
|
|
common_password('password', _t('Password'));
|
|
|
|
common_password('confirm', _t('Confirm'));
|
|
|
|
common_input('email', _t('Email'));
|
2008-05-28 17:42:22 +01:00
|
|
|
common_element_start('p');
|
2008-05-28 18:04:38 +01:00
|
|
|
common_element('input', array('type' => 'checkbox',
|
|
|
|
'id' => 'license',
|
|
|
|
'name' => 'license',
|
|
|
|
'value' => 'true'));
|
2008-05-28 17:42:22 +01:00
|
|
|
common_text(_t('My text and files are available under '));
|
|
|
|
common_element('a', array(href => $config['license']['url']),
|
|
|
|
$config['license']['title']);
|
|
|
|
common_text(_t(' except this private data: password, email address, IM address, phone number.'));
|
|
|
|
common_element_end('p');
|
2008-05-20 18:47:59 +01:00
|
|
|
common_submit('submit', _t('Register'));
|
2008-05-17 17:43:49 +01:00
|
|
|
common_element_end('form');
|
2008-05-17 20:52:01 +01:00
|
|
|
common_show_footer();
|
2008-05-14 15:54:36 +01:00
|
|
|
}
|
|
|
|
}
|