avm-tools 0.99.0 → 0.102.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/avm/app_src.rb +12 -11
- data/lib/avm/docker/image.rb +7 -23
- data/lib/avm/docker/registry.rb +2 -11
- data/lib/avm/docker/runner.rb +32 -6
- data/lib/avm/eac_rails_base1/runner/bundle.rb +1 -2
- data/lib/avm/eac_redmine_base0/docker_image.rb +52 -0
- data/lib/avm/eac_redmine_base0/instance.rb +2 -2
- data/lib/avm/eac_webapp_base0/deploy.rb +1 -1
- data/lib/avm/eac_webapp_base0/deploy/git_info.rb +1 -1
- data/lib/avm/git/auto_commit/rules/manual.rb +1 -1
- data/lib/avm/git/commit/file.rb +1 -1
- data/lib/avm/git/issue/complete.rb +3 -3
- data/lib/avm/git/revision_test.rb +9 -6
- data/lib/avm/git/subrepo_check.rb +1 -1
- data/lib/avm/git/subrepo_check/show_result.rb +1 -1
- data/lib/avm/git/subrepo_checks.rb +1 -1
- data/lib/avm/instances/base/dockerizable.rb +1 -0
- data/lib/avm/instances/base/entry_keys.rb +6 -1
- data/lib/avm/instances/docker_image.rb +15 -0
- data/lib/avm/instances/entries.rb +0 -1
- data/lib/avm/instances/entry.rb +3 -2
- data/lib/avm/instances/entry_keys.rb +3 -0
- data/lib/avm/launcher/context.rb +83 -0
- data/lib/avm/launcher/context/instance_discovery.rb +56 -0
- data/lib/avm/launcher/context/instance_manager.rb +3 -3
- data/lib/avm/launcher/context/instance_manager/cached_instance.rb +1 -1
- data/lib/avm/launcher/context/settings.rb +53 -0
- data/lib/avm/launcher/git.rb +7 -0
- data/lib/avm/launcher/git/base.rb +86 -0
- data/lib/avm/launcher/git/base/class_methods.rb +28 -0
- data/lib/avm/launcher/git/base/dirty_files.rb +23 -0
- data/lib/avm/launcher/git/base/remotes.rb +40 -0
- data/lib/avm/launcher/git/base/subrepo.rb +44 -0
- data/lib/avm/launcher/git/base/underlying.rb +63 -0
- data/lib/avm/launcher/git/error.rb +13 -0
- data/lib/avm/launcher/git/mirror_update.rb +38 -0
- data/lib/avm/launcher/git/publish_base.rb +123 -0
- data/lib/avm/launcher/git/remote.rb +55 -0
- data/lib/avm/launcher/git/sub_warp_base.rb +33 -0
- data/lib/avm/launcher/git/warp_base.rb +67 -0
- data/lib/{eac_launcher → avm/launcher}/instances.rb +1 -1
- data/lib/avm/launcher/instances/base.rb +5 -4
- data/lib/avm/launcher/instances/base/cache.rb +1 -1
- data/lib/avm/launcher/instances/error.rb +1 -3
- data/lib/avm/launcher/instances/runner_helper.rb +1 -1
- data/lib/avm/launcher/paths.rb +4 -0
- data/lib/avm/launcher/paths/logical.rb +82 -0
- data/lib/avm/launcher/paths/real.rb +44 -0
- data/lib/avm/launcher/project.rb +18 -0
- data/lib/avm/launcher/publish.rb +4 -0
- data/lib/avm/launcher/publish/base.rb +47 -0
- data/lib/avm/launcher/publish/check_result.rb +67 -0
- data/lib/avm/launcher/ruby.rb +3 -0
- data/lib/avm/launcher/ruby/gem.rb +4 -0
- data/lib/avm/launcher/ruby/gem/build.rb +125 -0
- data/lib/avm/launcher/ruby/gem/specification.rb +63 -0
- data/lib/avm/launcher/vendor.rb +3 -0
- data/lib/avm/launcher/vendor/github.rb +20 -0
- data/lib/avm/projects/stereotype/job_comparator.rb +32 -0
- data/lib/avm/projects/stereotypes/git/publish.rb +2 -2
- data/lib/avm/projects/stereotypes/git/update.rb +1 -2
- data/lib/avm/projects/stereotypes/git/update/subrepo.rb +2 -2
- data/lib/avm/projects/stereotypes/git/warp.rb +2 -2
- data/lib/avm/projects/stereotypes/git_subrepo.rb +2 -2
- data/lib/avm/projects/stereotypes/git_subrepo/publish.rb +2 -2
- data/lib/avm/projects/stereotypes/git_subrepo/warp.rb +11 -11
- data/lib/avm/projects/stereotypes/git_subtree/publish.rb +2 -2
- data/lib/avm/projects/stereotypes/git_subtree/warp.rb +4 -4
- data/lib/avm/projects/stereotypes/ruby_gem.rb +2 -2
- data/lib/avm/projects/stereotypes/ruby_gem/publish.rb +12 -12
- data/lib/avm/projects/stereotypes/ruby_gem/update.rb +4 -0
- data/lib/avm/self.rb +9 -0
- data/lib/avm/tools/runner.rb +4 -0
- data/lib/avm/tools/runner/app_src/version_bump.rb +1 -1
- data/lib/avm/tools/runner/config.rb +17 -0
- data/lib/avm/tools/runner/config/load_path.rb +48 -0
- data/lib/avm/tools/runner/eac_redmine_base0/dev_docker.rb +17 -0
- data/lib/avm/tools/runner/eac_redmine_base0/docker.rb +3 -0
- data/lib/avm/tools/runner/files/format.rb +2 -2
- data/lib/avm/tools/runner/git.rb +2 -2
- data/lib/avm/tools/runner/git/commit.rb +2 -2
- data/lib/avm/tools/runner/git/deploy.rb +4 -3
- data/lib/avm/tools/runner/git/organize.rb +1 -1
- data/lib/avm/tools/runner/launcher/instances.rb +1 -1
- data/lib/avm/tools/runner/launcher/projects.rb +3 -3
- data/lib/avm/tools/runner/launcher/publish.rb +2 -2
- data/lib/avm/tools/version.rb +1 -1
- data/template/avm/eac_redmine_base0/docker_image/Dockerfile.template +47 -0
- data/template/avm/eac_redmine_base0/docker_image/apache_http_virtualhost.conf.template +10 -0
- data/template/avm/eac_redmine_base0/docker_image/apache_https_virtualhost.conf.template +16 -0
- data/template/avm/eac_redmine_base0/docker_image/install_settings.sh.template +29 -0
- data/template/avm/eac_redmine_base0/docker_image/start.sh.template +25 -0
- data/template/avm/eac_ubuntu_base0/docker_image/Dockerfile +1 -1
- data/vendor/avm-apps/avm-apps.gemspec +1 -1
- data/vendor/avm-apps/lib/avm/apps/config.rb +15 -0
- data/vendor/avm-apps/lib/avm/apps/jobs/base.rb +1 -1
- data/vendor/avm-apps/lib/avm/apps/version.rb +1 -1
- data/vendor/eac_cli/eac_cli.gemspec +1 -1
- data/vendor/eac_cli/lib/eac_cli/config.rb +19 -0
- data/vendor/eac_cli/lib/eac_cli/config/entry.rb +48 -0
- data/vendor/eac_cli/lib/eac_cli/config/entry/options.rb +57 -0
- data/vendor/eac_cli/lib/eac_cli/config/entry/undefined.rb +26 -0
- data/vendor/eac_cli/lib/eac_cli/definition/positional_argument.rb +6 -1
- data/vendor/eac_cli/lib/eac_cli/docopt/doc_builder/alternative.rb +3 -1
- data/vendor/eac_cli/lib/eac_cli/docopt_runner.rb +4 -8
- data/vendor/eac_cli/lib/eac_cli/docopt_runner/{_class_methods.rb → class_methods.rb} +5 -3
- data/vendor/eac_cli/lib/eac_cli/docopt_runner/context.rb +18 -0
- data/vendor/eac_cli/lib/eac_cli/old_configs.rb +0 -1
- data/vendor/eac_cli/lib/eac_cli/old_configs/entry_reader.rb +2 -2
- data/vendor/eac_cli/lib/eac_cli/old_configs_bridge.rb +37 -0
- data/vendor/eac_cli/lib/eac_cli/runner/after_class_methods.rb +20 -3
- data/vendor/eac_cli/lib/eac_cli/runner_with/help.rb +6 -2
- data/vendor/eac_cli/lib/eac_cli/runner_with/subcommands.rb +5 -1
- data/vendor/eac_cli/lib/eac_cli/speaker.rb +15 -19
- data/vendor/eac_cli/lib/eac_cli/speaker/_constants.rb +1 -1
- data/vendor/eac_cli/lib/eac_cli/speaker/list.rb +1 -1
- data/vendor/eac_cli/lib/eac_cli/speaker/options.rb +38 -0
- data/vendor/eac_cli/lib/eac_cli/version.rb +1 -1
- data/vendor/eac_cli/spec/lib/eac_cli/speaker_spec.rb +5 -9
- data/vendor/eac_config/lib/eac_config/entry.rb +7 -1
- data/vendor/eac_config/lib/eac_config/envvars_node.rb +25 -0
- data/vendor/eac_config/lib/eac_config/envvars_node/entry.rb +54 -0
- data/vendor/eac_config/lib/eac_config/load_path.rb +5 -13
- data/vendor/eac_config/lib/eac_config/node.rb +9 -2
- data/vendor/eac_config/lib/eac_config/node_entry.rb +2 -23
- data/vendor/eac_config/lib/eac_config/node_uri.rb +38 -0
- data/vendor/eac_config/lib/eac_config/old_configs.rb +1 -0
- data/vendor/eac_config/lib/eac_config/version.rb +1 -1
- data/vendor/eac_config/lib/eac_config/yaml_file_node.rb +9 -2
- data/vendor/eac_config/lib/eac_config/yaml_file_node/entry.rb +37 -0
- data/vendor/eac_config/spec/lib/eac_config/envvars_node/entry_spec.rb +14 -0
- data/vendor/eac_config/spec/lib/eac_config/envvars_node_spec.rb +40 -0
- data/vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec_files/storage1.yaml +3 -1
- data/vendor/eac_config/spec/lib/eac_config/yaml_file_node_spec_files/storage1_2.yaml +2 -1
- data/vendor/eac_git/lib/eac_git/executables.rb +4 -0
- data/vendor/eac_git/lib/eac_git/local.rb +5 -1
- data/vendor/eac_git/lib/eac_git/local/commit/archive.rb +19 -0
- data/vendor/eac_git/lib/eac_git/local/subrepo.rb +2 -1
- data/vendor/eac_git/lib/eac_git/version.rb +1 -1
- data/vendor/eac_ruby_base0/eac_ruby_base0.gemspec +2 -2
- data/vendor/eac_ruby_base0/lib/eac_ruby_base0/application.rb +8 -11
- data/vendor/eac_ruby_base0/lib/eac_ruby_base0/application_xdg.rb +32 -0
- data/vendor/eac_ruby_base0/lib/eac_ruby_base0/jobs_runner.rb +2 -2
- data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner.rb +13 -6
- data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner_with/confirmation.rb +8 -1
- data/vendor/eac_ruby_base0/lib/eac_ruby_base0/version.rb +1 -1
- data/vendor/eac_ruby_gems_utils/eac_ruby_gems_utils.gemspec +1 -1
- data/vendor/eac_ruby_gems_utils/lib/eac_ruby_gems_utils/tests/multiple/decorated_gem.rb +2 -0
- data/vendor/eac_ruby_gems_utils/lib/eac_ruby_gems_utils/version.rb +1 -1
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/context.rb +31 -0
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/contextualizable.rb +12 -7
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/context.rb +11 -0
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/speaker.rb +9 -0
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/simple_cache.rb +10 -2
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/speaker.rb +16 -0
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/speaker/receiver.rb +57 -0
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/speaker/sender.rb +32 -0
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/version.rb +1 -1
- data/vendor/{eac_cli/spec/lib → eac_ruby_utils/spec/lib/eac_ruby_utils/patches}/module/speaker_spec.rb +2 -2
- data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/simple_cache_spec.rb +18 -0
- metadata +67 -41
- data/lib/avm/configs.rb +0 -22
- data/lib/eac_launcher.rb +0 -13
- data/lib/eac_launcher/context.rb +0 -81
- data/lib/eac_launcher/context/instance_discovery.rb +0 -54
- data/lib/eac_launcher/context/settings.rb +0 -51
- data/lib/eac_launcher/git.rb +0 -7
- data/lib/eac_launcher/git/base.rb +0 -84
- data/lib/eac_launcher/git/base/class_methods.rb +0 -26
- data/lib/eac_launcher/git/base/dirty_files.rb +0 -21
- data/lib/eac_launcher/git/base/remotes.rb +0 -38
- data/lib/eac_launcher/git/base/subrepo.rb +0 -42
- data/lib/eac_launcher/git/base/underlying.rb +0 -61
- data/lib/eac_launcher/git/error.rb +0 -11
- data/lib/eac_launcher/git/mirror_update.rb +0 -36
- data/lib/eac_launcher/git/publish_base.rb +0 -119
- data/lib/eac_launcher/git/remote.rb +0 -53
- data/lib/eac_launcher/git/sub_warp_base.rb +0 -31
- data/lib/eac_launcher/git/warp_base.rb +0 -54
- data/lib/eac_launcher/paths.rb +0 -4
- data/lib/eac_launcher/paths/logical.rb +0 -80
- data/lib/eac_launcher/paths/real.rb +0 -42
- data/lib/eac_launcher/project.rb +0 -16
- data/lib/eac_launcher/publish.rb +0 -4
- data/lib/eac_launcher/publish/base.rb +0 -45
- data/lib/eac_launcher/publish/check_result.rb +0 -65
- data/lib/eac_launcher/ruby.rb +0 -3
- data/lib/eac_launcher/ruby/gem.rb +0 -4
- data/lib/eac_launcher/ruby/gem/build.rb +0 -123
- data/lib/eac_launcher/ruby/gem/specification.rb +0 -61
- data/lib/eac_launcher/vendor.rb +0 -3
- data/lib/eac_launcher/vendor/github.rb +0 -18
- data/lib/eac_launcher/version.rb +0 -5
- data/vendor/eac_cli/lib/eac_cli/patches/module.rb +0 -4
- data/vendor/eac_cli/lib/eac_cli/patches/module/speaker.rb +0 -10
- data/vendor/eac_cli/lib/eac_cli/speaker/_class_methods.rb +0 -37
- data/vendor/eac_cli/lib/eac_cli/speaker/node.rb +0 -24
@@ -15,7 +15,7 @@ Gem::Specification.new do |s|
|
|
15
15
|
s.add_dependency 'colorize', '~> 0.8.1'
|
16
16
|
s.add_dependency 'docopt', '~> 0.6.1'
|
17
17
|
s.add_dependency 'eac_config', '~> 0.3'
|
18
|
-
s.add_dependency 'eac_ruby_utils', '~> 0.
|
18
|
+
s.add_dependency 'eac_ruby_utils', '~> 0.67'
|
19
19
|
|
20
20
|
s.add_development_dependency 'eac_ruby_gem_support', '~> 0.2'
|
21
21
|
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_config/envvars_node'
|
4
|
+
require 'eac_config/yaml_file_node'
|
5
|
+
|
6
|
+
module EacCli
|
7
|
+
class Config
|
8
|
+
require_sub __FILE__
|
9
|
+
attr_reader :sub
|
10
|
+
|
11
|
+
def initialize(sub_node)
|
12
|
+
@sub = sub_node
|
13
|
+
end
|
14
|
+
|
15
|
+
def entry(path, options = {})
|
16
|
+
::EacCli::Config::Entry.new(self, path, options)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,48 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_cli/speaker'
|
4
|
+
require 'eac_config/entry_path'
|
5
|
+
require 'eac_ruby_utils/core_ext'
|
6
|
+
|
7
|
+
module EacCli
|
8
|
+
class Config
|
9
|
+
class Entry
|
10
|
+
require_sub __FILE__, include_modules: true
|
11
|
+
enable_listable
|
12
|
+
enable_simple_cache
|
13
|
+
enable_speaker
|
14
|
+
|
15
|
+
common_constructor :config, :path, :options do
|
16
|
+
self.path = ::EacConfig::EntryPath.assert(path)
|
17
|
+
self.options = ::EacCli::Config::Entry::Options.new(options)
|
18
|
+
end
|
19
|
+
|
20
|
+
def value
|
21
|
+
return sub_value_to_return if sub_entry.found?
|
22
|
+
return nil unless options.required?
|
23
|
+
|
24
|
+
puts "|#{sub_entry.path}|"
|
25
|
+
|
26
|
+
input_value
|
27
|
+
end
|
28
|
+
|
29
|
+
delegate :value=, to: :sub_entry
|
30
|
+
|
31
|
+
private
|
32
|
+
|
33
|
+
def sub_value_to_return
|
34
|
+
sub_entry.value.presence || ::EacRubyUtils::BlankNotBlank.instance
|
35
|
+
end
|
36
|
+
|
37
|
+
def sub_entry_uncached
|
38
|
+
config.sub.entry(path)
|
39
|
+
end
|
40
|
+
|
41
|
+
def input_value_uncached
|
42
|
+
r = send("#{options.type}_value")
|
43
|
+
sub_entry.value = r if options.store?
|
44
|
+
r
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
@@ -0,0 +1,57 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_ruby_utils/core_ext'
|
4
|
+
|
5
|
+
module EacCli
|
6
|
+
class Config
|
7
|
+
class Entry
|
8
|
+
class Options
|
9
|
+
enable_simple_cache
|
10
|
+
enable_listable
|
11
|
+
|
12
|
+
lists.add_symbol :type, :undefined
|
13
|
+
|
14
|
+
DEFAULT_VALUES = {
|
15
|
+
before_input: nil, bool: false, list: false, noecho: false, noenv: false, noinput: false,
|
16
|
+
required: true, store: true, type: TYPE_UNDEFINED, validator: nil
|
17
|
+
}.freeze
|
18
|
+
|
19
|
+
lists.add_symbol :option, *DEFAULT_VALUES.keys
|
20
|
+
|
21
|
+
common_constructor :options do
|
22
|
+
self.options = self.class.lists.option.hash_keys_validate!(options)
|
23
|
+
end
|
24
|
+
|
25
|
+
delegate :to_h, to: :options
|
26
|
+
|
27
|
+
def [](key)
|
28
|
+
values.fetch(key.to_sym)
|
29
|
+
end
|
30
|
+
|
31
|
+
def request_input_options
|
32
|
+
values.slice(:bool, :list, :noecho)
|
33
|
+
end
|
34
|
+
|
35
|
+
DEFAULT_VALUES.each do |attr, default_value|
|
36
|
+
define_method(attr.to_s + ([true, false].include?(default_value) ? '?' : '')) do
|
37
|
+
self[attr]
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
private
|
42
|
+
|
43
|
+
def values_uncached
|
44
|
+
consumer = options.to_options_consumer
|
45
|
+
r = {}
|
46
|
+
DEFAULT_VALUES.each do |key, default_value|
|
47
|
+
value = consumer.consume(key)
|
48
|
+
value = default_value if value.nil?
|
49
|
+
r[key] = value
|
50
|
+
end
|
51
|
+
consumer.validate
|
52
|
+
r
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_ruby_utils/core_ext'
|
4
|
+
|
5
|
+
module EacCli
|
6
|
+
class Config
|
7
|
+
class Entry
|
8
|
+
module Undefined
|
9
|
+
private
|
10
|
+
|
11
|
+
def undefined_value
|
12
|
+
loop do
|
13
|
+
entry_value = undefined_value_no_loop
|
14
|
+
next unless options[:validator].if_present(true) { |v| v.call(entry_value) }
|
15
|
+
|
16
|
+
return entry_value
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def undefined_value_no_loop
|
21
|
+
input("Value for entry \"#{path}\"", options.request_input_options)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -6,9 +6,10 @@ module EacCli
|
|
6
6
|
class Definition
|
7
7
|
class PositionalArgument
|
8
8
|
DEFAULT_REQUIRED = true
|
9
|
+
DEFAULT_VISIBLE = true
|
9
10
|
|
10
11
|
enable_listable
|
11
|
-
lists.add_symbol :option, :optional, :repeat, :required, :subcommand
|
12
|
+
lists.add_symbol :option, :optional, :repeat, :required, :subcommand, :visible
|
12
13
|
common_constructor :name, :options, default: [{}] do
|
13
14
|
options.assert_valid_keys(self.class.lists.option.values)
|
14
15
|
end
|
@@ -51,6 +52,10 @@ module EacCli
|
|
51
52
|
def to_s
|
52
53
|
"#{self.class.name.demodulize}[#{identifier}]"
|
53
54
|
end
|
55
|
+
|
56
|
+
def visible?
|
57
|
+
options.key?(OPTION_VISIBLE) ? options.fetch(OPTION_VISIBLE) : DEFAULT_VISIBLE
|
58
|
+
end
|
54
59
|
end
|
55
60
|
end
|
56
61
|
end
|
@@ -31,10 +31,12 @@ module EacCli
|
|
31
31
|
end
|
32
32
|
|
33
33
|
def positionals
|
34
|
-
alternative.positional.map { |p| positional(p) }
|
34
|
+
alternative.positional.map { |p| positional(p) }.reject(&:blank?)
|
35
35
|
end
|
36
36
|
|
37
37
|
def positional(positional)
|
38
|
+
return unless positional.visible?
|
39
|
+
|
38
40
|
if positional.subcommand?
|
39
41
|
::EacCli::DocoptRunner::SUBCOMMANDS_MACRO
|
40
42
|
else
|
@@ -1,17 +1,13 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require '
|
4
|
-
require 'active_support/core_ext/hash/slice'
|
3
|
+
require 'eac_ruby_utils/core_ext'
|
5
4
|
require 'docopt'
|
6
|
-
require 'eac_ruby_utils/contextualizable'
|
7
|
-
require 'eac_ruby_utils/patches/hash/sym_keys_hash'
|
8
|
-
Dir["#{__dir__}/#{::File.basename(__FILE__, '.*')}/_*.rb"].sort.each do |partial|
|
9
|
-
require partial
|
10
|
-
end
|
11
5
|
|
12
6
|
module EacCli
|
13
7
|
class DocoptRunner
|
14
|
-
|
8
|
+
require_sub __FILE__
|
9
|
+
extend ::EacCli::DocoptRunner::ClassMethods
|
10
|
+
include ::EacCli::DocoptRunner::Context
|
15
11
|
|
16
12
|
class << self
|
17
13
|
def create(settings = {})
|
@@ -1,13 +1,15 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require 'docopt'
|
4
|
+
|
3
5
|
module EacCli
|
4
6
|
class DocoptRunner
|
5
|
-
|
7
|
+
module ClassMethods
|
8
|
+
DOCOPT_ERROR_EXIT_CODE = 0xC0
|
6
9
|
|
7
|
-
class << self
|
8
10
|
def run(options = {})
|
9
11
|
create(options).send(:run)
|
10
|
-
rescue Docopt::Exit => e
|
12
|
+
rescue ::Docopt::Exit => e
|
11
13
|
STDERR.write(e.message + "\n")
|
12
14
|
::Kernel.exit(DOCOPT_ERROR_EXIT_CODE)
|
13
15
|
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module EacCli
|
4
|
+
class DocoptRunner
|
5
|
+
# Provides the method context which search and call a method in self and ancestor objects.
|
6
|
+
module Context
|
7
|
+
def context(method)
|
8
|
+
current = self
|
9
|
+
while current
|
10
|
+
return current.send(method) if current.respond_to?(method)
|
11
|
+
|
12
|
+
current = current.respond_to?(:parent) ? current.parent : nil
|
13
|
+
end
|
14
|
+
raise "Context method \"#{method}\" not found for #{self.class}"
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -70,8 +70,8 @@ module EacCli
|
|
70
70
|
end
|
71
71
|
|
72
72
|
def entry_value_from_input(entry_key, options)
|
73
|
-
entry_value =
|
74
|
-
|
73
|
+
entry_value = input("Value for entry \"#{entry_key}\"",
|
74
|
+
options.request_input_options)
|
75
75
|
warn('Entered value is blank') if entry_value.blank?
|
76
76
|
entry_value
|
77
77
|
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_cli/config'
|
4
|
+
require 'eac_ruby_utils/core_ext'
|
5
|
+
|
6
|
+
module EacCli
|
7
|
+
class OldConfigsBridge < ::EacCli::Config
|
8
|
+
ENTRY_KEY = 'core.store_passwords'
|
9
|
+
|
10
|
+
class << self
|
11
|
+
def new_configs_path(configs_key, options)
|
12
|
+
options[:storage_path] || ::File.join(ENV['HOME'], '.config', configs_key, 'settings.yml')
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
def initialize(configs_key, options = {})
|
17
|
+
options.assert_argument(::Hash, 'options')
|
18
|
+
envvar_node = ::EacConfig::EnvvarsNode.new
|
19
|
+
file_node = ::EacConfig::YamlFileNode.new(self.class.new_configs_path(configs_key, options))
|
20
|
+
envvar_node.load_path.push(file_node.url)
|
21
|
+
envvar_node.write_node = file_node
|
22
|
+
super(envvar_node)
|
23
|
+
end
|
24
|
+
|
25
|
+
def read_entry(entry_key, options = {})
|
26
|
+
entry(entry_key, options).value
|
27
|
+
end
|
28
|
+
|
29
|
+
def read_password(entry_key, options = {})
|
30
|
+
entry(entry_key, options.merge(noecho: true, store: store_passwords?)).value
|
31
|
+
end
|
32
|
+
|
33
|
+
def store_passwords?
|
34
|
+
read_entry(ENTRY_KEY, bool: true)
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -1,5 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require 'eac_cli/speaker'
|
4
|
+
require 'eac_ruby_utils/speaker'
|
5
|
+
|
3
6
|
module EacCli
|
4
7
|
module Runner
|
5
8
|
module AfterClassMethods
|
@@ -10,9 +13,11 @@ module EacCli
|
|
10
13
|
end
|
11
14
|
|
12
15
|
def run(*runner_context_args)
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
+
on_asserted_speaker do
|
17
|
+
r = create(*runner_context_args)
|
18
|
+
r.run_run
|
19
|
+
r
|
20
|
+
end
|
16
21
|
end
|
17
22
|
|
18
23
|
def runner_definition(&block)
|
@@ -24,6 +29,18 @@ module EacCli
|
|
24
29
|
def super_runner_definition
|
25
30
|
superclass.try(:runner_definition).if_present(&:dup) || ::EacCli::Definition.new
|
26
31
|
end
|
32
|
+
|
33
|
+
private
|
34
|
+
|
35
|
+
def on_asserted_speaker
|
36
|
+
if ::EacRubyUtils::Speaker.context.optional_current
|
37
|
+
yield
|
38
|
+
else
|
39
|
+
::EacRubyUtils::Speaker.context.on(::EacCli::Speaker.new) do
|
40
|
+
yield
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
27
44
|
end
|
28
45
|
end
|
29
46
|
end
|
@@ -10,8 +10,8 @@ module EacCli
|
|
10
10
|
include ::EacCli::Runner
|
11
11
|
|
12
12
|
runner_definition.alt do
|
13
|
-
options_argument false
|
14
13
|
bool_opt '-h', '--help', 'Show help.', usage: true
|
14
|
+
pos_arg :any_arg_with_help, repeat: true, optional: true, visible: false
|
15
15
|
end
|
16
16
|
|
17
17
|
set_callback :run, :before do
|
@@ -20,7 +20,7 @@ module EacCli
|
|
20
20
|
end
|
21
21
|
|
22
22
|
def help_run
|
23
|
-
return unless
|
23
|
+
return unless show_help?
|
24
24
|
|
25
25
|
puts help_text
|
26
26
|
raise ::EacCli::Runner::Exit
|
@@ -31,6 +31,10 @@ module EacCli
|
|
31
31
|
r += help_extra_text if respond_to?(:help_extra_text)
|
32
32
|
r
|
33
33
|
end
|
34
|
+
|
35
|
+
def show_help?
|
36
|
+
parsed.help? && !if_respond(:run_subcommand?, false)
|
37
|
+
end
|
34
38
|
end
|
35
39
|
end
|
36
40
|
end
|
@@ -60,7 +60,7 @@ module EacCli
|
|
60
60
|
end
|
61
61
|
|
62
62
|
def run_with_subcommand
|
63
|
-
if
|
63
|
+
if run_subcommand?
|
64
64
|
if subcommand_runner.respond_to?(:run_run)
|
65
65
|
subcommand_runner.run_run
|
66
66
|
else
|
@@ -79,6 +79,10 @@ module EacCli
|
|
79
79
|
"Method #{__method__} should be overrided in #{self.class.name}"
|
80
80
|
end
|
81
81
|
|
82
|
+
def run_subcommand?
|
83
|
+
subcommand_name.present?
|
84
|
+
end
|
85
|
+
|
82
86
|
def subcommands?
|
83
87
|
self.class.runner_definition.subcommands?
|
84
88
|
end
|
@@ -1,26 +1,26 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require 'colorize'
|
4
|
-
require '
|
5
|
-
require 'eac_ruby_utils/
|
6
|
-
require 'eac_ruby_utils/require_sub'
|
7
|
-
::EacRubyUtils.require_sub __FILE__
|
4
|
+
require 'eac_ruby_utils/core_ext'
|
5
|
+
require 'eac_ruby_utils/speaker/receiver'
|
8
6
|
|
9
7
|
module EacCli
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
8
|
+
class Speaker
|
9
|
+
require_sub __FILE__, include_modules: true
|
10
|
+
include ::EacRubyUtils::Speaker::Receiver
|
11
|
+
|
12
|
+
common_constructor :options, default: [{}] do
|
13
|
+
self.options = self.class.lists.option.hash_keys_validate!(options)
|
14
14
|
end
|
15
15
|
|
16
16
|
def puts(string = '')
|
17
17
|
string.to_s.each_line do |line|
|
18
|
-
|
18
|
+
err_out.puts(err_line_prefix.to_s + line)
|
19
19
|
end
|
20
20
|
end
|
21
21
|
|
22
22
|
def out(string = '')
|
23
|
-
|
23
|
+
out_out.write(string.to_s)
|
24
24
|
end
|
25
25
|
|
26
26
|
def fatal_error(string)
|
@@ -52,7 +52,7 @@ module EacCli
|
|
52
52
|
# +bool+ ([Boolean], default: +false+): requires a answer "yes" or "no".
|
53
53
|
# +list+ ([Hash] or [Array], default: +nil+): requires a answer from a list.
|
54
54
|
# +noecho+ ([Boolean], default: +false+): does not output answer.
|
55
|
-
def
|
55
|
+
def input(question, options = {})
|
56
56
|
bool, list, noecho = options.to_options_consumer.consume_all(:bool, :list, :noecho)
|
57
57
|
if list
|
58
58
|
request_from_list(question, list, noecho)
|
@@ -110,22 +110,18 @@ module EacCli
|
|
110
110
|
end
|
111
111
|
|
112
112
|
def request_string(question, noecho)
|
113
|
-
|
113
|
+
err_out.write "#{question}: ".to_s.yellow
|
114
114
|
noecho ? request_string_noecho : request_string_echo
|
115
115
|
end
|
116
116
|
|
117
117
|
def request_string_noecho
|
118
|
-
r =
|
119
|
-
|
118
|
+
r = in_in.noecho(&:gets).chomp.strip
|
119
|
+
err_out.write("\n")
|
120
120
|
r
|
121
121
|
end
|
122
122
|
|
123
123
|
def request_string_echo
|
124
|
-
|
125
|
-
end
|
126
|
-
|
127
|
-
def current_node
|
128
|
-
::EacCli::Speaker.current_node
|
124
|
+
in_in.gets.chomp.strip
|
129
125
|
end
|
130
126
|
end
|
131
127
|
end
|