Class: ActiveStorage::Service::AzureStorageService
Overview
Active Storage Azure Storage Service
Wraps the Microsoft Azure Storage Blob Service as an Active Storage service. See ActiveStorage::Service for the generic API documentation that applies to all services.
Instance Attribute Summary collapse
#name
Instance Method Summary
collapse
-
#compose(source_keys, destination_key, filename: nil, content_type: nil, disposition: nil, custom_metadata: {}) ⇒ Object
-
#delete(key) ⇒ Object
-
#delete_prefixed(prefix) ⇒ Object
-
#download(key, &block) ⇒ Object
-
#download_chunk(key, range) ⇒ Object
-
#exist?(key) ⇒ Boolean
-
#headers_for_direct_upload(key, content_type:, checksum:, filename: nil, disposition: nil, custom_metadata: {}) ⇒ Object
-
#initialize(storage_account_name:, storage_access_key:, container:, public: false, **options) ⇒ AzureStorageService
constructor
A new instance of AzureStorageService.
-
#upload(key, io, checksum: nil, filename: nil, content_type: nil, disposition: nil, custom_metadata: {}) ⇒ Object
-
#url_for_direct_upload(key, expires_in:, content_type:, content_length:, checksum:, custom_metadata: {}) ⇒ Object
build, configure, #open, #public?, #update_metadata, #url
#autoload, #autoload_at, #autoload_under, #eager_autoload, #eager_load!, extended
Constructor Details
#initialize(storage_account_name:, storage_access_key:, container:, public: false, **options) ⇒ AzureStorageService
Returns a new instance of AzureStorageService.
17
18
19
20
21
22
|
# File 'activestorage/lib/active_storage/service/azure_storage_service.rb', line 17
def initialize(storage_account_name:, storage_access_key:, container:, public: false, **options)
@client = Azure::Storage::Blob::BlobService.create(storage_account_name: storage_account_name, storage_access_key: storage_access_key, **options)
@signer = Azure::Storage::Common::Core::Auth::SharedAccessSignature.new(storage_account_name, storage_access_key)
@container = container
@public = public
end
|
Instance Attribute Details
Returns the value of attribute client
15
16
17
|
# File 'activestorage/lib/active_storage/service/azure_storage_service.rb', line 15
def client
@client
end
|
#container ⇒ Object
Returns the value of attribute container
15
16
17
|
# File 'activestorage/lib/active_storage/service/azure_storage_service.rb', line 15
def container
@container
end
|
Returns the value of attribute signer
15
16
17
|
# File 'activestorage/lib/active_storage/service/azure_storage_service.rb', line 15
def signer
@signer
end
|
Instance Method Details
#compose(source_keys, destination_key, filename: nil, content_type: nil, disposition: nil, custom_metadata: {}) ⇒ Object
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
# File 'activestorage/lib/active_storage/service/azure_storage_service.rb', line 112
def compose(source_keys, destination_key, filename: nil, content_type: nil, disposition: nil, custom_metadata: {})
content_disposition = content_disposition_with(type: disposition, filename: filename) if disposition && filename
client.create_append_blob(
container,
destination_key,
content_type: content_type,
content_disposition: content_disposition,
metadata: custom_metadata,
).tap do |blob|
source_keys.each do |source_key|
stream(source_key) do |chunk|
client.append_blob_block(container, blob.name, chunk)
end
end
end
end
|
#delete(key) ⇒ Object
58
59
60
61
62
63
64
65
|
# File 'activestorage/lib/active_storage/service/azure_storage_service.rb', line 58
def delete(key)
instrument :delete, key: key do
client.delete_blob(container, key)
rescue Azure::Core::Http::HTTPError => e
raise unless e.type == "BlobNotFound"
end
end
|
#delete_prefixed(prefix) ⇒ Object
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
# File 'activestorage/lib/active_storage/service/azure_storage_service.rb', line 67
def delete_prefixed(prefix)
instrument :delete_prefixed, prefix: prefix do
marker = nil
loop do
results = client.list_blobs(container, prefix: prefix, marker: marker)
results.each do |blob|
client.delete_blob(container, blob.name)
end
break unless marker = results.continuation_token.presence
end
end
end
|
#download(key, &block) ⇒ Object
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# File 'activestorage/lib/active_storage/service/azure_storage_service.rb', line 34
def download(key, &block)
if block_given?
instrument :streaming_download, key: key do
stream(key, &block)
end
else
instrument :download, key: key do
handle_errors do
_, io = client.get_blob(container, key)
io.force_encoding(Encoding::BINARY)
end
end
end
end
|
#download_chunk(key, range) ⇒ Object
49
50
51
52
53
54
55
56
|
# File 'activestorage/lib/active_storage/service/azure_storage_service.rb', line 49
def download_chunk(key, range)
instrument :download_chunk, key: key, range: range do
handle_errors do
_, io = client.get_blob(container, key, start_range: range.begin, end_range: range.exclude_end? ? range.end - 1 : range.end)
io.force_encoding(Encoding::BINARY)
end
end
end
|
#exist?(key) ⇒ Boolean
83
84
85
86
87
88
89
|
# File 'activestorage/lib/active_storage/service/azure_storage_service.rb', line 83
def exist?(key)
instrument :exist, key: key do |payload|
answer = blob_for(key).present?
payload[:exist] = answer
answer
end
end
|
106
107
108
109
110
|
# File 'activestorage/lib/active_storage/service/azure_storage_service.rb', line 106
def (key, content_type:, checksum:, filename: nil, disposition: nil, custom_metadata: {}, **)
content_disposition = content_disposition_with(type: disposition, filename: filename) if filename
{ "Content-Type" => content_type, "Content-MD5" => checksum, "x-ms-blob-content-disposition" => content_disposition, "x-ms-blob-type" => "BlockBlob", **(custom_metadata) }
end
|
#upload(key, io, checksum: nil, filename: nil, content_type: nil, disposition: nil, custom_metadata: {}) ⇒ Object
24
25
26
27
28
29
30
31
32
|
# File 'activestorage/lib/active_storage/service/azure_storage_service.rb', line 24
def upload(key, io, checksum: nil, filename: nil, content_type: nil, disposition: nil, custom_metadata: {}, **)
instrument :upload, key: key, checksum: checksum do
handle_errors do
content_disposition = content_disposition_with(filename: filename, type: disposition) if disposition && filename
client.create_block_blob(container, key, IO.try_convert(io) || io, content_md5: checksum, content_type: content_type, content_disposition: content_disposition, metadata: custom_metadata)
end
end
end
|
#url_for_direct_upload(key, expires_in:, content_type:, content_length:, checksum:, custom_metadata: {}) ⇒ Object
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
# File 'activestorage/lib/active_storage/service/azure_storage_service.rb', line 91
def url_for_direct_upload(key, expires_in:, content_type:, content_length:, checksum:, custom_metadata: {})
instrument :url, key: key do |payload|
generated_url = signer.signed_uri(
uri_for(key), false,
service: "b",
permissions: "rw",
expiry: format_expiry(expires_in)
).to_s
payload[:url] = generated_url
generated_url
end
end
|