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

109 lines
2.8 KiB
Ruby
Raw Normal View History

2015-04-30 17:06:18 +00:00
class ProfilesController < Profiles::ApplicationController
2013-02-25 20:51:15 +00:00
include ActionView::Helpers::SanitizeHelper
before_action :user
before_action :authorize_change_username!, only: :update_username
skip_before_action :require_email, only: [:show, :update]
2011-10-08 21:36:38 +00:00
def show
end
def update
user_params.except!(:email) if @user.external_email?
respond_to do |format|
status = Users::UpdateService.new(current_user, @user, user_params).execute
if status[:success]
2016-03-17 14:41:38 +00:00
message = "Profile was successfully updated"
2016-03-17 14:41:38 +00:00
format.html { redirect_back_or_default(default: { action: 'show' }, options: { notice: message }) }
format.json { render json: { message: message } }
else
format.html { redirect_back_or_default(default: { action: 'show' }, options: { alert: status[:message] }) }
format.json { render json: status }
2016-03-17 14:41:38 +00:00
end
end
end
2011-11-15 13:08:20 +00:00
def reset_private_token
Users::UpdateService.new(current_user, @user).execute!(skip_authorization: true) do |user|
user.reset_authentication_token!
end
flash[:notice] = "Private token was successfully reset"
redirect_to profile_account_path
end
def reset_incoming_email_token
Users::UpdateService.new(current_user, @user).execute!(skip_authorization: true) do |user|
user.reset_incoming_email_token!
end
flash[:notice] = "Incoming email token was successfully reset"
2013-10-09 13:37:37 +00:00
redirect_to profile_account_path
2011-11-15 13:08:20 +00:00
end
2012-07-31 05:32:49 +00:00
def reset_rss_token
Users::UpdateService.new(current_user, @user).execute!(skip_authorization: true) do |user|
user.reset_rss_token!
end
flash[:notice] = "RSS token was successfully reset"
redirect_to profile_account_path
end
2015-07-03 11:54:50 +00:00
def audit_log
2017-06-21 13:48:12 +00:00
@events = AuditEvent.where(entity_type: "User", entity_id: current_user.id)
.order("created_at DESC")
.page(params[:page])
2012-09-14 16:13:25 +00:00
end
def update_username
if @user.update_attributes(username: user_params[:username])
options = { notice: "Username successfully changed" }
else
message = @user.errors.full_messages.uniq.join('. ')
options = { alert: "Username change failed - #{message}" }
end
redirect_back_or_default(default: { action: 'show' }, options: options)
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_username!
return render_404 unless @user.can_change_username?
end
def user_params
@user_params ||= params.require(:user).permit(
:avatar,
:bio,
:email,
:hide_no_password,
:hide_no_ssh_key,
:hide_project_limit,
:linkedin,
:location,
:name,
:password,
:password_confirmation,
:public_email,
:skype,
:twitter,
:username,
:website_url,
:organization,
:preferred_language
)
end
2011-10-08 21:36:38 +00:00
end