10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# File 'app/services/rails_workflow/process_importer.rb', line 10
def process
process = ProcessTemplate
.where(uuid: @json['uuid']).first_or_create!
@json['child_processes'] && @json['child_processes'].each do |child_process|
ProcessImporter.new('process_template' => child_process).process
end
process.attributes = @json.except('operations', 'child_processes')
process.save
operations = []
ids_to_delete = process.operations.pluck(:id)
@json['operations'].each do |operation_json|
operation = process
.operations.where(uuid: operation_json['uuid']).first_or_create!
operation.attributes = operation_json.except('child_process')
if operation_json['child_process'].present?
child_template = ProcessTemplate.find_by_uuid(operation_json['child_process'])
raise ActiveRecord::RecordNotFound, "Operation #{operation.title} child process template not found by UUID" if child_template.blank?
operation.child_process = child_template
end
operation.save
ids_to_delete.delete(operation.id)
operations << operation
end
OperationTemplate.delete(ids_to_delete) if ids_to_delete.present?
operations.each do |operation|
operation.dependencies.each do |d|
d['id'] = OperationTemplate
.find_by_uuid(d['uuid']).try(:id)
d.delete('uuid')
end
operation.save
end
end
|