Class: DPL::Provider::Releases

Inherits:
DPL::Provider show all
Defined in:
lib/dpl/provider/releases.rb

Instance Attribute Summary

Attributes inherited from DPL::Provider

#context, #options

Instance Method Summary collapse

Methods inherited from DPL::Provider

apt_get, #cleanup, #commit_msg, context, #create_key, #default_text_charset, #default_text_charset?, #deploy, deprecated, #detect_encoding?, #encoding_for, #error, experimental, #initialize, #log, new, npm_g, #option, pip, requires, #run, #setup_git_credentials, #setup_git_ssh, #sha, shell, #uncleanup, #user_agent, #warn

Constructor Details

This class inherits a constructor from DPL::Provider

Instance Method Details

#apiObject



31
32
33
34
35
36
37
# File 'lib/dpl/provider/releases.rb', line 31

def api
  if options[:user] and options[:password]
    @api ||= Octokit::Client.new(:login => options[:user], :password => options[:password])
  else
    @api ||= Octokit::Client.new(:access_token => option(:api_key))
  end
end

#check_appObject



65
66
67
68
69
70
# File 'lib/dpl/provider/releases.rb', line 65

def check_app
  log "Deploying to repo: #{slug}"

  context.shell 'git fetch --tags' if travis_tag.nil?
  log "Current tag is: #{get_tag}"
end

#check_authObject



76
77
78
79
80
81
82
83
84
# File 'lib/dpl/provider/releases.rb', line 76

def check_auth
  setup_auth

  unless api.scopes.include? 'public_repo' or api.scopes.include? 'repo'
    raise Error, "Dpl does not have permission to upload assets. Make sure your token contains the repo or public_repo scope."
  end

  log "Logged in as #{user.name}"
end

#filesObject



51
52
53
54
55
56
57
58
59
# File 'lib/dpl/provider/releases.rb', line 51

def files
  if options[:file_glob]
    Array(options[:file]).map do |glob|
      Dir.glob(glob)
    end.flatten
  else
    Array(options[:file])
  end
end

#get_tagObject



23
24
25
26
27
28
29
# File 'lib/dpl/provider/releases.rb', line 23

def get_tag
  if travis_tag.nil?
    @tag ||= `git describe --tags --exact-match 2>/dev/null`.chomp
  else
    @tag ||= travis_tag
  end
end

#needs_key?Boolean

Returns:

  • (Boolean)


61
62
63
# File 'lib/dpl/provider/releases.rb', line 61

def needs_key?
  false
end

#push_appObject



86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# File 'lib/dpl/provider/releases.rb', line 86

def push_app
  tag_matched = false
  release_url = nil

  if options[:release_number]
    tag_matched = true
    release_url = "https://api.github.com/repos/" + slug + "/releases/" + options[:release_number]
  else
    releases.each do |release|
      if release.tag_name == get_tag
        release_url = release.rels[:self].href
        tag_matched = true
      end
    end
  end

  #If for some reason GitHub hasn't already created a release for the tag, create one
  if tag_matched == false
    release_url = api.create_release(slug, get_tag, options.merge({:draft => true})).rels[:self].href
  end

  files.each do |file|
    existing_url = nil
    filename = Pathname.new(file).basename.to_s
    api.release(release_url).rels[:assets].get.data.each do |existing_file|
      if existing_file.name == filename
        existing_url = existing_file.url
      end
    end
    if !existing_url
      upload_file(file, filename, release_url)
    elsif existing_url && options[:overwrite]
      log "#{filename} already exists, overwriting."
      api.delete_release_asset(existing_url)
      upload_file(file, filename, release_url)
    else
      log "#{filename} already exists, skipping."
    end
  end

  api.update_release(release_url, {:draft => false}.merge(options))
end

#releasesObject



43
44
45
# File 'lib/dpl/provider/releases.rb', line 43

def releases
  @releases ||= api.releases(slug)
end

#setup_authObject



72
73
74
# File 'lib/dpl/provider/releases.rb', line 72

def setup_auth
  user.
end

#slugObject



39
40
41
# File 'lib/dpl/provider/releases.rb', line 39

def slug
  options.fetch(:repo) { context.env['TRAVIS_REPO_SLUG'] }
end

#travis_tagObject



14
15
16
17
18
19
20
21
# File 'lib/dpl/provider/releases.rb', line 14

def travis_tag
  # Check if $TRAVIS_TAG is unset or set but empty
  if context.env.fetch('TRAVIS_TAG','') == ''
    nil
  else
    context.env['TRAVIS_TAG']
  end
end

#upload_file(file, filename, release_url) ⇒ Object



129
130
131
132
133
134
135
136
# File 'lib/dpl/provider/releases.rb', line 129

def upload_file(file, filename, release_url)
  content_type = MIME::Types.type_for(file).first.to_s
  if content_type.empty?
    # Specify the default content type, as it is required by GitHub
    content_type = "application/octet-stream"
  end
  api.upload_asset(release_url, file, {:name => filename, :content_type => content_type})
end

#userObject



47
48
49
# File 'lib/dpl/provider/releases.rb', line 47

def user
  @user ||= api.user
end