gitlab-org--gitlab-foss/app/controllers/profiles_controller.rb

87 lines
1.8 KiB
Ruby
Raw Normal View History

class ProfilesController < ApplicationController
2013-02-25 20:51:15 +00:00
include ActionView::Helpers::SanitizeHelper
2012-07-31 05:32:49 +00:00
before_filter :user
before_filter :authorize_change_password!, only: :update_password
before_filter :authorize_change_username!, only: :update_username
layout 'profile'
2012-07-31 05:32:49 +00:00
2011-10-08 21:36:38 +00:00
def show
end
def design
end
def account
end
def update
2013-07-10 10:48:03 +00:00
if @user.update_attributes(params[:user])
flash[:notice] = "Profile was successfully updated"
else
flash[:alert] = "Failed to update profile"
end
respond_to do |format|
format.html { redirect_to :back }
format.js
end
end
def token
end
def update_password
2013-09-24 19:12:48 +00:00
password_attributes = params[:user].select do |key, value|
%w(password password_confirmation).include?(key.to_s)
end
unless @user.valid_password?(params[:user][:current_password])
redirect_to account_profile_path, alert: 'You must provide a valid current password'
return
end
2011-10-08 21:36:38 +00:00
2013-09-24 19:12:48 +00:00
if @user.update_attributes(password_attributes)
2011-10-08 21:36:38 +00:00
flash[:notice] = "Password was successfully updated. Please login with it"
redirect_to new_user_session_path
else
render 'account'
2011-10-08 21:36:38 +00:00
end
end
2011-11-15 13:08:20 +00:00
def reset_private_token
if current_user.reset_authentication_token!
flash[:notice] = "Token was successfully updated"
end
redirect_to account_profile_path
2011-11-15 13:08:20 +00:00
end
2012-07-31 05:32:49 +00:00
2012-09-14 16:13:25 +00:00
def history
@events = current_user.recent_events.page(params[:page]).per(20)
end
def update_username
@user.update_attributes(username: params[:user][:username])
respond_to do |format|
format.js
end
end
2012-09-14 16:13:25 +00:00
private
2012-07-31 05:32:49 +00:00
def user
@user = current_user
end
2013-02-25 20:51:15 +00:00
def authorize_change_password!
return render_404 if @user.ldap_user?
end
def authorize_change_username!
return render_404 unless @user.can_change_username?
end
2011-10-08 21:36:38 +00:00
end