Merge pull request #4729 from tgxworld/dont_mark_user_as_valid
FIX: Don't mark user as `active` if verified email is different.
This commit is contained in:
commit
c99f4260c0
|
@ -6,9 +6,13 @@ import { findAll } from 'discourse/models/login-method';
|
||||||
import { escape } from 'pretty-text/sanitizer';
|
import { escape } from 'pretty-text/sanitizer';
|
||||||
|
|
||||||
// This is happening outside of the app via popup
|
// This is happening outside of the app via popup
|
||||||
const AuthErrors =
|
const AuthErrors = [
|
||||||
['requires_invite', 'awaiting_approval', 'awaiting_confirmation', 'admin_not_allowed_from_ip_address',
|
'requires_invite',
|
||||||
'not_allowed_from_ip_address'];
|
'awaiting_approval',
|
||||||
|
'awaiting_activation',
|
||||||
|
'admin_not_allowed_from_ip_address',
|
||||||
|
'not_allowed_from_ip_address'
|
||||||
|
];
|
||||||
|
|
||||||
export default Ember.Controller.extend(ModalFunctionality, {
|
export default Ember.Controller.extend(ModalFunctionality, {
|
||||||
|
|
||||||
|
|
|
@ -111,10 +111,8 @@ class Users::OmniauthCallbacksController < ApplicationController
|
||||||
|
|
||||||
def user_found(user)
|
def user_found(user)
|
||||||
# automatically activate/unstage any account if a provider marked the email valid
|
# automatically activate/unstage any account if a provider marked the email valid
|
||||||
if @auth_result.email_valid
|
if @auth_result.email_valid && @auth_result.email == user.email
|
||||||
user.staged = false
|
user.update!(staged: false, active: true)
|
||||||
user.active = true
|
|
||||||
user.save
|
|
||||||
end
|
end
|
||||||
|
|
||||||
if ScreenedIpAddress.should_block?(request.remote_ip)
|
if ScreenedIpAddress.should_block?(request.remote_ip)
|
||||||
|
|
|
@ -1030,7 +1030,7 @@ en:
|
||||||
logging_in: "Signing In..."
|
logging_in: "Signing In..."
|
||||||
or: "Or"
|
or: "Or"
|
||||||
authenticating: "Authenticating..."
|
authenticating: "Authenticating..."
|
||||||
awaiting_confirmation: "Your account is awaiting activation, use the forgot password link to issue another activation email."
|
awaiting_activation: "Your account is awaiting activation, use the forgot password link to issue another activation email."
|
||||||
awaiting_approval: "Your account has not been approved by a staff member yet. You will be sent an email when it is approved."
|
awaiting_approval: "Your account has not been approved by a staff member yet. You will be sent an email when it is approved."
|
||||||
requires_invite: "Sorry, access to this forum is by invite only."
|
requires_invite: "Sorry, access to this forum is by invite only."
|
||||||
not_activated: "You can't log in yet. We previously sent an activation email to you at <b>{{sentTo}}</b>. Please follow the instructions in that email to activate your account."
|
not_activated: "You can't log in yet. We previously sent an activation email to you at <b>{{sentTo}}</b>. Please follow the instructions in that email to activate your account."
|
||||||
|
|
|
@ -54,7 +54,7 @@ class Auth::GoogleOAuth2Authenticator < Auth::Authenticator
|
||||||
|
|
||||||
h[:email] = hash[:info][:email]
|
h[:email] = hash[:info][:email]
|
||||||
h[:name] = hash[:info][:name]
|
h[:name] = hash[:info][:name]
|
||||||
h[:email_valid] = hash[:extra][:raw_info][:email_verified]
|
h[:email_valid] = extra[:email_verified]
|
||||||
|
|
||||||
h[:google] = {
|
h[:google] = {
|
||||||
google_user_id: hash[:uid] || extra[:sub],
|
google_user_id: hash[:uid] || extra[:sub],
|
||||||
|
|
|
@ -0,0 +1,98 @@
|
||||||
|
require 'rails_helper'
|
||||||
|
|
||||||
|
RSpec.describe "OmniAuth Callbacks" do
|
||||||
|
let(:user) { Fabricate(:user) }
|
||||||
|
|
||||||
|
before do
|
||||||
|
OmniAuth.config.test_mode = true
|
||||||
|
end
|
||||||
|
|
||||||
|
after do
|
||||||
|
OmniAuth.config.test_mode = false
|
||||||
|
end
|
||||||
|
|
||||||
|
context 'Google Oauth2' do
|
||||||
|
before do
|
||||||
|
SiteSetting.enable_google_oauth2_logins = true
|
||||||
|
end
|
||||||
|
|
||||||
|
describe 'when user has been verified' do
|
||||||
|
before do
|
||||||
|
OmniAuth.config.mock_auth[:google_oauth2] = OmniAuth::AuthHash.new(
|
||||||
|
provider: 'google_oauth2',
|
||||||
|
uid: '123545',
|
||||||
|
info: OmniAuth::AuthHash::InfoHash.new(
|
||||||
|
email: user.email,
|
||||||
|
name: 'Some name'
|
||||||
|
),
|
||||||
|
extra: {
|
||||||
|
raw_info: OmniAuth::AuthHash.new(
|
||||||
|
email_verified: true,
|
||||||
|
email: user.email,
|
||||||
|
family_name: 'Huh',
|
||||||
|
given_name: user.name,
|
||||||
|
gender: 'male',
|
||||||
|
name: "#{user.name} Huh",
|
||||||
|
)
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
|
Rails.application.env_config["omniauth.auth"] = OmniAuth.config.mock_auth[:google_oauth2]
|
||||||
|
end
|
||||||
|
|
||||||
|
it 'should return the right response' do
|
||||||
|
get "/auth/google_oauth2/callback.json"
|
||||||
|
|
||||||
|
expect(response).to be_success
|
||||||
|
|
||||||
|
response_body = JSON.parse(response.body)
|
||||||
|
|
||||||
|
expect(response_body["authenticated"]).to eq(true)
|
||||||
|
expect(response_body["awaiting_activation"]).to eq(false)
|
||||||
|
expect(response_body["awaiting_approval"]).to eq(false)
|
||||||
|
expect(response_body["not_allowed_from_ip_address"]).to eq(false)
|
||||||
|
expect(response_body["admin_not_allowed_from_ip_address"]).to eq(false)
|
||||||
|
end
|
||||||
|
|
||||||
|
context 'when user has not verified his email' do
|
||||||
|
before do
|
||||||
|
GoogleUserInfo.create!(google_user_id: '12345', user: user)
|
||||||
|
user.update!(active: false)
|
||||||
|
|
||||||
|
OmniAuth.config.mock_auth[:google_oauth2] = OmniAuth::AuthHash.new(
|
||||||
|
provider: 'google_oauth2',
|
||||||
|
uid: '12345',
|
||||||
|
info: OmniAuth::AuthHash::InfoHash.new(
|
||||||
|
email: 'someother_email@test.com',
|
||||||
|
name: 'Some name'
|
||||||
|
),
|
||||||
|
extra: {
|
||||||
|
raw_info: OmniAuth::AuthHash.new(
|
||||||
|
email_verified: true,
|
||||||
|
email: 'someother_email@test.com',
|
||||||
|
family_name: 'Huh',
|
||||||
|
given_name: user.name,
|
||||||
|
gender: 'male',
|
||||||
|
name: "#{user.name} Huh",
|
||||||
|
)
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
|
Rails.application.env_config["omniauth.auth"] = OmniAuth.config.mock_auth[:google_oauth2]
|
||||||
|
end
|
||||||
|
|
||||||
|
it 'should return the right response' do
|
||||||
|
get "/auth/google_oauth2/callback.json"
|
||||||
|
|
||||||
|
expect(response).to be_success
|
||||||
|
|
||||||
|
response_body = JSON.parse(response.body)
|
||||||
|
|
||||||
|
expect(user.reload.active).to eq(false)
|
||||||
|
expect(response_body["authenticated"]).to eq(false)
|
||||||
|
expect(response_body["awaiting_activation"]).to eq(true)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in New Issue