forked from GNUsocial/gnu-social
Make emailregistration more invitation-friendly
This commit is contained in:
parent
c85eeb868e
commit
fd847c29c5
@ -107,7 +107,11 @@ class EmailregisterAction extends Action
|
|||||||
|
|
||||||
$this->invitation = Invitation::staticGet('code', $this->code);
|
$this->invitation = Invitation::staticGet('code', $this->code);
|
||||||
|
|
||||||
if (empty($this->invitation)) {
|
if (!empty($this->invitation)) {
|
||||||
|
if (!empty($this->invitation->registered_user_id)) {
|
||||||
|
throw new ClientException(_m('Invitation already used.'), 403);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
|
||||||
$this->confirmation = Confirm_address::staticGet('code', $this->code);
|
$this->confirmation = Confirm_address::staticGet('code', $this->code);
|
||||||
|
|
||||||
@ -133,6 +137,9 @@ class EmailregisterAction extends Action
|
|||||||
} else {
|
} else {
|
||||||
$this->invitation = Invitation::staticGet('code', $this->code);
|
$this->invitation = Invitation::staticGet('code', $this->code);
|
||||||
if (!empty($this->invitation)) {
|
if (!empty($this->invitation)) {
|
||||||
|
if (!empty($this->invitation->registered_user_id)) {
|
||||||
|
throw new ClientException(_m('Invitation already used.'), 403);
|
||||||
|
}
|
||||||
$this->state = self::CONFIRMINVITE;
|
$this->state = self::CONFIRMINVITE;
|
||||||
} else {
|
} else {
|
||||||
$this->state = self::CONFIRMREGISTER;
|
$this->state = self::CONFIRMREGISTER;
|
||||||
@ -283,10 +290,15 @@ class EmailregisterAction extends Action
|
|||||||
$nickname = $this->nicknameFromEmail($email);
|
$nickname = $this->nicknameFromEmail($email);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$this->user = User::register(array('nickname' => $nickname,
|
$fields = array('nickname' => $nickname,
|
||||||
'email' => $email,
|
'email' => $email,
|
||||||
'password' => $this->password1,
|
'password' => $this->password1,
|
||||||
'email_confirmed' => true));
|
'email_confirmed' => true);
|
||||||
|
|
||||||
|
if (!empty($this->invitation)) {
|
||||||
|
$fields['code'] = $this->invitation->code;
|
||||||
|
}
|
||||||
|
$this->user = User::register($fields);
|
||||||
} catch (ClientException $e) {
|
} catch (ClientException $e) {
|
||||||
$this->error = $e->getMessage();
|
$this->error = $e->getMessage();
|
||||||
$nickname = $this->nicknameFromEmail($email);
|
$nickname = $this->nicknameFromEmail($email);
|
||||||
@ -306,18 +318,8 @@ class EmailregisterAction extends Action
|
|||||||
// Re-init language env in case it changed (not yet, but soon)
|
// Re-init language env in case it changed (not yet, but soon)
|
||||||
common_init_language();
|
common_init_language();
|
||||||
|
|
||||||
if (!empty($this->invitation)) {
|
if (!empty($this->confirmation)) {
|
||||||
$inviter = User::staticGet('id', $this->invitation->user_id);
|
|
||||||
if (!empty($inviter)) {
|
|
||||||
Subscription::start($inviter->getProfile(),
|
|
||||||
$this->user->getProfile());
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->invitation->delete();
|
|
||||||
} else if (!empty($this->confirmation)) {
|
|
||||||
$this->confirmation->delete();
|
$this->confirmation->delete();
|
||||||
} else {
|
|
||||||
throw new Exception('No confirmation thing.');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Event::handle('EndRegistrationTry', array($this));
|
Event::handle('EndRegistrationTry', array($this));
|
||||||
|
Loading…
Reference in New Issue
Block a user