Project

General

Profile

Download (17.6 KB) Statistics
| Branch: | Tag: | Revision:
# Redmine - project management software
# Copyright (C) 2006-2013 Jean-Philippe Lang
#
# 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.

require_dependency 'foreman/plugin/logging'
require_dependency 'foreman/plugin/rbac_registry'
require_dependency 'foreman/plugin/rbac_support'
require_dependency 'foreman/plugin/report_scanner_registry'
require_dependency 'foreman/plugin/report_origin_registry'

module Foreman #:nodoc:
class PluginNotFound < Foreman::Exception; end
class PluginRequirementError < Foreman::Exception; end

# Base class for Foreman plugins.
# Plugins are registered using the <tt>register</tt> class method that acts as the public constructor.
#
# Foreman::Plugin.register :example do
# name 'Example plugin'
# author 'John Smith'
# description 'This is an example plugin for Foreman'
# version '0.0.1'
# end
#
class Plugin
@registered_plugins = {}
@tests_to_skip = {}
@report_scanner_registry = Plugin::ReportScannerRegistry.new
@report_origin_registry = Plugin::ReportOriginRegistry.new

class << self
attr_reader :registered_plugins
attr_accessor :tests_to_skip, :report_scanner_registry,
:report_origin_registry
private :new

def def_field(*names)
class_eval do
names.each do |name|
define_method(name) do |*args|
args.empty? ? instance_variable_get("@#{name}") : instance_variable_set("@#{name}", *args)
end
end
end
end

# Plugin constructor
def register(id, &block)
plugin = new(id)
if (gem = Gem.loaded_specs[id.to_s])
plugin.name gem.name
plugin.author gem.authors.to_sentence
plugin.description gem.description
plugin.url gem.homepage
plugin.version gem.version.to_s
plugin.path gem.full_gem_path
end

plugin.instance_eval(&block)
plugin.after_initialize

registered_plugins[id] = plugin
end

def unregister(plugin_id)
@registered_plugins.delete(plugin_id)
end

# Clears the registered plugins hash
# It doesn't unload installed plugins
def clear
@registered_plugins = {}
end

# Returns an array of all registered plugins
def all
registered_plugins.values.sort
end

# Finds a plugin by its id
def find(id)
registered_plugins[id.to_sym]
end

# Checks if a plugin is installed
#
# @param [String] id name of the plugin
def installed?(id)
registered_plugins[id.to_sym].present?
end

def registered_report_scanners
report_scanner_registry.report_scanners
end
end

prepend Foreman::Plugin::Assets
prepend Foreman::Plugin::SearchOverrides

def_field :name, :description, :url, :author, :author_url, :version, :path
attr_reader :id, :logging, :provision_methods, :compute_resources, :to_prepare_callbacks,
:facets, :rbac_registry, :dashboard_widgets, :info_providers, :smart_proxy_references

# Lists plugin's roles:
# Foreman::Plugin.find('my_plugin').registered_roles
delegate :registered_roles, :registered_permissions, :default_roles, :permissions, :permission_names, :to => :rbac_registry
delegate :register_report_scanner, :unregister_report_scanner, :to => :report_scanner_registry
delegate :register_report_origin, :to => :report_origin_registry

def initialize(id)
@id = id.to_sym
@logging = Plugin::Logging.new(@id)
@rbac_registry = Plugin::RbacRegistry.new
@provision_methods = {}
@compute_resources = []
@to_prepare_callbacks = []
@template_labels = {}
@parameter_filters = {}
@smart_proxies = {}
@controller_action_scopes = {}
@dashboard_widgets = []
@rabl_template_extensions = {}
@smart_proxy_references = []
end

def report_scanner_registry
self.class.report_scanner_registry
end

def report_origin_registry
self.class.report_origin_registry
end

def after_initialize
configure_logging
end

def configure_logging
@logging.configure(SETTINGS[@id])
end

def logger(name, configuration = {})
@logging.add_logger(name, configuration)
end

def <=>(plugin)
self.id.to_s <=> plugin.id.to_s
end

def to_s
"Foreman plugin: #{id}, #{version}, #{author}, #{description}"
end

# Sets a requirement on Foreman version
# Raises a PluginRequirementError exception if the requirement is not met
# matcher format is gem dependency format
def requires_foreman(matcher)
current = SETTINGS[:version].notag
unless Gem::Dependency.new('', matcher).match?('', current)
raise PluginRequirementError.new(N_("%{id} plugin requires Foreman %{matcher} but current is %{current}" % {:id => id, :matcher => matcher, :current => current}))
end
true
end

# Sets a requirement on a Foreman plugin version
# Raises a PluginRequirementError exception if the requirement is not met
# matcher format is gem dependency format
def requires_foreman_plugin(plugin_name, matcher)
plugin = Plugin.find(plugin_name)
raise PluginNotFound.new(N_("%{id} plugin requires the %{plugin_name} plugin, not found") % {:id => id, :plugin_name => plugin_name}) unless plugin
unless Gem::Dependency.new('', matcher).match?('', plugin.version)
raise PluginRequirementError.new(N_("%{id} plugin requires the %{plugin_name} plugin %{matcher} but current is %{plugin_version}" % {:id => id, :plugin_name => plugin_name, :matcher => matcher, :plugin_version => plugin.version}))
end
true
end

# Adds an item to the given menu
# The id parameter is automatically added to the url.
# menu :menu_name, :plugin_example, 'menu text', { :controller => :example, :action => :index }
#
# name parameter can be: :top_menu or :admin_menu
#
def menu(menu, name, options = {})
options[:parent] = @parent if @parent
Menu::Manager.map(menu).item(name, options)
end

alias_method :add_menu_item, :menu

def sub_menu(menu, name, options = {}, &block)
options[:parent] = @parent if @parent
Menu::Manager.map(menu).sub_menu(name, options)
current = @parent
@parent = name
self.instance_eval(&block) if block_given?
@parent = current
end

def divider(menu, options = {})
Menu::Manager.map(menu).divider(options)
end

# Removes item from the given menu
def delete_menu_item(menu, item)
Menu::Manager.map(menu).delete(item)
end

# Extends page by adding custom pagelet to a mountpoint.
# Usage:
#
# extend_page("hosts/_form") do |context|
# context.add_pagelet :mountpoint,
# :name => N_("Example Pagelet"),
# :partial => "path/to/partial",
# :priority => 10000,
# :id => 'custom-html-id',
# :onlyif => Proc.new { |subject| subject.should_show_pagelet? }
# end
def extend_page(virtual_path, &block)
Pagelets::Manager.with_key(virtual_path, &block) if block_given?
end

def tests_to_skip(hash)
# Format is { "testclass" => [ "skip1", "skip2" ] }
hash.each do |testclass, tests|
if self.class.tests_to_skip[testclass].nil?
self.class.tests_to_skip[testclass] = tests
else
self.class.tests_to_skip[testclass] = self.class.tests_to_skip[testclass].push(tests).flatten.uniq
end
end
end

def security_block(name, &block)
@security_block = name
self.instance_eval(&block)
@security_block = nil
end

# Defines a permission called name for the given controller=>actions
# :options can contain :resource_type key which is the string of resource
# class to which this permissions is related, rest of options is passed
# to AccessControl
def permission(name, hash, options = {})
rbac_registry.register name, options
options[:engine] ||= self.id.to_s
options[:security_block] = @security_block
Foreman::AccessControl.map do |map|
map.permission name, hash, options
end

return false if pending_migrations || Rails.env.test?
Permission.where(:name => name).first_or_create(:resource_type => options[:resource_type])
end

# Add a new role if it doesn't exist
def role(name, permissions)
default_roles[name] = permissions
return false if pending_migrations || Rails.env.test? || User.unscoped.find_by_login(User::ANONYMOUS_ADMIN).nil?
Role.without_auditing do
Filter.without_auditing do
Plugin::RoleLock.new(self.id).register_role name, permissions, rbac_registry
end
end
rescue PermissionMissingException => e
Rails.logger.warn(_("Could not create role '%{name}': %{message}") % {:name => name, :message => e.message})
return false if Foreman.in_rake?
Rails.logger.error(_('Cannot continue because some permissions were not found, please run rake db:seed and retry'))
raise e
end

# Add plugin permissions to core's Manager and Viewer roles
# Usage:
# add_resource_permissions_to_default_roles ['MyPlugin::FirstResource', 'MyPlugin::SecondResource'], :except => [:skip_this_permission]
def add_resource_permissions_to_default_roles(resources, opts = {})
Role.without_auditing do
Filter.without_auditing do
Plugin::RbacSupport.new.add_resource_permissions_to_default_roles resources, opts
end
end
end

# Add plugin permissions to Manager and Viewer roles. Use this for permissions without resource_type or to handle special cases
# Usage:
# add_permissions_to_default_roles 'Role Name' => [:first_permission, :second_permission]
def add_permissions_to_default_roles(args)
Role.without_auditing do
Filter.without_auditing do
Plugin::RbacSupport.new.add_permissions_to_default_roles args
end
end
end

# Add plugin permissions to Manager and Viewer roles. Use this method if there are no special cases that need to be taken care of.
# Otherwise add_permissions_to_default_roles or add_resource_permissions_to_default_roles might be the methods you are looking for.
def add_all_permissions_to_default_roles
return if Foreman.in_rake?('db:migrate') || !permission_table_exists?
Role.without_auditing do
Filter.without_auditing do
Plugin::RbacSupport.new.add_all_permissions_to_default_roles(Permission.where(:name => @rbac_registry.permission_names))
end
end
end

def pending_migrations
migration_paths = ActiveRecord::Migrator.migrations(
ActiveRecord::Migrator.migrations_paths)
pending_migrations = ActiveRecord::Migrator.new(:up, migration_paths).
pending_migrations

return false if pending_migrations.empty?
migration_names = pending_migrations.take(5).map(&:name).join(', ')
Rails.logger.debug(
"There are #{pending_migrations.size} pending migrations: "\
"#{migration_names}#{(pending_migrations.size > 5) ? '...' : ''}")
true
end

# List of helper methods allowed for templates in safe mode
def allowed_template_helpers(*helpers)
in_to_prepare do
Foreman::Renderer::ALLOWED_HELPERS.concat(helpers).uniq!
end
end

# List of variables allowed for templates in safe mode
def allowed_template_variables(*variables)
in_to_prepare do
Foreman::Renderer::ALLOWED_VARIABLES.concat(variables).uniq!
end
end

# List of global settings allowed for templates
def allowed_template_global_settings(*settings)
in_to_prepare do
Foreman::Renderer::ALLOWED_GLOBAL_SETTINGS.concat(settings).uniq!
end
end

# List of modules which public methods will be available during template rendering
# including safe mode
def extend_template_helpers(*mods)
in_to_prepare do
mods.each do |mod|
extend_template_helpers_by_module(mod.to_s)
end
end
end

# Add Compute resource
def compute_resource(provider)
return if @compute_resources.include?(provider)
if !provider.is_a?(Class) || !(provider < ComputeResource)
raise ::Foreman::Exception.new(N_("Cannot register compute resource, wrong type supplied"))
end
@compute_resources << provider.name
end

def widget(template, options)
@dashboard_widgets << {:template => template}.merge(options)
end

# list of API controller paths, globs allowed
def apipie_documented_controllers(controllers = nil)
if controllers
@apipie_documented_controllers = controllers
Apipie.configuration.api_controllers_matcher.concat(controllers)
end
@apipie_documented_controllers
end

# list of clontroller classnames that are ignored by apipie
def apipie_ignored_controllers(controllers = nil)
if controllers
@apipie_ignored_controllers = controllers
Apipie.configuration.ignored.concat(controllers)
end
@apipie_ignored_controllers
end

# register custom host status class, it should inherit from HostStatus::Status
def register_custom_status(klass)
in_to_prepare do
HostStatus.status_registry.add(klass)
end
end

# register a provision method
def provision_method(name, friendly_name)
return if @provision_methods.key?(name.to_s)
@provision_methods[name.to_s] = friendly_name
end

def register_facet(klass, name, &block)
# Save the entry in case of reloading
@facets ||= []
@facets << Facets.register(klass, name, &block)
end

def register_info_provider(klass)
@info_providers ||= []
@info_providers << klass
end

def in_to_prepare(&block)
@to_prepare_callbacks << block
end

# add human readable label for plugin's template kind with i18n support: template_labels "kind_name" => N_("Nice Name")
def template_labels(hash)
@template_labels.merge!(hash)
end

def get_template_labels
@template_labels
end

def parameter_filter(klass, *args, &block)
@parameter_filters[klass.name] ||= []
@parameter_filters[klass.name] << (block_given? ? args + [block] : args)
end

def parameter_filters(klass)
@parameter_filters.fetch(klass.is_a?(Class) ? klass.name : klass, [])
end

def smart_proxy_for(klass, name, options)
@smart_proxies[klass.name] ||= {}
@smart_proxies[klass.name][name] = options
klass.register_smart_proxy(name, options)
end

def smart_proxies(klass)
@smart_proxies.fetch(klass.name, {})
end

def add_controller_action_scope(controller_class, action, &block)
controller_actions = @controller_action_scopes[controller_class.name] || {}
actions_list = controller_actions[action] || []
actions_list << block
controller_actions[action] = actions_list
@controller_action_scopes[controller_class.name] = controller_actions
end

def action_scopes_hash_for(controller_class)
@controller_action_scopes[controller_class.name] || {}
end

# Extends a rabl template by "including" another template
#
# Usage:
# extend_rabl_template 'api/v2/hosts/main', 'api/v2/hosts/expiration'
#
# This will call 'extends api/v2/hosts/expiration' inside
# the template 'api/v2/hosts/main'
#
def extend_rabl_template(virtual_path, template)
@rabl_template_extensions[virtual_path] ||= []
@rabl_template_extensions[virtual_path] << template
end

def rabl_template_extensions(virtual_path)
@rabl_template_extensions.fetch(virtual_path, [])
end

def add_counter_telemetry(name, description, instance_labels = [])
Foreman::Telemetry.instance.add_counter(name, description, instance_labels)
end

def add_gauge_telemetry(name, description, instance_labels = [])
Foreman::Telemetry.instance.add_gauge(name, description, instance_labels)
end

def add_histogram_telemetry(name, description, instance_labels = [], buckets = DEFAULT_BUCKETS)
Foreman::Telemetry.instance.add_histogram(name, description, instance_labels, buckets)
end

def smart_proxy_reference(hash)
@smart_proxy_references << ProxyReferenceRegistry.new_reference(hash)
end

private

def permission_table_exists?
exists = Permission.connection.table_exists?(Permission.table_name)
Rails.logger.debug("Not adding permissions from plugin #{@id} to default roles - permissions table not found") if !exists && !Rails.env.test?
exists
end

def extend_template_helpers_by_module(mod)
mod = mod.constantize

(TemplatesController.descendants + [TemplatesController, UnattendedController, UnattendedHelper]).each do |klass|
klass.send(:include, mod)
end
allowed_template_helpers(*(mod.public_instance_methods - Module.public_instance_methods))
end
end
end
(3-3/3)