2017-06-23 21:19:08 +08:00
|
|
|
class MyModuleGroup < ApplicationRecord
|
2016-02-12 23:52:43 +08:00
|
|
|
include SearchableModel
|
|
|
|
|
2016-07-22 16:43:55 +08:00
|
|
|
validates :experiment, presence: true
|
2016-02-12 23:52:43 +08:00
|
|
|
|
2019-07-26 18:40:36 +08:00
|
|
|
belongs_to :experiment, inverse_of: :my_module_groups
|
2017-06-28 21:21:32 +08:00
|
|
|
belongs_to :created_by,
|
|
|
|
foreign_key: 'created_by_id',
|
|
|
|
class_name: 'User',
|
|
|
|
optional: true
|
2016-09-21 21:54:12 +08:00
|
|
|
has_many :my_modules, inverse_of: :my_module_group, dependent: :nullify
|
2016-02-12 23:52:43 +08:00
|
|
|
|
2019-02-14 21:54:04 +08:00
|
|
|
scope :without_archived_modules, (lambda do
|
2019-02-14 17:53:48 +08:00
|
|
|
joins(:my_modules).where('my_modules.archived = ?', false).distinct
|
|
|
|
end)
|
|
|
|
|
2016-08-11 21:13:36 +08:00
|
|
|
def deep_clone_to_experiment(current_user, experiment)
|
|
|
|
clone = MyModuleGroup.new(
|
|
|
|
created_by: created_by,
|
|
|
|
experiment: experiment
|
|
|
|
)
|
|
|
|
|
|
|
|
# Get clones of modules from this group, save them as hash
|
2019-01-07 22:48:26 +08:00
|
|
|
cloned_modules = my_modules.workflow_ordered.each_with_object({}) do |m, h|
|
|
|
|
h[m.id] = m.deep_clone_to_experiment(current_user, experiment)
|
|
|
|
h
|
2016-08-11 21:13:36 +08:00
|
|
|
end
|
|
|
|
|
2019-01-07 22:48:26 +08:00
|
|
|
my_modules.workflow_ordered.each do |m|
|
2016-08-11 21:13:36 +08:00
|
|
|
# Copy connections
|
|
|
|
m.inputs.each do |inp|
|
|
|
|
Connection.create(
|
|
|
|
input_id: cloned_modules[inp[:input_id]].id,
|
|
|
|
output_id: cloned_modules[inp[:output_id]].id
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Copy remaining variables
|
|
|
|
cloned_module = cloned_modules[m.id]
|
|
|
|
cloned_module.my_module_group = self
|
|
|
|
cloned_module.created_by = m.created_by
|
|
|
|
cloned_module.workflow_order = m.workflow_order
|
|
|
|
end
|
|
|
|
|
|
|
|
clone.my_modules << cloned_modules.values
|
|
|
|
clone.save
|
|
|
|
clone
|
|
|
|
end
|
2016-02-12 23:52:43 +08:00
|
|
|
end
|