# 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
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
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)
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
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
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?