2013-10-06 20:30:29 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
|
|
|
*
|
|
|
|
* Register account
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: 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/>.
|
|
|
|
*
|
|
|
|
* @category API
|
2013-10-14 23:20:36 +01:00
|
|
|
* @package GNUsocial
|
2013-10-06 20:30:29 +01:00
|
|
|
* @author Hannes Mannerheim <h@nnesmannerhe.im>
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://www.gnu.org/software/social/
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
|
|
|
|
|
|
|
class ApiAccountRegisterAction extends ApiAction
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Has there been an error?
|
|
|
|
*/
|
|
|
|
var $error = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Have we registered?
|
|
|
|
*/
|
|
|
|
var $registered = false;
|
|
|
|
|
2013-10-07 18:56:57 +01:00
|
|
|
protected $needPost = true;
|
|
|
|
|
|
|
|
protected $code = null; // invite code
|
|
|
|
protected $invite = null; // invite to-be-stored
|
2013-10-06 20:30:29 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Take arguments for running
|
|
|
|
*
|
|
|
|
* @param array $args $_REQUEST args
|
|
|
|
*
|
|
|
|
* @return boolean success flag
|
|
|
|
*/
|
2013-10-29 09:26:46 +00:00
|
|
|
protected function prepare(array $args=array())
|
2013-10-06 20:30:29 +01:00
|
|
|
{
|
|
|
|
parent::prepare($args);
|
2013-10-07 18:56:57 +01:00
|
|
|
|
|
|
|
if ($this->format !== 'json') {
|
|
|
|
$this->clientError('This method currently only serves JSON.', 415);
|
|
|
|
}
|
|
|
|
|
2013-10-06 20:30:29 +01:00
|
|
|
$this->code = $this->trimmed('code');
|
|
|
|
|
2013-10-07 18:56:57 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the request
|
|
|
|
*
|
|
|
|
* @param array $args $_REQUEST data (unused)
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function handle()
|
|
|
|
{
|
|
|
|
parent::handle();
|
|
|
|
|
|
|
|
$nickname = $this->trimmed('nickname');
|
|
|
|
$email = $this->trimmed('email');
|
|
|
|
$fullname = $this->trimmed('fullname');
|
|
|
|
$homepage = $this->trimmed('homepage');
|
|
|
|
$bio = $this->trimmed('bio');
|
|
|
|
$location = $this->trimmed('location');
|
|
|
|
|
|
|
|
// We don't trim these... whitespace is OK in a password!
|
|
|
|
$password = $this->arg('password');
|
|
|
|
$confirm = $this->arg('confirm');
|
|
|
|
|
2013-10-06 20:30:29 +01:00
|
|
|
if (empty($this->code)) {
|
|
|
|
common_ensure_session();
|
|
|
|
if (array_key_exists('invitecode', $_SESSION)) {
|
|
|
|
$this->code = $_SESSION['invitecode'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (common_config('site', 'inviteonly') && empty($this->code)) {
|
|
|
|
// TRANS: Client error displayed when trying to register to an invite-only site without an invitation.
|
2013-10-07 18:56:57 +01:00
|
|
|
$this->clientError(_('Sorry, only invited people can register.'), 401);
|
2013-10-06 20:30:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($this->code)) {
|
2013-10-25 12:17:29 +01:00
|
|
|
$this->invite = Invitation::getKV('code', $this->code);
|
2013-10-06 20:30:29 +01:00
|
|
|
if (empty($this->invite)) {
|
|
|
|
// TRANS: Client error displayed when trying to register to an invite-only site without a valid invitation.
|
2013-10-07 18:56:57 +01:00
|
|
|
$this->clientError(_('Sorry, invalid invitation code.'), 401);
|
2013-10-06 20:30:29 +01:00
|
|
|
}
|
|
|
|
// Store this in case we need it
|
|
|
|
common_ensure_session();
|
|
|
|
$_SESSION['invitecode'] = $this->code;
|
|
|
|
}
|
|
|
|
|
2013-10-07 18:56:57 +01:00
|
|
|
// Input scrubbing
|
|
|
|
try {
|
2013-10-16 13:58:22 +01:00
|
|
|
$nickname = Nickname::normalize($nickname, true);
|
2013-10-07 18:56:57 +01:00
|
|
|
} catch (NicknameException $e) {
|
|
|
|
// clientError handles Api exceptions with various formats and stuff
|
2013-10-16 13:58:22 +01:00
|
|
|
$this->clientError($e->getMessage(), $e->getCode());
|
2013-10-07 18:56:57 +01:00
|
|
|
}
|
2013-10-16 13:58:22 +01:00
|
|
|
|
2013-10-07 18:56:57 +01:00
|
|
|
$email = common_canonical_email($email);
|
2013-10-06 20:30:29 +01:00
|
|
|
|
2013-10-07 18:56:57 +01:00
|
|
|
if ($email && !Validate::email($email, common_config('email', 'check_domain'))) {
|
|
|
|
// TRANS: Form validation error displayed when trying to register without a valid e-mail address.
|
|
|
|
$this->clientError(_('Not a valid email address.'), 400);
|
|
|
|
} else if ($this->emailExists($email)) {
|
|
|
|
// TRANS: Form validation error displayed when trying to register with an already registered e-mail address.
|
|
|
|
$this->clientError(_('Email address already exists.'), 400);
|
|
|
|
} else if (!is_null($homepage) && (strlen($homepage) > 0) &&
|
|
|
|
!common_valid_http_url($homepage)) {
|
|
|
|
// TRANS: Form validation error displayed when trying to register with an invalid homepage URL.
|
|
|
|
$this->clientError(_('Homepage is not a valid URL.'), 400);
|
|
|
|
} else if (Profile::bioTooLong($bio)) {
|
|
|
|
// 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.
|
|
|
|
$this->clientError(sprintf(_m('Bio is too long (maximum %d character).',
|
|
|
|
'Bio is too long (maximum %d characters).',
|
|
|
|
Profile::maxBio()),
|
|
|
|
Profile::maxBio()), 400);
|
|
|
|
} else if (strlen($password) < 6) {
|
|
|
|
// TRANS: Form validation error displayed when trying to register with too short a password.
|
|
|
|
$this->clientError(_('Password must be 6 or more characters.'), 400);
|
|
|
|
} else if ($password != $confirm) {
|
|
|
|
// TRANS: Form validation error displayed when trying to register with non-matching passwords.
|
|
|
|
$this->clientError(_('Passwords do not match.'), 400);
|
2013-10-06 20:30:29 +01:00
|
|
|
} else {
|
2015-03-01 11:36:19 +00:00
|
|
|
|
|
|
|
// annoy spammers
|
|
|
|
sleep(7);
|
2016-01-11 20:04:31 +00:00
|
|
|
|
|
|
|
if (Event::handle('APIStartRegistrationTry', array($this))) {
|
|
|
|
try {
|
|
|
|
$user = User::register(array('nickname' => $nickname,
|
|
|
|
'password' => $password,
|
|
|
|
'email' => $email,
|
|
|
|
'fullname' => $fullname,
|
|
|
|
'homepage' => $homepage,
|
|
|
|
'bio' => $bio,
|
|
|
|
'location' => $location,
|
|
|
|
'code' => $this->code));
|
|
|
|
Event::handle('EndRegistrationTry', array($this));
|
|
|
|
|
|
|
|
$this->initDocument('json');
|
|
|
|
$this->showJsonObjects($this->twitterUserArray($user->getProfile()));
|
|
|
|
$this->endDocument('json');
|
|
|
|
|
|
|
|
} catch (Exception $e) {
|
|
|
|
$this->clientError($e->getMessage(), 400);
|
|
|
|
}
|
|
|
|
}
|
2015-03-01 11:36:19 +00:00
|
|
|
}
|
2013-10-06 20:30:29 +01: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)
|
|
|
|
{
|
|
|
|
$email = common_canonical_email($email);
|
|
|
|
if (!$email || strlen($email) == 0) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-10-25 12:17:29 +01:00
|
|
|
$user = User::getKV('email', $email);
|
2013-10-06 20:30:29 +01:00
|
|
|
return is_object($user);
|
|
|
|
}
|
|
|
|
|
2016-01-28 18:11:43 +00:00
|
|
|
}
|