kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
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.
120 lines
3.5 KiB
120 lines
3.5 KiB
#-- encoding: UTF-8
|
|
#-- copyright
|
|
# OpenProject is a project management system.
|
|
# Copyright (C) 2012-2017 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-2017 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.
|
|
#++
|
|
|
|
# Seeds the minimum data required to run OpenProject (BasicDataSeeder, AdminUserSeeder)
|
|
# as well as optional demo data (DemoDataSeeder) to give a user some orientation.
|
|
|
|
class RootSeeder < Seeder
|
|
include Redmine::I18n
|
|
|
|
def initialize
|
|
require 'basic_data_seeder'
|
|
require 'demo_data_seeder'
|
|
require 'development_data_seeder'
|
|
|
|
rails_engines.each { |engine| load_engine_seeders! engine }
|
|
end
|
|
|
|
def seed_data!
|
|
reset_active_record!
|
|
set_locale!
|
|
prepare_seed!
|
|
|
|
do_seed!
|
|
end
|
|
|
|
def do_seed!
|
|
ActiveRecord::Base.transaction do
|
|
# Basic data needs be seeded before anything else.
|
|
puts '*** Seeding basic data'
|
|
BasicDataSeeder.new.seed!
|
|
|
|
puts '*** Seeding admin user'
|
|
AdminUserSeeder.new.seed!
|
|
|
|
puts '*** Seeding demo data'
|
|
DemoDataSeeder.new.seed!
|
|
|
|
if Rails.env.development?
|
|
puts '*** Seeding development data'
|
|
require 'factory_girl'
|
|
# Load FactoryGirl factories
|
|
::FactoryGirl.find_definitions
|
|
|
|
DevelopmentDataSeeder.new.seed!
|
|
end
|
|
|
|
rails_engines.each do |engine|
|
|
puts "*** Loading #{engine.engine_name} seed data"
|
|
engine.load_seed
|
|
end
|
|
end
|
|
end
|
|
|
|
def rails_engines
|
|
::Rails::Engine.subclasses.map(&:instance)
|
|
end
|
|
|
|
def load_engine_seeders!(engine)
|
|
Dir[engine.root.join('app/seeders/**/*.rb')]
|
|
.each { |file| require file }
|
|
end
|
|
|
|
##
|
|
# Clears some schema caches and column information.
|
|
def reset_active_record!
|
|
ActiveRecord::Base.descendants.each do |klass|
|
|
klass.connection.schema_cache.clear!
|
|
klass.reset_column_information
|
|
end
|
|
end
|
|
|
|
def set_locale!
|
|
# willfully ignoring Redmine::I18n and it's
|
|
# #set_language_if_valid here as it
|
|
# would mean to circumvent the default settings
|
|
# for valid_languages.
|
|
desired_lang = (ENV['LOCALE'] || :en).to_sym
|
|
|
|
if all_languages.include?(desired_lang)
|
|
I18n.locale = desired_lang
|
|
puts "*** Seeding for locale: '#{I18n.locale}'"
|
|
else
|
|
raise "Locale #{desired_lang} is not supported"
|
|
end
|
|
end
|
|
|
|
def prepare_seed!
|
|
# Disable mail delivery for the duration of this task
|
|
ActionMailer::Base.perform_deliveries = false
|
|
|
|
# Avoid asynchronous DeliverWorkPackageCreatedJob
|
|
Delayed::Worker.delay_jobs = false
|
|
end
|
|
end
|
|
|