1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
class Asset < ApplicationRecord
IMAGE_CONTENT_TYPES = ["image/gif", "image/jpeg", "image/png", "image/webp"]
PDF_CONTENT_TYPE = "application/pdf"
include FileAttachment
has_many :related_assets, :dependent => :destroy
has_many :pages, :through => :related_assets
scope :images, -> { where(:upload_content_type => IMAGE_CONTENT_TYPES) }
scope :documents, -> { where(:upload_content_type => ["application/pdf", "text/plain", "text/rtf"]) }
scope :audio, -> { where(:upload_content_type => ["audio/mpeg", "audio/x-m4a", "audio/wav", "audio/x-wav"]) }
scope :pdfs, -> { where(:upload_content_type => PDF_CONTENT_TYPE) }
scope :headline_eligible, -> { where(:upload_content_type => IMAGE_CONTENT_TYPES + [PDF_CONTENT_TYPE]) }
validates :license_key, inclusion: { in: -> { AssetLicense.keys } }, allow_blank: true
def image?
IMAGE_CONTENT_TYPES.include?(upload_content_type)
end
def pdf?
upload_content_type == PDF_CONTENT_TYPE
end
def has_credit?
creator.present? || source_url.present? || license_key.present?
end
def show_credit?
image? && has_credit?
end
# Nodes whose current lifecycle rows (head, draft or autosave) carry
# this asset. Historical revisions also hold RelatedAsset rows; they
# are excluded by construction here, since nothing points at them.
def attached_nodes
page_ids = related_assets.select(:page_id)
Node.where("head_id IN (:ids) OR draft_id IN (:ids) OR autosave_id IN (:ids)",
:ids => page_ids).distinct
end
end
|