2008-05-14 23:54:36 +09:00
|
|
|
<?php
|
2008-05-15 04:26:48 +09:00
|
|
|
/*
|
|
|
|
* Laconica - a distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2008, Controlez-Vous, Inc.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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-18 00:47:01 +09:00
|
|
|
if (!defined('LACONICA')) { exit(1); }
|
2008-05-14 23:54:36 +09:00
|
|
|
|
|
|
|
class RegisterAction extends Action {
|
|
|
|
|
|
|
|
function handle($args) {
|
2008-05-18 01:37:49 +09:00
|
|
|
parent::handle($args);
|
2008-05-14 23:54:36 +09:00
|
|
|
|
|
|
|
if (common_logged_in()) {
|
|
|
|
common_user_error(_t('Already logged in.'));
|
2008-05-18 02:15:01 +09:00
|
|
|
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
2008-05-14 23:54:36 +09:00
|
|
|
$this->try_register();
|
|
|
|
} else {
|
|
|
|
$this->show_form();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function try_register() {
|
|
|
|
$nickname = $this->arg('nickname');
|
|
|
|
$password = $this->arg('password');
|
|
|
|
$confirm = $this->arg('confirm');
|
|
|
|
$email = $this->arg('email');
|
2008-05-18 02:50:22 +09:00
|
|
|
|
2008-05-14 23:54:36 +09:00
|
|
|
# Input scrubbing
|
|
|
|
|
|
|
|
$nickname = common_canonical_nickname($nickname);
|
|
|
|
$email = common_canonical_email($email);
|
|
|
|
|
|
|
|
if ($this->nickname_exists($nickname)) {
|
|
|
|
$this->show_form(_t('Username already exists.'));
|
|
|
|
} 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-18 04:30:30 +09:00
|
|
|
# success!
|
|
|
|
if (!common_set_user($nickname)) {
|
|
|
|
common_server_error(_t('Error setting user.'));
|
|
|
|
return;
|
|
|
|
}
|
2008-05-18 02:54:16 +09:00
|
|
|
common_redirect(common_local_url('profilesettings'));
|
2008-05-14 23:54:36 +09:00
|
|
|
} else {
|
|
|
|
$this->show_form(_t('Invalid username or password.'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# checks if *CANONICAL* nickname exists
|
|
|
|
|
|
|
|
function nickname_exists($nickname) {
|
|
|
|
$user = User::staticGet('nickname', $nickname);
|
|
|
|
return ($user !== false);
|
|
|
|
}
|
|
|
|
|
|
|
|
# checks if *CANONICAL* email exists
|
|
|
|
|
|
|
|
function email_exists($email) {
|
2008-05-18 02:36:26 +09:00
|
|
|
$email = common_canonical_email($email);
|
2008-05-14 23:54:36 +09: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-18 05:14:11 +09:00
|
|
|
$profile->created = DB_DataObject_Cast::dateTime(); # current time
|
2008-05-14 23:54:36 +09: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-18 05:14:11 +09:00
|
|
|
$user->created = DB_DataObject_Cast::dateTime(); # current time
|
2008-05-14 23:54:36 +09:00
|
|
|
$result = $user->insert();
|
|
|
|
if (!$result) {
|
|
|
|
# Try to clean up...
|
|
|
|
$profile->delete();
|
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
function show_form($error=NULL) {
|
|
|
|
|
2008-05-18 02:06:17 +09:00
|
|
|
common_show_header(_t('Register'));
|
2008-05-18 01:43:49 +09:00
|
|
|
common_element_start('form', array('method' => 'POST',
|
2008-05-14 23:54:36 +09:00
|
|
|
'id' => 'login',
|
2008-05-18 02:04:30 +09:00
|
|
|
'action' => common_local_url('register')));
|
2008-05-18 02:42:19 +09:00
|
|
|
common_element('label', array('for' => 'nickname'),
|
2008-05-14 23:54:36 +09:00
|
|
|
_t('Name'));
|
2008-05-18 02:42:19 +09:00
|
|
|
common_element('input', array('name' => 'nickname',
|
2008-05-14 23:54:36 +09:00
|
|
|
'type' => 'text',
|
2008-05-18 02:42:19 +09:00
|
|
|
'id' => 'nickname'));
|
2008-05-14 23:54:36 +09:00
|
|
|
common_element('label', array('for' => 'password'),
|
|
|
|
_t('Password'));
|
|
|
|
common_element('input', array('name' => 'password',
|
|
|
|
'type' => 'password',
|
|
|
|
'id' => 'password'));
|
|
|
|
common_element('label', array('for' => 'confirm'),
|
|
|
|
_t('Confirm'));
|
|
|
|
common_element('input', array('name' => 'confirm',
|
|
|
|
'type' => 'password',
|
|
|
|
'id' => 'confirm'));
|
|
|
|
common_element('label', array('for' => 'email'),
|
|
|
|
_t('Email'));
|
|
|
|
common_element('input', array('name' => 'email',
|
|
|
|
'type' => 'text',
|
|
|
|
'id' => 'email'));
|
|
|
|
common_element('input', array('name' => 'submit',
|
|
|
|
'type' => 'submit',
|
2008-05-18 02:09:20 +09:00
|
|
|
'id' => 'submit',
|
2008-05-18 04:01:42 +09:00
|
|
|
'value' => _t('Register')));
|
2008-05-14 23:54:36 +09:00
|
|
|
common_element('input', array('name' => 'cancel',
|
|
|
|
'type' => 'button',
|
2008-05-18 02:09:20 +09:00
|
|
|
'id' => 'cancel',
|
|
|
|
'value' => _t('Cancel')));
|
2008-05-18 01:43:49 +09:00
|
|
|
common_element_end('form');
|
2008-05-18 04:52:01 +09:00
|
|
|
common_show_footer();
|
2008-05-14 23:54:36 +09:00
|
|
|
}
|
|
|
|
}
|