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