You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

101 lines
3.1 KiB

  1. # frozen_string_literal: true
  2. # == Schema Information
  3. #
  4. # Table name: custom_emojis
  5. #
  6. # id :bigint(8) not null, primary key
  7. # shortcode :string default(""), not null
  8. # domain :string
  9. # image_file_name :string
  10. # image_content_type :string
  11. # image_file_size :integer
  12. # image_updated_at :datetime
  13. # created_at :datetime not null
  14. # updated_at :datetime not null
  15. # disabled :boolean default(FALSE), not null
  16. # uri :string
  17. # image_remote_url :string
  18. # visible_in_picker :boolean default(TRUE), not null
  19. # category_id :bigint(8)
  20. # image_storage_schema_version :integer
  21. #
  22. class CustomEmoji < ApplicationRecord
  23. include Attachmentable
  24. LIMIT = 256.kilobytes
  25. SHORTCODE_RE_FRAGMENT = '[a-zA-Z0-9_]{2,}'
  26. SCAN_RE = /(?<=[^[:alnum:]:]|\n|^)
  27. :(#{SHORTCODE_RE_FRAGMENT}):
  28. (?=[^[:alnum:]:]|$)/x
  29. SHORTCODE_ONLY_RE = /\A#{SHORTCODE_RE_FRAGMENT}\z/
  30. IMAGE_MIME_TYPES = %w(image/png image/gif image/webp).freeze
  31. belongs_to :category, class_name: 'CustomEmojiCategory', optional: true
  32. has_one :local_counterpart, -> { where(domain: nil) }, class_name: 'CustomEmoji', primary_key: :shortcode, foreign_key: :shortcode
  33. has_attached_file :image, styles: { static: { format: 'png', convert_options: '-coalesce +profile "!icc,*" +set modify-date +set create-date' } }, validate_media_type: false
  34. before_validation :downcase_domain
  35. validates_attachment :image, content_type: { content_type: IMAGE_MIME_TYPES }, presence: true, size: { less_than: LIMIT }
  36. validates :shortcode, uniqueness: { scope: :domain }, format: { with: SHORTCODE_ONLY_RE }, length: { minimum: 2 }
  37. scope :local, -> { where(domain: nil) }
  38. scope :remote, -> { where.not(domain: nil) }
  39. scope :alphabetic, -> { order(domain: :asc, shortcode: :asc) }
  40. scope :by_domain_and_subdomains, ->(domain) { where(domain: domain).or(where(arel_table[:domain].matches("%.#{domain}"))) }
  41. scope :listed, -> { local.where(disabled: false).where(visible_in_picker: true) }
  42. remotable_attachment :image, LIMIT
  43. after_commit :remove_entity_cache
  44. def local?
  45. domain.nil?
  46. end
  47. def object_type
  48. :emoji
  49. end
  50. def copy!
  51. copy = self.class.find_or_initialize_by(domain: nil, shortcode: shortcode)
  52. copy.image = image
  53. copy.tap(&:save!)
  54. end
  55. def to_log_human_identifier
  56. shortcode
  57. end
  58. class << self
  59. def from_text(text, domain = nil)
  60. return [] if text.blank?
  61. shortcodes = text.scan(SCAN_RE).map(&:first).uniq
  62. return [] if shortcodes.empty?
  63. EntityCache.instance.emoji(shortcodes, domain)
  64. end
  65. def search(shortcode)
  66. where('"custom_emojis"."shortcode" ILIKE ?', "%#{shortcode}%")
  67. end
  68. end
  69. private
  70. def remove_entity_cache
  71. Rails.cache.delete(EntityCache.instance.to_key(:emoji, shortcode, domain))
  72. end
  73. def downcase_domain
  74. self.domain = domain.downcase unless domain.nil?
  75. end
  76. end