Sha256: b2447db6bfb86d85cf1396f022b64fa5728310d0eba13194ab51899df538e025

Contents?: true

Size: 1.66 KB

Versions: 9

Compression:

Stored size: 1.66 KB

Contents

# frozen_string_literal: true

module Dpl
  module Providers
    class Cloudfiles < Provider
      register :cloudfiles

      status :alpha

      full_name 'Cloud Files'

      description sq(<<-STR)
        tbd
      STR

      gem 'nokogiri', '~> 1.15'
      gem 'fog-core', '~> 2.3', require: 'fog/core'
      gem 'fog-rackspace', '~> 0.1.6', git: 'https://github.com/travis-oss/fog-rackspace', require: 'fog/rackspace'

      env :cloudfiles

      opt '--username USER',  'Rackspace username', required: true
      opt '--api_key KEY',    'Rackspace API key', required: true, secret: true
      opt '--region REGION',  'Cloudfiles region', required: true, enum: %w[ord dfw syd iad hkg]
      opt '--container NAME', 'Name of the container that files will be uploaded to', required: true
      opt '--glob GLOB',      'Paths to upload', default: '**/*'
      opt '--dot_match',      'Upload hidden files starting a dot'

      msgs missing_container: 'The specified container does not exist.'

      def deploy
        paths.each do |path|
          container.files.create(key: path, body: File.open(path))
        end
      end

      def paths
        paths = Dir.glob(*glob)
        paths.reject { |path| File.directory?(path) }
      end

      def glob
        glob = [super]
        glob << File::FNM_DOTMATCH if dot_match?
        glob
      end

      def container
        @container ||= api.directories.get(super) || error(:missing_container)
      end

      def api
        @api ||= Fog::Storage.new(
          provider: 'Rackspace',
          rackspace_username: username,
          rackspace_api_key: api_key,
          rackspace_region: region
        )
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
dpl-2.0.5.3 lib/dpl/providers/cloudfiles.rb
dpl-2.0.5.3.beta.1 lib/dpl/providers/cloudfiles.rb
dpl-2.0.5.beta.2.1 lib/dpl/providers/cloudfiles.rb
dpl-2.0.5.beta.2 lib/dpl/providers/cloudfiles.rb
dpl-2.0.5 lib/dpl/providers/cloudfiles.rb
dpl-2.0.5.beta.1 lib/dpl/providers/cloudfiles.rb
dpl-2.0.5.beta lib/dpl/providers/cloudfiles.rb
travis_dpl_test-2.0.3.beta.4.ror.1 lib/dpl/providers/cloudfiles.rb
travis_dpl_test-2.0.3.beta.4.ror lib/dpl/providers/cloudfiles.rb