logstash/lib/pluginmanager/util.rb
Ry Biesemeyer 793e8c0b45
plugin manager: add --no-expand flag for list command (#17124)
* plugin manager: add --no-expand flag for list command

Allows us to avoid expanding aliases and integration plugins

* spec: escape expected output in regexp
2025-02-27 07:24:56 -08:00

195 lines
8.4 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 "yaml"
module LogStash::PluginManager
def self.load_aliases_definitions(path = File.expand_path('plugin_aliases.yml', __dir__))
content = IO.read(path)
#Verify header
header = content.lines[0]
if !header.start_with?('#CHECKSUM:')
raise ValidationError.new "Bad header format, expected '#CHECKSUM: ...' but found #{header}"
end
yaml_body = content.lines[2..-1].join
extracted_sha = header.delete_prefix('#CHECKSUM:').chomp.strip
sha256_hex = Digest::SHA256.hexdigest(yaml_body)
if sha256_hex != extracted_sha
raise ValidationError.new "Bad checksum value, expected #{sha256_hex} but found #{extracted_sha}"
end
yaml = YAML.safe_load(yaml_body) || {}
result = {}
yaml.each do |type, alias_defs|
alias_defs.each do |alias_def|
result["logstash-#{type}-#{alias_def["alias"]}"] = "logstash-#{type}-#{alias_def["from"]}"
end
end
result
end
# Defines the plugin alias, must be kept in synch with Java class org.logstash.plugins.AliasRegistry
ALIASES = load_aliases_definitions()
def self.resolve_alias(alias_name)
ALIASES[alias_name]
end
def self.find_aliases(plugin_name)
ALIASES.each_with_object([]) do |(alias_name, candidate_plugin_name), aliases|
aliases << alias_name if candidate_plugin_name == plugin_name
end.compact.uniq
end
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(plugin, version)
::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
# This test injection point allows us to avoid mocking the ::Gem::Dependency
# that is used by ruby internals for finding dependencies on the load path
def self._gem_dependency(gem_name, version = nil)
::Gem::Dependency.new(gem_name, version || ::Gem::Requirement.default)
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