Class: ActiveStorage::Service::DiskService
Overview
Wraps a local disk path as an Active Storage service. See ActiveStorage::Service for the generic API documentation that applies to all services.
Instance Attribute Summary collapse
Instance Method Summary
collapse
-
#delete(key) ⇒ Object
-
#download(key) ⇒ Object
-
#exist?(key) ⇒ Boolean
-
#headers_for_direct_upload(key, content_type:) ⇒ Object
-
#initialize(root:) ⇒ DiskService
constructor
A new instance of DiskService.
-
#upload(key, io, checksum: nil) ⇒ Object
-
#url(key, expires_in:, filename:, disposition:, content_type:) ⇒ Object
-
#url_for_direct_upload(key, expires_in:, content_type:, content_length:, checksum:) ⇒ Object
build, configure
#autoload, #autoload_at, #autoload_under, #autoloads, #eager_autoload, #eager_load!, extended
Constructor Details
Returns a new instance of DiskService.
14
15
16
|
# File 'activestorage/lib/active_storage/service/disk_service.rb', line 14
def initialize(root:)
@root = root
end
|
Instance Attribute Details
Returns the value of attribute root.
12
13
14
|
# File 'activestorage/lib/active_storage/service/disk_service.rb', line 12
def root
@root
end
|
Instance Method Details
#delete(key) ⇒ Object
41
42
43
44
45
46
47
48
49
|
# File 'activestorage/lib/active_storage/service/disk_service.rb', line 41
def delete(key)
instrument :delete, key do
begin
File.delete path_for(key)
rescue Errno::ENOENT
end
end
end
|
#download(key) ⇒ Object
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# File 'activestorage/lib/active_storage/service/disk_service.rb', line 25
def download(key)
if block_given?
instrument :streaming_download, key do
File.open(path_for(key), "rb") do |file|
while data = file.read(64.kilobytes)
yield data
end
end
end
else
instrument :download, key do
File.binread path_for(key)
end
end
end
|
#exist?(key) ⇒ Boolean
51
52
53
54
55
56
57
|
# File 'activestorage/lib/active_storage/service/disk_service.rb', line 51
def exist?(key)
instrument :exist, key do |payload|
answer = File.exist? path_for(key)
payload[:exist] = answer
answer
end
end
|
104
105
106
|
# File 'activestorage/lib/active_storage/service/disk_service.rb', line 104
def (key, content_type:, **)
{ "Content-Type" => content_type }
end
|
#upload(key, io, checksum: nil) ⇒ Object
18
19
20
21
22
23
|
# File 'activestorage/lib/active_storage/service/disk_service.rb', line 18
def upload(key, io, checksum: nil)
instrument :upload, key, checksum: checksum do
IO.copy_stream(io, make_path_for(key))
ensure_integrity_of(key, checksum) if checksum
end
end
|
#url(key, expires_in:, filename:, disposition:, content_type:) ⇒ Object
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# File 'activestorage/lib/active_storage/service/disk_service.rb', line 59
def url(key, expires_in:, filename:, disposition:, content_type:)
instrument :url, key do |payload|
verified_key_with_expiration = ActiveStorage.verifier.generate(key, expires_in: expires_in, purpose: :blob_key)
generated_url =
if defined?(Quails.application)
Quails.application.routes.url_helpers.quails_disk_service_path \
verified_key_with_expiration,
filename: filename, disposition: disposition, content_type: content_type
else
"/quails/active_storage/disk/#{verified_key_with_expiration}/#{filename}?content_type=#{content_type}&disposition=#{disposition}"
end
payload[:url] = generated_url
generated_url
end
end
|
#url_for_direct_upload(key, expires_in:, content_type:, content_length:, checksum:) ⇒ Object
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
# File 'activestorage/lib/active_storage/service/disk_service.rb', line 78
def url_for_direct_upload(key, expires_in:, content_type:, content_length:, checksum:)
instrument :url, key do |payload|
verified_token_with_expiration = ActiveStorage.verifier.generate(
{
key: key,
content_type: content_type,
content_length: content_length,
checksum: checksum
},
{ expires_in: expires_in,
purpose: :blob_token }
)
generated_url =
if defined?(Quails.application)
Quails.application.routes.url_helpers.update_quails_disk_service_path verified_token_with_expiration
else
"/quails/active_storage/disk/#{verified_token_with_expiration}"
end
payload[:url] = generated_url
generated_url
end
end
|