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,32 +0,0 @@
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
- class Runner
9
- class Videos
10
- class Probe
11
- runner_with :help, :output do
12
- desc 'FFProbe em um arquivo de vídeo.'
13
- pos_arg :file_path
14
- end
15
-
16
- def run
17
- run_output
18
- end
19
-
20
- def output_content
21
- ::EacRubyUtils::Yaml.dump(container_file.probe_data)
22
- end
23
-
24
- private
25
-
26
- def container_file_uncached
27
- ::EhbrsRubyUtils::Videos::Container.new(parsed.file_path)
28
- end
29
- end
30
- end
31
- end
32
- end
@@ -1,72 +0,0 @@
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
- class Runner
10
- class Videos
11
- class Series
12
- class Rename
13
- include ::EacRubyUtils::Fs::Traversable
14
-
15
- runner_with :help do
16
- desc 'Renomeia arquivos de séries.'
17
- bool_opt '-r', '--recursive', 'Recursivo.'
18
- bool_opt '-c', '--confirm', 'Confirmação a renomeação.'
19
- arg_opt '-k', '--kernel', 'Determina o kernel para os nomes dos arquivos.'
20
- arg_opt '-E', '--extension', 'Substitui a extensão dos arquivos.'
21
- arg_opt '-e', '--episode-increment', 'Aumenta o número do episódio.'
22
- pos_arg 'paths', repeat: true, optional: true
23
- end
24
-
25
- def run
26
- banner
27
- show_results
28
- rename_files
29
- end
30
-
31
- def banner
32
- infov 'Paths', paths.count
33
- infov 'Files found', files.count
34
- end
35
-
36
- def files_uncached
37
- @files = []
38
- paths.each { |path| traverser_check_path(path) }
39
- @files
40
- end
41
-
42
- def paths
43
- parsed.paths.if_present(['.'])
44
- end
45
-
46
- def traverser_recursive
47
- parsed.recursive
48
- end
49
-
50
- def traverser_check_file(path)
51
- @files << ::Ehbrs::Videos::Series::Rename::File.new(path, series_file_options)
52
- end
53
-
54
- def series_file_options_uncached
55
- ::Ehbrs::Videos::Series::Rename::File::Options.new(parsed)
56
- end
57
-
58
- def show_results
59
- ::Ehbrs::Videos::Series::Rename::ResultsBuilder.new(files).show(0)
60
- end
61
-
62
- def rename_files
63
- return unless series_file_options.confirm
64
-
65
- infom 'Renaming files...'
66
- files.each(&:rename)
67
- end
68
- end
69
- end
70
- end
71
- end
72
- end
@@ -1,59 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'eac_cli/core_ext'
4
- require 'ehbrs/videos/unsupported/check_set'
5
- require 'ehbrs/videos/unsupported/search'
6
- require 'ehbrs/videos/unsupported/profiles'
7
-
8
- module Ehbrs
9
- class Runner
10
- class Videos
11
- class Unsupported
12
- PROFILES = %w[aoc philco samsung].freeze
13
-
14
- runner_with :help do
15
- desc 'Procura e converte vídeos não suportados pelas TVs de EHB/RS.'
16
- bool_opt '-f', '--fix', 'Converte vídeos para o formato apropriado.'
17
- arg_opt '-p', '--profiles', "Seleciona os perfis (#{PROFILES.join(', ')})."
18
- pos_arg 'paths', repeat: true
19
- end
20
-
21
- def run
22
- infov 'Profiles', profiles.join(', ')
23
- infov 'Paths', paths
24
- paths.each do |d|
25
- ::Ehbrs::Videos::Unsupported::Search.new(d, file_options)
26
- end
27
- end
28
-
29
- private
30
-
31
- def file_check_set_uncached
32
- ::Ehbrs::Videos::Unsupported::CheckSet.build(profiles, :file)
33
- end
34
-
35
- def track_check_set_uncached
36
- ::Ehbrs::Videos::Unsupported::CheckSet.build(profiles, :track)
37
- end
38
-
39
- def paths
40
- parsed.paths
41
- end
42
-
43
- def file_options
44
- { file_check_set: file_check_set, track_check_set: track_check_set,
45
- fix: parsed.fix? }
46
- end
47
-
48
- def profiles_uncached
49
- parsed.profiles.if_present(PROFILES) { |v| v.split(',').map(&:strip) }
50
- .map { |name| profile_class(name).instance }
51
- end
52
-
53
- def profile_class(profile_name)
54
- ::Ehbrs::Videos::Unsupported::Profiles.const_get(profile_name.camelize)
55
- end
56
- end
57
- end
58
- end
59
- 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 Videos
8
- require_sub __FILE__
9
-
10
- runner_with :help, :subcommands do
11
- desc 'Video tools for EHB/RS.'
12
- subcommands
13
- end
14
- end
15
- end
16
- end
@@ -1,63 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'eac_cli/core_ext'
4
- require 'ehbrs_ruby_utils/web_utils/videos/file'
5
-
6
- module Ehbrs
7
- class Runner
8
- class WebUtils
9
- class Videos
10
- class Download
11
- runner_with :help do
12
- desc 'Importa informações de arquivos de vídeo de uma instância EHB/RS Utils.'
13
- bool_opt '-c', '--confirm', 'Confirma as mudanças'
14
- end
15
-
16
- def run
17
- start_banner
18
- to_rename.each { |file| process_rename_file(file) }
19
- to_delete.each { |file| process_delete_file(file) }
20
- end
21
-
22
- private
23
-
24
- def start_banner
25
- infov 'Files downloaded', files.count
26
- infov 'To rename', to_rename.count
27
- infov 'To delete', to_delete.count
28
- end
29
-
30
- def process_rename_file(file)
31
- infov " * #{file.new_path}", file.original_path
32
- file.rename if parsed.confirm?
33
- end
34
-
35
- def process_delete_file(file)
36
- infov " * #{file.new_path}", 'REMOVE'
37
- file.remove if parsed.confirm?
38
- end
39
-
40
- def files_uncached
41
- data.map { |file_data| ::EhbrsRubyUtils::WebUtils::Videos::File.new(file_data) }
42
- end
43
-
44
- def to_rename_uncached
45
- files.select(&:path_changed?)
46
- end
47
-
48
- def to_delete_uncached
49
- files.reject { |f| f.type == 'Videos::SeriesDirectory' }.select(&:unwanted)
50
- end
51
-
52
- def data_uncached
53
- ::JSON.parse(raw_content)
54
- end
55
-
56
- def raw_content
57
- runner_context.call(:instance).http_request('/videos/files/export').body
58
- end
59
- end
60
- end
61
- end
62
- end
63
- end
@@ -1,75 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'eac_cli/core_ext'
4
- require 'ehbrs_ruby_utils/web_utils/videos/files_list'
5
- require 'json'
6
- require 'yaml'
7
-
8
- module Ehbrs
9
- class Runner
10
- class WebUtils
11
- class Videos
12
- class Upload
13
- runner_with :help do
14
- desc 'Exporta informações de arquivos de vídeo para uma instância EHB/RS Utils.'
15
- bool_opt '-P', '--no-ffprobe', 'Não recupera dados com "ffprobe".'
16
- end
17
-
18
- def run
19
- %w[movies series].each { |type| upload_files_list(type) }
20
- end
21
-
22
- def upload_files_list(type)
23
- infom "Uploading \"#{type}\" files list..."
24
- files_list_path = send("#{type}_files_list")
25
- infov 'Path', files_list_path
26
- process_response(upload_request(files_list_path))
27
- end
28
-
29
- def upload_request(files_list_path)
30
- runner_context.call(:instance).http_request(
31
- '/videos/files/import',
32
- method: :put,
33
- body: {
34
- 'videos_tableless_local_import_list[list_file]' => ::File.new(files_list_path)
35
- },
36
- header: {
37
- 'Accept' => 'application/json'
38
- }
39
- )
40
- end
41
-
42
- def process_response(response)
43
- infov 'Response status', response.status
44
- if response.status == 200
45
- pp ::JSON.parse(response.body)
46
- else
47
- error_file = '/tmp/ehbrsutils.html'
48
- ::File.write(error_file, response.body)
49
- system('firefox', error_file)
50
- fatal_error('Retornou com status de erro: ' + error_file)
51
- end
52
- end
53
-
54
- def series_files_list_uncached
55
- write_files_list('Videos::SeriesDirectory', :series_directory)
56
- end
57
-
58
- def movies_files_list_uncached
59
- write_files_list('Videos::MovieFile', :movies_directory)
60
- end
61
-
62
- def write_files_list(file_class, read_entry)
63
- files_list = ::EhbrsRubyUtils::WebUtils::Videos::FilesList.new(
64
- file_class,
65
- runner_context.call(:instance).read_entry(read_entry),
66
- ffprobe: !parsed.no_ffprobe?
67
- )
68
- infov 'Files found', files_list.data.fetch(:files).count
69
- files_list.write_to
70
- end
71
- end
72
- end
73
- end
74
- end
75
- end
@@ -1,24 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'eac_cli/core_ext'
4
- require 'ehbrs_ruby_utils/web_utils/instance'
5
-
6
- module Ehbrs
7
- class Runner
8
- class WebUtils
9
- require_sub __FILE__
10
-
11
- runner_with :help, :subcommands do
12
- desc 'Ferramentas para EHB/RS Utils.'
13
- pos_arg :instance_id
14
- subcommands
15
- end
16
-
17
- private
18
-
19
- def instance_uncached
20
- ::EhbrsRubyUtils::WebUtils::Instance.by_id(parsed.instance_id)
21
- end
22
- end
23
- end
24
- end
data/lib/ehbrs/runner.rb DELETED
@@ -1,19 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'eac_ruby_base0/runner'
4
- require 'ehbrs/tools/application'
5
-
6
- module Ehbrs
7
- class Runner
8
- require_sub __FILE__
9
- include ::EacRubyBase0::Runner
10
-
11
- runner_definition do
12
- desc 'Tools for EHB/RS.'
13
- end
14
-
15
- def application
16
- ::Ehbrs::Tools.application
17
- end
18
- end
19
- end
@@ -1,35 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'active_support/core_ext/object/blank'
4
-
5
- module EacRubyUtils
6
- module Rspec
7
- class Conditional
8
- def self.default
9
- @default ||= new
10
- end
11
-
12
- def initialize
13
- @tags = {}
14
- end
15
-
16
- def add(tag, &condition)
17
- tags[tag] = condition
18
- end
19
-
20
- def configure(rspec_config)
21
- tags.each do |tag, condition|
22
- message = condition.call
23
- if message.present?
24
- puts("[WARN] Excluded tag: #{tag}: #{message}")
25
- rspec_config.filter_run_excluding tag
26
- end
27
- end
28
- end
29
-
30
- private
31
-
32
- attr_reader :tags
33
- end
34
- end
35
- end
@@ -1,44 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'active_support/core_ext/object/blank'
4
- require 'eac_ruby_utils/envs/ssh_env'
5
- require 'eac_ruby_utils/patches/object/if_present'
6
-
7
- module EacRubyUtils
8
- module Rspec
9
- class StubbedSsh
10
- DEFAULT_ENVVAR_NAME = 'STUBBED_SSH_URL'
11
-
12
- class << self
13
- def default
14
- @default ||= new(DEFAULT_ENVVAR_NAME)
15
- end
16
- end
17
-
18
- attr_reader :envvar_name
19
-
20
- def initialize(envvar_name)
21
- @envvar_name = envvar_name
22
- end
23
-
24
- def validate
25
- return nil if provided_url.present?
26
-
27
- "Environment variable \"#{envvar_name}\" unprovided or blank"
28
- end
29
-
30
- def validate!
31
- validate.if_present { |v| raise v }
32
- end
33
-
34
- def provided_url
35
- ENV[envvar_name]
36
- end
37
-
38
- def build_env
39
- validate!
40
- ::EacRubyUtils::Envs::SshEnv.new(provided_url)
41
- end
42
- end
43
- end
44
- end