Class: ActiveStorage::Service::AzureStorageService
Overview
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
-
#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) ⇒ 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) ⇒ Object
-
#url_for_direct_upload(key, expires_in:, content_type:, content_length:, checksum:) ⇒ Object
build, configure, #open, #public?, #update_metadata, #url
#autoload, #autoload_at, #autoload_under, #autoloads, #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.
15
16
17
18
19
20
|
# File 'activestorage/lib/active_storage/service/azure_storage_service.rb', line 15
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
13
14
15
|
# File 'activestorage/lib/active_storage/service/azure_storage_service.rb', line 13
def client
@client
end
|
#container ⇒ Object
Returns the value of attribute container
13
14
15
|
# File 'activestorage/lib/active_storage/service/azure_storage_service.rb', line 13
def container
@container
end
|
Returns the value of attribute signer
13
14
15
|
# File 'activestorage/lib/active_storage/service/azure_storage_service.rb', line 13
def signer
@signer
end
|
Instance Method Details
#delete(key) ⇒ Object
56
57
58
59
60
61
62
63
|
# File 'activestorage/lib/active_storage/service/azure_storage_service.rb', line 56
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
# File 'activestorage/lib/active_storage/service/azure_storage_service.rb', line 65
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# File 'activestorage/lib/active_storage/service/azure_storage_service.rb', line 32
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
47
48
49
50
51
52
53
54
|
# File 'activestorage/lib/active_storage/service/azure_storage_service.rb', line 47
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
81
82
83
84
85
86
87
|
# File 'activestorage/lib/active_storage/service/azure_storage_service.rb', line 81
def exist?(key)
instrument :exist, key: key do |payload|
answer = blob_for(key).present?
payload[:exist] = answer
answer
end
end
|
104
105
106
107
108
|
# File 'activestorage/lib/active_storage/service/azure_storage_service.rb', line 104
def (key, content_type:, checksum:, filename: nil, disposition: nil, **)
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" }
end
|
#upload(key, io, checksum: nil, filename: nil, content_type: nil, disposition: nil) ⇒ Object
22
23
24
25
26
27
28
29
30
|
# File 'activestorage/lib/active_storage/service/azure_storage_service.rb', line 22
def upload(key, io, checksum: nil, filename: nil, content_type: nil, disposition: nil, **)
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)
end
end
end
|
#url_for_direct_upload(key, expires_in:, content_type:, content_length:, checksum:) ⇒ Object
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
# File 'activestorage/lib/active_storage/service/azure_storage_service.rb', line 89
def url_for_direct_upload(key, expires_in:, content_type:, content_length:, checksum:)
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
|