debian-mirror-gitlab/app/models/custom_emoji.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
1.6 KiB
Ruby
Raw Normal View History

2020-07-28 23:09:34 +05:30
# frozen_string_literal: true
class CustomEmoji < ApplicationRecord
2021-03-11 19:13:27 +05:30
NAME_REGEXP = /[a-z0-9_-]+/.freeze
2020-07-28 23:09:34 +05:30
belongs_to :namespace, inverse_of: :custom_emoji
2021-11-18 22:05:49 +05:30
belongs_to :group, -> { where(type: Group.sti_name) }, foreign_key: 'namespace_id'
2021-04-17 20:07:23 +05:30
belongs_to :creator, class_name: "User", inverse_of: :created_custom_emoji
2021-01-29 00:20:46 +05:30
# For now only external emoji are supported. See https://gitlab.com/gitlab-org/gitlab/-/issues/230467
validates :external, inclusion: { in: [true] }
validates :file, public_url: true, if: :external
2020-07-28 23:09:34 +05:30
validate :valid_emoji_name
2021-01-29 00:20:46 +05:30
validates :group, presence: true
2021-04-17 20:07:23 +05:30
validates :creator, presence: true
2020-07-28 23:09:34 +05:30
validates :name,
uniqueness: { scope: [:namespace_id, :name] },
presence: true,
length: { maximum: 36 },
2021-03-11 19:13:27 +05:30
format: { with: /\A#{NAME_REGEXP}\z/ }
scope :by_name, -> (names) { where(name: names) }
alias_attribute :url, :file # this might need a change in https://gitlab.com/gitlab-org/gitlab/-/issues/230467
2020-07-28 23:09:34 +05:30
2022-06-21 17:19:12 +05:30
# Find custom emoji for the given resource.
# A resource can be either a Project or a Group, or anything responding to #root_ancestor.
# Usually it's the return value of #resource_parent on any model.
scope :for_resource, -> (resource) do
return none if resource.nil?
namespace = resource.root_ancestor
return none if namespace.nil? || Feature.disabled?(:custom_emoji, namespace)
namespace.custom_emoji
end
2020-07-28 23:09:34 +05:30
private
def valid_emoji_name
2021-12-11 22:18:48 +05:30
if TanukiEmoji.find_by_alpha_code(name)
2020-07-28 23:09:34 +05:30
errors.add(:name, _('%{name} is already being used for another emoji') % { name: self.name })
end
end
end