2014-10-29 03:54:16 +00:00
|
|
|
module VagrantPlugins
|
2014-11-12 20:49:55 +00:00
|
|
|
module AtlasPush
|
2014-10-29 03:54:16 +00:00
|
|
|
class Config < Vagrant.plugin("2", :config)
|
2014-12-09 00:54:19 +00:00
|
|
|
# The address of the Atlas server to upload to. By default this will
|
|
|
|
# be the public Atlas server.
|
|
|
|
#
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :address
|
|
|
|
|
|
|
|
# The Atlas token to use. If the user has run `vagrant login`, this will
|
|
|
|
# use that token. If the environment variable `ATLAS_TOKEN` is set, the
|
|
|
|
# uploader will use this value. By default, this is nil.
|
|
|
|
#
|
|
|
|
# @return [String, nil]
|
|
|
|
attr_accessor :token
|
|
|
|
|
2014-10-29 03:54:16 +00:00
|
|
|
# The name of the application to push to. This will be created (with
|
|
|
|
# user confirmation) if it doesn't already exist.
|
|
|
|
#
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :app
|
|
|
|
|
|
|
|
# The base directory with file contents to upload. By default this
|
|
|
|
# is the same directory as the Vagrantfile, but you can specify this
|
|
|
|
# if you have a `src` folder or `bin` folder or some other folder
|
|
|
|
# you want to upload.
|
|
|
|
#
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :dir
|
|
|
|
|
|
|
|
# Lists of files to include/exclude in what is uploaded. Exclude is
|
|
|
|
# always the last run filter, so if a file is matched in both include
|
|
|
|
# and exclude, it will be excluded.
|
|
|
|
#
|
|
|
|
# The value of the array elements should be a simple file glob relative
|
|
|
|
# to the directory being packaged.
|
|
|
|
#
|
|
|
|
# @return [Array<String>]
|
2014-11-12 20:49:55 +00:00
|
|
|
attr_accessor :includes
|
|
|
|
attr_accessor :excludes
|
2014-10-29 03:54:16 +00:00
|
|
|
|
|
|
|
# If set to true, Vagrant will automatically use VCS data to determine
|
|
|
|
# the files to upload. As a caveat: uncommitted changes will not be
|
|
|
|
# deployed.
|
|
|
|
#
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :vcs
|
|
|
|
|
2014-10-29 07:05:31 +00:00
|
|
|
# The path to the uploader binary to shell out to. This usually
|
|
|
|
# is only set for debugging/development. If not set, the uploader
|
|
|
|
# will be looked for within the Vagrant installer dir followed by
|
|
|
|
# the PATH.
|
|
|
|
#
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :uploader_path
|
|
|
|
|
2014-10-29 03:54:16 +00:00
|
|
|
def initialize
|
2014-12-09 00:54:19 +00:00
|
|
|
@address = UNSET_VALUE
|
|
|
|
@token = UNSET_VALUE
|
2014-10-29 03:54:16 +00:00
|
|
|
@app = UNSET_VALUE
|
|
|
|
@dir = UNSET_VALUE
|
|
|
|
@vcs = UNSET_VALUE
|
2014-11-12 20:49:55 +00:00
|
|
|
@includes = []
|
|
|
|
@excludes = []
|
2014-10-29 07:05:31 +00:00
|
|
|
@uploader_path = UNSET_VALUE
|
2014-10-29 03:54:16 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def merge(other)
|
|
|
|
super.tap do |result|
|
2014-11-12 20:49:55 +00:00
|
|
|
result.includes = self.includes.dup.concat(other.includes).uniq
|
|
|
|
result.excludes = self.excludes.dup.concat(other.excludes).uniq
|
2014-10-29 03:54:16 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def finalize!
|
2014-12-02 06:05:13 +00:00
|
|
|
@address = nil if @address == UNSET_VALUE
|
2014-12-09 00:54:19 +00:00
|
|
|
@token = nil if @token == UNSET_VALUE
|
2015-07-06 17:01:50 +00:00
|
|
|
@token = ENV["ATLAS_TOKEN"] if !@token && ENV["ATLAS_TOKEN"] != ""
|
2014-10-29 03:54:16 +00:00
|
|
|
@app = nil if @app == UNSET_VALUE
|
|
|
|
@dir = "." if @dir == UNSET_VALUE
|
2014-10-29 07:05:31 +00:00
|
|
|
@uploader_path = nil if @uploader_path == UNSET_VALUE
|
2014-10-29 03:54:16 +00:00
|
|
|
@vcs = true if @vcs == UNSET_VALUE
|
|
|
|
end
|
|
|
|
|
|
|
|
def validate(machine)
|
|
|
|
errors = _detected_errors
|
|
|
|
|
2014-12-09 00:54:19 +00:00
|
|
|
if missing?(@token)
|
2014-12-10 23:11:04 +00:00
|
|
|
token = token_from_vagrant_login(machine.env)
|
2014-12-09 00:54:19 +00:00
|
|
|
if missing?(token)
|
|
|
|
errors << I18n.t("atlas_push.errors.missing_token")
|
|
|
|
else
|
|
|
|
@token = token
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-11-12 20:49:55 +00:00
|
|
|
if missing?(@app)
|
|
|
|
errors << I18n.t("atlas_push.errors.missing_attribute",
|
|
|
|
attribute: "app",
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
if missing?(@dir)
|
|
|
|
errors << I18n.t("atlas_push.errors.missing_attribute",
|
|
|
|
attribute: "dir",
|
|
|
|
)
|
2014-10-29 03:54:16 +00:00
|
|
|
end
|
|
|
|
|
2014-11-12 20:49:55 +00:00
|
|
|
{ "Atlas push" => errors }
|
|
|
|
end
|
|
|
|
|
|
|
|
# Add the filepath to the list of includes
|
|
|
|
# @param [String] filepath
|
|
|
|
def include(filepath)
|
|
|
|
@includes << filepath
|
|
|
|
end
|
|
|
|
alias_method :include=, :include
|
|
|
|
|
|
|
|
# Add the filepath to the list of excludes
|
|
|
|
# @param [String] filepath
|
|
|
|
def exclude(filepath)
|
|
|
|
@excludes << filepath
|
|
|
|
end
|
|
|
|
alias_method :exclude=, :exclude
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
# Determine if the given string is "missing" (blank)
|
|
|
|
# @return [true, false]
|
|
|
|
def missing?(obj)
|
|
|
|
obj.to_s.strip.empty?
|
2014-10-29 03:54:16 +00:00
|
|
|
end
|
2014-12-09 00:54:19 +00:00
|
|
|
|
|
|
|
# Attempt to load the token from disk using the vagrant-login plugin. If
|
|
|
|
# the constant is not defined, that means the user is operating in some
|
|
|
|
# bespoke and unsupported Ruby environment.
|
|
|
|
#
|
|
|
|
# @param [Vagrant::Environment] env
|
|
|
|
#
|
|
|
|
# @return [String, nil]
|
|
|
|
# the token, or nil if it does not exist
|
|
|
|
def token_from_vagrant_login(env)
|
2014-12-09 06:06:41 +00:00
|
|
|
client = VagrantPlugins::LoginCommand::Client.new(env)
|
|
|
|
client.token
|
2014-12-09 00:54:19 +00:00
|
|
|
end
|
2014-10-29 03:54:16 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|