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

86 lines
1.9 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
2015-04-26 12:48:37 +05:30
def applications
@applications = current_user.oauth_applications
@authorized_tokens = current_user.oauth_authorized_tokens
2015-09-11 14:41:01 +05:30
@authorized_anonymous_tokens = @authorized_tokens.reject(&:application)
@authorized_apps = @authorized_tokens.map(&:application).uniq - [nil]
2015-04-26 12:48:37 +05:30
end
2014-09-02 18:07:02 +05:30
def update
user_params.except!(:email) if @user.ldap_user?
if @user.update_attributes(user_params)
flash[:notice] = "Profile was successfully updated"
else
2015-04-26 12:48:37 +05:30
messages = @user.errors.full_messages.uniq.join('. ')
flash[:alert] = "Failed to update profile. #{messages}"
2014-09-02 18:07:02 +05:30
end
respond_to do |format|
2015-10-24 18:46:33 +05:30
format.html { redirect_back_or_default(default: { action: 'show' }) }
2014-09-02 18:07:02 +05:30
end
end
def reset_private_token
if current_user.reset_authentication_token!
flash[:notice] = "Token was successfully updated"
end
redirect_to profile_account_path
end
2015-09-11 14:41:01 +05:30
def audit_log
@events = AuditEvent.where(entity_type: "User", entity_id: current_user.id).
order("created_at DESC").
page(params[:page]).
per(PER_PAGE)
2014-09-02 18:07:02 +05:30
end
def update_username
@user.update_attributes(username: user_params[:username])
respond_to do |format|
format.js
end
end
private
def user
@user = current_user
end
def authorize_change_username!
return render_404 unless @user.can_change_username?
end
def user_params
params.require(:user).permit(
2015-09-11 14:41:01 +05:30
:avatar,
:bio,
:email,
:hide_no_password,
:hide_no_ssh_key,
:linkedin,
:location,
:name,
:password,
:password_confirmation,
:public_email,
:skype,
:twitter,
:username,
:website_url
2014-09-02 18:07:02 +05:30
)
end
end