ehbrs-tools 0.23.0 → 0.25.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (166) hide show
  1. checksums.yaml +4 -4
  2. data/.avm.yml +4 -0
  3. data/.rspec +1 -0
  4. data/.rubocop.yml +39 -0
  5. data/Gemfile.lock +269 -0
  6. data/exe/ehbrs +2 -2
  7. data/lib/ehbrs/tools/runner/cooking_book/build.rb +52 -0
  8. data/lib/ehbrs/tools/runner/cooking_book.rb +32 -0
  9. data/lib/ehbrs/tools/runner/finances/bb_browser.rb +66 -0
  10. data/lib/ehbrs/{runner/videos/series.rb → tools/runner/finances.rb} +4 -4
  11. data/lib/ehbrs/tools/runner/fs/selected.rb +81 -0
  12. data/lib/ehbrs/tools/runner/fs/used_space.rb +161 -0
  13. data/lib/ehbrs/tools/runner/fs.rb +18 -0
  14. data/lib/ehbrs/tools/runner/google/translate.rb +89 -0
  15. data/lib/ehbrs/tools/runner/google.rb +18 -0
  16. data/lib/ehbrs/tools/runner/music/selected.rb +28 -0
  17. data/lib/ehbrs/tools/runner/music.rb +18 -0
  18. data/lib/ehbrs/tools/runner/self/test.rb +27 -0
  19. data/lib/ehbrs/tools/runner/self.rb +18 -0
  20. data/lib/ehbrs/tools/runner/telegram/send_message.rb +31 -0
  21. data/lib/ehbrs/tools/runner/telegram.rb +28 -0
  22. data/lib/ehbrs/tools/runner/vg/ips.rb +134 -0
  23. data/lib/ehbrs/tools/runner/vg/wii.rb +74 -0
  24. data/lib/ehbrs/tools/runner/vg.rb +18 -0
  25. data/lib/ehbrs/tools/runner/videos/extract.rb +70 -0
  26. data/lib/ehbrs/tools/runner/videos/probe.rb +34 -0
  27. data/lib/ehbrs/tools/runner/videos/series/rename.rb +74 -0
  28. data/lib/ehbrs/tools/runner/videos/series.rb +20 -0
  29. data/lib/ehbrs/tools/runner/videos/unsupported.rb +61 -0
  30. data/lib/ehbrs/{runner/web_utils → tools/runner}/videos.rb +3 -3
  31. data/lib/ehbrs/tools/runner/web_utils/videos/download.rb +75 -0
  32. data/lib/ehbrs/tools/runner/web_utils/videos/upload.rb +77 -0
  33. data/lib/ehbrs/tools/runner/web_utils/videos.rb +20 -0
  34. data/lib/ehbrs/tools/runner/web_utils.rb +26 -0
  35. data/lib/ehbrs/tools/runner.rb +21 -0
  36. data/lib/ehbrs/tools/version.rb +1 -1
  37. data/spec/code/rubocop_spec.rb +3 -0
  38. data/spec/lib/ehbrs/cooking_book/recipe/measure_spec.rb +21 -0
  39. data/spec/lib/ehbrs/observers/base_spec.rb +93 -0
  40. data/spec/lib/ehbrs/tools/runner/fs/used_space_spec.rb +61 -0
  41. data/spec/lib/ehbrs/tools/runner/vg/ips_spec.rb +31 -0
  42. data/spec/lib/ehbrs/tools/runner/vg/ips_spec_files/expected.rom +0 -0
  43. data/spec/lib/ehbrs/tools/runner/vg/ips_spec_files/patch_0.ips +0 -0
  44. data/spec/lib/ehbrs/tools/runner/vg/ips_spec_files/patch_1.ips +0 -0
  45. data/spec/lib/ehbrs/tools/runner/vg/ips_spec_files/source.rom +0 -0
  46. data/spec/lib/ehbrs/tools/runner/videos/probe_spec.rb +19 -0
  47. data/spec/lib/ehbrs/tools/runner/videos/probe_spec_files/fixed.target.yaml +105 -0
  48. data/spec/lib/ehbrs/tools/runner/videos/unsupported_spec.rb +75 -0
  49. data/spec/lib/ehbrs/tools/runner/videos/unsupported_spec_files/dts_audio.probe.yaml +90 -0
  50. data/spec/lib/ehbrs/tools/runner_spec.rb +16 -0
  51. data/spec/lib/ehbrs/vg/wii/game_file_spec.rb +21 -0
  52. data/spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec.rb +11 -0
  53. data/spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec_files/pikmin2_R92P01_wia.source.witdump +27 -0
  54. data/spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec_files/pikmin2_R92P01_wia.target.yaml +22 -0
  55. data/spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec_files/pikmin2_pal_iso.source.witdump +28 -0
  56. data/spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec_files/pikmin2_pal_iso.target.yaml +21 -0
  57. data/spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec_files/resident_evil_code_veronica_disc2_iso.source.witdump +16 -0
  58. data/spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec_files/resident_evil_code_veronica_disc2_iso.target.yaml +19 -0
  59. data/spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec_files/super_mario_galaxy_wbfs.source.witdump +28 -0
  60. data/spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec_files/super_mario_galaxy_wbfs.target.yaml +23 -0
  61. data/spec/lib/ehbrs/vg/wii/wit/path_spec.rb +33 -0
  62. data/spec/spec_helper/videos.rb +30 -0
  63. data/spec/spec_helper/videos_files/stub_source.mp4 +0 -0
  64. data/spec/spec_helper.rb +7 -0
  65. data/vendor/aranha-parsers/aranha-parsers.gemspec +2 -2
  66. data/vendor/aranha-parsers/lib/aranha/parsers/rspec/setup.rb +15 -0
  67. data/vendor/aranha-parsers/lib/aranha/parsers/{spec → rspec}/source_target_fixtures_example.rb +0 -0
  68. data/vendor/aranha-parsers/lib/aranha/parsers/rspec.rb +11 -0
  69. data/vendor/aranha-parsers/lib/aranha/parsers/source_address.rb +10 -8
  70. data/vendor/aranha-parsers/lib/aranha/parsers/version.rb +1 -1
  71. data/vendor/aranha-parsers/spec/lib/rubocop_check_spec.rb +1 -1
  72. data/vendor/aranha-parsers/spec/spec_helper.rb +2 -9
  73. data/vendor/aranha-selenium/aranha-selenium.gemspec +2 -2
  74. data/vendor/aranha-selenium/lib/aranha/selenium/version.rb +1 -1
  75. data/vendor/aranha-selenium/spec/rubocop_check_spec.rb +1 -5
  76. data/vendor/aranha-selenium/spec/spec_helper.rb +2 -98
  77. data/vendor/eac_cli/eac_cli.gemspec +3 -3
  78. data/vendor/eac_cli/lib/eac_cli/config/entry.rb +0 -2
  79. data/vendor/eac_cli/lib/eac_cli/version.rb +1 -1
  80. data/vendor/eac_cli/spec/rubocop_spec.rb +1 -1
  81. data/vendor/eac_cli/spec/spec_helper.rb +2 -101
  82. data/vendor/eac_config/eac_config.gemspec +2 -2
  83. data/vendor/eac_config/lib/eac_config/version.rb +1 -1
  84. data/vendor/eac_config/spec/rubocop_spec.rb +1 -1
  85. data/vendor/eac_config/spec/spec_helper.rb +2 -15
  86. data/vendor/eac_docker/eac_docker.gemspec +2 -2
  87. data/vendor/eac_docker/lib/eac_docker/container.rb +7 -3
  88. data/vendor/eac_docker/lib/eac_docker/debug.rb +15 -0
  89. data/vendor/eac_docker/lib/eac_docker/images/coded.rb +4 -0
  90. data/vendor/eac_docker/lib/eac_docker/images/templatized.rb +16 -2
  91. data/vendor/eac_docker/lib/eac_docker/rspec/setup.rb +17 -0
  92. data/vendor/eac_docker/lib/eac_docker/rspec.rb +2 -10
  93. data/vendor/eac_docker/lib/eac_docker/version.rb +1 -1
  94. data/vendor/eac_docker/spec/rubocop_spec.rb +1 -1
  95. data/vendor/eac_docker/spec/spec_helper.rb +2 -104
  96. data/vendor/eac_ruby_base0/eac_ruby_base0.gemspec +4 -4
  97. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/version.rb +1 -1
  98. data/vendor/eac_ruby_base0/spec/rubocop_spec.rb +1 -1
  99. data/vendor/eac_ruby_base0/spec/spec_helper.rb +2 -101
  100. data/vendor/eac_ruby_utils/eac_ruby_utils.gemspec +1 -1
  101. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/boolean.rb +1 -1
  102. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/envs/executable.rb +15 -3
  103. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/gems_registry/gem.rb +75 -0
  104. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/gems_registry.rb +35 -0
  105. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/recursive_builder.rb +51 -0
  106. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/rspec/default_setup.rb +20 -0
  107. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/rspec/setup/conditionals.rb +17 -0
  108. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/rspec/setup.rb +12 -0
  109. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/rspec/setup_manager.rb +49 -0
  110. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/version.rb +1 -1
  111. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/recursive_builder_spec.rb +65 -0
  112. data/vendor/eac_ruby_utils/spec/rubocop_check_spec.rb +1 -1
  113. data/vendor/eac_ruby_utils/spec/spec_helper.rb +6 -6
  114. data/vendor/ehbrs_ruby_utils/ehbrs_ruby_utils.gemspec +6 -3
  115. data/vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/finances/bb_browser/docker_image.rb +18 -0
  116. data/vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/patches/object/template.rb +6 -0
  117. data/vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/version.rb +1 -1
  118. data/vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/videos/stream.rb +11 -1
  119. data/vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/web_utils/videos/file/rename.rb +28 -0
  120. data/vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/web_utils/videos/file.rb +11 -8
  121. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec.rb +13 -0
  122. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_attachment.source.yaml +28 -0
  123. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_attachment.target.yaml +7 -0
  124. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_audio.source.yaml +49 -0
  125. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_audio.target.yaml +7 -0
  126. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_subtitle.source.yaml +43 -0
  127. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_subtitle.target.yaml +7 -0
  128. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_video.source.yaml +59 -0
  129. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_video.target.yaml +7 -0
  130. data/vendor/ehbrs_ruby_utils/spec/rubocop_check_spec.rb +1 -5
  131. data/vendor/ehbrs_ruby_utils/spec/spec_helper.rb +2 -98
  132. data/vendor/ehbrs_ruby_utils/template/ehbrs_ruby_utils/finances/bb_browser/docker_image/Dockerfile +44 -0
  133. data/vendor/ehbrs_ruby_utils/template/ehbrs_ruby_utils/finances/bb_browser/docker_image/Makefile +35 -0
  134. data/vendor/ehbrs_ruby_utils/template/ehbrs_ruby_utils/finances/bb_browser/docker_image/README.md +16 -0
  135. data/vendor/ehbrs_ruby_utils/template/ehbrs_ruby_utils/finances/bb_browser/docker_image/context/firefox.service +8 -0
  136. data/vendor/ehbrs_ruby_utils/template/ehbrs_ruby_utils/finances/bb_browser/docker_image/context/startbrowser.sh +9 -0
  137. metadata +149 -40
  138. data/lib/ehbrs/runner/cooking_book/build.rb +0 -50
  139. data/lib/ehbrs/runner/cooking_book.rb +0 -30
  140. data/lib/ehbrs/runner/finances/bb_browser.rb +0 -35
  141. data/lib/ehbrs/runner/finances.rb +0 -16
  142. data/lib/ehbrs/runner/fs/selected.rb +0 -79
  143. data/lib/ehbrs/runner/fs/used_space.rb +0 -159
  144. data/lib/ehbrs/runner/fs.rb +0 -16
  145. data/lib/ehbrs/runner/google/translate.rb +0 -87
  146. data/lib/ehbrs/runner/google.rb +0 -16
  147. data/lib/ehbrs/runner/music/selected.rb +0 -26
  148. data/lib/ehbrs/runner/music.rb +0 -16
  149. data/lib/ehbrs/runner/self/test.rb +0 -25
  150. data/lib/ehbrs/runner/self.rb +0 -16
  151. data/lib/ehbrs/runner/telegram/send_message.rb +0 -29
  152. data/lib/ehbrs/runner/telegram.rb +0 -26
  153. data/lib/ehbrs/runner/vg/ips.rb +0 -132
  154. data/lib/ehbrs/runner/vg/wii.rb +0 -72
  155. data/lib/ehbrs/runner/vg.rb +0 -16
  156. data/lib/ehbrs/runner/videos/extract.rb +0 -68
  157. data/lib/ehbrs/runner/videos/probe.rb +0 -32
  158. data/lib/ehbrs/runner/videos/series/rename.rb +0 -72
  159. data/lib/ehbrs/runner/videos/unsupported.rb +0 -59
  160. data/lib/ehbrs/runner/videos.rb +0 -16
  161. data/lib/ehbrs/runner/web_utils/videos/download.rb +0 -63
  162. data/lib/ehbrs/runner/web_utils/videos/upload.rb +0 -75
  163. data/lib/ehbrs/runner/web_utils.rb +0 -24
  164. data/lib/ehbrs/runner.rb +0 -19
  165. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/rspec/conditional.rb +0 -35
  166. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/rspec/stubbed_ssh.rb +0 -44
@@ -1,16 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'eac_cli/core_ext'
4
-
5
- module Ehbrs
6
- class Runner
7
- class Google
8
- require_sub __FILE__
9
-
10
- runner_with :help, :subcommands do
11
- desc 'Utilidades Google.'
12
- subcommands
13
- end
14
- end
15
- end
16
- end
@@ -1,26 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'ehbrs/music/album'
4
- require 'ehbrs/runner/fs/selected'
5
-
6
- module Ehbrs
7
- class Runner
8
- class Music
9
- class Selected < ::Ehbrs::Runner::Fs::Selected
10
- protected
11
-
12
- def build_selected_directory(path)
13
- ::Ehbrs::Music::Album.new(path)
14
- end
15
-
16
- def directory_label(directory)
17
- directory.to_label
18
- end
19
-
20
- def directory_target_basename(directory)
21
- directory.id
22
- end
23
- end
24
- end
25
- end
26
- end
@@ -1,16 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'eac_cli/core_ext'
4
-
5
- module Ehbrs
6
- class Runner
7
- class Music
8
- require_sub __FILE__
9
-
10
- runner_with :help, :subcommands do
11
- desc 'Ferramentas para músicas.'
12
- subcommands
13
- end
14
- end
15
- end
16
- end
@@ -1,25 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'eac_cli/core_ext'
4
- require 'ehbrs/gems'
5
- require 'eac_ruby_gems_utils/tests/multiple'
6
-
7
- module Ehbrs
8
- class Runner
9
- class Self
10
- class Test
11
- runner_with :help do
12
- desc 'Test core and local gems.'
13
- end
14
-
15
- def run
16
- fatal_error 'Some test did not pass' unless tests.ok?
17
- end
18
-
19
- def tests_uncached
20
- ::EacRubyGemsUtils::Tests::Multiple.new(::Ehbrs::Gems.all)
21
- end
22
- end
23
- end
24
- end
25
- end
@@ -1,16 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'eac_cli/core_ext'
4
-
5
- module Ehbrs
6
- class Runner
7
- class Self
8
- require_sub __FILE__
9
-
10
- runner_with :help, :subcommands do
11
- desc 'Self utilities'
12
- subcommands
13
- end
14
- end
15
- end
16
- end
@@ -1,29 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'eac_cli/core_ext'
4
- require 'ehbrs/telegram/message_sending'
5
-
6
- module Ehbrs
7
- class Runner
8
- class Telegram
9
- class SendMessage
10
- runner_with :help do
11
- desc 'Envia mensagens Telegram.'
12
- pos_arg :message
13
- pos_arg :recipients_ids, repeat: true
14
- end
15
-
16
- delegate :run, to: :message_sending
17
-
18
- private
19
-
20
- def message_sending_uncached
21
- parsed.recipients_ids
22
- .inject(::Ehbrs::Telegram::MessageSending.new) { |a, e| a.recipient_id(e) }
23
- .bot_token(runner_context.call(:bot_token))
24
- .message(parsed.message)
25
- end
26
- end
27
- end
28
- end
29
- end
@@ -1,26 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'eac_cli/core_ext'
4
- require 'ehbrs/tools/instance'
5
-
6
- module Ehbrs
7
- class Runner
8
- class Telegram
9
- require_sub __FILE__
10
-
11
- runner_with :help, :subcommands do
12
- desc 'Operações com Telegram.'
13
- arg_opt '-b', '--bot-token', 'Token do bot Telegram.'
14
- subcommands
15
- end
16
-
17
- def bot_token
18
- parsed.bot_token || default_bot_token
19
- end
20
-
21
- def default_bot_token
22
- ::Ehbrs::Tools.instance.read_entry(:telegram_bot_token)
23
- end
24
- end
25
- end
26
- end
@@ -1,132 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'eac_cli/core_ext'
4
- require 'eac_ruby_utils/fs/temp'
5
- require 'ehbrs/executables'
6
-
7
- module Ehbrs
8
- class Runner
9
- class Vg
10
- class Ips
11
- runner_with :help do
12
- desc 'Aplica patches IPS em roms.'
13
- arg_opt '-o', '--output-file', ' Saída no arquivo <output-file>.'
14
- bool_opt '-w', '--overwrite', 'Sobrescreve o arquivo de saída se existente.'
15
- pos_arg 'source-file'
16
- pos_arg 'ips-files', repeat: true
17
- end
18
-
19
- def run
20
- validate
21
- start_banner
22
- run_patches
23
- infov 'Concluído'
24
- end
25
-
26
- private
27
-
28
- def on_temp_files
29
- ::EacRubyUtils::Fs::Temp.on_file do |input|
30
- ::EacRubyUtils::Fs::Temp.on_file do |output|
31
- yield TempFiles.new(source_file, input, output)
32
- end
33
- end
34
- end
35
-
36
- def run_patch(source_path, ips_path, output_path)
37
- ::Ehbrs::Executables.flips.command
38
- .append(['--apply', ips_path, source_path, output_path]).system!
39
- end
40
-
41
- def run_patches
42
- on_temp_files do |temp|
43
- ips_files.each do |ips_file|
44
- run_patch(temp.input, ips_file, temp.output)
45
- temp.swap
46
- end
47
- temp.move_result_to(output_file)
48
- end
49
- end
50
-
51
- def source_file
52
- parsed.source_file.to_pathname
53
- end
54
-
55
- def start_banner
56
- infov 'Source file', source_file
57
- infov 'Output file', output_file
58
- infov 'IPS files', ips_files.count
59
- ips_files.each { |ips_file| infov ' * ', ips_file }
60
- end
61
-
62
- def ips_files
63
- parsed.ips_files.map(&:to_pathname)
64
- end
65
-
66
- def output_file
67
- parsed.output_file.to_pathname || default_output_file
68
- end
69
-
70
- def default_output_file
71
- ips_files.last.parent.join(
72
- ips_files.map { |f| f.basename('.*').to_path }.join('_') + source_file.extname
73
- )
74
- end
75
-
76
- def validate
77
- validate_source_file
78
- ips_files.each { |ips_file| validate_ips_file(ips_file) }
79
- validate_output_file
80
- end
81
-
82
- def validate_source_file
83
- return if source_file.exist?
84
-
85
- fatal_error("Arquivo fonte \"#{source_file}\" não existe")
86
- end
87
-
88
- def validate_ips_file(ips_file)
89
- return if ::File.exist?(ips_file)
90
-
91
- fatal_error("Arquivo IPS \"#{ips_file}\" não existe")
92
- end
93
-
94
- def validate_output_file
95
- return unless output_file.exist?
96
- return if parsed.overwrite?
97
-
98
- fatal_error("Arquivo de saída \"#{output_file}\" já existe")
99
- end
100
-
101
- class TempFiles
102
- common_constructor :initial, :temp0, :temp1
103
-
104
- def input
105
- swaped? ? temp0 : initial
106
- end
107
-
108
- def move_result_to(dest)
109
- return unless swaped?
110
-
111
- ::FileUtils.mv(temp0.to_path, dest.to_path)
112
- end
113
-
114
- def output
115
- temp1
116
- end
117
-
118
- def swap
119
- temp0_current = temp0
120
- self.temp0 = temp1
121
- self.temp1 = temp0_current
122
- @swaped = true
123
- end
124
-
125
- def swaped?
126
- @swaped ? true : false
127
- end
128
- end
129
- end
130
- end
131
- end
132
- end
@@ -1,72 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'eac_cli/core_ext'
4
- require 'eac_ruby_utils/fs/traversable'
5
- require 'ehbrs/vg/wii/file_move'
6
- require 'ehbrs/vg/wii/game_file'
7
-
8
- module Ehbrs
9
- class Runner
10
- class Vg
11
- class Wii
12
- include ::EacRubyUtils::Fs::Traversable
13
-
14
- runner_with :help do
15
- desc 'Manipulação de imagens de jogo Wii.'
16
- bool_opt '-R', '--recursive', 'Busca arquivos recursivamente.'
17
- bool_opt '-d', '--dump', 'Mostra todos os atributos do jogo.'
18
- arg_opt '-m', '--move', 'Move o arquivo.'
19
- bool_opt '-c', '--confirm', 'Confirma o movimento do arquivo.'
20
- pos_arg 'paths', repeat: true
21
- end
22
-
23
- def run
24
- infov 'Recursive?', traverser_new.recursive?
25
- parsed.paths.each do |path|
26
- traverser_check_path(path)
27
- end
28
- end
29
-
30
- private
31
-
32
- def confirm?
33
- parsed.confirm?
34
- end
35
-
36
- def dump(game)
37
- return unless parsed.dump?
38
-
39
- game.properties.each do |name, value|
40
- infov " * #{name}", value
41
- end
42
- end
43
-
44
- def move(game)
45
- return if move_arg.blank?
46
-
47
- file_move = ::Ehbrs::Vg::Wii::FileMove.new(game, game.format(move_arg))
48
- infov ' * Target path',
49
- file_move.target.to_s.colorize(file_move.change? ? :light_white : :light_black)
50
- file_move.run if confirm?
51
- end
52
-
53
- def move_arg
54
- parsed.move
55
- end
56
-
57
- def traverser_recursive
58
- parsed.recursive
59
- end
60
-
61
- def traverser_check_file(path)
62
- game = ::Ehbrs::Vg::Wii::GameFile.new(path)
63
- return unless game.valid?
64
-
65
- infom game.wit_path
66
- dump(game)
67
- move(game)
68
- end
69
- end
70
- end
71
- end
72
- end
@@ -1,16 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'eac_cli/core_ext'
4
-
5
- module Ehbrs
6
- class Runner
7
- class Vg
8
- require_sub __FILE__
9
-
10
- runner_with :help, :subcommands do
11
- desc 'Ferramentas para video game.'
12
- subcommands
13
- end
14
- end
15
- end
16
- end
@@ -1,68 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'eac_cli/core_ext'
4
- require 'ehbrs/videos/extract/package'
5
-
6
- module Ehbrs
7
- class Runner
8
- class Videos
9
- class Extract
10
- require_sub __FILE__
11
-
12
- DEFAULT_QUALITIES = %w[1080 720 web webrip hdtv].freeze
13
-
14
- runner_with :help do
15
- desc 'Extrai arquivos de seriados.'
16
- arg_opt '-d', '--dir', 'Extraí para diretório.'
17
- bool_opt '-D', '--delete', 'Remove o pacote após o processamento.'
18
- arg_opt '-q', '--qualities', 'Lista de qualidades.'
19
- pos_arg 'packages', repeat: true
20
- end
21
-
22
- def run
23
- start_banner
24
- packages.each do |package|
25
- infov 'Package', package
26
- package.run(parsed.delete?)
27
- end
28
- end
29
-
30
- private
31
-
32
- def packages_uncached
33
- parsed.packages?.map do |p|
34
- ::Ehbrs::Videos::Extract::Package.new(p, target_dir, qualities)
35
- end
36
- end
37
-
38
- def qualities_uncached
39
- (parsed.qualities.to_s.split(',') + DEFAULT_QUALITIES).uniq
40
- end
41
-
42
- def start_banner
43
- infov 'Packages', packages.count
44
- infov 'Qualities', qualities
45
- infov 'Target directory', target_dir
46
- end
47
-
48
- def target_dir_uncached
49
- parsed.dir.if_present(&:to_pathname) || default_target_dir
50
- end
51
-
52
- def default_target_dir
53
- r = parsed.packages.first.to_pathname.basename('.*')
54
- return r unless r.exist?
55
-
56
- r = r.basename_sub { |b| "#{b}_extract" }
57
- index = 0
58
- loop do
59
- return r unless r.exist?
60
-
61
- index += 1
62
- r = r.basename_sub { |b| "#{b}_#{index}" }
63
- end
64
- end
65
- end
66
- end
67
- end
68
- end