51 lines
1.4 KiB
Ruby
51 lines
1.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class Settings::ProfilesController < Settings::BaseController
|
|
include ObfuscateFilename
|
|
|
|
layout 'admin'
|
|
|
|
before_action :authenticate_user!
|
|
before_action :set_account
|
|
|
|
obfuscate_filename [:account, :avatar]
|
|
obfuscate_filename [:account, :header]
|
|
|
|
def show
|
|
@account.build_fields
|
|
end
|
|
|
|
def update
|
|
# if verified and display_name is different, return flash error and redirect back
|
|
if !@account.is_pro && params[:account][:username] && @account.username != params[:account][:username]
|
|
flash[:alert] = 'Unable to change username for your account. You are not GabPRO'
|
|
redirect_to settings_profile_path
|
|
else
|
|
if @account.username != params[:account][:username]
|
|
AccountUsernameChange.create!(
|
|
account: @account,
|
|
from_username: @account.username,
|
|
to_username: params[:account][:username] || ''
|
|
)
|
|
end
|
|
|
|
if UpdateAccountService.new.call(@account, account_params)
|
|
redirect_to settings_profile_path, notice: I18n.t('generic.changes_saved_msg')
|
|
else
|
|
@account.build_fields
|
|
render :show
|
|
end
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def account_params
|
|
params.require(:account).permit(:display_name, :username, :note, :avatar, :header, :locked, :bot, :discoverable, fields_attributes: [:name, :value])
|
|
end
|
|
|
|
def set_account
|
|
@account = current_account
|
|
end
|
|
end
|