2018-11-02 19:07:56 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Bundler
|
|
|
|
# Handles the installation of plugin in appropriate directories.
|
|
|
|
#
|
|
|
|
# This class is supposed to be wrapper over the existing gem installation infra
|
|
|
|
# but currently it itself handles everything as the Source's subclasses (e.g. Source::RubyGems)
|
|
|
|
# are heavily dependent on the Gemfile.
|
|
|
|
module Plugin
|
|
|
|
class Installer
|
2019-06-01 05:49:40 -04:00
|
|
|
autoload :Rubygems, File.expand_path("installer/rubygems", __dir__)
|
|
|
|
autoload :Git, File.expand_path("installer/git", __dir__)
|
2018-11-02 19:07:56 -04:00
|
|
|
|
|
|
|
def install(names, options)
|
2019-04-14 02:01:35 -04:00
|
|
|
check_sources_consistency!(options)
|
|
|
|
|
2018-11-02 19:07:56 -04:00
|
|
|
version = options[:version] || [">= 0"]
|
2019-04-14 02:01:35 -04:00
|
|
|
|
2021-02-01 10:17:16 -05:00
|
|
|
if options[:git]
|
|
|
|
install_git(names, version, options)
|
|
|
|
elsif options[:local_git]
|
|
|
|
install_local_git(names, version, options)
|
|
|
|
else
|
|
|
|
sources = options[:source] || Bundler.rubygems.sources
|
|
|
|
install_rubygems(names, version, sources)
|
2018-11-02 19:07:56 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Installs the plugin from Definition object created by limited parsing of
|
|
|
|
# Gemfile searching for plugins to be installed
|
|
|
|
#
|
|
|
|
# @param [Definition] definition object
|
|
|
|
# @return [Hash] map of names to their specs they are installed with
|
|
|
|
def install_definition(definition)
|
|
|
|
def definition.lock(*); end
|
|
|
|
definition.resolve_remotely!
|
|
|
|
specs = definition.specs
|
|
|
|
|
|
|
|
install_from_specs specs
|
|
|
|
end
|
|
|
|
|
2020-10-15 00:20:25 -04:00
|
|
|
private
|
2018-11-02 19:07:56 -04:00
|
|
|
|
2019-04-14 02:01:35 -04:00
|
|
|
def check_sources_consistency!(options)
|
|
|
|
if options.key?(:git) && options.key?(:local_git)
|
|
|
|
raise InvalidOption, "Remote and local plugin git sources can't be both specified"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-02 19:07:56 -04:00
|
|
|
def install_git(names, version, options)
|
|
|
|
uri = options.delete(:git)
|
|
|
|
options["uri"] = uri
|
|
|
|
|
2019-04-14 02:01:35 -04:00
|
|
|
install_all_sources(names, version, options, options[:source])
|
|
|
|
end
|
2018-11-02 19:07:56 -04:00
|
|
|
|
2019-04-14 02:01:35 -04:00
|
|
|
def install_local_git(names, version, options)
|
|
|
|
uri = options.delete(:local_git)
|
|
|
|
options["uri"] = uri
|
2018-11-02 19:07:56 -04:00
|
|
|
|
2019-04-14 02:01:35 -04:00
|
|
|
install_all_sources(names, version, options, options[:source])
|
2018-11-02 19:07:56 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# Installs the plugin from rubygems source and returns the path where the
|
|
|
|
# plugin was installed
|
|
|
|
#
|
|
|
|
# @param [String] name of the plugin gem to search in the source
|
|
|
|
# @param [Array] version of the gem to install
|
|
|
|
# @param [String, Array<String>] source(s) to resolve the gem
|
|
|
|
#
|
|
|
|
# @return [Hash] map of names to the specs of plugins installed
|
|
|
|
def install_rubygems(names, version, sources)
|
2019-04-14 02:01:35 -04:00
|
|
|
install_all_sources(names, version, nil, sources)
|
|
|
|
end
|
2018-11-02 19:07:56 -04:00
|
|
|
|
2019-04-14 02:01:35 -04:00
|
|
|
def install_all_sources(names, version, git_source_options, rubygems_source)
|
2018-11-02 19:07:56 -04:00
|
|
|
source_list = SourceList.new
|
2019-04-14 02:01:35 -04:00
|
|
|
|
|
|
|
source_list.add_git_source(git_source_options) if git_source_options
|
2021-02-01 10:17:16 -05:00
|
|
|
source_list.global_rubygems_source = rubygems_source if rubygems_source
|
2019-04-14 02:01:35 -04:00
|
|
|
|
|
|
|
deps = names.map {|name| Dependency.new name, version }
|
2018-11-02 19:07:56 -04:00
|
|
|
|
|
|
|
definition = Definition.new(nil, deps, source_list, true)
|
|
|
|
install_definition(definition)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Installs the plugins and deps from the provided specs and returns map of
|
|
|
|
# gems to their paths
|
|
|
|
#
|
|
|
|
# @param specs to install
|
|
|
|
#
|
|
|
|
# @return [Hash] map of names to the specs
|
|
|
|
def install_from_specs(specs)
|
|
|
|
paths = {}
|
|
|
|
|
|
|
|
specs.each do |spec|
|
|
|
|
spec.source.install spec
|
|
|
|
|
|
|
|
paths[spec.name] = spec
|
|
|
|
end
|
|
|
|
|
|
|
|
paths
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|