Class: DPL::Provider

Inherits:
Object
  • Object
show all
Includes:
FileUtils
Defined in:
lib/dpl/provider.rb,
lib/dpl/provider/s3.rb,
lib/dpl/provider/gae.rb,
lib/dpl/provider/gcs.rb,
lib/dpl/provider/npm.rb,
lib/dpl/provider/deis.rb,
lib/dpl/provider/pypi.rb,
lib/dpl/provider/atlas.rb,
lib/dpl/provider/pages.rb,
lib/dpl/provider/surge.rb,
lib/dpl/provider/appfog.rb,
lib/dpl/provider/heroku.rb,
lib/dpl/provider/lambda.rb,
lib/dpl/provider/script.rb,
lib/dpl/provider/bintray.rb,
lib/dpl/provider/boxfuse.rb,
lib/dpl/provider/cloud66.rb,
lib/dpl/provider/divshot.rb,
lib/dpl/provider/hackage.rb,
lib/dpl/provider/modulus.rb,
lib/dpl/provider/anynines.rb,
lib/dpl/provider/catalyze.rb,
lib/dpl/provider/firebase.rb,
lib/dpl/provider/releases.rb,
lib/dpl/provider/rubygems.rb,
lib/dpl/provider/scalingo.rb,
lib/dpl/provider/launchpad.rb,
lib/dpl/provider/openshift.rb,
lib/dpl/provider/ops_works.rb,
lib/dpl/provider/testfairy.rb,
lib/dpl/provider/transifex.rb,
lib/dpl/provider/bitballoon.rb,
lib/dpl/provider/heroku/api.rb,
lib/dpl/provider/heroku/git.rb,
lib/dpl/provider/cloud_files.rb,
lib/dpl/provider/code_deploy.rb,
lib/dpl/provider/engine_yard.rb,
lib/dpl/provider/packagecloud.rb,
lib/dpl/provider/puppet_forge.rb,
lib/dpl/provider/azure_webapps.rb,
lib/dpl/provider/cloud_foundry.rb,
lib/dpl/provider/heroku/generic.rb,
lib/dpl/provider/chef_supermarket.rb,
lib/dpl/provider/elastic_beanstalk.rb,
lib/dpl/provider/bluemix_cloud_foundry.rb

Defined Under Namespace

Modules: Heroku Classes: Anynines, Appfog, Atlas, AzureWebApps, Bintray, BitBalloon, BluemixCloudFoundry, Boxfuse, Catalyze, ChefSupermarket, Cloud66, CloudFiles, CloudFoundry, CodeDeploy, Deis, Divshot, ElasticBeanstalk, EngineYard, Firebase, GAE, GCS, Hackage, Lambda, Launchpad, Modulus, NPM, Openshift, OpsWorks, Packagecloud, Pages, PuppetForge, PyPI, Releases, RubyGems, S3, Scalingo, Script, Surge, TestFairy, Transifex

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(context, options) ⇒ Provider

Returns a new instance of Provider.



118
119
120
121
# File 'lib/dpl/provider.rb', line 118

def initialize(context, options)
  @context, @options = context, options
  context.env['GIT_HTTP_USER_AGENT'] = user_agent(git: `git --version`[/[\d\.]+/])
end

Instance Attribute Details

#contextObject (readonly)

Returns the value of attribute context.



116
117
118
# File 'lib/dpl/provider.rb', line 116

def context
  @context
end

#optionsObject (readonly)

Returns the value of attribute options.



116
117
118
# File 'lib/dpl/provider.rb', line 116

def options
  @options
end

Class Method Details

.apt_get(name, command = name) ⇒ Object



96
97
98
# File 'lib/dpl/provider.rb', line 96

def self.apt_get(name, command = name)
  context.shell("sudo apt-get -qq install #{name}", retry: true) if `which #{command}`.chop.empty?
end

.contextObject



88
89
90
# File 'lib/dpl/provider.rb', line 88

def self.context
  self
end

.deprecated(*lines) ⇒ Object



69
70
71
72
73
74
75
# File 'lib/dpl/provider.rb', line 69

def self.deprecated(*lines)
  puts ''
  lines.each do |line|
    puts "\e[31;1m#{line}\e[0m"
  end
  puts ''
end

.experimental(name) ⇒ Object



65
66
67
# File 'lib/dpl/provider.rb', line 65

def self.experimental(name)
  puts "", "!!! #{name} support is experimental !!!", ""
end

.new(context, options) ⇒ Object



53
54
55
56
57
58
59
60
61
62
63
# File 'lib/dpl/provider.rb', line 53

def self.new(context, options)
  return super if self < Provider

  context.fold("Installing deploy dependencies") do
    name = super.option(:provider).to_s.downcase.gsub(/[^a-z0-9]/, '')
    raise Error, 'could not find provider %p' % options[:provider] unless name = constants.detect { |c| c.to_s.downcase == name }
    provider = const_get(name).new(context, options)
    provider.install_deploy_dependencies if provider.respond_to?(:install_deploy_dependencies)
    provider
  end
end

.npm_g(name, command = name) ⇒ Object



112
113
114
# File 'lib/dpl/provider.rb', line 112

def self.npm_g(name, command = name)
  context.shell("npm install -g #{name}", retry: true) if `which #{command}`.chop.empty?
end

.pip(name, command = name, version = nil) ⇒ Object



100
101
102
103
104
105
106
107
108
109
110
# File 'lib/dpl/provider.rb', line 100

def self.pip(name, command = name, version = nil)
  if version
    puts "pip install --user #{name}==#{version}"
    context.shell("pip uninstall --user -y #{name}") unless `which #{command}`.chop.empty?
    context.shell("pip install --user #{name}==#{version}", retry: true)
  else
    puts "pip install --user #{name}"
    context.shell("pip install --user #{name}", retry: true) if `which #{command}`.chop.empty?
  end
  context.shell("export PATH=$PATH:$HOME/.local/bin")
end

.requires(name, options = {}) ⇒ Object



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

def self.requires(name, options = {})
  version = options[:version] || '> 0'
  load    = options[:load]    || name
  gem(name, version)
rescue LoadError
  context.shell("gem install %s -v %p --no-ri --no-rdoc #{'--pre' if options[:pre]}" % [name, version], retry: true)
  Gem.clear_paths
ensure
  require load
end

.shell(command, options = {}) ⇒ Object



92
93
94
# File 'lib/dpl/provider.rb', line 92

def self.shell(command, options = {})
  system(command)
end

Instance Method Details

#check_appObject



197
198
# File 'lib/dpl/provider.rb', line 197

def check_app
end

#cleanupObject



178
179
180
181
182
183
184
185
186
# File 'lib/dpl/provider.rb', line 178

def cleanup
  return if options[:skip_cleanup]
  context.shell "mv .dpl ~/dpl"
  log "Cleaning up git repository with `git stash --all`. " \
    "If you need build artifacts for deployment, set `deploy.skip_cleanup: true`. " \
    "See https://docs.travis-ci.com/user/deployment/#Uploading-Files."
  context.shell "git stash --all"
  context.shell "mv ~/dpl .dpl"
end

#commit_msgObject



174
175
176
# File 'lib/dpl/provider.rb', line 174

def commit_msg
  @commit_msg ||= %x{git log #{sha} -n 1 --pretty=%B}.strip
end

#create_key(file) ⇒ Object



200
201
202
# File 'lib/dpl/provider.rb', line 200

def create_key(file)
  context.shell "ssh-keygen -t rsa -N \"\" -C #{option(:key_name)} -f #{file}"
end

#default_text_charsetObject



230
231
232
# File 'lib/dpl/provider.rb', line 230

def default_text_charset
  options[:default_text_charset].downcase
end

#default_text_charset?Boolean

Returns:

  • (Boolean)


226
227
228
# File 'lib/dpl/provider.rb', line 226

def default_text_charset?
  options[:default_text_charset]
end

#deployObject



136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
# File 'lib/dpl/provider.rb', line 136

def deploy
  setup_git_credentials
  rm_rf ".dpl"
  mkdir_p ".dpl"

  context.fold("Preparing deploy") do
    check_auth
    check_app

    if needs_key?
      create_key(".dpl/id_rsa")
      setup_key(".dpl/id_rsa.pub")
      setup_git_ssh(".dpl/git-ssh", ".dpl/id_rsa")
    end

    cleanup
  end

  context.fold("Deploying application") { push_app }

  Array(options[:run]).each do |command|
    if command == 'restart'
      context.fold("Restarting application") { restart }
    else
      context.fold("Running %p" % command) { run(command) }
    end
  end
ensure
  if needs_key?
    remove_key rescue nil
  end
  uncleanup
end

#detect_encoding?Boolean

Returns:

  • (Boolean)


222
223
224
# File 'lib/dpl/provider.rb', line 222

def detect_encoding?
  options[:detect_encoding]
end

#encoding_for(path) ⇒ Object



234
235
236
237
238
239
240
241
242
243
244
245
246
# File 'lib/dpl/provider.rb', line 234

def encoding_for(path)
  file_cmd_output = `file '#{path}'`
  case file_cmd_output
  when /gzip compressed/
    'gzip'
  when /compress'd/
    'compress'
  when /text/
    'text'
  when /data/
    # Shrugs?
  end
end

#error(message) ⇒ Object

Raises:



260
261
262
# File 'lib/dpl/provider.rb', line 260

def error(message)
  raise Error, message
end

#log(message) ⇒ Object



248
249
250
# File 'lib/dpl/provider.rb', line 248

def log(message)
  $stderr.puts(message)
end

#needs_key?Boolean

Returns:

  • (Boolean)


193
194
195
# File 'lib/dpl/provider.rb', line 193

def needs_key?
  true
end

#option(name, *alternatives) ⇒ Object



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

def option(name, *alternatives)
  options.fetch(name) do
    alternatives.any? ? option(*alternatives) : raise(Error, "missing #{name}")
  end
end

#run(command) ⇒ Object



256
257
258
# File 'lib/dpl/provider.rb', line 256

def run(command)
  error "running commands not supported"
end

#setup_git_credentialsObject



204
205
206
207
# File 'lib/dpl/provider.rb', line 204

def setup_git_credentials
  context.shell "git config user.email >/dev/null 2>/dev/null || git config user.email `whoami`@localhost"
  context.shell "git config user.name >/dev/null 2>/dev/null || git config user.name `whoami`@localhost"
end

#setup_git_ssh(path, key_path) ⇒ Object



209
210
211
212
213
214
215
216
217
218
219
220
# File 'lib/dpl/provider.rb', line 209

def setup_git_ssh(path, key_path)
  key_path = File.expand_path(key_path)
  path     = File.expand_path(path)

  File.open(path, 'w') do |file|
    file.write "#!/bin/sh\n"
    file.write "exec ssh -o StrictHostKeychecking=no -o CheckHostIP=no -o UserKnownHostsFile=/dev/null -i #{key_path} -- \"$@\"\n"
  end

  chmod(0740, path)
  context.env['GIT_SSH'] = path
end

#shaObject



170
171
172
# File 'lib/dpl/provider.rb', line 170

def sha
  @sha ||= context.env['TRAVIS_COMMIT'] || `git rev-parse HEAD`.strip
end

#uncleanupObject



188
189
190
191
# File 'lib/dpl/provider.rb', line 188

def uncleanup
  return if options[:skip_cleanup]
  context.shell "git stash pop"
end

#user_agent(*strings) ⇒ Object



123
124
125
126
127
128
# File 'lib/dpl/provider.rb', line 123

def user_agent(*strings)
  strings.unshift "dpl/#{DPL::VERSION}"
  strings.unshift "travis/0.1.0" if context.env['TRAVIS']
  strings = strings.flat_map { |e| Hash === e ? e.map { |k,v| "#{k}/#{v}" } : e }
  strings.join(" ").gsub(/\s+/, " ").strip
end

#warn(message) ⇒ Object



252
253
254
# File 'lib/dpl/provider.rb', line 252

def warn(message)
  log "\e[31;1m#{message}\e[0m"
end