logstash/lib/pluginmanager/util.rb
Andrea Selva 0bc53b4b8a
Adapted install/uninstall/list PluginManager's command to respect the alised plugins (#12821) (#12836)
Adapted install/uninstall/list PluginManager's CLI commands to respect the alised plugins
- adapt install plugin to resolve an alias giving precedence on a real plugin
- changed list to mark alised plugins
- uninstall avoid to remove the alias and ask the user to remove the original plugin
- update update the original plugin in case of alias, else fallback on usual behavior

Co-authored-by: Ry Biesemeyer <ry.biesemeyer@elastic.co>
(cherry picked from commit 1e08341e1e)
2021-04-20 23:43:47 +02:00

157 lines
7 KiB
Ruby

# Licensed to Elasticsearch B.V. under one or more contributor
# license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright
# ownership. Elasticsearch B.V. licenses this file to you under
# the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
require "rubygems/package"
require_relative "../bootstrap/patches/remote_fetcher"
module LogStash::PluginManager
# Defines the plugin alias, must be kept in synch with Java class org.logstash.plugins.AliasRegistry
ALIASES = {"logstash-input-elastic_agent" => "logstash-input-beats"}
class ValidationError < StandardError; end
# check for valid logstash plugin gem name & version or .gem file, logs errors to $stdout
# uses Rubygems API and will remotely validated agains the current Gem.sources
# @param plugin [String] plugin name or .gem file path
# @param version [String] gem version requirement string
# @param [Hash] options the options used to setup external components
# @option options [Array<String>] :rubygems_source Gem sources to lookup for the verification
# @return [Boolean] true if valid logstash plugin gem name & version or a .gem file
def self.logstash_plugin?(plugin, version = nil, options={})
if plugin_file?(plugin)
begin
return logstash_plugin_gem_spec?(plugin_file_spec(plugin))
rescue => e
$stderr.puts("Error reading plugin file #{plugin}, caused by #{e.class}")
$stderr.puts(e.message) if ENV["DEBUG"]
return false
end
else
dep = Gem::Dependency.new(plugin, version || Gem::Requirement.default)
Gem.sources = Gem::SourceList.from(options[:rubygems_source]) if options[:rubygems_source]
specs, errors = Gem::SpecFetcher.fetcher.spec_for_dependency(dep)
# dump errors
errors.each { |error| $stderr.puts(error.wordy) }
# depending on version requirements, multiple specs can be returned in which case
# we will grab the one with the highest version number
if latest = specs.map(&:first).max_by(&:version)
unless valid = logstash_plugin_gem_spec?(latest)
$stderr.puts("#{plugin} is not a Logstash plugin")
end
return valid
else
$stderr.puts("Plugin #{plugin}" + (version ? " version #{version}" : "") + " does not exist") if errors.empty?
return false
end
end
end
# Fetch latest version information as in rubygems
# @param [String] The plugin name
# @param [Hash] Set of available options when fetching the information
# @option options [Boolean] :pre Include pre release versions in the search (default: false)
# @return [Hash] The plugin version information as returned by rubygems
def self.fetch_latest_version_info(plugin, options={})
exclude_prereleases = options.fetch(:pre, false)
versions = LogStash::Rubygems.versions(plugin)
raise ValidationError.new("Something went wrong with the validation. You can skip the validation with the --no-verify option") if !versions.is_a?(Array) || versions.empty?
versions = versions.select { |version| !version["prerelease"] } if !exclude_prereleases
versions.first
end
# @param spec [Gem::Specification] plugin gem specification
# @return [Boolean] true if this spec is for an installable logstash plugin
def self.logstash_plugin_gem_spec?(spec)
spec.metadata && spec.metadata["logstash_plugin"] == "true"
end
# @param path [String] path to .gem file
# @return [Gem::Specification] .get file gem specification
# @raise [Exception] Gem::Package::FormatError will be raised on invalid .gem file format, might be other exceptions too
def self.plugin_file_spec(path)
Gem::Package.new(path).spec
end
# @param plugin [String] the plugin name or the local path to a .gem file
# @return [Boolean] true if the plugin is a local .gem file
def self.plugin_file?(plugin)
(plugin =~ /\.gem$/ && File.file?(plugin))
end
# retrieve gem specs for all or specified name valid logstash plugins locally installed
# @param name [String] specific plugin name to find or nil for all plugins
# @return [Array<Gem::Specification>] all local logstash plugin gem specs
def self.find_plugins_gem_specs(name = nil)
specs = name ? Gem::Specification.find_all_by_name(name) : Gem::Specification.find_all
specs.select{|spec| logstash_plugin_gem_spec?(spec)}
end
# list of all locally installed plugins specs specified in the Gemfile.
# note that an installed plugin dependencies like codecs will not be listed, only those
# specifically listed in the Gemfile.
# @param gemfile [LogStash::Gemfile] the gemfile to validate against
# @return [Array<Gem::Specification>] list of plugin specs
def self.all_installed_plugins_gem_specs(gemfile)
# we start form the installed gemspecs so we can verify the metadata for valid logstash plugin
# then filter out those not included in the Gemfile
find_plugins_gem_specs.select{|spec| !!gemfile.find(spec.name)}
end
# @param plugin [String] plugin name
# @param gemfile [LogStash::Gemfile] the gemfile to validate against
# @return [Boolean] true if the plugin is an installed logstash plugin and specified in the Gemfile
def self.installed_plugin?(plugin, gemfile)
!!gemfile.find(plugin) && find_plugins_gem_specs(plugin).any?
end
# @param spec [Gem::Specification] plugin specification
# @return [Boolean] true if the gemspec is from an integration plugin
def self.integration_plugin_spec?(spec)
spec.metadata &&
spec.metadata["logstash_plugin"] == "true" &&
spec.metadata["logstash_group"] == "integration"
end
# @param spec [Gem::Specification] plugin specification
# @return [Array] array of [plugin name] representing plugins a given integration plugin provides
def self.integration_plugin_provides(spec)
spec.metadata["integration_plugins"].split(",")
end
# @param name [String] plugin name
# @return [Gem::Specification] Gem specification of integration plugin that provides plugin
def self.which_integration_plugin_provides(name, gemfile)
all_installed_plugins_gem_specs(gemfile) \
.select {|spec| integration_plugin_spec?(spec) }
.find do |integration_plugin|
integration_plugin_provides(integration_plugin).any? {|plugin| plugin == name }
end
end
# @param plugin_list [Array] array of [plugin name, version] tuples
# @return [Array] array of [plugin name, version, ...] tuples when duplicate names have been merged and non duplicate version requirements added
def self.merge_duplicates(plugin_list)
# quick & dirty naive dedup for now
# TODO: properly merge versions requirements
plugin_list.uniq(&:first)
end
end