]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/user_controller.rb
Make OpenID authentication work with the latest plugin
[rails.git] / app / controllers / user_controller.rb
index 0144f69b61c2ba58c450bbe95fe656fef7b3a0ee..f2d93d29ea9e2ad9cc29280cd5db9077f6a706f1 100644 (file)
@@ -18,55 +18,81 @@ class UserController < ApplicationController
 
   cache_sweeper :user_sweeper, :only => [:account, :set_status, :delete]
 
-  def save
+  def terms
     @title = t 'user.new.title'
+    @legale = params[:legale] || OSM.IPToCountry(request.remote_ip) || APP_CONFIG['default_legale']
+    @text = OSM.legal_text_for_country(@legale)
 
-    if Acl.find_by_address(request.remote_ip, :conditions => {:k => "no_account_creation"})
-      render :action => 'new'
-    else
-      if params[:open_id_complete] 
-        # The redirect from the OpenID provider reenters here
-        # again and we need to pass the parameters through to
-        # the open_id_authentication function
-        @user = session.delete(:new_user)
-        openid_verify(nil, @user) do |user|
-          create_user(user)
-        end
-      else
-        session[:referer] = params[:referer]
+    if request.xhr?
+      render :update do |page|
+        page.replace_html "contributorTerms", :partial => "terms"
+      end
+    elsif params[:user]
+      session[:referer] = params[:referer]
 
-        @user = User.new(params[:user])
+      @user = User.new(params[:user])
 
-        @user.status = "pending"
-        @user.data_public = true
-        @user.description = "" if @user.description.nil?
-        @user.creation_ip = request.remote_ip
-        @user.languages = request.user_preferred_languages
+      if params[:user][:openid_url] and @user.pass_crypt.empty?
+        # We are creating an account with OpenID and no password
+        # was specified so create a random one
+        @user.pass_crypt = ActiveSupport::SecureRandom.base64(16) 
+        @user.pass_crypt_confirmation = @user.pass_crypt 
+      end
 
-        if params[:user][:openid_url] and @user.pass_crypt.empty?
-          # We are creating an account with OpenID and no password
-          # was specified so create a random one
-          @user.pass_crypt = ActiveSupport::SecureRandom.base64(16) 
-          @user.pass_crypt_confirmation = @user.pass_crypt 
+      if @user.valid?
+        if params[:user][:openid_url].nil? or
+            params[:user][:openid_url].empty?
+          # No OpenID so just move on to the terms
+          render :action => 'terms'
+        else
+          # Verify OpenID before moving on
+          session[:new_user] = @user
+          openid_verify(params[:user][:openid_url], @user)
         end
+      else
+        # Something is wrong, so rerender the form
+        render :action => 'new'
+      end
+    elsif using_open_id?
+      # The redirect from the OpenID provider reenters here
+      # again and we need to pass the parameters through to
+      # the open_id_authentication function
+      @user = session.delete(:new_user)
 
-        if @user.valid?
-          if params[:user][:openid_url].nil? or
-             params[:user][:openid_url].empty?
-            # No OpenID so just save
-            create_user(@user)
-          else
-            # Verify OpenID before saving
-            session[:new_user] = @user
-            openid_verify(params[:user][:openid_url], @user)
-          end
-        end
+      openid_verify(nil, @user) do |user|
       end
 
-      # Render the signup page unless we have already been
-      # redirected or have managed to save the user
-      if response.location.nil? and  @user.new_record?
-        render :action => "new"
+      if @user.openid_url.nil? or @user.invalid?
+        render :action => 'new'
+      else
+        render :action => 'terms'
+      end
+    end
+  end
+
+  def save
+    @title = t 'user.new.title'
+
+    if Acl.find_by_address(request.remote_ip, :conditions => {:k => "no_account_creation"})
+      render :action => 'new'
+    elsif params[:decline]
+      redirect_to t('user.terms.declined')
+    else
+      @user = User.new(params[:user])
+
+      @user.status = "pending"
+      @user.data_public = true
+      @user.description = "" if @user.description.nil?
+      @user.creation_ip = request.remote_ip
+      @user.languages = request.user_preferred_languages
+      @user.terms_agreed = Time.now.getutc
+
+      if @user.save
+        flash[:notice] = t 'user.new.flash create success message'
+        Notifier.deliver_signup_confirm(@user, @user.tokens.create(:referer => session.delete(:referer)))
+        redirect_to :action => 'login'
+      else
+        render :action => 'new'
       end
     end
   end
@@ -75,15 +101,7 @@ class UserController < ApplicationController
     @title = t 'user.account.title'
     @tokens = @user.oauth_tokens.find :all, :conditions => 'oauth_tokens.invalidated_at is null and oauth_tokens.authorized_at is not null'
 
-    if params[:open_id_complete]
-      # The redirect from the OpenID provider reenters here
-      # again and we need to pass the parameters through to
-      # the open_id_authentication function
-      @user = session.delete(:new_user)
-      openid_verify(nil, @user) do |user|
-        update_user(user)
-      end
-    elsif params[:user] and params[:user][:display_name] and params[:user][:description]
+    if params[:user] and params[:user][:display_name] and params[:user][:description]
       @user.display_name = params[:user][:display_name]
       @user.new_email = params[:user][:new_email]
 
@@ -115,6 +133,14 @@ class UserController < ApplicationController
       else
         update_user(@user)
       end
+    elsif using_open_id?
+      # The redirect from the OpenID provider reenters here
+      # again and we need to pass the parameters through to
+      # the open_id_authentication function
+      @user = session.delete(:new_user)
+      openid_verify(nil, @user) do |user|
+        update_user(user)
+      end
     end
   end
 
@@ -184,11 +210,11 @@ class UserController < ApplicationController
   end
 
   def login
-    if request.post?
+    if params[:username] or using_open_id?
       session[:remember_me] ||= params[:remember_me]
       session[:referer] ||= params[:referer]
 
-      if using_open_id?(params[:openid_url])
+      if using_open_id?
         openid_authentication(params[:openid_url])
       else
         password_authentication(params[:username], params[:password])
@@ -394,7 +420,7 @@ private
     end
 
     # Start the authentication
-    authenticate_with_open_id(openid_url, :optional => optional) do |result, identity_url, registration|
+    authenticate_with_open_id(openid_expand_url(openid_url), :optional => optional) do |result, identity_url, registration|
       if result.successful?
         # We need to use the openid url passed back from the OpenID provider
         # rather than the one supplied by the user, as these can be different.
@@ -417,12 +443,7 @@ private
           redirect_to :controller => 'user', :action => 'new', :nickname => registration['nickname'], :email => registration['email'], :openid => identity_url
         end
       elsif result.missing?
-        # Try and apply some heuristics to make common cases more user friendly
-        if openid_url = openid_alternate_url(openid_url)
-          openid_authentication(openid_url)
-        else
-          failed_login t('user.login.openid missing provider')
-        end
+        failed_login t('user.login.openid missing provider')
       elsif result.invalid?
         failed_login t('user.login.openid invalid')
       else
@@ -436,7 +457,7 @@ private
   def openid_verify(openid_url, user)
     user.openid_url = openid_url
 
-    authenticate_with_open_id(openid_url) do |result, identity_url|
+    authenticate_with_open_id(openid_expand_url(openid_url)) do |result, identity_url|
       if result.successful?
         # We need to use the openid url passed back from the OpenID provider
         # rather than the one supplied by the user, as these can be different.
@@ -447,12 +468,7 @@ private
         user.openid_url = identity_url
         yield user
       elsif result.missing?
-        # Try and apply some heuristics to make common cases more user friendly
-        if openid_url = openid_alternate_url(openid_url)
-          openid_verify(openid_url, user)
-        else
-          flash.now[:error] = t 'user.login.openid missing provider'
-        end
+        flash.now[:error] = t 'user.login.openid missing provider'
       elsif result.invalid?
         flash.now[:error] = t 'user.login.openid invalid'
       else
@@ -462,17 +478,19 @@ private
   end
 
   ##
-  # special case some common OpenID providers by applying heuristics
-  # to try and come up with an alternate URL if the supplied one fails
-  def openid_alternate_url(openid_url)
-    # Special case gmail.com as it is potentially a popular OpenID
-    # provider and, unlike yahoo.com, where it works automatically, Google
-    # have hidden their OpenID endpoint somewhere obscure this making it
-    # somewhat less user friendly.
-    if openid_url.match(/(.*)gmail.com(\/?)$/) or openid_url.match(/(.*)googlemail.com(\/?)$/)
+  # special case some common OpenID providers by applying heuristics to
+  # try and come up with the correct URL based on what the user entered
+  def openid_expand_url(openid_url)
+    if openid_url.nil?
+      return nil
+    elsif openid_url.match(/(.*)gmail.com(\/?)$/) or openid_url.match(/(.*)googlemail.com(\/?)$/)
+      # Special case gmail.com as it is potentially a popular OpenID
+      # provider and, unlike yahoo.com, where it works automatically, Google
+      # have hidden their OpenID endpoint somewhere obscure this making it
+      # somewhat less user friendly.
       return 'https://www.google.com/accounts/o8/id'
     else
-      return nil
+      return openid_url
     end
   end  
 
@@ -506,18 +524,6 @@ private
     session.delete(:referer)
   end
 
-  ##
-  # save a new user
-  def create_user(user)
-    if user.save
-      flash[:notice] = t 'user.new.flash create success message'
-
-      Notifier.deliver_signup_confirm(user, user.tokens.create(:referer => session.delete(:referer)))
-
-      redirect_to :action => 'login'
-    end
-  end
-
   ##
   # update a user's details
   def update_user(user)