2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-05 08:04:23 +08:00
|
|
|
class ThemeSetting < ActiveRecord::Base
|
|
|
|
belongs_to :theme
|
|
|
|
|
2022-06-09 07:24:30 +08:00
|
|
|
has_many :upload_references, as: :target, dependent: :destroy
|
|
|
|
|
2024-02-08 10:20:59 +08:00
|
|
|
TYPES_ENUM =
|
|
|
|
Enum.new(integer: 0, float: 1, string: 2, bool: 3, list: 4, enum: 5, upload: 6, objects: 7)
|
|
|
|
|
2018-03-05 08:04:23 +08:00
|
|
|
validates_presence_of :name, :theme
|
2024-02-08 10:20:59 +08:00
|
|
|
before_validation :objects_type_enabled
|
|
|
|
validates :data_type, inclusion: { in: TYPES_ENUM.values }
|
2018-03-05 08:04:23 +08:00
|
|
|
validates :name, length: { maximum: 255 }
|
|
|
|
|
2019-04-12 18:36:08 +08:00
|
|
|
after_save :clear_settings_cache
|
|
|
|
after_destroy :clear_settings_cache
|
|
|
|
|
2022-06-09 07:24:30 +08:00
|
|
|
after_save do
|
|
|
|
if self.data_type == ThemeSetting.types[:upload] && saved_change_to_value?
|
|
|
|
UploadReference.ensure_exist!(upload_ids: [self.value], target: self)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-04-12 18:36:08 +08:00
|
|
|
def clear_settings_cache
|
|
|
|
# All necessary caches will be cleared on next ensure_baked!
|
|
|
|
theme.settings_field&.invalidate_baked!
|
2018-03-05 08:04:23 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.types
|
2024-02-08 10:20:59 +08:00
|
|
|
TYPES_ENUM
|
2018-03-05 08:04:23 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.guess_type(value)
|
|
|
|
case value
|
|
|
|
when Integer
|
|
|
|
types[:integer]
|
|
|
|
when Float
|
|
|
|
types[:float]
|
|
|
|
when String
|
|
|
|
types[:string]
|
|
|
|
when TrueClass, FalseClass
|
|
|
|
types[:bool]
|
|
|
|
end
|
|
|
|
end
|
2024-02-08 10:20:59 +08:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def objects_type_enabled
|
|
|
|
if self.data_type == ThemeSetting.types[:objects] &&
|
|
|
|
!SiteSetting.experimental_objects_type_for_theme_settings
|
|
|
|
self.data_type = nil
|
|
|
|
end
|
|
|
|
end
|
2018-03-05 08:04:23 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: theme_settings
|
|
|
|
#
|
2019-05-03 06:34:12 +08:00
|
|
|
# id :bigint not null, primary key
|
2018-03-05 08:04:23 +08:00
|
|
|
# name :string(255) not null
|
|
|
|
# data_type :integer not null
|
2018-03-05 08:06:45 +08:00
|
|
|
# value :text
|
2018-03-05 08:04:23 +08:00
|
|
|
# theme_id :integer not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2024-02-08 10:20:59 +08:00
|
|
|
# json_value :jsonb
|
2018-03-05 08:04:23 +08:00
|
|
|
#
|