blob: 924bd061311187c7e918b0f65366d660df946367 (
plain) (
blame)
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
|
# frozen_string_literal: true
module ActiveStorage::Blob::Identifiable
def identify
unless identified?
update! content_type: identify_content_type, identified: true
update_service_metadata
end
end
def identified?
identified
end
private
def identify_content_type
Marcel::MimeType.for download_identifiable_chunk, name: filename.to_s, declared_type: content_type
end
def download_identifiable_chunk
if byte_size.positive?
service.download_chunk key, 0...4.kilobytes
else
""
end
end
def update_service_metadata
service.update_metadata key, service_metadata if service_metadata.any?
end
end
|