X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/d320673cc7bc8d5e79cea3c5ea5f9005129a63e6..e48cbc6a5f54a0e18dc581ccbac3b13284313125:/app/controllers/user_controller.rb?ds=inline
diff --git a/app/controllers/user_controller.rb b/app/controllers/user_controller.rb
index a9b91098f..e998e83c6 100644
--- a/app/controllers/user_controller.rb
+++ b/app/controllers/user_controller.rb
@@ -2,8 +2,8 @@ class UserController < ApplicationController
layout 'site'
before_filter :authorize, :only => [:api_details, :api_gpx_files]
- before_filter :authorize_web, :only => [:account, :go_public, :view, :diary, :make_friend, :remove_friend]
- before_filter :require_user, :only => [:set_home, :account, :go_public, :make_friend, :remove_friend]
+ before_filter :authorize_web, :only => [:account, :go_public, :view, :diary, :make_friend, :remove_friend, :upload_image]
+ before_filter :require_user, :only => [:set_home, :account, :go_public, :make_friend, :remove_friend, :upload_image]
filter_parameter_logging :password, :pass_crypt, :pass_crypt_confirmation
@@ -11,6 +11,8 @@ class UserController < ApplicationController
@title = 'create account'
@user = User.new(params[:user])
+ @user.data_public = true
+
if @user.save
token = @user.tokens.create
flash[:notice] = "User was successfully created. Check your email for a confirmation note, and you\'ll be mapping in no time :-)
Please note that you won't be able to login until you've received and confirmed your email address."
@@ -105,9 +107,9 @@ class UserController < ApplicationController
def login
@title = 'login'
if params[:user]
- email = params[:user][:email]
+ email_or_display_name = params[:user][:email]
pass = params[:user][:password]
- user = User.authenticate(:username => email, :password => pass)
+ user = User.authenticate(:username => email_or_display_name, :password => pass)
if user
session[:user] = user.id
if params[:referer]
@@ -116,7 +118,7 @@ class UserController < ApplicationController
redirect_to :controller => 'site', :action => 'index'
end
return
- elsif User.authenticate(:username => email, :password => pass, :invalid => true)
+ elsif User.authenticate(:username => email_or_display_name, :password => pass, :inactive => true)
flash[:notice] = "Sorry, your account is not active yet.
Please click on the link in the account confirmation email to activate your account."
else
flash[:notice] = "Sorry, couldn't log in with those details."
@@ -155,6 +157,12 @@ class UserController < ApplicationController
end
end
+ def upload_image
+ @user.image = params[:user][:image]
+ @user.save!
+ redirect_to :controller => 'user', :action => 'view', :display_name => @user.display_name
+ end
+
def api_details
render :text => @user.to_xml.to_s, :content_type => "text/xml"
end
@@ -173,7 +181,8 @@ class UserController < ApplicationController
if @this_user
@title = @this_user.display_name
else
- render :nothing => true, :status => :not_found
+ @not_found_user = params[:display_name]
+ render :action => 'no_such_user', :status => :not_found
end
end