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/lib/open_project/plugins/acts_as_op_engine.rb

290 lines
12 KiB

#-- copyright
# OpenProject is a project management system.
# Copyright (C) 2012-2018 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 docs/COPYRIGHT.rdoc for more details.
#++
require_dependency 'open_project/ui/extensible_tabs'
require_dependency 'config/constants/api_patch_registry'
module OpenProject::Plugins
module ActsAsOpEngine
def self.included(base)
base.send :include, InstanceMethods
base.class_eval do
config.autoload_paths += Dir["#{config.root}/lib/"]
config.before_configuration do |app|
# This is required for the routes to be loaded first
# as the routes should be prepended so they take precedence over the core.
app.config.paths['config/routes.rb'].unshift File.join(config.root, 'config', 'routes.rb')
end
initializer "#{engine_name}.remove_duplicate_routes", after: 'add_routing_paths' do |app|
# removes duplicate entry from app.routes_reloader
# As we prepend the plugin's routes to the load_path up front and rails
# adds all engines' config/routes.rb later, we have double loaded the routes
# This is not harmful as such but leads to duplicate routes which decreases performance
app.routes_reloader.paths.uniq!
end
initializer "#{engine_name}.register_test_paths" do |app|
app.config.plugins_to_test_paths << root
end
initializer "#{engine_name}.i18n_load_paths" do |app|
app.config.i18n.load_path += Dir[config.root.join('config', 'locales', 'crowdin', '*.{rb,yml}').to_s]
end
initializer "#{engine_name}.register_cell_view_paths" do |_app|
pathname = config.root.join("app/cells/views")
::RailsCell.view_paths << pathname.to_path if pathname.exist?
end
# adds our factories to factory girl's load path
initializer "#{engine_name}.register_factories", after: 'factory_bot.set_factory_paths' do |_app|
FactoryBot.definition_file_paths << File.expand_path(root.to_s + '/spec/factories') if defined?(FactoryBot)
end
initializer "#{engine_name}.append_migrations" do |app|
unless app.root.to_s.match root.to_s
config.paths['db/migrate'].expanded.each do |expanded_path|
app.config.paths['db/migrate'] << expanded_path
end
##
# Manually inject these paths into various places
# in order to re-enable chained rake tasks
# finding all migrations.
# http://blog.pivotal.io/pivotal-labs/labs/leave-your-migrations-in-your-rails-engines
paths = app.config.paths['db/migrate'].to_a
ActiveRecord::Tasks::DatabaseTasks.migrations_paths = paths
ActiveRecord::Migrator.migrations_paths = paths
end
end
end
end
module InstanceMethods
def name
ActiveSupport::Inflector.demodulize(self.class).downcase
end
# Patch classes
#
# Looks for patches via autoloading in
# <plugin root>/lib/openproject/<plugin name>/patches/<patched_class>_patch.rb
# Make sure the patch module has the name the Rails autoloading expects.
#
# Example:
# patches [:IssuesController]
# This looks for OpenProject::XlsExport::Patches::IssuesControllerPatch
# in openproject/xls_export/patches/issues_controller_patch.rb
def patches(patched_classes)
plugin_module = self.class.to_s.deconstantize
self.class.config.to_prepare do
patched_classes.each do |klass_name|
patch = "#{plugin_module}::Patches::#{klass_name}Patch".constantize
klass = klass_name.to_s.constantize
klass.send(:include, patch) unless klass.included_modules.include?(patch)
end
end
end
def patch_with_namespace(*args)
plugin_module = self.class.to_s.deconstantize
self.class.config.to_prepare do
klass_name = args.last
patch = "#{plugin_module}::Patches::#{klass_name}Patch".constantize
qualified_class_name = args.map(&:to_s).join('::')
klass = qualified_class_name.to_s.constantize
klass.send(:include, patch) unless klass.included_modules.include?(patch)
end
end
# Define assets provided by the plugin
def assets(assets)
self.class.initializer "#{engine_name}.precompile_assets" do |app|
app.config.assets.precompile += assets.to_a
end
end
# Prepend view paths of this engine
# Note: YOU WILL override views of the core with this functionality
def override_core_views!
config.after_initialize do
paths = ActionController::Base.view_paths.map(&:to_s)
my_view_path = config.root.to_s + '/app/views'
# Move item to the front
paths.delete(my_view_path)
paths.insert(0, my_view_path)
ActionController::Base.view_paths = paths
end
end
# Add permitted attributes (strong_parameters)
#
# Useful when adding a field to an OpenProject core model. We discourage adding
# a field to a core model, but at the moment there's no API to do this in a better way
# and a lot of existing plugins already do it.
#
# See PermittedParams in OpenProject for available models
#
# Example:
# additional_permitted_attributes user: [:registration_reason]
def additional_permitted_attributes(attributes)
config.to_prepare do
::PermittedParams.send(:add_permitted_attributes, attributes)
end
end
# Register a plugin with OpenProject
#
# Uses Gem specification for plugin name, author etc.
#
# gem_name: The gem name, used for querying the gem for metadata like author
# options: An options Hash, at least :requires_openproject is recommended to
# define the minimal version of OpenProject the plugin is compatible with
# Another common option is :author_url.
# block: Pass a block to the plugin (for defining permissions, menu items and the like)
def register(gem_name, options, &block)
self.class.initializer "#{engine_name}.register_plugin" do
spec = Bundler.environment.specs[gem_name][0]
p = Redmine::Plugin.register engine_name.to_sym do
name spec.summary
author spec.authors.is_a?(Array) ? spec.authors[0] : spec.authors
description spec.description
version spec.version
url spec.homepage
options.each do |name, value|
send(name, value)
end
end
p.instance_eval(&block) if p && block
end
# Workaround to ensure settings are available after unloading in development mode
plugin_name = engine_name
if options.include? :settings
self.class.class_eval do
config.to_prepare do
Setting.create_setting("plugin_#{plugin_name}",
'default' => options[:settings][:default], 'serialized' => true)
Setting.create_setting_accessors("plugin_#{plugin_name}")
end
end
end
end
##
# Add a tab entry to an extensible tab
def add_tab_entry(key, name:, partial:, label:, only_if: nil)
::OpenProject::Ui::ExtensibleTabs.add(key, name: name, partial: partial, label: label, only_if: only_if)
end
def add_api_path(path_name, &block)
config.to_prepare do
::API::V3::Utilities::PathHelper::ApiV3Path.class_eval do
singleton_class.instance_eval do
define_method path_name, &block
end
end
end
end
def add_api_endpoint(base_endpoint, path = nil, &block)
config.to_prepare do
# we are expecting the base_endpoint as string for two reasons:
# 1. it does not seem possible to pass it as constant (auto loader not ready yet)
# 2. we can't constantize it here, because that would evaluate
# the API before it can be patched
::Constants::APIPatchRegistry.add_patch base_endpoint, path, &block
end
end
def extend_api_response(*args, &block)
config.to_prepare do
representer_namespace = args.map { |arg| arg.to_s.camelize }.join('::')
representer_class = "::API::#{representer_namespace}Representer".constantize
representer_class.instance_eval(&block)
end
end
def add_api_attribute(on:,
writable_for: [:create, :update],
ar_name:,
writeable: true,
&block)
config.to_prepare do
model_name = on.to_s.camelize
namespace = model_name.pluralize
Array(writable_for).each do |action|
# attribute is generally writable
# overrides might be defined in the more specific contract implementations
contract_class = "::#{namespace}::#{action.to_s.camelize}Contract".constantize
contract_class.attribute ar_name, { writeable: writeable }, &block
end
end
end
# Register a block to return results when an api representer's cache key is asked for.
#
# This is important for cache invalidation e.g. when another schema needs
# to be returned depending on whether a module is active or not.
#
# path: The fully namespaced representer name, excluding 'API' at the
# beginning and 'Representer' at the end.
# keys: The block to be executed when the cache key is queried for. The block's
# results will be appended to the original cache key if a cache key is already
# defined. If no cache key was defined before, the block's result makes up
# the whole cache key.
def add_api_representer_cache_key(*path,
&keys)
mod = Module.new
mod.send :define_method, :json_cache_key do
if defined?(super)
existing = super()
existing + instance_eval(&keys)
else
instance_eval(&keys)
end
end
config.to_prepare do
representer_namespace = path.map { |arg| arg.to_s.camelize }.join('::')
representer_class = "::API::#{representer_namespace}Representer".constantize
representer_class.prepend mod
end
end
end
end
end