2019-07-02 08:10:25 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: preview_cards
|
|
|
|
#
|
|
|
|
# id :bigint(8) not null, primary key
|
|
|
|
# url :string default(""), not null
|
|
|
|
# title :string default(""), not null
|
|
|
|
# description :string default(""), not null
|
|
|
|
# image_file_name :string
|
|
|
|
# image_content_type :string
|
2021-02-09 19:38:10 +00:00
|
|
|
# image_file_size :integer
|
2019-07-02 08:10:25 +01:00
|
|
|
# image_updated_at :datetime
|
|
|
|
# type :integer default("link"), not null
|
|
|
|
# html :text default(""), not null
|
|
|
|
# author_name :string default(""), not null
|
|
|
|
# author_url :string default(""), not null
|
|
|
|
# provider_name :string default(""), not null
|
|
|
|
# provider_url :string default(""), not null
|
|
|
|
# width :integer default(0), not null
|
|
|
|
# height :integer default(0), not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# embed_url :string default(""), not null
|
|
|
|
#
|
|
|
|
|
|
|
|
class PreviewCard < ApplicationRecord
|
|
|
|
IMAGE_MIME_TYPES = ['image/jpeg', 'image/png', 'image/gif', 'image/webp'].freeze
|
2020-07-22 19:51:08 +01:00
|
|
|
LIMIT = 4.megabytes
|
2019-07-02 08:10:25 +01:00
|
|
|
|
|
|
|
self.inheritance_column = false
|
|
|
|
|
|
|
|
enum type: [:link, :photo, :video, :rich]
|
|
|
|
|
|
|
|
has_and_belongs_to_many :statuses
|
|
|
|
|
|
|
|
has_attached_file :image, styles: ->(f) { image_styles(f) }, convert_options: { all: '-quality 80 -strip' }
|
|
|
|
|
|
|
|
include Attachmentable
|
|
|
|
|
|
|
|
validates :url, presence: true, uniqueness: true
|
|
|
|
validates_attachment_content_type :image, content_type: IMAGE_MIME_TYPES
|
|
|
|
validates_attachment_size :image, less_than: LIMIT
|
|
|
|
remotable_attachment :image, LIMIT
|
|
|
|
|
|
|
|
before_save :extract_dimensions, if: :link?
|
|
|
|
|
2020-07-22 19:51:08 +01:00
|
|
|
def missing_image?
|
|
|
|
width.present? && height.present? && image_file_name.blank?
|
|
|
|
end
|
|
|
|
|
2019-07-02 08:10:25 +01:00
|
|
|
def save_with_optional_image!
|
|
|
|
save!
|
|
|
|
rescue ActiveRecord::RecordInvalid
|
|
|
|
self.image = nil
|
|
|
|
save!
|
|
|
|
end
|
|
|
|
|
|
|
|
class << self
|
2020-11-04 19:50:39 +00:00
|
|
|
def search_for(term, offset = 0)
|
2020-10-31 23:10:59 +00:00
|
|
|
pattern = '%' + sanitize_sql_like(term.strip) + '%'
|
|
|
|
|
|
|
|
PreviewCard.where(
|
|
|
|
"lower(title) LIKE lower('#{pattern}') OR lower(description) LIKE lower('#{pattern}') OR lower(url) LIKE lower('#{pattern}')"
|
2020-11-04 19:50:39 +00:00
|
|
|
).order('updated_at DESC').limit(25).offset(offset)
|
2020-10-31 23:10:59 +00:00
|
|
|
end
|
|
|
|
|
2019-07-02 08:10:25 +01:00
|
|
|
private
|
|
|
|
|
|
|
|
def image_styles(f)
|
|
|
|
styles = {
|
|
|
|
original: {
|
|
|
|
geometry: '400x400>',
|
|
|
|
file_geometry_parser: FastGeometryParser,
|
|
|
|
convert_options: '-coalesce -strip',
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
styles[:original][:format] = 'jpg' if f.instance.image_content_type == 'image/gif'
|
|
|
|
styles
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def extract_dimensions
|
|
|
|
file = image.queued_for_write[:original]
|
|
|
|
|
|
|
|
return if file.nil?
|
|
|
|
|
|
|
|
width, height = FastImage.size(file.path)
|
|
|
|
|
|
|
|
return nil if width.nil?
|
|
|
|
|
|
|
|
self.width = width
|
|
|
|
self.height = height
|
|
|
|
end
|
|
|
|
end
|