2016-11-15 16:56:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-14 02:28:49 +02:00
|
|
|
class Settings::ProfilesController < ApplicationController
|
2016-12-22 21:34:19 +01:00
|
|
|
include ObfuscateFilename
|
|
|
|
|
2017-01-28 03:56:10 +01:00
|
|
|
layout 'admin'
|
2016-09-29 21:28:21 +02:00
|
|
|
|
2016-03-12 20:47:22 +01:00
|
|
|
before_action :authenticate_user!
|
|
|
|
before_action :set_account
|
2018-10-25 00:10:01 +02:00
|
|
|
before_action :set_body_classes
|
2016-03-12 20:47:22 +01:00
|
|
|
|
2016-11-24 00:31:38 +01:00
|
|
|
obfuscate_filename [:account, :avatar]
|
|
|
|
obfuscate_filename [:account, :header]
|
|
|
|
|
2018-04-14 12:41:08 +02:00
|
|
|
def show
|
|
|
|
@account.build_fields
|
|
|
|
end
|
2016-03-12 20:47:22 +01:00
|
|
|
|
|
|
|
def update
|
2017-08-26 12:40:03 +02:00
|
|
|
if UpdateAccountService.new.call(@account, account_params)
|
2017-08-13 00:44:41 +02:00
|
|
|
ActivityPub::UpdateDistributionWorker.perform_async(@account.id)
|
2016-11-15 23:02:57 +01:00
|
|
|
redirect_to settings_profile_path, notice: I18n.t('generic.changes_saved_msg')
|
2016-03-12 20:47:22 +01:00
|
|
|
else
|
2018-05-17 13:00:56 +02:00
|
|
|
@account.build_fields
|
2017-04-19 15:37:42 +02:00
|
|
|
render :show
|
2016-03-12 20:47:22 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def account_params
|
2018-05-07 09:31:07 +02:00
|
|
|
params.require(:account).permit(:display_name, :note, :avatar, :header, :locked, :bot, fields_attributes: [:name, :value])
|
2016-03-12 20:47:22 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def set_account
|
|
|
|
@account = current_user.account
|
|
|
|
end
|
2018-10-25 00:10:01 +02:00
|
|
|
|
|
|
|
def set_body_classes
|
|
|
|
@body_classes = 'admin'
|
|
|
|
end
|
2016-03-12 20:47:22 +01:00
|
|
|
end
|