Class: Microstatic::S3Deployer

Inherits:
Object
  • Object
show all
Includes:
UsesFog
Defined in:
lib/microstatic/s3_deployer.rb

Overview

The following is based on code generously shared by Giles Alexander (@gga)

Instance Method Summary collapse

Methods included from UsesFog

#check_and_store_aws_creds, #connection, #dns

Constructor Details

#initialize(local_dir, bucket, aws_creds) ⇒ S3Deployer

Returns a new instance of S3Deployer.



10
11
12
13
14
15
# File 'lib/microstatic/s3_deployer.rb', line 10

def initialize( local_dir, bucket, aws_creds )
  check_and_store_aws_creds(aws_creds)

  @local_dir = Pathname.new(local_dir)
  @bucket = bucket
end

Instance Method Details

#uploadObject



17
18
19
20
21
# File 'lib/microstatic/s3_deployer.rb', line 17

def upload
  Pathname.glob(@local_dir+"**/*") do |child|
    upload_file(child) unless child.directory?
  end
end

#upload_file(file) ⇒ Object



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/microstatic/s3_deployer.rb', line 23

def upload_file( file )
  s3_key = file.relative_path_from(@local_dir).to_s

  begin
    s3_object = connection.head_object(@bucket,s3_key)
  rescue Excon::Errors::NotFound
    s3_object = false
  end

  if !s3_object
    log_action('CREATE', s3_key)
    put_file( s3_key, file )
  else
    s3_md5 = s3_object.headers['ETag'].sub(/"(.*)"/,'\1')
    local_md5 = Digest::MD5.hexdigest( file.read )

    if( s3_md5 == local_md5 )
      log_action('NO CHANGE', s3_key)
    else
      log_action('UPDATE', s3_key)
      put_file( s3_key, file )
    end
  end
end