Sha256: fe9272a107ad460478e4ed4bcff5cef366c4fad461a27f0cb02afde07a610d4f

Contents?: true

Size: 1.61 KB

Versions: 3

Compression:

Stored size: 1.61 KB

Contents

require_relative "../instapusher2"
require 'net/http'
require 'uri'

module Instapusher2
  class Commands

    attr_reader :debug, :api_key, :branch_name, :project_name

    def initialize init_options = {}
      @debug = init_options[:debug]
      @quick = init_options[:quick]
      @local = init_options[:local]

      git          = Git.new
      @branch_name  = init_options[:project_name] || ENV['INSTAPUSHER_BRANCH'] || git.current_branch
      @project_name = init_options[:branch_name] || ENV['INSTAPUSHER_PROJECT'] || git.project_name
    end

    def deploy
      verify_api_key
      #SpecialInstructionForProduction.new.run if production?

      job_submission = JobSubmission.new(debug, options)
      job_submission.submit_the_job

      if job_submission.success?
        job_submission.feedback_to_user
        TagTheRelease.new(branch_name, debug).tagit if production?
      else
        puts job_submission.error_message
      end
    end

    private

    def options
      @options ||= begin
        { project: project_name,
          branch:  branch_name,
          owner: Git.new.repo_owner,
          quick:   @quick,
          local:   @local,
          api_key: api_key }
      end
    end

    def verify_api_key
      @api_key = ENV['API_KEY'] || Instapusher2::Configuration.api_key(debug) || ""

      if @api_key.to_s.length == 0
        puts ''
        abort "No instapusher API key was found. Please execute instapusher --api-key to setup instapusher API key."

      elsif debug
        puts "api_key is #{@api_key}"
      end
    end

    def production?
      branch_name.intern == :production
    end

  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
instapusher2-0.0.4 lib/instapusher2/commands.rb
instapusher2-0.0.3 lib/instapusher2/commands.rb
instapusher2-0.0.2 lib/instapusher2/commands.rb