124 lines
3.6 KiB
Ruby
124 lines
3.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class Appearance < MainClusterwide::ApplicationRecord
|
|
include CacheableAttributes
|
|
include CacheMarkdownField
|
|
include WithUploads
|
|
|
|
ALLOWED_PWA_ICON_SCALER_WIDTHS = [192, 512].freeze
|
|
|
|
attribute :title, default: ''
|
|
attribute :description, default: ''
|
|
attribute :pwa_name, default: ''
|
|
attribute :pwa_short_name, default: ''
|
|
attribute :pwa_description, default: ''
|
|
attribute :new_project_guidelines, default: ''
|
|
attribute :profile_image_guidelines, default: ''
|
|
attribute :header_message, default: ''
|
|
attribute :footer_message, default: ''
|
|
attribute :message_background_color, default: '#E75E40'
|
|
attribute :message_font_color, default: '#FFFFFF'
|
|
attribute :email_header_and_footer_enabled, default: false
|
|
|
|
cache_markdown_field :description
|
|
cache_markdown_field :new_project_guidelines
|
|
cache_markdown_field :profile_image_guidelines
|
|
cache_markdown_field :header_message, pipeline: :broadcast_message
|
|
cache_markdown_field :footer_message, pipeline: :broadcast_message
|
|
|
|
validates :pwa_name,
|
|
length: {
|
|
maximum: 255,
|
|
too_long: ->(object, data) { N_("is too long (maximum is %{count} characters)") }
|
|
},
|
|
allow_blank: true
|
|
|
|
validates :pwa_short_name,
|
|
length: {
|
|
maximum: 255,
|
|
too_long: ->(object, data) { N_("is too long (maximum is %{count} characters)") }
|
|
},
|
|
allow_blank: true
|
|
|
|
validates :pwa_description,
|
|
length: {
|
|
maximum: 2048,
|
|
too_long: ->(object, data) { N_("is too long (maximum is %{count} characters)") }
|
|
},
|
|
allow_blank: true
|
|
|
|
validates :logo, file_size: { maximum: 1.megabyte }
|
|
validates :pwa_icon, file_size: { maximum: 1.megabyte }
|
|
validates :header_logo, file_size: { maximum: 1.megabyte }
|
|
validates :message_background_color, allow_blank: true, color: true
|
|
validates :message_font_color, allow_blank: true, color: true
|
|
validates :profile_image_guidelines, length: { maximum: 4096 }
|
|
|
|
validate :single_appearance_row, on: :create
|
|
|
|
mount_uploader :logo, AttachmentUploader
|
|
mount_uploader :pwa_icon, AttachmentUploader
|
|
mount_uploader :header_logo, AttachmentUploader
|
|
mount_uploader :favicon, FaviconUploader
|
|
|
|
# Overrides CacheableAttributes.current_without_cache
|
|
def self.current_without_cache
|
|
first
|
|
end
|
|
|
|
def single_appearance_row
|
|
if self.class.any?
|
|
errors.add(:base, _('Only 1 appearances row can exist'))
|
|
end
|
|
end
|
|
|
|
def pwa_icon_path_scaled(width)
|
|
return unless pwa_icon_path.present?
|
|
|
|
pwa_icon_path + "?width=#{width}"
|
|
end
|
|
|
|
def logo_path
|
|
logo_system_path(logo, 'logo')
|
|
end
|
|
|
|
def pwa_icon_path
|
|
logo_system_path(pwa_icon, 'pwa_icon')
|
|
end
|
|
|
|
def header_logo_path
|
|
logo_system_path(header_logo, 'header_logo')
|
|
end
|
|
|
|
def favicon_path
|
|
logo_system_path(favicon, 'favicon')
|
|
end
|
|
|
|
def show_header?
|
|
header_message.present?
|
|
end
|
|
|
|
def show_footer?
|
|
footer_message.present?
|
|
end
|
|
|
|
private
|
|
|
|
def logo_system_path(logo, mount_type)
|
|
# Legacy attachments may not have have an associated Upload record,
|
|
# so fallback to the AttachmentUploader#url if this is the
|
|
# case. AttachmentUploader#path doesn't work because for a local
|
|
# file, this is an absolute path to the file.
|
|
return logo&.url unless logo&.upload
|
|
|
|
# If we're using a CDN, we need to use the full URL
|
|
asset_host = ActionController::Base.asset_host
|
|
local_path = Gitlab::Routing.url_helpers.appearance_upload_path(
|
|
filename: logo.filename,
|
|
id: logo.upload.model_id,
|
|
model: 'appearance',
|
|
mounted_as: mount_type)
|
|
|
|
Gitlab::Utils.append_path(asset_host, local_path)
|
|
end
|
|
end
|