File: copy_blob.rb

package info (click to toggle)
ruby-gitlab-fog-azure-rm 1.9.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 756 kB
  • sloc: ruby: 5,926; sh: 9; makefile: 4
file content (30 lines) | stat: -rw-r--r-- 1,071 bytes parent folder | download | duplicates (2)
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
module Fog
  module AzureRM
    class Storage
      # This class provides the actual implementation for service calls.
      class Real
        def copy_blob(destination_container, destination_blob, source_container, source_blob, options = {})
          options[:request_id] = SecureRandom.uuid
          msg = "Copying blob: #{source_blob} from container #{source_container} to container #{destination_container} options: #{options}"
          Fog::Logger.debug msg

          begin
            copy_id, copy_status = @blob_client.copy_blob(destination_container, destination_blob, source_container, source_blob, options)
          rescue Azure::Core::Http::HTTPError => ex
            raise_azure_exception(ex, msg)
          end

          Fog::Logger.debug "Copying blob: x-ms-copy-id: #{copy_id}, x-ms-copy-status: #{copy_status}"
          [copy_id, copy_status]
        end
      end

      # This class provides the mock implementation for unit tests.
      class Mock
        def copy_blob(*)
          %w(abc123 pending)
        end
      end
    end
  end
end