2016-02-12 23:52:43 +08:00
|
|
|
class MyModuleGroup < ActiveRecord::Base
|
|
|
|
include SearchableModel
|
|
|
|
|
2016-09-21 21:35:23 +08:00
|
|
|
auto_strip_attributes :name, nullify: false
|
2016-09-16 17:39:37 +08:00
|
|
|
validates :name, presence: true, length: { maximum: NAME_MAX_LENGTH }
|
2016-07-22 16:43:55 +08:00
|
|
|
validates :experiment, presence: true
|
2016-02-12 23:52:43 +08:00
|
|
|
|
2016-07-22 16:43:55 +08:00
|
|
|
belongs_to :experiment, inverse_of: :my_module_groups
|
2016-02-12 23:52:43 +08:00
|
|
|
belongs_to :created_by, foreign_key: 'created_by_id', class_name: 'User'
|
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
|
|
|
|
|
|
|
def self.search(user, include_archived, query = nil, page = 1)
|
2016-07-25 22:30:59 +08:00
|
|
|
exp_ids =
|
|
|
|
Experiment
|
2016-02-12 23:52:43 +08:00
|
|
|
.search(user, include_archived, nil, SHOW_ALL_RESULTS)
|
|
|
|
.select("id")
|
|
|
|
|
2016-07-25 22:30:59 +08:00
|
|
|
|
2016-07-21 19:11:15 +08:00
|
|
|
if query
|
|
|
|
a_query = query.strip
|
|
|
|
.gsub("_","\\_")
|
|
|
|
.gsub("%","\\%")
|
|
|
|
.split(/\s+/)
|
|
|
|
.map {|t| "%" + t + "%" }
|
|
|
|
else
|
|
|
|
a_query = query
|
|
|
|
end
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
new_query = MyModuleGroup
|
|
|
|
.distinct
|
2016-07-25 22:30:59 +08:00
|
|
|
.where("my_module_groups.experiment_id IN (?)", exp_ids)
|
|
|
|
.where_attributes_like("my_module_groups.name", a_query)
|
2016-02-12 23:52:43 +08:00
|
|
|
|
|
|
|
# Show all results if needed
|
|
|
|
if page == SHOW_ALL_RESULTS
|
|
|
|
new_query
|
|
|
|
else
|
|
|
|
new_query
|
|
|
|
.limit(SEARCH_LIMIT)
|
|
|
|
.offset((page - 1) * SEARCH_LIMIT)
|
|
|
|
end
|
|
|
|
end
|
2016-07-21 19:11:15 +08:00
|
|
|
|
|
|
|
def ordered_modules
|
|
|
|
my_modules.order(workflow_order: :asc)
|
|
|
|
end
|
2016-08-11 21:13:36 +08:00
|
|
|
|
|
|
|
def deep_clone_to_experiment(current_user, experiment)
|
|
|
|
clone = MyModuleGroup.new(
|
|
|
|
name: name,
|
|
|
|
created_by: created_by,
|
|
|
|
experiment: experiment
|
|
|
|
)
|
|
|
|
|
|
|
|
# Get clones of modules from this group, save them as hash
|
|
|
|
cloned_modules = ordered_modules.each_with_object({}) do |m, hash|
|
|
|
|
hash[m.id] = m.deep_clone_to_experiment(current_user, experiment)
|
|
|
|
hash
|
|
|
|
end
|
|
|
|
|
|
|
|
ordered_modules.each do |m|
|
|
|
|
# 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
|