mirror of
https://github.com/discourse/discourse.git
synced 2025-02-20 12:27:32 +08:00
REVERT: External auth when redeeming invites
Reverting this commit:
87a0a6664e
because I'm extracting all of this logic into a plugin instead.
This commit is contained in:
parent
ab7038bfc2
commit
893d30fb92
|
@ -5,7 +5,6 @@ import { ajax } from "discourse/lib/ajax";
|
|||
import PasswordValidation from "discourse/mixins/password-validation";
|
||||
import UsernameValidation from "discourse/mixins/username-validation";
|
||||
import NameValidation from "discourse/mixins/name-validation";
|
||||
import InviteEmailAuthValidation from "discourse/mixins/invite-email-auth-validation";
|
||||
import UserFieldsValidation from "discourse/mixins/user-fields-validation";
|
||||
import { findAll as findLoginMethods } from "discourse/models/login-method";
|
||||
|
||||
|
@ -13,11 +12,8 @@ export default Ember.Controller.extend(
|
|||
PasswordValidation,
|
||||
UsernameValidation,
|
||||
NameValidation,
|
||||
InviteEmailAuthValidation,
|
||||
UserFieldsValidation,
|
||||
{
|
||||
login: Ember.inject.controller(),
|
||||
|
||||
invitedBy: Ember.computed.alias("model.invited_by"),
|
||||
email: Ember.computed.alias("model.email"),
|
||||
accountUsername: Ember.computed.alias("model.username"),
|
||||
|
@ -26,7 +22,6 @@ export default Ember.Controller.extend(
|
|||
errorMessage: null,
|
||||
userFields: null,
|
||||
inviteImageUrl: getUrl("/images/envelope.svg"),
|
||||
hasAuthOptions: Ember.computed.notEmpty("authOptions"),
|
||||
|
||||
@computed
|
||||
welcomeTitle() {
|
||||
|
@ -40,45 +35,28 @@ export default Ember.Controller.extend(
|
|||
return I18n.t("invites.your_email", { email: email });
|
||||
},
|
||||
|
||||
authProviderDisplayName(providerName) {
|
||||
const matchingProvider = findLoginMethods().find(provider => {
|
||||
return provider.name === providerName;
|
||||
});
|
||||
return matchingProvider
|
||||
? matchingProvider.get("prettyName")
|
||||
: providerName;
|
||||
},
|
||||
|
||||
@computed
|
||||
externalAuthsEnabled() {
|
||||
return findLoginMethods().length > 0;
|
||||
},
|
||||
|
||||
@computed
|
||||
inviteOnlyOauthEnabled() {
|
||||
return this.siteSettings.enable_invite_only_oauth;
|
||||
},
|
||||
|
||||
@computed(
|
||||
"usernameValidation.failed",
|
||||
"passwordValidation.failed",
|
||||
"nameValidation.failed",
|
||||
"userFieldsValidation.failed",
|
||||
"inviteEmailAuthValidation.failed"
|
||||
"userFieldsValidation.failed"
|
||||
)
|
||||
submitDisabled(
|
||||
usernameFailed,
|
||||
passwordFailed,
|
||||
nameFailed,
|
||||
userFieldsFailed,
|
||||
inviteEmailAuthFailed
|
||||
userFieldsFailed
|
||||
) {
|
||||
return (
|
||||
usernameFailed ||
|
||||
passwordFailed ||
|
||||
nameFailed ||
|
||||
userFieldsFailed ||
|
||||
inviteEmailAuthFailed
|
||||
userFieldsFailed
|
||||
);
|
||||
},
|
||||
|
||||
|
@ -90,10 +68,6 @@ export default Ember.Controller.extend(
|
|||
},
|
||||
|
||||
actions: {
|
||||
externalLogin(provider) {
|
||||
this.login.send("externalLogin", provider);
|
||||
},
|
||||
|
||||
submit() {
|
||||
const userFields = this.userFields;
|
||||
let userCustomFields = {};
|
||||
|
|
|
@ -20,7 +20,6 @@ const AuthErrors = [
|
|||
|
||||
export default Ember.Controller.extend(ModalFunctionality, {
|
||||
createAccount: Ember.inject.controller(),
|
||||
invitesShow: Ember.inject.controller(),
|
||||
forgotPassword: Ember.inject.controller(),
|
||||
application: Ember.inject.controller(),
|
||||
|
||||
|
@ -354,23 +353,14 @@ export default Ember.Controller.extend(ModalFunctionality, {
|
|||
return;
|
||||
}
|
||||
|
||||
if (this.siteSettings.enable_invite_only_oauth) {
|
||||
const invitesShowController = this.invitesShow;
|
||||
invitesShowController.setProperties({
|
||||
accountEmail: options.email,
|
||||
accountUsername: options.username,
|
||||
accountName: options.name,
|
||||
authOptions: Ember.Object.create(options)
|
||||
});
|
||||
} else {
|
||||
const createAccountController = this.createAccount;
|
||||
createAccountController.setProperties({
|
||||
accountEmail: options.email,
|
||||
accountUsername: options.username,
|
||||
accountName: options.name,
|
||||
authOptions: Ember.Object.create(options)
|
||||
});
|
||||
showModal("createAccount");
|
||||
}
|
||||
const createAccountController = this.createAccount;
|
||||
createAccountController.setProperties({
|
||||
accountEmail: options.email,
|
||||
accountUsername: options.username,
|
||||
accountName: options.name,
|
||||
authOptions: Ember.Object.create(options)
|
||||
});
|
||||
|
||||
showModal("createAccount");
|
||||
}
|
||||
});
|
||||
|
|
|
@ -1,43 +0,0 @@
|
|||
import InputValidation from "discourse/models/input-validation";
|
||||
import { default as computed } from "ember-addons/ember-computed-decorators";
|
||||
|
||||
export default Ember.Mixin.create({
|
||||
@computed()
|
||||
nameInstructions() {
|
||||
"";
|
||||
},
|
||||
|
||||
// Validate the name.
|
||||
@computed(
|
||||
"accountEmail",
|
||||
"authOptions.email",
|
||||
"authOptions.email_valid",
|
||||
"authOptions.auth_provider"
|
||||
)
|
||||
inviteEmailAuthValidation() {
|
||||
if (
|
||||
!this.siteSettings.enable_invite_only_oauth ||
|
||||
(this.siteSettings.enable_invite_only_oauth &&
|
||||
this.get("authOptions.email") === this.email &&
|
||||
this.get("authOptions.email_valid"))
|
||||
) {
|
||||
return InputValidation.create({
|
||||
ok: true,
|
||||
reason: I18n.t("user.email.authenticated", {
|
||||
provider: this.authProviderDisplayName(
|
||||
this.get("authOptions.auth_provider")
|
||||
)
|
||||
})
|
||||
});
|
||||
}
|
||||
|
||||
return InputValidation.create({
|
||||
failed: true,
|
||||
reason: I18n.t("user.email.invite_email_auth_invalid", {
|
||||
provider: this.authProviderDisplayName(
|
||||
this.get("authOptions.auth_provider")
|
||||
)
|
||||
})
|
||||
});
|
||||
}
|
||||
});
|
|
@ -14,98 +14,55 @@
|
|||
{{else}}
|
||||
<p>{{i18n 'invites.invited_by'}}</p>
|
||||
<p>{{user-info user=invitedBy}}</p>
|
||||
<p>
|
||||
{{{yourEmailMessage}}}
|
||||
{{#if inviteOnlyOauthEnabled }}
|
||||
{{login-buttons externalLogin=(action "externalLogin")}}
|
||||
{{/if}}
|
||||
|
||||
<p>{{{yourEmailMessage}}}
|
||||
{{#if externalAuthsEnabled}}
|
||||
{{#unless inviteOnlyOauthEnabled}}
|
||||
{{i18n 'invites.social_login_available'}}
|
||||
{{/unless}}
|
||||
{{i18n 'invites.social_login_available'}}
|
||||
{{/if}}
|
||||
</p>
|
||||
|
||||
{{#if hasAuthOptions}}
|
||||
{{#if inviteOnlyOauthEnabled }}
|
||||
{{input-tip validation=inviteEmailAuthValidation id="account-email-validation"}}
|
||||
<form>
|
||||
<div class="input username-input">
|
||||
<label>{{i18n 'user.username.title'}}</label>
|
||||
{{input value=accountUsername id="new-account-username" name="username" maxlength=maxUsernameLength autocomplete="discourse"}}
|
||||
{{input-tip validation=usernameValidation id="username-validation"}}
|
||||
<div class="instructions">{{i18n 'user.username.instructions'}}</div>
|
||||
</div>
|
||||
|
||||
{{#if fullnameRequired}}
|
||||
<div class="input name-input">
|
||||
<label>{{i18n 'invites.name_label'}}</label>
|
||||
{{input value=accountName id="new-account-name" name="name"}}
|
||||
<div class="instructions">{{nameInstructions}}</div>
|
||||
</div>
|
||||
{{/if}}
|
||||
<form>
|
||||
<div class="input username-input">
|
||||
<label>{{i18n 'user.username.title'}}</label>
|
||||
{{input value=accountUsername id="new-account-username" name="username" maxlength=maxUsernameLength autocomplete="discourse"}}
|
||||
{{input-tip validation=usernameValidation id="username-validation"}}
|
||||
<div class="instructions">{{i18n 'user.username.instructions'}}</div>
|
||||
|
||||
<div class="input password-input">
|
||||
<label>{{i18n 'invites.password_label'}}</label>
|
||||
{{password-field value=accountPassword type="password" id="new-account-password" capsLockOn=capsLockOn}}
|
||||
{{input-tip validation=passwordValidation}}
|
||||
<div class="instructions">
|
||||
{{passwordInstructions}} {{i18n 'invites.optional_description'}}
|
||||
<div class="caps-lock-warning {{unless capsLockOn 'invisible'}}">
|
||||
{{d-icon "exclamation-triangle"}} {{i18n 'login.caps_lock_warning'}}</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{#if fullnameRequired}}
|
||||
<div class="input name-input">
|
||||
<label>{{i18n 'invites.name_label'}}</label>
|
||||
{{input value=accountName id="new-account-name" name="name"}}
|
||||
<div class="instructions">{{nameInstructions}}</div>
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
{{#if userFields}}
|
||||
<div class='user-fields'>
|
||||
{{#each userFields as |f|}}
|
||||
{{user-field field=f.field value=f.value}}
|
||||
{{/each}}
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
<button class='btn btn-primary' {{action "submit"}} disabled={{submitDisabled}}>{{i18n 'invites.accept_invite'}}</button>
|
||||
|
||||
{{#if errorMessage}}
|
||||
<br/><br/>
|
||||
<div class='alert alert-error'>{{errorMessage}}</div>
|
||||
{{/if}}
|
||||
</form>
|
||||
{{/if}}
|
||||
{{#unless inviteOnlyOauthEnabled}}
|
||||
<form>
|
||||
<div class="input username-input">
|
||||
<label>{{i18n 'user.username.title'}}</label>
|
||||
{{input value=accountUsername id="new-account-username" name="username" maxlength=maxUsernameLength autocomplete="discourse"}}
|
||||
{{input-tip validation=usernameValidation id="username-validation"}}
|
||||
<div class="instructions">{{i18n 'user.username.instructions'}}</div>
|
||||
{{#if userFields}}
|
||||
<div class='user-fields'>
|
||||
{{#each userFields as |f|}}
|
||||
{{user-field field=f.field value=f.value}}
|
||||
{{/each}}
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
{{#if fullnameRequired}}
|
||||
<div class="input name-input">
|
||||
<label>{{i18n 'invites.name_label'}}</label>
|
||||
{{input value=accountName id="new-account-name" name="name"}}
|
||||
<div class="instructions">{{nameInstructions}}</div>
|
||||
</div>
|
||||
{{/if}}
|
||||
<button class='btn btn-primary' {{action "submit"}} disabled={{submitDisabled}}>{{i18n 'invites.accept_invite'}}</button>
|
||||
|
||||
<div class="input password-input">
|
||||
<label>{{i18n 'invites.password_label'}}</label>
|
||||
{{password-field value=accountPassword type="password" id="new-account-password" capsLockOn=capsLockOn}}
|
||||
{{input-tip validation=passwordValidation}}
|
||||
<div class="instructions">
|
||||
{{passwordInstructions}} {{i18n 'invites.optional_description'}}
|
||||
<div class="caps-lock-warning {{unless capsLockOn 'invisible'}}">
|
||||
{{d-icon "exclamation-triangle"}} {{i18n 'login.caps_lock_warning'}}</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{#if userFields}}
|
||||
<div class='user-fields'>
|
||||
{{#each userFields as |f|}}
|
||||
{{user-field field=f.field value=f.value}}
|
||||
{{/each}}
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
<button class='btn btn-primary' {{action "submit"}} disabled={{submitDisabled}}>{{i18n 'invites.accept_invite'}}</button>
|
||||
|
||||
{{#if errorMessage}}
|
||||
<br/><br/>
|
||||
<div class='alert alert-error'>{{errorMessage}}</div>
|
||||
{{/if}}
|
||||
</form>
|
||||
{{/unless}}
|
||||
{{#if errorMessage}}
|
||||
<br/><br/>
|
||||
<div class='alert alert-error'>{{errorMessage}}</div>
|
||||
{{/if}}
|
||||
</form>
|
||||
{{/if}}
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -108,7 +108,7 @@ class Users::OmniauthCallbacksController < ApplicationController
|
|||
def complete_response_data
|
||||
if @auth_result.user
|
||||
user_found(@auth_result.user)
|
||||
elsif invite_required?
|
||||
elsif SiteSetting.invite_only?
|
||||
@auth_result.requires_invite = true
|
||||
else
|
||||
session[:authentication] = @auth_result.session_data
|
||||
|
@ -156,10 +156,4 @@ class Users::OmniauthCallbacksController < ApplicationController
|
|||
end
|
||||
end
|
||||
|
||||
# If invite_only and enable_invite_only_oauth allow the user to authenticate if coming from the invite page
|
||||
def invite_required?
|
||||
(SiteSetting.invite_only? && !SiteSetting.enable_invite_only_oauth) ||
|
||||
(SiteSetting.invite_only? && (!@origin.include?('invites') && SiteSetting.enable_invite_only_oauth))
|
||||
end
|
||||
|
||||
end
|
||||
|
|
|
@ -1014,7 +1014,6 @@ en:
|
|||
ok: "We will email you to confirm"
|
||||
invalid: "Please enter a valid email address"
|
||||
authenticated: "Your email has been authenticated by {{provider}}"
|
||||
invite_email_auth_invalid: "Your invitation email does not match the email from {{provider}}"
|
||||
frequency_immediately: "We'll email you immediately if you haven't read the thing we're emailing you about."
|
||||
frequency:
|
||||
one: "We'll only email you if we haven't seen you in the last minute."
|
||||
|
|
|
@ -327,10 +327,6 @@ login:
|
|||
enable_local_logins:
|
||||
client: true
|
||||
default: true
|
||||
enable_invite_only_oauth:
|
||||
client: true
|
||||
default: false
|
||||
hidden: true
|
||||
enable_local_logins_via_email:
|
||||
client: true
|
||||
default: true
|
||||
|
|
|
@ -334,7 +334,7 @@ class Guardian
|
|||
authenticated? &&
|
||||
(SiteSetting.max_invites_per_day.to_i > 0 || is_staff?) &&
|
||||
!SiteSetting.enable_sso &&
|
||||
(SiteSetting.enable_invite_only_oauth || SiteSetting.enable_local_logins) &&
|
||||
SiteSetting.enable_local_logins &&
|
||||
(
|
||||
(!SiteSetting.must_approve_users? && @user.has_trust_level?(TrustLevel[2])) ||
|
||||
is_staff?
|
||||
|
|
Loading…
Reference in New Issue
Block a user