avm 0.0.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (75) hide show
  1. checksums.yaml +4 -4
  2. data/lib/avm/docker/container.rb +50 -0
  3. data/lib/avm/docker/image.rb +71 -0
  4. data/lib/avm/docker/runner.rb +117 -0
  5. data/lib/avm/docker.rb +9 -0
  6. data/lib/avm/executables.rb +24 -0
  7. data/lib/avm/files/appendable/file_content.rb +24 -0
  8. data/lib/avm/files/appendable/plain_directory.rb +25 -0
  9. data/lib/avm/files/appendable/resource_base.rb +13 -0
  10. data/lib/avm/files/appendable/tar_output_command.rb +26 -0
  11. data/lib/avm/files/appendable/templatized_directory.rb +29 -0
  12. data/lib/avm/files/appendable.rb +55 -0
  13. data/lib/avm/files/appender.rb +11 -0
  14. data/lib/avm/files/deploy.rb +71 -0
  15. data/lib/avm/files/formatter/formats/base.rb +62 -0
  16. data/lib/avm/files/formatter/formats/generic_plain.rb +34 -0
  17. data/lib/avm/files/formatter/formats/html.rb +45 -0
  18. data/lib/avm/files/formatter/formats/javascript.rb +23 -0
  19. data/lib/avm/files/formatter/formats/json.rb +27 -0
  20. data/lib/avm/files/formatter/formats/php.rb +21 -0
  21. data/lib/avm/files/formatter/formats/python.rb +21 -0
  22. data/lib/avm/files/formatter/formats/ruby.rb +22 -0
  23. data/lib/avm/files/formatter/formats/xml.rb +27 -0
  24. data/lib/avm/files/formatter/formats.rb +13 -0
  25. data/lib/avm/files/formatter/utf8_assert.rb +72 -0
  26. data/lib/avm/files/formatter.rb +90 -0
  27. data/lib/avm/files/info.rb +24 -0
  28. data/lib/avm/files/rotate.rb +107 -0
  29. data/lib/avm/files.rb +9 -0
  30. data/lib/avm/git/auto_commit/commit_info.rb +23 -0
  31. data/lib/avm/git/auto_commit/rules/base.rb +39 -0
  32. data/lib/avm/git/auto_commit/rules/last.rb +19 -0
  33. data/lib/avm/git/auto_commit/rules/manual.rb +45 -0
  34. data/lib/avm/git/auto_commit/rules/new.rb +24 -0
  35. data/lib/avm/git/auto_commit/rules/nth.rb +31 -0
  36. data/lib/avm/git/auto_commit/rules/unique.rb +21 -0
  37. data/lib/avm/git/auto_commit/rules.rb +31 -0
  38. data/lib/avm/git/auto_commit_path/ruby.rb +20 -0
  39. data/lib/avm/git/auto_commit_path.rb +28 -0
  40. data/lib/avm/git/commit/class_methods.rb +31 -0
  41. data/lib/avm/git/commit/deploy.rb +38 -0
  42. data/lib/avm/git/commit/deploy_methods.rb +19 -0
  43. data/lib/avm/git/commit/diff_tree_line.rb +32 -0
  44. data/lib/avm/git/commit/file.rb +46 -0
  45. data/lib/avm/git/commit.rb +59 -0
  46. data/lib/avm/git/file_auto_fixup.rb +83 -0
  47. data/lib/avm/git/issue/complete/commits.rb +42 -0
  48. data/lib/avm/git/issue/complete/git_subrepos.rb +23 -0
  49. data/lib/avm/git/issue/complete/local_branch.rb +54 -0
  50. data/lib/avm/git/issue/complete/local_tag.rb +39 -0
  51. data/lib/avm/git/issue/complete/push.rb +54 -0
  52. data/lib/avm/git/issue/complete/remote.rb +33 -0
  53. data/lib/avm/git/issue/complete/test.rb +45 -0
  54. data/lib/avm/git/issue/complete/tracker.rb +28 -0
  55. data/lib/avm/git/issue/complete/validation.rb +31 -0
  56. data/lib/avm/git/issue/complete/validations.rb +53 -0
  57. data/lib/avm/git/issue/complete/working_tree.rb +19 -0
  58. data/lib/avm/git/issue/complete.rb +51 -0
  59. data/lib/avm/git/issue/deliver.rb +56 -0
  60. data/lib/avm/git/issue.rb +11 -0
  61. data/lib/avm/git/organize/reference_update.rb +34 -0
  62. data/lib/avm/git/organize/repository.rb +76 -0
  63. data/lib/avm/git/organize.rb +11 -0
  64. data/lib/avm/git/revision_test.rb +106 -0
  65. data/lib/avm/git/subrepo_check/parent.rb +51 -0
  66. data/lib/avm/git/subrepo_check/remote.rb +89 -0
  67. data/lib/avm/git/subrepo_check/show_result.rb +32 -0
  68. data/lib/avm/git/subrepo_check.rb +38 -0
  69. data/lib/avm/git/subrepo_checks.rb +59 -0
  70. data/lib/avm/git.rb +10 -0
  71. data/lib/avm/instances/docker_image.rb +15 -0
  72. data/lib/avm/result.rb +86 -0
  73. data/lib/avm/version.rb +1 -1
  74. data/lib/avm/version_number.rb +45 -0
  75. metadata +143 -3
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'avm/files/appendable'
4
+
5
+ module Avm
6
+ module Files
7
+ class Appender
8
+ include ::Avm::Files::Appendable
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,71 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'addressable'
4
+ require 'avm/files/appendable'
5
+ require 'eac_ruby_utils/core_ext'
6
+
7
+ module Avm
8
+ module Files
9
+ class Deploy
10
+ include ::Avm::Files::Appendable
11
+ enable_simple_cache
12
+
13
+ attr_reader :build_dir, :target_env, :target_path
14
+
15
+ common_constructor :target_env, :target_path
16
+
17
+ def run
18
+ on_build_dir do
19
+ copy_content_to_build_dir
20
+ mkdir_target
21
+ clear_content
22
+ send_untar_package
23
+ set_target_permission
24
+ end
25
+ end
26
+
27
+ private
28
+
29
+ def on_build_dir
30
+ @build_dir = ::Dir.mktmpdir
31
+ yield
32
+ ensure
33
+ ::FileUtils.rm_rf(@build_dir)
34
+ end
35
+
36
+ def copy_content_to_build_dir
37
+ write_appended_on(build_dir)
38
+ end
39
+
40
+ def mkdir_target
41
+ target_env.command('mkdir', '-p', target_path).execute!
42
+ end
43
+
44
+ def clear_content
45
+ target_env.command(
46
+ 'find', target_path, '-mindepth', '1', '-maxdepth', '1', '-exec', 'rm', '-rf', '{}', ';'
47
+ ).execute!
48
+ end
49
+
50
+ def send_untar_package
51
+ tar_build_command.pipe(untar_build_command).execute!
52
+ end
53
+
54
+ def set_target_permission
55
+ target_env.command('chmod', '755', target_path).execute!
56
+ end
57
+
58
+ def tar_build_command
59
+ source_env.command('tar', '-czO', '-C', build_dir, '.')
60
+ end
61
+
62
+ def untar_build_command
63
+ target_env.command('tar', '-xzf', '-', '-C', target_path)
64
+ end
65
+
66
+ def source_env
67
+ ::EacRubyUtils::Envs.local
68
+ end
69
+ end
70
+ end
71
+ end
@@ -0,0 +1,62 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'avm/files/info'
4
+ require 'ostruct'
5
+
6
+ module Avm
7
+ module Files
8
+ class Formatter
9
+ module Formats
10
+ class Base
11
+ def apply(files)
12
+ old_content = Hash[files.map { |f| [f, File.read(f)] }]
13
+ ::Avm::Files::Formatter::Utf8Assert.assert_files(files) { internal_apply(files) }
14
+ files.map { |f| build_file_result(f, old_content[f]) }
15
+ end
16
+
17
+ def name
18
+ self.class.name.demodulize
19
+ end
20
+
21
+ def match?(file)
22
+ match_by_filename?(file) || match_by_type?(file)
23
+ end
24
+
25
+ def valid_basenames
26
+ constant_or_array('VALID_BASENAMES')
27
+ end
28
+
29
+ def valid_types
30
+ constant_or_array('VALID_TYPES')
31
+ end
32
+
33
+ private
34
+
35
+ def constant_or_array(name)
36
+ return [] unless self.class.const_defined?(name)
37
+
38
+ self.class.const_get(name)
39
+ end
40
+
41
+ def build_file_result(file, old_content)
42
+ ::OpenStruct.new(file: file, format: self.class,
43
+ changed: (old_content != File.read(file)))
44
+ end
45
+
46
+ def match_by_filename?(file)
47
+ valid_basenames.any? do |valid_basename|
48
+ file.basename.fnmatch?(valid_basename)
49
+ end
50
+ end
51
+
52
+ def match_by_type?(file)
53
+ info = ::Avm::Files::Info.new(file)
54
+ return unless info.content_type.type == 'text'
55
+
56
+ valid_types.include?(info.content_type.subtype)
57
+ end
58
+ end
59
+ end
60
+ end
61
+ end
62
+ end
@@ -0,0 +1,34 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'avm/files/formatter/formats/base'
4
+
5
+ module Avm
6
+ module Files
7
+ class Formatter
8
+ module Formats
9
+ class GenericPlain < ::Avm::Files::Formatter::Formats::Base
10
+ VALID_BASENAMES = %w[*.bat *.css.coffee *.java *.js *.rb *.scss *.sql *.tex *.url *.yml
11
+ *.yaml].freeze
12
+
13
+ VALID_TYPES = %w[plain x-shellscript].freeze
14
+
15
+ def internal_apply(files)
16
+ files.each { |file| file_apply(file) }
17
+ end
18
+
19
+ def file_apply(file)
20
+ file.write(string_apply(file.read))
21
+ end
22
+
23
+ def string_apply(string)
24
+ b = ''
25
+ string.each_line do |line|
26
+ b += "#{line.rstrip}\n"
27
+ end
28
+ "#{b.strip}\n".gsub(/\t/, ' ')
29
+ end
30
+ end
31
+ end
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,45 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'avm/files/formatter/formats/generic_plain'
4
+ require 'htmlbeautifier'
5
+
6
+ module Avm
7
+ module Files
8
+ class Formatter
9
+ module Formats
10
+ class Html < ::Avm::Files::Formatter::Formats::GenericPlain
11
+ VALID_BASENAMES = %w[*.html *.html.erb].freeze
12
+ VALID_TYPES = ['html'].freeze
13
+
14
+ def file_apply(path)
15
+ input = ::File.read(path)
16
+ temppath = tempfile_path
17
+ ::File.open(temppath, 'w') do |output|
18
+ beautify path, input, output
19
+ end
20
+ ::FileUtils.mv(temppath, path)
21
+ super(path)
22
+ end
23
+
24
+ private
25
+
26
+ def beautify(name, input, output)
27
+ output.puts ::HtmlBeautifier.beautify(input, htmlbeautify_options)
28
+ rescue StandardError => e
29
+ raise "Error parsing #{name}: #{e}"
30
+ end
31
+
32
+ def htmlbeautify_options
33
+ @htmlbeautify_options ||= { indent: ' ' }
34
+ end
35
+
36
+ def tempfile_path
37
+ tempfile = ::Tempfile.new
38
+ tempfile.close
39
+ tempfile.path
40
+ end
41
+ end
42
+ end
43
+ end
44
+ end
45
+ end
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'avm/files/formatter/formats/generic_plain'
4
+
5
+ module Avm
6
+ module Files
7
+ class Formatter
8
+ module Formats
9
+ class Javascript < ::Avm::Files::Formatter::Formats::GenericPlain
10
+ VALID_BASENAMES = %w[*.js].freeze
11
+ VALID_TYPES = [].freeze
12
+
13
+ def internal_apply(files)
14
+ ::Avm::Executables.js_beautify.command.append(
15
+ ['--indent-size=2', '--end-with-newline', '--replace', *files]
16
+ ).system!
17
+ super(files)
18
+ end
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,27 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'avm/files/formatter/formats/generic_plain'
4
+
5
+ module Avm
6
+ module Files
7
+ class Formatter
8
+ module Formats
9
+ class Json < ::Avm::Files::Formatter::Formats::GenericPlain
10
+ VALID_BASENAMES = %w[*.json].freeze
11
+ VALID_TYPES = [].freeze
12
+
13
+ def file_apply(file)
14
+ ::File.write(file, ::JSON.pretty_generate(::JSON.parse(::File.read(file))))
15
+ end
16
+
17
+ def json_file?(file)
18
+ ::JSON.parse(::File.read(file))
19
+ true
20
+ rescue JSON::ParserError
21
+ false
22
+ end
23
+ end
24
+ end
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'avm/files/formatter/formats/generic_plain'
4
+
5
+ module Avm
6
+ module Files
7
+ class Formatter
8
+ module Formats
9
+ class Php < ::Avm::Files::Formatter::Formats::GenericPlain
10
+ VALID_BASENAMES = %w[*.php].freeze
11
+ VALID_TYPES = ['x-php'].freeze
12
+
13
+ def file_apply(file)
14
+ ::Avm::Executables.php_cs_fixer.command.append(['fix', file]).system!
15
+ super(file)
16
+ end
17
+ end
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'avm/files/formatter/formats/generic_plain'
4
+
5
+ module Avm
6
+ module Files
7
+ class Formatter
8
+ module Formats
9
+ class Python < ::Avm::Files::Formatter::Formats::GenericPlain
10
+ VALID_BASENAMES = %w[*.py].freeze
11
+ VALID_TYPES = ['x-python'].freeze
12
+
13
+ def internal_apply(files)
14
+ ::Avm::Executables.yapf.command.append(['--in-place', *files]).system!
15
+ super(files)
16
+ end
17
+ end
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,22 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'avm/files/formatter/formats/generic_plain'
4
+ require 'avm/ruby/rubocop'
5
+
6
+ module Avm
7
+ module Files
8
+ class Formatter
9
+ module Formats
10
+ class Ruby < ::Avm::Files::Formatter::Formats::GenericPlain
11
+ VALID_BASENAMES = %w[*.gemspec *.rake *.rb Gemfile Rakefile].freeze
12
+ VALID_TYPES = ['x-ruby'].freeze
13
+
14
+ def internal_apply(files)
15
+ ::Avm::Ruby::Rubocop.new('.', ['-a', '--ignore-parent-exclusion'] + files).run
16
+ super(files)
17
+ end
18
+ end
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,27 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'avm/files/formatter/formats/generic_plain'
4
+
5
+ module Avm
6
+ module Files
7
+ class Formatter
8
+ module Formats
9
+ class Xml < ::Avm::Files::Formatter::Formats::GenericPlain
10
+ VALID_BASENAMES = %w[*.xml].freeze
11
+ VALID_TYPES = ['xml'].freeze
12
+
13
+ def internal_apply(files)
14
+ format_command(files).system!
15
+ super(files)
16
+ end
17
+
18
+ def format_command(files)
19
+ ::Avm::Executables.tidy.command.append(
20
+ %w[-xml -modify --indent auto --indent-spaces 2 --wrap 100] + files
21
+ )
22
+ end
23
+ end
24
+ end
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/core_ext'
4
+
5
+ module Avm
6
+ module Files
7
+ class Formatter
8
+ module Formats
9
+ require_sub __FILE__
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,72 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Avm
4
+ module Files
5
+ class Formatter
6
+ class Utf8Assert
7
+ UTF8_CHARSET = 'utf-8'
8
+ UTF8_CHARSETS = [UTF8_CHARSET, 'us-ascii'].freeze
9
+
10
+ class << self
11
+ def assert_files(files)
12
+ asserters = files.map { |file| new(file) }
13
+ begin
14
+ asserters.each(&:assert)
15
+ yield
16
+ ensure
17
+ asserters.each(&:revert)
18
+ end
19
+ end
20
+ end
21
+
22
+ enable_simple_cache
23
+ common_constructor :path
24
+
25
+ def assert
26
+ return if original_utf8?
27
+
28
+ convert_self(original_charset, UTF8_CHARSET)
29
+ end
30
+
31
+ def revert
32
+ return if original_utf8?
33
+
34
+ convert_self(UTF8_CHARSET, original_charset)
35
+ end
36
+
37
+ private
38
+
39
+ def original_info_uncached
40
+ ::Avm::Files::Info.new(path)
41
+ end
42
+
43
+ def original_charset_uncached
44
+ return original_info.content_type.charset if original_info.content_type.charset.present?
45
+
46
+ raise 'No charset found'
47
+ rescue StandardError => e
48
+ raise "Unable to determine the charset of #{path} (#{e.message})"
49
+ end
50
+
51
+ def original_utf8?
52
+ UTF8_CHARSETS.include?(original_charset)
53
+ end
54
+
55
+ def convert_file(from_path, from_charset, to_path, to_charset)
56
+ File.open(from_path, "r:#{from_charset}") do |input|
57
+ File.open(to_path, "w:#{to_charset}") do |output|
58
+ output.write(input.read)
59
+ end
60
+ end
61
+ end
62
+
63
+ def convert_self(from_charset, to_charset)
64
+ temp = ::Tempfile.new
65
+ temp.close
66
+ convert_file(path, from_charset, temp.path, to_charset)
67
+ ::FileUtils.mv(temp.path, path)
68
+ end
69
+ end
70
+ end
71
+ end
72
+ end