Module: CloudCrowd::AssetStore::S3Store

Defined in:
lib/cloud_crowd/asset_store/s3_store.rb

Overview

The S3Store is an implementation of an AssetStore that uses a bucket on S3 for all resulting files.

Instance Method Summary collapse

Instance Method Details

#cleanup(job) ⇒ Object

Remove all of a Job’s resulting files from S3, both intermediate and finished.



35
36
37
# File 'lib/cloud_crowd/asset_store/s3_store.rb', line 35

def cleanup(job)
  @bucket.delete_folder("#{job.action}/job_#{job.id}")
end

#save(local_path, save_path) ⇒ Object

Save a finished file from local storage to S3. Save it publicly unless we’re configured to use S3 authentication. Authenticated links expire after one day by default.



24
25
26
27
28
29
30
31
32
# File 'lib/cloud_crowd/asset_store/s3_store.rb', line 24

def save(local_path, save_path)
  if @use_auth
    @bucket.put(save_path, File.open(local_path), {}, 'private')
    @s3.interface.get_link(@bucket, save_path)
  else
    @bucket.put(save_path, File.open(local_path), {}, 'public-read')
    @bucket.key(save_path).public_link
  end
end

#setupObject

Configure authentication and establish a connection to S3, first thing.



11
12
13
14
15
16
17
18
19
# File 'lib/cloud_crowd/asset_store/s3_store.rb', line 11

def setup
  @use_auth   = CloudCrowd.config[:s3_authentication]
  bucket_name = CloudCrowd.config[:s3_bucket]
  key, secret = CloudCrowd.config[:aws_access_key], CloudCrowd.config[:aws_secret_key]
  valid_conf  = [bucket_name, key, secret].all? {|s| s.is_a? String }
  raise Error::MissingConfiguration, "An S3 account must be configured in 'config.yml' before 's3' storage can be used" unless valid_conf
  @s3         = ::AWS::S3.new(:access_key_id => key, :secret_access_key => secret, :secure => !!@use_auth)
  @bucket     = (@s3.buckets[bucket_name].exists? ? @s3.buckets[bucket_name] : @s3.buckets.create(bucket_name))
end