OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/app/seeders/composite_seeder.rb

79 lines
2.5 KiB

#-- encoding: UTF-8
#-- copyright
# OpenProject is a project management system.
# Copyright (C) 2012-2015 the OpenProject Foundation (OPF)
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License version 3.
#
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
# Copyright (C) 2006-2013 Jean-Philippe Lang
# Copyright (C) 2010-2013 the ChiliProject Team
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# See doc/COPYRIGHT.rdoc for more details.
class CompositeSeeder < Seeder
def seed_data!
data_seeders.each do |seeder|
puts "#{seeder.class.name.demodulize}"
seeder.seed!
end
return if discovered_seeders.empty?
puts " Loading discovered seeders: "
discovered_seeders.each do |seeder|
puts "#{seeder.class.name.demodulize}"
seeder.seed!
end
end
def data_seeders
data_seeder_classes.map(&:new)
end
def data_seeder_classes
raise NotImplementedError, 'has to be implemented by subclasses'
end
def discovered_seeders
discovered_seeder_classes.map(&:new)
end
##
# Discovered seeders defined outside of the core (i.e. in plugins).
#
# Seeders defined in the core have a simple namespace, e.g. 'BasicData'
# or 'DemoData'. Plugins must define their seeders in their own namespace,
# e.g. 'BasicData::Documents' in order to avoid name conflicts.
def discovered_seeder_classes
Seeder
.subclasses
.reject { |cl| cl.to_s.deconstantize == namespace }
.select { |cl| include_discovered_class? cl }
end
def namespace
raise NotImplementedError, 'has to be implemented by subclasses'
end
##
# Accepts plugin seeders, e.g. 'BasicData::Documents'.
def include_discovered_class?(discovered_class)
discovered_class.name =~ /^#{namespace}::/
end
end