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