Sha256: 3ba170611b3d1fbcc389b960f7ca2a3d65d0546715205005c445b56e09698933

Contents?: true

Size: 1.82 KB

Versions: 14

Compression:

Stored size: 1.82 KB

Contents

# frozen_string_literal: true

require 'avm/git/launcher/mirror_update'
require 'avm/launcher/instances/error'
require 'avm/git/vendor/github'
require 'avm/git/launcher_stereotypes/git/publish'

module Avm
  module Git
    module Launcher
      # Métodos abstratos:
      #  * source_instance
      #  * source_remote_name
      #  * current_ref
      class WarpBase < ::Avm::Launcher::Paths::Real
        include ::EacRubyUtils::SimpleCache

        TARGET_REMOTE = ::Avm::Git::LauncherStereotypes::Git::Publish::PUBLISH_GIT_REMOTE_NAME

        def initialize(instance)
          @instance = instance
          cache_git.git.reset_hard(current_ref)
          cache_git.remote(TARGET_REMOTE).url = target_remote_url
          super(path)
        end

        protected

        attr_reader :instance

        def validate_source_current_revision
          if source_git.rev_parse(source_instance.options.git_current_revision, false).present?
            return
          end

          raise ::Avm::Launcher::Instances::Error,
                "Refspec \"#{source_instance.options.git_current_revision}\" " \
                "not found in \"#{source_git}\""
        end

        def update
          validate_source_current_revision
          ::Avm::Git::Launcher::MirrorUpdate.new(
            path,
            source_instance.real,
            source_instance.options.git_current_revision
          )
        end

        def path
          instance.cache_path('git_repository')
        end

        def source_git_uncached
          ::Avm::Git::Launcher::Base.new(source_instance.real)
        end

        def cache_git_uncached
          ::Avm::Git::Launcher::Base.new(update)
        end

        def target_remote_url
          ::Avm::Git::Vendor::Github.to_ssh_url(source_git.git.remote(source_remote_name).url)
        end
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
avm-git-0.18.0 lib/avm/git/launcher/warp_base.rb
eac_tools-0.94.0 sub/avm-git/lib/avm/git/launcher/warp_base.rb
avm-git-0.17.0 lib/avm/git/launcher/warp_base.rb
eac_tools-0.86.5 sub/avm-git/lib/avm/git/launcher/warp_base.rb
avm-git-0.16.0 lib/avm/git/launcher/warp_base.rb
eac_tools-0.86.4 sub/avm-git/lib/avm/git/launcher/warp_base.rb
eac_tools-0.86.3 sub/avm-git/lib/avm/git/launcher/warp_base.rb
avm-git-0.15.0 lib/avm/git/launcher/warp_base.rb
eac_tools-0.86.2 sub/avm-git/lib/avm/git/launcher/warp_base.rb
eac_tools-0.84.0 sub/avm-git/lib/avm/git/launcher/warp_base.rb
eac_tools-0.83.0 sub/avm-git/lib/avm/git/launcher/warp_base.rb
eac_tools-0.82.0 sub/avm-git/lib/avm/git/launcher/warp_base.rb
avm-git-0.14.0 lib/avm/git/launcher/warp_base.rb
eac_tools-0.81.0 sub/avm-git/lib/avm/git/launcher/warp_base.rb