Module: MultipartUploadUtils
- Included in:
- FilestackClient
- Defined in:
- lib/filestack/utils/multipart_upload_utils.rb
Overview
Includes all the utility functions for Filestack multipart uploads
Instance Method Summary collapse
-
#create_upload_jobs(apikey, filename, filepath, filesize, start_response, options) ⇒ Array
Create array of jobs for parallel uploading.
- #get_file_info(file) ⇒ Object
-
#multipart_complete(apikey, filename, filesize, mimetype, start_response, parts_and_etags, options, intelligent = false) ⇒ Typhoeus::Response
Send complete call to multipart endpoint.
-
#multipart_start(apikey, filename, filesize, mimetype, security, options) ⇒ Typhoeus::Response
Send start response to multipart endpoint.
-
#multipart_upload(apikey, filepath, security, options, timeout, intelligent: false) ⇒ Typhoeus::Response
Run entire multipart process through with file and options.
-
#run_uploads(jobs, apikey, filepath, options) ⇒ Array
Runs all jobs in parallel.
-
#upload_chunk(job, apikey, filepath, options) ⇒ Typhoeus::Response
Uploads one chunk of the file.
Instance Method Details
#create_upload_jobs(apikey, filename, filepath, filesize, start_response, options) ⇒ Array
Create array of jobs for parallel uploading
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 |
# File 'lib/filestack/utils/multipart_upload_utils.rb', line 79 def create_upload_jobs(apikey, filename, filepath, filesize, start_response, ) jobs = [] part = 1 seek_point = 0 while seek_point < filesize part_info = { seek: seek_point, filepath: filepath, filename: filename, apikey: apikey, part: part, filesize: filesize, uri: start_response['uri'], region: start_response['region'], upload_id: start_response['upload_id'], location_url: start_response['location_url'], start_response: start_response, options: , store_location: .nil? ? 's3' : [:store_location] } if seek_point + FilestackConfig::DEFAULT_CHUNK_SIZE > filesize size = filesize - (seek_point) else size = FilestackConfig::DEFAULT_CHUNK_SIZE end part_info[:size] = size jobs.push(part_info) part += 1 seek_point += FilestackConfig::DEFAULT_CHUNK_SIZE end jobs end |
#get_file_info(file) ⇒ Object
16 17 18 19 20 21 22 23 24 |
# File 'lib/filestack/utils/multipart_upload_utils.rb', line 16 def get_file_info(file) filename = File.basename(file) filesize = File.size(file) mimetype = MiniMime.lookup_by_filename(File.open(file)).content_type if mimetype.nil? mimetype = 'application/octet-stream' end [filename, filesize, mimetype.to_s] end |
#multipart_complete(apikey, filename, filesize, mimetype, start_response, parts_and_etags, options, intelligent = false) ⇒ Typhoeus::Response
Send complete call to multipart endpoint
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 |
# File 'lib/filestack/utils/multipart_upload_utils.rb', line 193 def multipart_complete(apikey, filename, filesize, mimetype, start_response, , , intelligent = false) if !intelligent data = { apikey: apikey, uri: start_response['uri'], region: start_response['region'], upload_id: start_response['upload_id'], filename: filename, size: filesize, mimetype: mimetype, parts: .join(';'), store_location: .nil? ? 's3' : [:store_location], file: Tempfile.new(filename) } else data = { apikey: apikey, uri: start_response['uri'], region: start_response['region'], upload_id: start_response['upload_id'], filename: filename, size: filesize, mimetype: mimetype, store_location: .nil? ? 's3' : [:store_location], file: Tempfile.new(filename), 'multipart' => 'true' } end data = data.merge!() if Typhoeus.post( FilestackConfig::MULTIPART_COMPLETE_URL, parameters: data, headers: FilestackConfig::HEADERS ) end |
#multipart_start(apikey, filename, filesize, mimetype, security, options) ⇒ Typhoeus::Response
Send start response to multipart endpoint
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
# File 'lib/filestack/utils/multipart_upload_utils.rb', line 38 def multipart_start(apikey, filename, filesize, mimetype, security, ) params = { apikey: apikey, filename: filename, mimetype: mimetype, size: filesize, store_location: .nil? ? 's3' : [:store_location], file: Tempfile.new(filename), options: , 'multipart' => 'true' } params = params.merge!() if unless security.nil? params[:policy] = security.policy params[:signature] = security.signature end response = Typhoeus.post( FilestackConfig::MULTIPART_START_URL, parameters: params, headers: FilestackConfig::HEADERS ) if response.code == 200 response.body else raise RuntimeError.new(response.body) end end |
#multipart_upload(apikey, filepath, security, options, timeout, intelligent: false) ⇒ Typhoeus::Response
Run entire multipart process through with file and options
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 |
# File 'lib/filestack/utils/multipart_upload_utils.rb', line 239 def multipart_upload(apikey, filepath, security, , timeout, intelligent: false) filename, filesize, mimetype = get_file_info(filepath) start_response = multipart_start( apikey, filename, filesize, mimetype, security, ) unless start_response['upload_type'].nil? intelligent_enabled = ((start_response['upload_type'].include? 'intelligent_ingestion')) && intelligent end jobs = create_upload_jobs( apikey, filename, filepath, filesize, start_response, ) if intelligent_enabled state = IntelligentState.new run_intelligent_upload_flow(jobs, state) response_complete = multipart_complete( apikey, filename, filesize, mimetype, start_response, nil, , intelligent ) else = run_uploads(jobs, apikey, filepath, ) response_complete = multipart_complete( apikey, filename, filesize, mimetype, start_response, , ) end begin Timeout::timeout(timeout){ while response_complete.code == 202 response_complete = multipart_complete( apikey, filename, filesize, mimetype, start_response, nil, , intelligent ) end } rescue raise "Upload timed out upon completion. Please try again later" end response_complete.body end |
#run_uploads(jobs, apikey, filepath, options) ⇒ Array
Runs all jobs in parallel
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 |
# File 'lib/filestack/utils/multipart_upload_utils.rb', line 161 def run_uploads(jobs, apikey, filepath, ) = ProgressBar.new(jobs.length) results = Parallel.map(jobs, in_threads: 4) do |job| response = upload_chunk( job, apikey, filepath, ) if response.code == 200 .increment! part = job[:part] etag = response.headers[:etag] "#{part}:#{etag}" end end results end |
#upload_chunk(job, apikey, filepath, options) ⇒ Typhoeus::Response
Uploads one chunk of the file
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 |
# File 'lib/filestack/utils/multipart_upload_utils.rb', line 125 def upload_chunk(job, apikey, filepath, ) file = File.open(filepath) file.seek(job[:seek]) chunk = file.read(FilestackConfig::DEFAULT_CHUNK_SIZE) md5 = Digest::MD5.new md5 << chunk data = { apikey: apikey, part: job[:part], size: chunk.length, md5: md5.base64digest, uri: job[:uri], region: job[:region], upload_id: job[:upload_id], store_location: job[:store_location], file: Tempfile.new(job[:filename]) } data = data.merge!() if fs_response = Typhoeus.post( FilestackConfig::MULTIPART_UPLOAD_URL, parameters: data, headers: FilestackConfig::HEADERS ).body Typhoeus.put( fs_response['url'], headers: fs_response['headers'], parameters: chunk ) end |