Class: Envoi::Mam::Cantemo::Agent
- Inherits:
-
Agent
- Object
- Agent
- Envoi::Mam::Cantemo::Agent
show all
- Defined in:
- lib/envoi/mam/cantemo/agent.rb,
lib/envoi/mam/cantemo/agent/watch_folder_manager.rb,
lib/envoi/mam/cantemo/agent/watch_folder_handler_aspera.rb,
lib/envoi/mam/cantemo/agent/watch_folder_handler-working.rb
Defined Under Namespace
Classes: WatchFolderHandler, WatchFolderManager
Constant Summary
collapse
- DEFAULT_SHAPE_TAG =
'original'
- DEFAULT_DESTINATION_PATH =
'.'
- DEFAULT_PRESERVE_FILE_PATH =
false
Constants inherited
from Agent
Agent::VERSION
Instance Attribute Summary collapse
Attributes inherited from Agent
#api_client, #config, #initial_args, #logger
Instance Method Summary
collapse
Methods inherited from Agent
#initialize, #initialize_logger, load_config_and_init, load_config_from_file, load_config_from_service, load_from_config_file, load_from_config_service, #notify, #run_operation, #shell_execute
Instance Attribute Details
#default_aspera_ascp_args ⇒ Object
Returns the value of attribute default_aspera_ascp_args.
17
18
19
|
# File 'lib/envoi/mam/cantemo/agent.rb', line 17
def default_aspera_ascp_args
@default_aspera_ascp_args
end
|
#default_aspera_ascp_path ⇒ Object
Returns the value of attribute default_aspera_ascp_path.
17
18
19
|
# File 'lib/envoi/mam/cantemo/agent.rb', line 17
def default_aspera_ascp_path
@default_aspera_ascp_path
end
|
#default_preserve_file_path ⇒ Object
Returns the value of attribute default_preserve_file_path.
17
18
19
|
# File 'lib/envoi/mam/cantemo/agent.rb', line 17
def default_preserve_file_path
@default_preserve_file_path
end
|
#default_vidispine_shape_tag ⇒ Object
Returns the value of attribute default_vidispine_shape_tag.
17
18
19
|
# File 'lib/envoi/mam/cantemo/agent.rb', line 17
def default_vidispine_shape_tag
@default_vidispine_shape_tag
end
|
Instance Method Details
#after_initialize ⇒ Object
#agent_config ⇒ Object
33
34
35
|
# File 'lib/envoi/mam/cantemo/agent.rb', line 33
def agent_config
@agent_config ||= config['cantemo'] || config || {}
end
|
#agent_config_storages ⇒ Object
37
38
39
|
# File 'lib/envoi/mam/cantemo/agent.rb', line 37
def agent_config_storages
agent_config['storages']
end
|
#download(args = {}) ⇒ Object
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
# File 'lib/envoi/mam/cantemo/agent.rb', line 66
def download(args = {})
item_id = args[:item_id]
shape_id = args[:shape_id]
unless shape_id && !shape_id.empty?
shape_tag = args[:shape_tag] || default_vidispine_shape_tag
shape_id = item_get_shape_by_tag(item_id, shape_tag)
end
logger.info { "Getting file path for Item ID: #{item_id} Shape ID: #{shape_id}" }
item_shape_get_response = api_client.item_shape_get(:item_id => item_id, :shape_id => shape_id)
files = item_shape_get_response['containerComponent']['file']
logger.debug { "Files: #{files}" }
files = [files.first] files.each do |file|
begin
download_file(args, file)
rescue => e
logger.warn { "Exception: #{$!}" }
end
end
logger.info { 'DONE' }
end
|
#download_file(args, file) ⇒ Object
93
94
95
96
97
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
129
130
131
132
|
# File 'lib/envoi/mam/cantemo/agent.rb', line 93
def download_file(args, file)
logger.debug { "File: #{file}" }
transfer_type = args[:transfer_type]
file_storage_id = file['storage']
file_path = file['path']
file_storage_config = agent_config_storages[file_storage_id]
unless file_storage_config && !file_storage_config.empty?
raise Exception, "No configuration found for storage '#{file_storage_id}'"
end
logger.info { "Transferring File Path: '#{file_path}'" }
preserve_path = args.fetch(:preserve_path, file_storage_config.fetch('preserve_path', default_preserve_file_path))
destination_path = args[:destination_path] || file_storage_config['destination_path'] || DEFAULT_DESTINATION_PATH
relative_path = preserve_path ? File.dirname(file_path) : nil
relative_path = nil if relative_path == '.'
target_path = relative_path ? File.join(destination_path, relative_path) : destination_path
target_path = target_path[0..-1] if target_path.start_with?('/') && !destination_path.start_with?('/')
aspera_config = file_storage_config['aspera']
if (transfer_type.empty? || transfer_type == :aspera) && (aspera_config && !aspera_config.empty?)
client = Envoi::Mam::Agent::TransferClient::Aspera.new(agent: self)
return client.download(aspera_config, file_path, target_path)
end
s3_config = file_storage_config['s3']
if (transfer_type.empty? || transfer_type == :s3) && (s3_config && !s3_config.empty?)
target_path = File.expand_path(target_path) if target_path == '.'
target_path = File.join(target_path, File.basename(file_path))
client = Envoi::Mam::Agent::TransferClient::S3.new(agent: self)
return client.download(s3_config, file_path, target_path)
end
logger.warn { "No Supported TransferClient Configuration#{transfer_type && !transfer_type.empty? ? " for transfer type '#{transfer_type}' " : ''}Found in Storage Configuration." }
end
|
#dry_run? ⇒ Boolean
29
30
31
|
# File 'lib/envoi/mam/cantemo/agent.rb', line 29
def dry_run?;
@dry_run
end
|
#import_file(args = {}) ⇒ Hash{ :success->Boolean, :file_create_response-
Returns {}, :import_response->{} }].
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
|
# File 'lib/envoi/mam/cantemo/agent.rb', line 256
def import_file(args = {})
logger.debug { "Agent - Import File - Args: #{args}"}
_response = args[:response_object] || {}
file_path = args[:file_path]
storage_id = args[:storage_id]
target_path = args[:target_path]
item_id = args[:item_id]
shape_tag = args[:shape_tag] || default_vidispine_shape_tag
item_add_args_in = args[:item_add_args] || { }
item_add_options_in = args[:item_add_options] || { }
path_on_storage = File.join(target_path, File.basename(file_path))
path_on_storage = path_on_storage[1..-1] if path_on_storage.start_with?('/')
file_create_response = api_client.storage_file_get_or_create(storage_id, path_on_storage, { :extended_response => true })
_response[:file_create_response] = file_create_response
file = file_create_response[:file]
file_id = file['id']
unless file_id
_file = file.dup
_file.keep_if { |k, v| v }
logger.error { "Failed to create file. #{_file}" }
_response[:success] = false
return _response
end
item = (file['item'] || []).first
if item
shape = (item['shape'] || []).first
msg = "File already exist and is associated to item #{item['id']} as shape #{shape['id']}."
logger.warn { "#{msg} #{file}" }
_response[:error] = { :message => msg }
_response[:success] = false
return _response
end
if item_id
item_shape_import_response = api_client.item_shape_import(item_id: item_id,
tag: shape_tag, file_id: file_id)
else
item_add_args = {
storage_id: storage_id,
file_path: path_on_storage,
file_id: file_id,
storage_path_map: { '/' => storage_id }
}
item_add_args.merge!(item_add_args_in) if item_add_args_in.is_a?(Hash)
item_add_options = { }
item_add_options.merge!(item_add_options_in) if item_add_options_in.is_a?(Hash)
logger.debug { "Executing Item Add/Import. ARGS: #{item_add_args} OPTS: #{item_add_options}" }
item_shape_import_response = api_client.item_add_using_file_path(item_add_args, item_add_options)
end
_response[:import_response] = item_shape_import_response
_response
end
|
#ingest_file ⇒ Object
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
|
# File 'lib/envoi/mam/cantemo/agent.rb', line 324
def ingest_file
end
|
#initialize_api_client(args = {}) ⇒ Object
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# File 'lib/envoi/mam/cantemo/agent.rb', line 41
def initialize_api_client(args = {})
api_config = agent_config
@api_client = args[:api_client] || begin
client_args = Hash[api_config.map { |k,v| [ k.respond_to?(:to_sym) ? k.to_sym.downcase : k, v ]}]
client_args[:logger] = logger
_client = ::Cantemo::Portal::API::Client.new(client_args)
begin
_client.version
rescue => e
raise "Error connecting to Portal: #{e.message}"
end
_client
end
@default_vidispine_shape_tag = args[:default_shape_tag] || api_config['default_shape_tag'] || api_config['shape_tag'] || DEFAULT_SHAPE_TAG
end
|
#item_get_shape_by_tag(item_id, shape_tag) ⇒ Object
61
62
63
64
|
# File 'lib/envoi/mam/cantemo/agent.rb', line 61
def item_get_shape_by_tag(item_id, shape_tag)
item_shapes_get_response = api_client.item_shapes_get(:item_id => item_id, :tag => shape_tag)
shape_id = item_shapes_get_response['uri'].first
end
|
#upload(args = {}) ⇒ Hash
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
|
# File 'lib/envoi/mam/cantemo/agent.rb', line 142
def upload(args = {})
_response = {}
file_path = args[:file_path]
raise ArgumentError, "Path not found: '#{file_path}'" unless File.exists?(file_path)
if File.directory?(file_path)
file_paths = Dir.glob(File.join(file_path, '*.*'))
logger.debug { "File Paths: #{file_paths}" }
file_paths.map { |fp| upload(args.merge(file_path: fp)) }
return file_paths
end
logger.debug { "Preparing to upload '#{file_path}'" }
transfer_type = args[:transfer_type] || ''
storage_id = args[:storage_id]
storage_config = agent_config_storages[storage_id]
unless storage_config && !storage_config.empty?
raise "No configuration found for storage '#{storage_id}'"
end
should_import_file = args.fetch(:import_file, storage_config.fetch('import', true))
should_preserve_path = args.fetch(:preserve_path,
storage_config.fetch('preserve_path', default_preserve_file_path))
destination_path = args[:destination_path] || storage_config['destination_path'] || '/'
relative_path = should_preserve_path ? File.dirname(file_path) : nil
relative_path = File.expand_path(relative_path) if relative_path == '.'
target_path = relative_path ? File.join(destination_path, relative_path) : destination_path
target_path = target_path[0..-1] if target_path.start_with?('/') && !destination_path.start_with?('/')
transfer_response = begin
response = nil
aspera_config = storage_config['aspera']
begin
if (transfer_type.empty? || transfer_type == :aspera) && (aspera_config && !aspera_config.empty?)
client = Envoi::Mam::Agent::TransferClient::Aspera.new(agent: self)
response = client.upload(aspera_config, file_path, target_path)
end
rescue => e
logger.error { "Aspera Transfer Failed. '#{e.message}'\n#{e.backtrace.first}" }
end
s3_config = storage_config['s3']
begin
if !response && (transfer_type.empty? || transfer_type == :s3) && (s3_config && !s3_config.empty?)
_target_path = target_path
_target_path = File.expand_path(_target_path) if target_path == '.'
_target_path = File.join(_target_path, File.basename(file_path))
client = Envoi::Mam::Agent::TransferClient::S3.new(agent: self)
response = client.upload(s3_config, file_path, _target_path)
end
rescue => e
logger.error { "S3 Transfer Failed. '#{e.message}'" }
end
response
end
transfer_response = { success: transfer_response } if transfer_response == true || transfer_response == false
logger.debug { "Transfer Response: #{transfer_response}" }
_response[:transfer_response] = transfer_response
if transfer_response.nil?
logger.warn { "No supported TransferClient configuration#{transfer_type && !transfer_type.empty? ? " for transfer type '#{transfer_type}'" : ''} found in storage configuration." }
_response[:success] = false
return _response
end
unless transfer_response[:success]
logger.error { "Error transferring file." }
_response[:success] = false
return _response
end
unless should_import_file
_response[:success] = transfer_response[:success]
return _response
end
import_file_args = args.dup
import_file_args[:response_object] = _response
import_file_args[:target_path] = target_path
import_file(import_file_args)
_response[:success] = true unless _response[:success] === false
_response
rescue => e
logger.error { "Exception: #{e.message}" }
_response[:exception] = e
return _response
end
|