2017-07-12 01:24:04 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Form::AdminSettings
|
|
|
|
include ActiveModel::Model
|
|
|
|
|
2019-03-23 13:07:04 +00:00
|
|
|
KEYS = %i(
|
|
|
|
site_contact_username
|
|
|
|
site_contact_email
|
|
|
|
site_title
|
|
|
|
site_short_description
|
|
|
|
site_extended_description
|
|
|
|
site_terms
|
|
|
|
registrations_mode
|
|
|
|
closed_registrations_message
|
|
|
|
timeline_preview
|
|
|
|
bootstrap_timeline_accounts
|
|
|
|
theme
|
|
|
|
activity_api_enabled
|
|
|
|
peers_api_enabled
|
|
|
|
preview_sensitive_media
|
|
|
|
custom_css
|
|
|
|
profile_directory
|
2019-03-31 03:03:56 +00:00
|
|
|
thumbnail
|
|
|
|
mascot
|
2019-08-06 15:57:52 +00:00
|
|
|
trends
|
2023-01-18 15:43:58 +00:00
|
|
|
trends_as_landing_page
|
2019-10-08 22:30:15 +00:00
|
|
|
trendable_by_default
|
2019-08-19 09:35:48 +00:00
|
|
|
show_domain_blocks
|
|
|
|
show_domain_blocks_rationale
|
2019-09-11 06:44:58 +00:00
|
|
|
noindex
|
2020-12-14 09:03:09 +00:00
|
|
|
require_invite_text
|
2022-09-27 01:08:19 +00:00
|
|
|
media_cache_retention_period
|
|
|
|
content_cache_retention_period
|
|
|
|
backups_retention_period
|
2023-02-04 03:56:06 +00:00
|
|
|
status_page_url
|
2019-03-23 13:07:04 +00:00
|
|
|
).freeze
|
|
|
|
|
2022-10-26 20:14:07 +00:00
|
|
|
INTEGER_KEYS = %i(
|
|
|
|
media_cache_retention_period
|
|
|
|
content_cache_retention_period
|
|
|
|
backups_retention_period
|
|
|
|
).freeze
|
|
|
|
|
2019-03-23 13:07:04 +00:00
|
|
|
BOOLEAN_KEYS = %i(
|
|
|
|
timeline_preview
|
|
|
|
activity_api_enabled
|
|
|
|
peers_api_enabled
|
|
|
|
preview_sensitive_media
|
|
|
|
profile_directory
|
2019-08-06 15:57:52 +00:00
|
|
|
trends
|
2023-01-18 15:43:58 +00:00
|
|
|
trends_as_landing_page
|
2019-10-08 22:30:15 +00:00
|
|
|
trendable_by_default
|
2019-09-11 06:44:58 +00:00
|
|
|
noindex
|
2020-12-14 09:03:09 +00:00
|
|
|
require_invite_text
|
2019-03-23 13:07:04 +00:00
|
|
|
).freeze
|
|
|
|
|
|
|
|
UPLOAD_KEYS = %i(
|
|
|
|
thumbnail
|
|
|
|
mascot
|
|
|
|
).freeze
|
|
|
|
|
|
|
|
attr_accessor(*KEYS)
|
|
|
|
|
2022-10-22 09:44:41 +00:00
|
|
|
validates :registrations_mode, inclusion: { in: %w(open approved none) }, if: -> { defined?(@registrations_mode) }
|
|
|
|
validates :site_contact_email, :site_contact_username, presence: true, if: -> { defined?(@site_contact_username) || defined?(@site_contact_email) }
|
|
|
|
validates :site_contact_username, existing_username: true, if: -> { defined?(@site_contact_username) }
|
|
|
|
validates :bootstrap_timeline_accounts, existing_username: { multiple: true }, if: -> { defined?(@bootstrap_timeline_accounts) }
|
|
|
|
validates :show_domain_blocks, inclusion: { in: %w(disabled users all) }, if: -> { defined?(@show_domain_blocks) }
|
|
|
|
validates :show_domain_blocks_rationale, inclusion: { in: %w(disabled users all) }, if: -> { defined?(@show_domain_blocks_rationale) }
|
|
|
|
validates :media_cache_retention_period, :content_cache_retention_period, :backups_retention_period, numericality: { only_integer: true }, allow_blank: true, if: -> { defined?(@media_cache_retention_period) || defined?(@content_cache_retention_period) || defined?(@backups_retention_period) }
|
|
|
|
validates :site_short_description, length: { maximum: 200 }, if: -> { defined?(@site_short_description) }
|
2023-02-10 09:20:43 +00:00
|
|
|
validates :status_page_url, url: true, allow_blank: true
|
2023-01-05 12:42:03 +00:00
|
|
|
validate :validate_site_uploads
|
2019-03-23 13:07:04 +00:00
|
|
|
|
2022-10-22 09:44:41 +00:00
|
|
|
KEYS.each do |key|
|
|
|
|
define_method(key) do
|
|
|
|
return instance_variable_get("@#{key}") if instance_variable_defined?("@#{key}")
|
|
|
|
|
2023-02-18 22:09:40 +00:00
|
|
|
stored_value = if UPLOAD_KEYS.include?(key)
|
|
|
|
SiteUpload.where(var: key).first_or_initialize(var: key)
|
|
|
|
else
|
|
|
|
Setting.public_send(key)
|
|
|
|
end
|
2022-10-22 09:44:41 +00:00
|
|
|
|
|
|
|
instance_variable_set("@#{key}", stored_value)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
UPLOAD_KEYS.each do |key|
|
|
|
|
define_method("#{key}=") do |file|
|
|
|
|
value = public_send(key)
|
|
|
|
value.file = file
|
2023-01-05 12:42:03 +00:00
|
|
|
rescue Mastodon::DimensionsValidationError => e
|
|
|
|
errors.add(key.to_sym, e.message)
|
2022-10-22 09:44:41 +00:00
|
|
|
end
|
2019-03-23 13:07:04 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def save
|
2023-01-05 12:42:03 +00:00
|
|
|
# NOTE: Annoyingly, files are processed and can error out before
|
|
|
|
# validations are called, and `valid?` clears errors…
|
|
|
|
# So for now, return early if errors aren't empty.
|
|
|
|
return false unless errors.empty? && valid?
|
2019-03-23 13:07:04 +00:00
|
|
|
|
|
|
|
KEYS.each do |key|
|
2022-10-22 09:44:41 +00:00
|
|
|
next unless instance_variable_defined?("@#{key}")
|
2019-03-23 13:07:04 +00:00
|
|
|
|
2022-10-22 09:44:41 +00:00
|
|
|
if UPLOAD_KEYS.include?(key)
|
|
|
|
public_send(key).save
|
2019-03-23 13:07:04 +00:00
|
|
|
else
|
|
|
|
setting = Setting.where(var: key).first_or_initialize(var: key)
|
2022-10-22 09:44:41 +00:00
|
|
|
setting.update(value: typecast_value(key, instance_variable_get("@#{key}")))
|
2019-03-23 13:07:04 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def typecast_value(key, value)
|
|
|
|
if BOOLEAN_KEYS.include?(key)
|
|
|
|
value == '1'
|
2022-10-26 20:14:07 +00:00
|
|
|
elsif INTEGER_KEYS.include?(key)
|
|
|
|
value.blank? ? value : Integer(value)
|
2019-03-23 13:07:04 +00:00
|
|
|
else
|
|
|
|
value
|
|
|
|
end
|
|
|
|
end
|
2023-01-05 12:42:03 +00:00
|
|
|
|
|
|
|
def validate_site_uploads
|
|
|
|
UPLOAD_KEYS.each do |key|
|
|
|
|
next unless instance_variable_defined?("@#{key}")
|
2023-02-20 05:58:28 +00:00
|
|
|
|
2023-01-05 12:42:03 +00:00
|
|
|
upload = instance_variable_get("@#{key}")
|
|
|
|
next if upload.valid?
|
|
|
|
|
|
|
|
upload.errors.each do |error|
|
|
|
|
errors.import(error, attribute: key)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-07-12 01:24:04 +00:00
|
|
|
end
|