X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/9649b192c03f7a333f3a02697a64910cd6669dab..b66debabf5401b0b91e9afd3a6f201c80297328f:/app/controllers/users_controller.rb?ds=sidebyside diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb index e022ff0c1..06df8f2be 100644 --- a/app/controllers/users_controller.rb +++ b/app/controllers/users_controller.rb @@ -71,17 +71,18 @@ class UsersController < ApplicationController # page, instead send them to the home page redirect_to @referer || { :controller => "site", :action => "index" } elsif params.key?(:auth_provider) && params.key?(:auth_uid) - @verified_email = params[:verified_email] + @email_hmac = params[:email_hmac] self.current_user = User.new(:email => params[:email], :display_name => params[:nickname], :auth_provider => params[:auth_provider], :auth_uid => params[:auth_uid]) - flash.now[:notice] = render_to_string :partial => "auth_association" - - # validate before displaying to show email field if it conflicts - flash.now[:notice] = t ".duplicate_social_email" unless current_user.valid? && current_user.errors[:email].empty? + if current_user.valid? || current_user.errors[:email].empty? + flash.now[:notice] = render_to_string :partial => "auth_association" + else + flash.now[:warning] = t ".duplicate_social_email" + end else check_signup_allowed @@ -107,9 +108,14 @@ class UsersController < ApplicationController if current_user.invalid? # Something is wrong with a new user, so rerender the form render :action => "new" + elsif current_user.auth_provider.present? + # Verify external authenticator before moving on + session[:new_user] = current_user.slice("email", "display_name", "pass_crypt", "pass_crypt_confirmation") + redirect_to auth_url(current_user.auth_provider, current_user.auth_uid), :status => :temporary_redirect else # Save the user record - save_new_user params[:verified_email] + session[:new_user] = current_user.slice("email", "display_name", "pass_crypt", "pass_crypt_confirmation") + save_new_user params[:email_hmac] end end end @@ -222,6 +228,12 @@ class UsersController < ApplicationController session[:user_errors] = current_user.errors.as_json redirect_to edit_account_path + elsif session[:new_user] + session[:new_user]["auth_provider"] = provider + session[:new_user]["auth_uid"] = uid + + email_hmac = UsersController.message_hmac(email) if email_verified && email + save_new_user email_hmac else user = User.find_by(:auth_provider => provider, :auth_uid => uid) @@ -243,8 +255,8 @@ class UsersController < ApplicationController failed_login t("sessions.new.auth failure") end else - verified_email = UsersController.message_hmac(email) if email_verified && email - redirect_to :action => "new", :nickname => name, :email => email, :verified_email => verified_email, + email_hmac = UsersController.message_hmac(email) if email_verified && email + redirect_to :action => "new", :nickname => name, :email => email, :email_hmac => email_hmac, :auth_provider => provider, :auth_uid => uid end end @@ -262,7 +274,7 @@ class UsersController < ApplicationController def self.message_hmac(text) sha256 = Digest::SHA256.new - sha256 << Rails.application.key_generator.generate_key("openstreetmap/verified_email") + sha256 << Rails.application.key_generator.generate_key("openstreetmap/email_address") sha256 << text Base64.urlsafe_encode64(sha256.digest) end @@ -270,6 +282,8 @@ class UsersController < ApplicationController private def save_new_user(email_hmac) + new_user = session.delete(:new_user) + self.current_user = User.new(new_user) if check_signup_allowed(current_user.email) current_user.data_public = true current_user.description = "" if current_user.description.nil?