preview_card.rb 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. # frozen_string_literal: true
  2. # == Schema Information
  3. #
  4. # Table name: preview_cards
  5. #
  6. # id :integer not null, primary key
  7. # url :string default(""), not null
  8. # title :string default(""), not null
  9. # description :string default(""), not null
  10. # image_file_name :string
  11. # image_content_type :string
  12. # image_file_size :integer
  13. # image_updated_at :datetime
  14. # type :integer default("link"), not null
  15. # html :text default(""), not null
  16. # author_name :string default(""), not null
  17. # author_url :string default(""), not null
  18. # provider_name :string default(""), not null
  19. # provider_url :string default(""), not null
  20. # width :integer default(0), not null
  21. # height :integer default(0), not null
  22. # created_at :datetime not null
  23. # updated_at :datetime not null
  24. # embed_url :string default(""), not null
  25. #
  26. class PreviewCard < ApplicationRecord
  27. IMAGE_MIME_TYPES = ['image/jpeg', 'image/png', 'image/gif'].freeze
  28. self.inheritance_column = false
  29. enum type: [:link, :photo, :video, :rich]
  30. has_and_belongs_to_many :statuses
  31. has_attached_file :image, styles: { original: { geometry: '400x400>', file_geometry_parser: FastGeometryParser } }, convert_options: { all: '-quality 80 -strip' }
  32. include Attachmentable
  33. include Remotable
  34. validates :url, presence: true, uniqueness: true
  35. validates_attachment_content_type :image, content_type: IMAGE_MIME_TYPES
  36. validates_attachment_size :image, less_than: 1.megabytes
  37. before_save :extract_dimensions, if: :link?
  38. def save_with_optional_image!
  39. save!
  40. rescue ActiveRecord::RecordInvalid
  41. self.image = nil
  42. save!
  43. end
  44. private
  45. def extract_dimensions
  46. file = image.queued_for_write[:original]
  47. return if file.nil?
  48. width, height = FastImage.size(file.path)
  49. return nil if width.nil?
  50. self.width = width
  51. self.height = height
  52. end
  53. end