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
@@ -0,0 +1,18 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_cli/core_ext'
4
+
5
+ module Ehbrs
6
+ module Tools
7
+ class Runner
8
+ class Self
9
+ require_sub __FILE__
10
+
11
+ runner_with :help, :subcommands do
12
+ desc 'Self utilities'
13
+ subcommands
14
+ end
15
+ end
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,31 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_cli/core_ext'
4
+ require 'ehbrs/telegram/message_sending'
5
+
6
+ module Ehbrs
7
+ module Tools
8
+ class Runner
9
+ class Telegram
10
+ class SendMessage
11
+ runner_with :help do
12
+ desc 'Envia mensagens Telegram.'
13
+ pos_arg :message
14
+ pos_arg :recipients_ids, repeat: true
15
+ end
16
+
17
+ delegate :run, to: :message_sending
18
+
19
+ private
20
+
21
+ def message_sending_uncached
22
+ parsed.recipients_ids
23
+ .inject(::Ehbrs::Telegram::MessageSending.new) { |a, e| a.recipient_id(e) }
24
+ .bot_token(runner_context.call(:bot_token))
25
+ .message(parsed.message)
26
+ end
27
+ end
28
+ end
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,28 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_cli/core_ext'
4
+ require 'ehbrs/tools/instance'
5
+
6
+ module Ehbrs
7
+ module Tools
8
+ class Runner
9
+ class Telegram
10
+ require_sub __FILE__
11
+
12
+ runner_with :help, :subcommands do
13
+ desc 'Operações com Telegram.'
14
+ arg_opt '-b', '--bot-token', 'Token do bot Telegram.'
15
+ subcommands
16
+ end
17
+
18
+ def bot_token
19
+ parsed.bot_token || default_bot_token
20
+ end
21
+
22
+ def default_bot_token
23
+ ::Ehbrs::Tools.instance.read_entry(:telegram_bot_token)
24
+ end
25
+ end
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,134 @@
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
+ module Tools
9
+ class Runner
10
+ class Vg
11
+ class Ips
12
+ runner_with :help do
13
+ desc 'Aplica patches IPS em roms.'
14
+ arg_opt '-o', '--output-file', ' Saída no arquivo <output-file>.'
15
+ bool_opt '-w', '--overwrite', 'Sobrescreve o arquivo de saída se existente.'
16
+ pos_arg 'source-file'
17
+ pos_arg 'ips-files', repeat: true
18
+ end
19
+
20
+ def run
21
+ validate
22
+ start_banner
23
+ run_patches
24
+ infov 'Concluído'
25
+ end
26
+
27
+ private
28
+
29
+ def on_temp_files
30
+ ::EacRubyUtils::Fs::Temp.on_file do |input|
31
+ ::EacRubyUtils::Fs::Temp.on_file do |output|
32
+ yield TempFiles.new(source_file, input, output)
33
+ end
34
+ end
35
+ end
36
+
37
+ def run_patch(source_path, ips_path, output_path)
38
+ ::Ehbrs::Executables.flips.command
39
+ .append(['--apply', ips_path, source_path, output_path]).system!
40
+ end
41
+
42
+ def run_patches
43
+ on_temp_files do |temp|
44
+ ips_files.each do |ips_file|
45
+ run_patch(temp.input, ips_file, temp.output)
46
+ temp.swap
47
+ end
48
+ temp.move_result_to(output_file)
49
+ end
50
+ end
51
+
52
+ def source_file
53
+ parsed.source_file.to_pathname
54
+ end
55
+
56
+ def start_banner
57
+ infov 'Source file', source_file
58
+ infov 'Output file', output_file
59
+ infov 'IPS files', ips_files.count
60
+ ips_files.each { |ips_file| infov ' * ', ips_file }
61
+ end
62
+
63
+ def ips_files
64
+ parsed.ips_files.map(&:to_pathname)
65
+ end
66
+
67
+ def output_file
68
+ parsed.output_file.to_pathname || default_output_file
69
+ end
70
+
71
+ def default_output_file
72
+ ips_files.last.parent.join(
73
+ ips_files.map { |f| f.basename('.*').to_path }.join('_') + source_file.extname
74
+ )
75
+ end
76
+
77
+ def validate
78
+ validate_source_file
79
+ ips_files.each { |ips_file| validate_ips_file(ips_file) }
80
+ validate_output_file
81
+ end
82
+
83
+ def validate_source_file
84
+ return if source_file.exist?
85
+
86
+ fatal_error("Arquivo fonte \"#{source_file}\" não existe")
87
+ end
88
+
89
+ def validate_ips_file(ips_file)
90
+ return if ::File.exist?(ips_file)
91
+
92
+ fatal_error("Arquivo IPS \"#{ips_file}\" não existe")
93
+ end
94
+
95
+ def validate_output_file
96
+ return unless output_file.exist?
97
+ return if parsed.overwrite?
98
+
99
+ fatal_error("Arquivo de saída \"#{output_file}\" já existe")
100
+ end
101
+
102
+ class TempFiles
103
+ common_constructor :initial, :temp0, :temp1
104
+
105
+ def input
106
+ swaped? ? temp0 : initial
107
+ end
108
+
109
+ def move_result_to(dest)
110
+ return unless swaped?
111
+
112
+ ::FileUtils.mv(temp0.to_path, dest.to_path)
113
+ end
114
+
115
+ def output
116
+ temp1
117
+ end
118
+
119
+ def swap
120
+ temp0_current = temp0
121
+ self.temp0 = temp1
122
+ self.temp1 = temp0_current
123
+ @swaped = true
124
+ end
125
+
126
+ def swaped?
127
+ @swaped ? true : false
128
+ end
129
+ end
130
+ end
131
+ end
132
+ end
133
+ end
134
+ end
@@ -0,0 +1,74 @@
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
+ module Tools
10
+ class Runner
11
+ class Vg
12
+ class Wii
13
+ include ::EacRubyUtils::Fs::Traversable
14
+
15
+ runner_with :help do
16
+ desc 'Manipulação de imagens de jogo Wii.'
17
+ bool_opt '-R', '--recursive', 'Busca arquivos recursivamente.'
18
+ bool_opt '-d', '--dump', 'Mostra todos os atributos do jogo.'
19
+ arg_opt '-m', '--move', 'Move o arquivo.'
20
+ bool_opt '-c', '--confirm', 'Confirma o movimento do arquivo.'
21
+ pos_arg 'paths', repeat: true
22
+ end
23
+
24
+ def run
25
+ infov 'Recursive?', traverser_new.recursive?
26
+ parsed.paths.each do |path|
27
+ traverser_check_path(path)
28
+ end
29
+ end
30
+
31
+ private
32
+
33
+ def confirm?
34
+ parsed.confirm?
35
+ end
36
+
37
+ def dump(game)
38
+ return unless parsed.dump?
39
+
40
+ game.properties.each do |name, value|
41
+ infov " * #{name}", value
42
+ end
43
+ end
44
+
45
+ def move(game)
46
+ return if move_arg.blank?
47
+
48
+ file_move = ::Ehbrs::Vg::Wii::FileMove.new(game, game.format(move_arg))
49
+ infov ' * Target path',
50
+ file_move.target.to_s.colorize(file_move.change? ? :light_white : :light_black)
51
+ file_move.run if confirm?
52
+ end
53
+
54
+ def move_arg
55
+ parsed.move
56
+ end
57
+
58
+ def traverser_recursive
59
+ parsed.recursive
60
+ end
61
+
62
+ def traverser_check_file(path)
63
+ game = ::Ehbrs::Vg::Wii::GameFile.new(path)
64
+ return unless game.valid?
65
+
66
+ infom game.wit_path
67
+ dump(game)
68
+ move(game)
69
+ end
70
+ end
71
+ end
72
+ end
73
+ end
74
+ end
@@ -0,0 +1,18 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_cli/core_ext'
4
+
5
+ module Ehbrs
6
+ module Tools
7
+ class Runner
8
+ class Vg
9
+ require_sub __FILE__
10
+
11
+ runner_with :help, :subcommands do
12
+ desc 'Ferramentas para video game.'
13
+ subcommands
14
+ end
15
+ end
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,70 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_cli/core_ext'
4
+ require 'ehbrs/videos/extract/package'
5
+
6
+ module Ehbrs
7
+ module Tools
8
+ class Runner
9
+ class Videos
10
+ class Extract
11
+ require_sub __FILE__
12
+
13
+ DEFAULT_QUALITIES = %w[1080 720 web webrip hdtv].freeze
14
+
15
+ runner_with :help do
16
+ desc 'Extrai arquivos de seriados.'
17
+ arg_opt '-d', '--dir', 'Extraí para diretório.'
18
+ bool_opt '-D', '--delete', 'Remove o pacote após o processamento.'
19
+ arg_opt '-q', '--qualities', 'Lista de qualidades.'
20
+ pos_arg 'packages', repeat: true
21
+ end
22
+
23
+ def run
24
+ start_banner
25
+ packages.each do |package|
26
+ infov 'Package', package
27
+ package.run(parsed.delete?)
28
+ end
29
+ end
30
+
31
+ private
32
+
33
+ def packages_uncached
34
+ parsed.packages?.map do |p|
35
+ ::Ehbrs::Videos::Extract::Package.new(p, target_dir, qualities)
36
+ end
37
+ end
38
+
39
+ def qualities_uncached
40
+ (parsed.qualities.to_s.split(',') + DEFAULT_QUALITIES).uniq
41
+ end
42
+
43
+ def start_banner
44
+ infov 'Packages', packages.count
45
+ infov 'Qualities', qualities
46
+ infov 'Target directory', target_dir
47
+ end
48
+
49
+ def target_dir_uncached
50
+ parsed.dir.if_present(&:to_pathname) || default_target_dir
51
+ end
52
+
53
+ def default_target_dir
54
+ r = parsed.packages.first.to_pathname.basename('.*')
55
+ return r unless r.exist?
56
+
57
+ r = r.basename_sub { |b| "#{b}_extract" }
58
+ index = 0
59
+ loop do
60
+ return r unless r.exist?
61
+
62
+ index += 1
63
+ r = r.basename_sub { |b| "#{b}_#{index}" }
64
+ end
65
+ end
66
+ end
67
+ end
68
+ end
69
+ end
70
+ end
@@ -0,0 +1,34 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'ehbrs_ruby_utils/videos/container'
4
+ require 'eac_ruby_base0/core_ext'
5
+ require 'eac_ruby_utils/yaml'
6
+
7
+ module Ehbrs
8
+ module Tools
9
+ class Runner
10
+ class Videos
11
+ class Probe
12
+ runner_with :help, :output do
13
+ desc 'FFProbe em um arquivo de vídeo.'
14
+ pos_arg :file_path
15
+ end
16
+
17
+ def run
18
+ run_output
19
+ end
20
+
21
+ def output_content
22
+ ::EacRubyUtils::Yaml.dump(container_file.probe_data)
23
+ end
24
+
25
+ private
26
+
27
+ def container_file_uncached
28
+ ::EhbrsRubyUtils::Videos::Container.new(parsed.file_path)
29
+ end
30
+ end
31
+ end
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,74 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_cli/core_ext'
4
+ require 'ehbrs/videos/series/rename/file'
5
+ require 'ehbrs/videos/series/rename/file/options'
6
+ require 'ehbrs/videos/series/rename/results_builder'
7
+
8
+ module Ehbrs
9
+ module Tools
10
+ class Runner
11
+ class Videos
12
+ class Series
13
+ class Rename
14
+ include ::EacRubyUtils::Fs::Traversable
15
+
16
+ runner_with :help do
17
+ desc 'Renomeia arquivos de séries.'
18
+ bool_opt '-r', '--recursive', 'Recursivo.'
19
+ bool_opt '-c', '--confirm', 'Confirmação a renomeação.'
20
+ arg_opt '-k', '--kernel', 'Determina o kernel para os nomes dos arquivos.'
21
+ arg_opt '-E', '--extension', 'Substitui a extensão dos arquivos.'
22
+ arg_opt '-e', '--episode-increment', 'Aumenta o número do episódio.'
23
+ pos_arg 'paths', repeat: true, optional: true
24
+ end
25
+
26
+ def run
27
+ banner
28
+ show_results
29
+ rename_files
30
+ end
31
+
32
+ def banner
33
+ infov 'Paths', paths.count
34
+ infov 'Files found', files.count
35
+ end
36
+
37
+ def files_uncached
38
+ @files = []
39
+ paths.each { |path| traverser_check_path(path) }
40
+ @files
41
+ end
42
+
43
+ def paths
44
+ parsed.paths.if_present(['.'])
45
+ end
46
+
47
+ def traverser_recursive
48
+ parsed.recursive
49
+ end
50
+
51
+ def traverser_check_file(path)
52
+ @files << ::Ehbrs::Videos::Series::Rename::File.new(path, series_file_options)
53
+ end
54
+
55
+ def series_file_options_uncached
56
+ ::Ehbrs::Videos::Series::Rename::File::Options.new(parsed)
57
+ end
58
+
59
+ def show_results
60
+ ::Ehbrs::Videos::Series::Rename::ResultsBuilder.new(files).show(0)
61
+ end
62
+
63
+ def rename_files
64
+ return unless series_file_options.confirm
65
+
66
+ infom 'Renaming files...'
67
+ files.each(&:rename)
68
+ end
69
+ end
70
+ end
71
+ end
72
+ end
73
+ end
74
+ end