Class: Morpheus::StorageProvidersInterface
- Inherits:
-
APIClient
- Object
- APIClient
- Morpheus::StorageProvidersInterface
- Defined in:
- lib/morpheus/api/storage_providers_interface.rb
Instance Method Summary collapse
- #create(payload) ⇒ Object
- #destroy(id, params = {}) ⇒ Object
- #download_file(id, file_path, params = {}) ⇒ Object
- #download_file_chunked(id, file_path, outfile, params = {}) ⇒ Object
- #download_zip_chunked(id, outfile, params = {}) ⇒ Object
- #get(id, params = {}) ⇒ Object
-
#initialize(access_token, refresh_token, expires_at = nil, base_url = nil) ⇒ StorageProvidersInterface
constructor
A new instance of StorageProvidersInterface.
- #list(params = {}) ⇒ Object
- #list_files(id, file_path, params = {}) ⇒ Object
- #update(id, payload) ⇒ Object
-
#upload_file(id, local_file, destination, params = {}) ⇒ Object
upload a file without multipart.
Constructor Details
#initialize(access_token, refresh_token, expires_at = nil, base_url = nil) ⇒ StorageProvidersInterface
Returns a new instance of StorageProvidersInterface.
5 6 7 8 9 10 |
# File 'lib/morpheus/api/storage_providers_interface.rb', line 5 def initialize(access_token, refresh_token,expires_at = nil, base_url=nil) @access_token = access_token @refresh_token = refresh_token @base_url = base_url @expires_at = expires_at end |
Instance Method Details
#create(payload) ⇒ Object
27 28 29 30 31 32 |
# File 'lib/morpheus/api/storage_providers_interface.rb', line 27 def create(payload) url = "#{@base_url}/api/storage/buckets" headers = { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :post, url: url, headers: headers, payload: payload.to_json} execute(opts) end |
#destroy(id, params = {}) ⇒ Object
41 42 43 44 45 46 |
# File 'lib/morpheus/api/storage_providers_interface.rb', line 41 def destroy(id, params={}) url = "#{@base_url}/api/storage/buckets/#{id}" headers = { :params => params, :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :delete, url: url, timeout: 30, headers: headers} execute(opts) end |
#download_file(id, file_path, params = {}) ⇒ Object
88 89 90 91 92 93 94 95 96 |
# File 'lib/morpheus/api/storage_providers_interface.rb', line 88 def download_file(id, file_path, params={}) raise "#{self.class}.download_file() passed a blank id!" if id.to_s == '' raise "#{self.class}.download_file() passed a blank file path!" if file_path.to_s == '' escaped_file_path = file_path.split("/").collect {|it| URI.escape(it) }.join("/") url = "#{@base_url}/api/storage/buckets/#{URI.escape(id.to_s)}" + "/download-file/#{escaped_file_path}".squeeze('/') headers = { params: params, authorization: "Bearer #{@access_token}" } opts = {method: :get, url: url, headers: headers} execute(opts, false) end |
#download_file_chunked(id, file_path, outfile, params = {}) ⇒ Object
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
# File 'lib/morpheus/api/storage_providers_interface.rb', line 98 def download_file_chunked(id, file_path, outfile, params={}) raise "#{self.class}.download_file() passed a blank id!" if id.to_s == '' raise "#{self.class}.download_file() passed a blank file path!" if file_path.to_s == '' escaped_file_path = file_path.split("/").collect {|it| URI.escape(it) }.join("/") url = "#{@base_url}/api/storage/buckets/#{URI.escape(id.to_s)}" + "/download-file/#{escaped_file_path}".squeeze('/') headers = { params: params, authorization: "Bearer #{@access_token}" } opts = {method: :get, url: url, headers: headers} # execute(opts, false) if Dir.exists?(outfile) raise "outfile is invalid. It is the name of an existing directory: #{outfile}" end # if @verify_ssl == false # opts[:verify_ssl] = OpenSSL::SSL::VERIFY_NONE # end if @dry_run return opts end http_response = nil File.open(outfile, 'w') {|f| block = proc { |response| response.read_body do |chunk| # writing to #{outfile} ..." f.write chunk end } opts[:block_response] = block http_response = RestClient::Request.new(opts).execute # RestClient::Request.execute(opts) } return http_response end |
#download_zip_chunked(id, outfile, params = {}) ⇒ Object
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
# File 'lib/morpheus/api/storage_providers_interface.rb', line 130 def download_zip_chunked(id, outfile, params={}) #url = "#{@base_url}/api/storage/buckets/#{URI.escape(id.to_s)}" + ".zip" url = "#{@base_url}/api/storage/buckets/#{URI.escape(id.to_s)}/download-zip" headers = { params: params, authorization: "Bearer #{@access_token}" } opts = {method: :get, url: url, headers: headers} # execute(opts, false) if Dir.exists?(outfile) raise "outfile is invalid. It is the name of an existing directory: #{outfile}" end # if @verify_ssl == false # opts[:verify_ssl] = OpenSSL::SSL::VERIFY_NONE # end if @dry_run return opts end http_response = nil File.open(outfile, 'w') {|f| block = proc { |response| response.read_body do |chunk| # writing to #{outfile} ..." f.write chunk end } opts[:block_response] = block http_response = RestClient::Request.new(opts).execute # RestClient::Request.execute(opts) } return http_response end |
#get(id, params = {}) ⇒ Object
12 13 14 15 16 17 18 |
# File 'lib/morpheus/api/storage_providers_interface.rb', line 12 def get(id, params={}) raise "#{self.class}.get() passed a blank id!" if id.to_s == '' url = "#{@base_url}/api/storage/buckets/#{id}" headers = { params: params, authorization: "Bearer #{@access_token}" } opts = {method: :get, url: url, headers: headers} execute(opts) end |
#list(params = {}) ⇒ Object
20 21 22 23 24 25 |
# File 'lib/morpheus/api/storage_providers_interface.rb', line 20 def list(params={}) url = "#{@base_url}/api/storage/buckets" headers = { params: params, authorization: "Bearer #{@access_token}" } opts = {method: :get, url: url, headers: headers} execute(opts) end |
#list_files(id, file_path, params = {}) ⇒ Object
48 49 50 51 52 53 54 55 56 |
# File 'lib/morpheus/api/storage_providers_interface.rb', line 48 def list_files(id, file_path, params={}) if file_path.to_s.strip == "/" file_path = "" end url = "#{@base_url}/api/storage/buckets/#{URI.escape(id.to_s)}" + "/files/#{URI.escape(file_path)}".squeeze('/') headers = { params: params, authorization: "Bearer #{@access_token}" } opts = {method: :get, url: url, headers: headers} execute(opts) end |
#update(id, payload) ⇒ Object
34 35 36 37 38 39 |
# File 'lib/morpheus/api/storage_providers_interface.rb', line 34 def update(id, payload) url = "#{@base_url}/api/storage/buckets/#{id}" headers = { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :put, url: url, headers: headers, payload: payload.to_json} execute(opts) end |
#upload_file(id, local_file, destination, params = {}) ⇒ Object
upload a file without multipart
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
# File 'lib/morpheus/api/storage_providers_interface.rb', line 59 def upload_file(id, local_file, destination, params={}) # puts "upload_file #{local_file} to destination #{destination}" # destination should be the full filePath, but the api looks like directory?filename= path = destination.to_s.squeeze("/") if !path || path == "" || path == "/" || path == "." raise "#{self.class}.upload_file() passed a bad destination: '#{destination}'" end if path[0].chr == "/" path = path[1..-1] end path_chunks = path.split("/") filename = path_chunks.pop safe_dirname = path_chunks.collect {|it| URI.escape(it) }.join("/") # filename = File.basename(destination) # dirname = File.dirname(destination) # if filename == "" || filename == "/" # filename = File.basename(local_file) # end url = "#{@base_url}/api/storage/buckets/#{URI.escape(id.to_s)}" + "/files/#{safe_dirname}".squeeze('/') headers = { :params => params, :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/octet-stream'} headers[:params][:filename] = filename # File.basename(destination) if !local_file.kind_of?(File) local_file = File.new(local_file, 'rb') end payload = local_file headers['Content-Length'] = local_file.size # File.size(local_file) execute(method: :post, url: url, headers: headers, payload: payload) end |