debian-mirror-gitlab/app/controllers/profiles_controller.rb

110 lines
2.7 KiB
Ruby
Raw Normal View History

2015-09-11 14:41:01 +05:30
class ProfilesController < Profiles::ApplicationController
2014-09-02 18:07:02 +05:30
include ActionView::Helpers::SanitizeHelper
2015-09-11 14:41:01 +05:30
before_action :user
before_action :authorize_change_username!, only: :update_username
skip_before_action :require_email, only: [:show, :update]
2014-09-02 18:07:02 +05:30
def show
end
def update
2017-09-10 17:25:29 +05:30
user_params.except!(:email) if @user.external_email?
2014-09-02 18:07:02 +05:30
respond_to do |format|
2017-09-10 17:25:29 +05:30
result = Users::UpdateService.new(@user, user_params).execute
if result[:status] == :success
2016-06-02 11:05:42 +05:30
message = "Profile was successfully updated"
2017-09-10 17:25:29 +05:30
2016-06-02 11:05:42 +05:30
format.html { redirect_back_or_default(default: { action: 'show' }, options: { notice: message }) }
format.json { render json: { message: message } }
else
2017-09-10 17:25:29 +05:30
format.html { redirect_back_or_default(default: { action: 'show' }, options: { alert: result[:message] }) }
format.json { render json: result }
2016-06-02 11:05:42 +05:30
end
2014-09-02 18:07:02 +05:30
end
end
def reset_private_token
2017-09-10 17:25:29 +05:30
Users::UpdateService.new(@user).execute! do |user|
user.reset_authentication_token!
2017-08-17 22:00:37 +05:30
end
2017-09-10 17:25:29 +05:30
flash[:notice] = "Private token was successfully reset"
2017-08-17 22:00:37 +05:30
redirect_to profile_account_path
end
def reset_incoming_email_token
2017-09-10 17:25:29 +05:30
Users::UpdateService.new(@user).execute! do |user|
user.reset_incoming_email_token!
end
flash[:notice] = "Incoming email token was successfully reset"
redirect_to profile_account_path
end
def reset_rss_token
Users::UpdateService.new(@user).execute! do |user|
user.reset_rss_token!
2014-09-02 18:07:02 +05:30
end
2017-09-10 17:25:29 +05:30
flash[:notice] = "RSS token was successfully reset"
2014-09-02 18:07:02 +05:30
redirect_to profile_account_path
end
2015-09-11 14:41:01 +05:30
def audit_log
2017-09-10 17:25:29 +05:30
@events = AuditEvent.where(entity_type: "User", entity_id: current_user.id)
.order("created_at DESC")
.page(params[:page])
2014-09-02 18:07:02 +05:30
end
def update_username
2017-09-10 17:25:29 +05:30
result = Users::UpdateService.new(@user, username: user_params[:username]).execute
options = if result[:status] == :success
{ notice: "Username successfully changed" }
else
{ alert: "Username change failed - #{result[:message]}" }
end
2017-08-17 22:00:37 +05:30
redirect_back_or_default(default: { action: 'show' }, options: options)
2014-09-02 18:07:02 +05:30
end
private
def user
@user = current_user
end
def authorize_change_username!
return render_404 unless @user.can_change_username?
end
def user_params
2017-09-10 17:25:29 +05:30
@user_params ||= params.require(:user).permit(
2015-09-11 14:41:01 +05:30
:avatar,
:bio,
:email,
:hide_no_password,
:hide_no_ssh_key,
2015-12-23 02:04:40 +05:30
:hide_project_limit,
2015-09-11 14:41:01 +05:30
:linkedin,
:location,
:name,
:password,
:password_confirmation,
:public_email,
:skype,
:twitter,
:username,
2016-11-03 12:29:30 +05:30
:website_url,
2017-08-17 22:00:37 +05:30
:organization,
:preferred_language
2014-09-02 18:07:02 +05:30
)
end
end