2016-02-01 15:43:26 +03:00
|
|
|
# frozen_string_literal: true
|
2023-03-17 12:36:42 +03:00
|
|
|
|
2007-11-10 10:48:56 +03:00
|
|
|
#--
|
|
|
|
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
|
|
|
|
# All rights reserved.
|
|
|
|
# See LICENSE.txt for permissions.
|
|
|
|
#++
|
|
|
|
|
2008-06-18 02:04:18 +04:00
|
|
|
require "uri"
|
2019-04-22 14:56:16 +03:00
|
|
|
require_relative "../rubygems"
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2008-06-18 02:04:18 +04:00
|
|
|
##
|
2007-11-10 10:48:56 +03:00
|
|
|
# Mixin methods for local and remote Gem::Command options.
|
2008-06-18 02:04:18 +04:00
|
|
|
|
2007-11-10 10:48:56 +03:00
|
|
|
module Gem::LocalRemoteOptions
|
2008-06-18 02:04:18 +04:00
|
|
|
##
|
2021-11-16 14:19:13 +03:00
|
|
|
# Allows Gem::OptionParser to handle HTTP URIs.
|
2008-06-18 02:04:18 +04:00
|
|
|
|
2007-11-10 10:48:56 +03:00
|
|
|
def accept_uri_http
|
2021-11-16 14:19:13 +03:00
|
|
|
Gem::OptionParser.accept URI::HTTP do |value|
|
2007-11-10 10:48:56 +03:00
|
|
|
begin
|
2008-06-18 02:04:18 +04:00
|
|
|
uri = URI.parse value
|
2007-11-10 10:48:56 +03:00
|
|
|
rescue URI::InvalidURIError
|
2021-11-16 14:19:13 +03:00
|
|
|
raise Gem::OptionParser::InvalidArgument, value
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
|
|
|
|
2018-05-30 16:01:35 +03:00
|
|
|
valid_uri_schemes = ["http", "https", "file", "s3"]
|
|
|
|
unless valid_uri_schemes.include?(uri.scheme)
|
2022-05-20 11:15:15 +03:00
|
|
|
msg = "Invalid uri scheme for #{value}\nPreface URLs with one of #{valid_uri_schemes.map {|s| "#{s}://" }}"
|
2018-05-30 16:01:35 +03:00
|
|
|
raise ArgumentError, msg
|
2009-06-10 01:38:59 +04:00
|
|
|
end
|
2007-11-10 10:48:56 +03:00
|
|
|
|
|
|
|
value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-06-18 02:04:18 +04:00
|
|
|
##
|
2007-11-10 10:48:56 +03:00
|
|
|
# Add local/remote options to the command line parser.
|
2008-06-18 02:04:18 +04:00
|
|
|
|
2007-11-10 10:48:56 +03:00
|
|
|
def add_local_remote_options
|
|
|
|
add_option(:"Local/Remote", "-l", "--local",
|
2023-03-16 04:46:45 +03:00
|
|
|
"Restrict operations to the LOCAL domain") do |_value, options|
|
2007-11-10 10:48:56 +03:00
|
|
|
options[:domain] = :local
|
|
|
|
end
|
|
|
|
|
|
|
|
add_option(:"Local/Remote", "-r", "--remote",
|
2023-03-16 04:46:45 +03:00
|
|
|
"Restrict operations to the REMOTE domain") do |_value, options|
|
2007-11-10 10:48:56 +03:00
|
|
|
options[:domain] = :remote
|
|
|
|
end
|
|
|
|
|
|
|
|
add_option(:"Local/Remote", "-b", "--both",
|
2023-03-16 04:46:45 +03:00
|
|
|
"Allow LOCAL and REMOTE operations") do |_value, options|
|
2007-11-10 10:48:56 +03:00
|
|
|
options[:domain] = :both
|
|
|
|
end
|
|
|
|
|
|
|
|
add_bulk_threshold_option
|
2011-01-19 03:08:49 +03:00
|
|
|
add_clear_sources_option
|
2007-11-10 10:48:56 +03:00
|
|
|
add_source_option
|
|
|
|
add_proxy_option
|
|
|
|
add_update_sources_option
|
|
|
|
end
|
|
|
|
|
2008-06-18 02:04:18 +04:00
|
|
|
##
|
2007-11-10 10:48:56 +03:00
|
|
|
# Add the --bulk-threshold option
|
2008-06-18 02:04:18 +04:00
|
|
|
|
2007-11-10 10:48:56 +03:00
|
|
|
def add_bulk_threshold_option
|
|
|
|
add_option(:"Local/Remote", "-B", "--bulk-threshold COUNT",
|
|
|
|
"Threshold for switching to bulk",
|
2023-03-16 06:22:51 +03:00
|
|
|
"synchronization (default #{Gem.configuration.bulk_threshold})") do |value, _options|
|
2007-11-10 10:48:56 +03:00
|
|
|
Gem.configuration.bulk_threshold = value.to_i
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-01-19 03:08:49 +03:00
|
|
|
##
|
|
|
|
# Add the --clear-sources option
|
|
|
|
|
|
|
|
def add_clear_sources_option
|
|
|
|
add_option(:"Local/Remote", "--clear-sources",
|
2023-03-16 04:46:45 +03:00
|
|
|
"Clear the gem sources") do |_value, options|
|
2011-06-01 07:45:05 +04:00
|
|
|
Gem.sources = nil
|
2011-01-19 03:08:49 +03:00
|
|
|
options[:sources_cleared] = true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-06-18 02:04:18 +04:00
|
|
|
##
|
2007-11-10 10:48:56 +03:00
|
|
|
# Add the --http-proxy option
|
2008-06-18 02:04:18 +04:00
|
|
|
|
2007-11-10 10:48:56 +03:00
|
|
|
def add_proxy_option
|
|
|
|
accept_uri_http
|
|
|
|
|
|
|
|
add_option(:"Local/Remote", "-p", "--[no-]http-proxy [URL]", URI::HTTP,
|
|
|
|
"Use HTTP proxy for remote operations") do |value, options|
|
2023-03-16 07:52:28 +03:00
|
|
|
options[:http_proxy] = value == false ? :no_proxy : value
|
2007-11-10 10:48:56 +03:00
|
|
|
Gem.configuration[:http_proxy] = options[:http_proxy]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-06-18 02:04:18 +04:00
|
|
|
##
|
2007-11-10 10:48:56 +03:00
|
|
|
# Add the --source option
|
2008-06-18 02:04:18 +04:00
|
|
|
|
2007-11-10 10:48:56 +03:00
|
|
|
def add_source_option
|
|
|
|
accept_uri_http
|
|
|
|
|
2014-09-14 07:30:02 +04:00
|
|
|
add_option(:"Local/Remote", "-s", "--source URL", URI::HTTP,
|
|
|
|
"Append URL to list of remote gem sources") do |source, options|
|
2023-04-04 06:12:02 +03:00
|
|
|
source << "/" unless source.end_with?("/")
|
2008-06-18 02:04:18 +04:00
|
|
|
|
2018-11-21 13:20:47 +03:00
|
|
|
if options.delete :sources_cleared
|
2011-01-19 03:08:49 +03:00
|
|
|
Gem.sources = [source]
|
2007-11-10 10:48:56 +03:00
|
|
|
else
|
2011-01-19 03:08:49 +03:00
|
|
|
Gem.sources << source unless Gem.sources.include?(source)
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-06-18 02:04:18 +04:00
|
|
|
##
|
2009-06-10 01:38:59 +04:00
|
|
|
# Add the --update-sources option
|
2008-06-18 02:04:18 +04:00
|
|
|
|
2007-11-10 10:48:56 +03:00
|
|
|
def add_update_sources_option
|
2011-06-01 07:45:05 +04:00
|
|
|
add_option(:Deprecated, "-u", "--[no-]update-sources",
|
2023-03-16 04:46:45 +03:00
|
|
|
"Update local source cache") do |value, _options|
|
2007-11-10 10:48:56 +03:00
|
|
|
Gem.configuration.update_sources = value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-09-25 14:13:50 +04:00
|
|
|
##
|
|
|
|
# Is fetching of local and remote information enabled?
|
|
|
|
|
|
|
|
def both?
|
|
|
|
options[:domain] == :both
|
|
|
|
end
|
|
|
|
|
2008-06-18 02:04:18 +04:00
|
|
|
##
|
2007-11-10 10:48:56 +03:00
|
|
|
# Is local fetching enabled?
|
2008-06-18 02:04:18 +04:00
|
|
|
|
2007-11-10 10:48:56 +03:00
|
|
|
def local?
|
|
|
|
options[:domain] == :local || options[:domain] == :both
|
|
|
|
end
|
|
|
|
|
2008-06-18 02:04:18 +04:00
|
|
|
##
|
2007-11-10 10:48:56 +03:00
|
|
|
# Is remote fetching enabled?
|
2008-06-18 02:04:18 +04:00
|
|
|
|
2007-11-10 10:48:56 +03:00
|
|
|
def remote?
|
|
|
|
options[:domain] == :remote || options[:domain] == :both
|
|
|
|
end
|
|
|
|
end
|