Class: Anaconda::S3Uploader

Inherits:
Object
  • Object
show all
Defined in:
lib/anaconda/s3_uploader.rb

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ S3Uploader

Returns a new instance of S3Uploader.



3
4
5
6
7
8
9
10
11
12
13
14
# File 'lib/anaconda/s3_uploader.rb', line 3

def initialize(options)
  @options = options.reverse_merge(
    id: "fileupload",
    aws_access_key_id: Anaconda.aws[:aws_access_key],
    aws_secret_access_key: Anaconda.aws[:aws_secret_key],
    bucket: Anaconda.aws[:aws_bucket],
    acl: "public-read",
    expiration: 10.hours.from_now.utc,
    max_file_size: 500.megabytes,
    as: "file"
  )
end

Instance Method Details

#base_keyObject



45
46
47
# File 'lib/anaconda/s3_uploader.rb', line 45

def base_key
  @options[:base_key]
end

#fieldsObject



30
31
32
33
34
35
36
37
38
39
# File 'lib/anaconda/s3_uploader.rb', line 30

def fields
  {
    :key => key,
    :acl => @options[:acl],
    "Content-Type" => "application/octet-stream",
    :policy => policy,
    :signature => signature,
    "AWSAccessKeyId" => @options[:aws_access_key_id],
  }
end

#form_optionsObject



16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/anaconda/s3_uploader.rb', line 16

def form_options
  {
    id: @options[:id],
    method: "post",
    authenticity_token: false,
    multipart: true,
    data: {
      post: @options[:post],
      as: @options[:as],
      base_key: base_key
    }
  }
end

#keyObject



41
42
43
# File 'lib/anaconda/s3_uploader.rb', line 41

def key
  @key ||= "#{base_key}/${filename}"
end

#policyObject



53
54
55
# File 'lib/anaconda/s3_uploader.rb', line 53

def policy
  Base64.encode64(policy_data.to_json).gsub("\n", "")
end

#policy_dataObject



57
58
59
60
61
62
63
64
65
66
67
68
69
# File 'lib/anaconda/s3_uploader.rb', line 57

def policy_data
  {
    expiration: @options[:expiration],
    conditions: [
      #["starts-with", "$utf8", ""],
      ["starts-with", "$key", base_key],
      ["starts-with", "$Content-Type", ""],
      ["content-length-range", 1, @options[:max_file_size]],
      {bucket: @options[:bucket]},
      {acl: @options[:acl]}
    ]
  }
end

#signatureObject



71
72
73
74
75
76
77
78
# File 'lib/anaconda/s3_uploader.rb', line 71

def signature
  Base64.encode64(
    OpenSSL::HMAC.digest(
      OpenSSL::Digest.new('sha1'),
      @options[:aws_secret_access_key], policy
    )
  ).gsub("\n", "")
end

#urlObject



49
50
51
# File 'lib/anaconda/s3_uploader.rb', line 49

def url
  "https://#{Anaconda.aws[:aws_endpoint]}/"
end