Class: SitemapGenerator::S3Adapter

Inherits:
Object
  • Object
show all
Defined in:
lib/sitemap_generator/adapters/s3_adapter.rb

Overview

Class for uploading sitemaps to an S3 bucket using the Fog gem.

Instance Method Summary collapse

Constructor Details

#initialize(opts = {}) ⇒ S3Adapter

Requires Fog::Storage to be defined.

Alternatively you can use an environment variable to configure each option (except ‘fog_storage_options`). The environment variables have the same name but capitalized, e.g. `FOG_PATH_STYLE`.

Parameters:

  • opts (Hash) (defaults to: {})

    Fog configuration options

  • :aws_access_key_id (Hash)

    a customizable set of options

  • :aws_secret_access_key (Hash)

    a customizable set of options

  • :fog_provider (Hash)

    a customizable set of options

  • :fog_directory (Hash)

    a customizable set of options

  • :fog_region (Hash)

    a customizable set of options

  • :fog_path_style (Hash)

    a customizable set of options

  • :fog_storage_options (Hash)

    a customizable set of options

  • :fog_public (Hash)

    a customizable set of options



23
24
25
26
27
28
29
30
31
32
33
# File 'lib/sitemap_generator/adapters/s3_adapter.rb', line 23

def initialize(opts = {})
  @aws_access_key_id = opts[:aws_access_key_id] || ENV['AWS_ACCESS_KEY_ID']
  @aws_secret_access_key = opts[:aws_secret_access_key] || ENV['AWS_SECRET_ACCESS_KEY']
  @fog_provider = opts[:fog_provider] || ENV['FOG_PROVIDER']
  @fog_directory = opts[:fog_directory] || ENV['FOG_DIRECTORY']
  @fog_region = opts[:fog_region] || ENV['FOG_REGION']
  @fog_path_style = opts[:fog_path_style] || ENV['FOG_PATH_STYLE']
  @fog_storage_options = opts[:fog_storage_options] || {}
  fog_public = opts[:fog_public].nil? ? ENV['FOG_PUBLIC'] : opts[:fog_public]
  @fog_public = SitemapGenerator::Utilities.falsy?(fog_public) ? false : true
end

Instance Method Details

#write(location, raw_data) ⇒ Object

Call with a SitemapLocation and string data



36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# File 'lib/sitemap_generator/adapters/s3_adapter.rb', line 36

def write(location, raw_data)
  SitemapGenerator::FileAdapter.new.write(location, raw_data)

  credentials = { :provider => @fog_provider }

  if @aws_access_key_id && @aws_secret_access_key
    credentials[:aws_access_key_id] = @aws_access_key_id
    credentials[:aws_secret_access_key] = @aws_secret_access_key
  else
    credentials[:use_iam_profile] = true
  end

  credentials[:region] = @fog_region if @fog_region
  credentials[:path_style] = @fog_path_style if @fog_path_style

  storage   = Fog::Storage.new(@fog_storage_options.merge(credentials))
  directory = storage.directories.new(:key => @fog_directory)
  directory.files.create(
    :key    => location.path_in_public,
    :body   => File.open(location.path),
    :public => @fog_public
  )
end