Class: Octopress::Deploy::S3

Inherits:
Object
  • Object
show all
Defined in:
lib/octopress-deploy/s3.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ S3



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/octopress-deploy/s3.rb', line 8

def initialize(options)
  begin
    require 'aws-sdk'
  rescue LoadError
    abort "Deploying to S3 requires aws-sdk. Install with `gem install aws-sdk`."
  end
  @options     = options
  @local       = options[:site_dir]          || '_site'
  @bucket_name = options[:bucket_name]
  @access_key  = options[:access_key_id]     || ENV['AWS_ACCESS_KEY_ID']
  @secret_key  = options[:secret_access_key] || ENV['AWS_SECRET_ACCESS_KEY']
  @region      = options[:region]            || ENV['AWS_DEFAULT_REGION'] || 'us-east-1'
  @remote_path = (options[:remote_path]      || '/').sub(/^\//,'')
  @verbose     = options[:verbose]           || true
  @delete      = options[:delete]
  @headers     = options[:headers]           || []
  @remote_path = @remote_path.sub(/^\//,'')  # remove leading slash
  @pull_dir    = options[:dir]
  connect
end

Class Method Details

.default_config(options = {}) ⇒ Object

Return default configuration options for this deployment type



216
217
218
219
220
221
222
223
224
225
226
227
# File 'lib/octopress-deploy/s3.rb', line 216

def self.default_config(options={})
  "\#{\"bucket_name: \#{options[:bucket_name]}\".ljust(40)}  # Name of the S3 bucket where these files will be stored.\n\#{\"access_key_id: \#{options[:access_key_id]}\".ljust(40)}  # Get this from your AWS console at aws.amazon.com.\n\#{\"secret_access_key: \#{options[:secret_access_key]}\".ljust(40)}  # Keep it safe; keep it secret. Keep this file in your .gitignore.\n\#{\"remote_path: \#{options[:remote_path] || '/'}\".ljust(40)}  # relative path on bucket where files should be copied.\n\n\#{\"# region: \#{options[:region] || 'us-east-1'}\".ljust(40)}  # Region where your bucket is located.\n\#{\"# delete: \#{options[:delete] || 'true'}\".ljust(40)}  # Remove files from destination which do not match source files.\n\#{\"# verbose: \#{options[:verbose] || 'true'}\".ljust(40)}  # Print out all file operations.\n"
end

Instance Method Details

#add_bucketObject

Create a new S3 bucket



143
144
145
146
147
148
# File 'lib/octopress-deploy/s3.rb', line 143

def add_bucket
  puts @bucket_name
  @bucket = @s3.buckets.create(@bucket_name)
  puts "Created new bucket '#{@bucket_name}' in region '#{@region}'."
  configure_bucket
end

#configure_bucketObject



150
151
152
153
154
155
156
157
158
159
# File 'lib/octopress-deploy/s3.rb', line 150

def configure_bucket
  error_page = @options['error_page'] || remote_path('404.html')
  index_page = @options['index_page'] || remote_path('index.html')

  config = @bucket.configure_website do |cfg|
    cfg.index_document_suffix = index_page
    cfg.error_document_key = error_page
  end
  puts "Bucket configured with index_document: #{index_page} and error_document: #{error_page}."
end

#connectObject

Connect to S3 using the AWS SDK Retuns an aws bucket



60
61
62
63
# File 'lib/octopress-deploy/s3.rb', line 60

def connect
  AWS.config(access_key_id: @access_key, secret_access_key: @secret_key, region: @region)
  @s3 = AWS.s3
end

#deletable_filesObject

Files from the bucket which are deletable Only deletes files beneath the remote_path if specified



184
185
186
187
188
189
190
191
# File 'lib/octopress-deploy/s3.rb', line 184

def deletable_files
  return [] unless delete_files?
  unless @deletable
    @deletable = @bucket.objects.map(&:key) - site_files_dest
    @deletable.reject!{|f| (f =~ /^#{@remote_path}/).nil? }
  end
  @deletable
end

#delete_filesObject

Delete files from the bucket, to ensure a 1:1 match with site files



127
128
129
130
131
132
133
134
135
136
137
138
139
# File 'lib/octopress-deploy/s3.rb', line 127

def delete_files
  if deletable_files.size > 0
    puts "Deleting #{pluralize('file', deletable_files.size)}:" if @verbose
    deletable_files.each do |file|
      @bucket.objects.delete(file)
      if @verbose
        puts "- #{file}"
      else
        progress('-')
      end
    end
  end
end

#delete_files?Boolean



161
162
163
# File 'lib/octopress-deploy/s3.rb', line 161

def delete_files?
  !!@delete
end

#get_file_with_metadata(file, s3_filename) ⇒ Object



83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# File 'lib/octopress-deploy/s3.rb', line 83

def (file, s3_filename)
  file_with_options = {:file => file }

  @headers.each do |conf|
    if conf.has_key? 'filename' and s3_filename.match(conf['filename'])
      if @verbose
        puts "+ #{remote_path(file)} matched pattern #{conf['filename']}"
      end

      if conf.has_key? 'expires'
        expireDate = conf['expires']

        relative_years = /^\+(\d+) year(s)?$/.match(conf['expires'])
        if relative_years
          expireDate = (Time.now + (60 * 60 * 24 * 365 * relative_years[1].to_i)).httpdate
        end

        relative_days = /^\+(\d+) day(s)?$/.match(conf['expires'])
        if relative_days
          expireDate = (Time.now + (60 * 60 * 24 * relative_days[1].to_i)).httpdate
        end

        file_with_options[:expires] = expireDate
      end

      if conf.has_key? 'content_type'
        file_with_options[:content_type] = conf['content_type']
      end

      if conf.has_key? 'cache_control'
        file_with_options[:cache_control] = conf['cache_control']
      end

      if conf.has_key? 'content_encoding'
        file_with_options[:content_encoding] = conf['content_encoding']
      end
    end
  end

  return file_with_options
end

#pluralize(str, num) ⇒ Object



210
211
212
213
# File 'lib/octopress-deploy/s3.rb', line 210

def pluralize(str, num)
  str << 's' if num != 1
  str
end

#progress(str) ⇒ Object

Print consecutive characters



205
206
207
208
# File 'lib/octopress-deploy/s3.rb', line 205

def progress(str)
  print str
  $stdout.flush
end

#pullObject



42
43
44
45
46
47
48
49
50
51
52
53
54
55
# File 'lib/octopress-deploy/s3.rb', line 42

def pull
  @bucket = @s3.buckets[@bucket_name]
  if !@bucket.exists?
    abort "Bucket not found: '#{@bucket_name}'. Check your configuration or create a bucket using: `octopress deploy add-bucket`"
  else
    puts "Syncing #{@bucket_name} files to #{@pull_dir} on S3."
    @bucket.objects.each do |object|
      path = File.join(@pull_dir, object.key)
      dir = File.dirname(path)
      FileUtils.mkdir_p(dir) unless Dir.exist?(dir)
      File.open(path, 'w') { |f| f.write(object.read) }
    end
  end
end

#pushObject



29
30
31
32
33
34
35
36
37
38
39
40
# File 'lib/octopress-deploy/s3.rb', line 29

def push
  #abort "Seriously, you should. Quitting..." unless Deploy.check_gitignore
  @bucket = @s3.buckets[@bucket_name]
  if !@bucket.exists?
    abort "Bucket not found: '#{@bucket_name}'. Check your configuration or create a bucket using: `octopress deploy add-bucket`"
  else
    puts "Syncing #{@local} files to #{@bucket_name} on S3."
    write_files
    delete_files if delete_files?
    status_message
  end
end

#remote_path(file) ⇒ Object

Replace local path with remote path



178
179
180
# File 'lib/octopress-deploy/s3.rb', line 178

def remote_path(file)
  File.join(@remote_path, file.sub(@local, '')).sub(/^\//, '')
end

#site_filesObject

local site files



166
167
168
169
170
# File 'lib/octopress-deploy/s3.rb', line 166

def site_files
  @site_files ||= Find.find(@local).to_a.reject do |f|
    File.directory?(f)
  end
end

#site_files_destObject

Destination paths for local site files.



173
174
175
# File 'lib/octopress-deploy/s3.rb', line 173

def site_files_dest
  @site_files_dest ||= site_files.map{|f| remote_path(f) }
end

#status_messageObject

List written and deleted file counts



194
195
196
197
198
199
200
201
202
# File 'lib/octopress-deploy/s3.rb', line 194

def status_message
  uploaded = site_files.size
  deleted = deletable_files.size

  message =  "\nSuccess:".green + " #{uploaded} #{pluralize('file', uploaded)} uploaded"
  message << ", #{deleted} #{pluralize('file', deleted)} deleted."
  puts message
  configure_bucket unless @bucket.website?
end

#write_filesObject

Write site files to the selected bucket



67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# File 'lib/octopress-deploy/s3.rb', line 67

def write_files
  puts "Writing #{pluralize('file', site_files.size)}:" if @verbose
  site_files.each do |file|
    s3_filename = remote_path(file)
    o = @bucket.objects[s3_filename]
    file_with_options = (file, s3_filename);

    o.write(file_with_options)
    if @verbose
      puts "+ #{remote_path(file)}"
    else
      progress('+')
    end
  end
end