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