Sha256: 87f86df67d65b07574e2a2db4c349d9a9d2cab8f5bb3ca6cf1e060fe59dcdb0d

Contents?: true

Size: 1.75 KB

Versions: 5

Compression:

Stored size: 1.75 KB

Contents

class TerraspaceBundler::Mod
  class Downloader
    extend Memoist
    include TB::Util::Git
    include TB::Util::Logging
    include TB::Mod::PathConcern

    attr_reader :sha
    def initialize(mod)
      @mod = mod
    end

    def run
      setup_tmp
      org_path = "#{cache_root}/#{@mod.org}"
      FileUtils.mkdir_p(org_path)

      Dir.chdir(org_path) do
        clone unless File.exist?(@mod.repo)

        Dir.chdir(@mod.repo) do
          git "pull"
          git "submodule update --init"
          stage
        end
      end
    end
    memoize :run

    def clone
      sh "git clone #{@mod.url}"
    rescue TB::GitError => e
      logger.error "ERROR: #{e.message}".color(:red)
      exit 1
    end

    def stage
      copy_to_stage
      checkout = @mod.checkout_version || default_branch
      switch_version(checkout)
    end

    # Note: if not in a git repo, will get this error message in stderr
    #
    #    fatal: Not a git repository (or any of the parent directories): .git
    #
    def default_branch
      origin = `git remote show origin`.strip
      found = origin.split("\n").find { |l| l.include?("HEAD") }
      if found
        found.split(':').last.strip
      else
        'master'
      end
    end

    def switch_version(version)
      stage_path = stage_path("#{@mod.org}/#{@mod.repo}")
      logger.debug "Within: #{stage_path}"
      Dir.chdir(stage_path) do
        git "checkout #{version}"
        @sha = git("rev-parse HEAD").strip
      end
    end

    def copy_to_stage
      cache_path = cache_path("#{@mod.org}/#{@mod.repo}")
      stage_path = stage_path("#{@mod.org}/#{@mod.repo}")
      FileUtils.rm_rf(stage_path)
      FileUtils.mkdir_p(File.dirname(stage_path))
      FileUtils.cp_r(cache_path, stage_path)
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
terraspace-bundler-0.3.4 lib/terraspace_bundler/mod/downloader.rb
terraspace-bundler-0.3.3 lib/terraspace_bundler/mod/downloader.rb
terraspace-bundler-0.3.2 lib/terraspace_bundler/mod/downloader.rb
terraspace-bundler-0.3.1 lib/terraspace_bundler/mod/downloader.rb
terraspace-bundler-0.3.0 lib/terraspace_bundler/mod/downloader.rb