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