2017-09-18 20:42:40 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: custom_emojis
|
|
|
|
#
|
2018-04-23 05:29:17 -04:00
|
|
|
# id :bigint(8) not null, primary key
|
2017-09-18 20:42:40 -04:00
|
|
|
# shortcode :string default(""), not null
|
|
|
|
# domain :string
|
|
|
|
# image_file_name :string
|
|
|
|
# image_content_type :string
|
|
|
|
# image_file_size :integer
|
|
|
|
# image_updated_at :datetime
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2017-10-05 17:42:05 -04:00
|
|
|
# disabled :boolean default(FALSE), not null
|
2017-10-07 11:43:42 -04:00
|
|
|
# uri :string
|
|
|
|
# image_remote_url :string
|
2017-10-27 10:11:30 -04:00
|
|
|
# visible_in_picker :boolean default(TRUE), not null
|
2019-06-28 09:54:10 -04:00
|
|
|
# category_id :bigint(8)
|
2017-09-18 20:42:40 -04:00
|
|
|
#
|
|
|
|
|
|
|
|
class CustomEmoji < ApplicationRecord
|
2018-03-26 08:02:10 -04:00
|
|
|
LIMIT = 50.kilobytes
|
|
|
|
|
2017-09-18 20:42:40 -04:00
|
|
|
SHORTCODE_RE_FRAGMENT = '[a-zA-Z0-9_]{2,}'
|
|
|
|
|
|
|
|
SCAN_RE = /(?<=[^[:alnum:]:]|\n|^)
|
|
|
|
:(#{SHORTCODE_RE_FRAGMENT}):
|
|
|
|
(?=[^[:alnum:]:]|$)/x
|
|
|
|
|
2019-08-17 16:04:15 -04:00
|
|
|
IMAGE_MIME_TYPES = %w(image/png image/gif).freeze
|
2019-08-08 17:03:09 -04:00
|
|
|
|
2019-06-28 09:54:10 -04:00
|
|
|
belongs_to :category, class_name: 'CustomEmojiCategory', optional: true
|
2017-11-07 08:49:32 -05:00
|
|
|
has_one :local_counterpart, -> { where(domain: nil) }, class_name: 'CustomEmoji', primary_key: :shortcode, foreign_key: :shortcode
|
|
|
|
|
2017-10-05 17:41:47 -04:00
|
|
|
has_attached_file :image, styles: { static: { format: 'png', convert_options: '-coalesce -strip' } }
|
2017-09-18 20:42:40 -04:00
|
|
|
|
2018-12-10 23:30:57 -05:00
|
|
|
before_validation :downcase_domain
|
|
|
|
|
2019-08-08 17:03:09 -04:00
|
|
|
validates_attachment :image, content_type: { content_type: IMAGE_MIME_TYPES }, presence: true, size: { less_than: LIMIT }
|
2017-09-18 20:42:40 -04:00
|
|
|
validates :shortcode, uniqueness: { scope: :domain }, format: { with: /\A#{SHORTCODE_RE_FRAGMENT}\z/ }, length: { minimum: 2 }
|
|
|
|
|
2019-09-13 10:01:09 -04:00
|
|
|
scope :local, -> { where(domain: nil) }
|
|
|
|
scope :remote, -> { where.not(domain: nil) }
|
2017-10-05 17:42:05 -04:00
|
|
|
scope :alphabetic, -> { order(domain: :asc, shortcode: :asc) }
|
2019-06-21 18:13:10 -04:00
|
|
|
scope :by_domain_and_subdomains, ->(domain) { where(domain: domain).or(where(arel_table[:domain].matches('%.' + domain))) }
|
2019-09-13 10:01:09 -04:00
|
|
|
scope :listed, -> { local.where(disabled: false).where(visible_in_picker: true) }
|
2017-09-22 19:57:23 -04:00
|
|
|
|
2018-03-26 08:02:10 -04:00
|
|
|
remotable_attachment :image, LIMIT
|
2017-09-18 20:42:40 -04:00
|
|
|
|
2018-04-23 03:16:38 -04:00
|
|
|
include Attachmentable
|
|
|
|
|
2018-04-26 19:38:10 -04:00
|
|
|
after_commit :remove_entity_cache
|
|
|
|
|
2017-10-05 17:42:05 -04:00
|
|
|
def local?
|
|
|
|
domain.nil?
|
|
|
|
end
|
|
|
|
|
2017-10-07 11:43:42 -04:00
|
|
|
def object_type
|
|
|
|
:emoji
|
|
|
|
end
|
|
|
|
|
2019-09-09 16:44:17 -04:00
|
|
|
def copy!
|
|
|
|
copy = self.class.find_or_initialize_by(domain: nil, shortcode: shortcode)
|
|
|
|
copy.image = image
|
2019-09-17 17:20:48 -04:00
|
|
|
copy.tap(&:save!)
|
2019-09-09 16:44:17 -04:00
|
|
|
end
|
|
|
|
|
2017-09-18 20:42:40 -04:00
|
|
|
class << self
|
2020-01-23 16:00:13 -05:00
|
|
|
def from_text(text, domain = nil)
|
2017-09-18 20:42:40 -04:00
|
|
|
return [] if text.blank?
|
2017-09-26 22:14:03 -04:00
|
|
|
|
|
|
|
shortcodes = text.scan(SCAN_RE).map(&:first).uniq
|
|
|
|
|
|
|
|
return [] if shortcodes.empty?
|
|
|
|
|
2018-04-26 19:38:10 -04:00
|
|
|
EntityCache.instance.emoji(shortcodes, domain)
|
2017-09-18 20:42:40 -04:00
|
|
|
end
|
2018-04-10 09:46:27 -04:00
|
|
|
|
|
|
|
def search(shortcode)
|
|
|
|
where('"custom_emojis"."shortcode" ILIKE ?', "%#{shortcode}%")
|
|
|
|
end
|
2017-09-18 20:42:40 -04:00
|
|
|
end
|
2018-04-26 19:38:10 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def remove_entity_cache
|
|
|
|
Rails.cache.delete(EntityCache.instance.to_key(:emoji, shortcode, domain))
|
|
|
|
end
|
2018-12-10 23:30:57 -05:00
|
|
|
|
|
|
|
def downcase_domain
|
|
|
|
self.domain = domain.downcase unless domain.nil?
|
|
|
|
end
|
2017-09-18 20:42:40 -04:00
|
|
|
end
|