1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708
|
# frozen_string_literal: true
require 'openssl'
require 'base64'
module Aws
module S3
# @note Normally you do not need to construct a {PresignedPost} yourself.
# See {Bucket#presigned_post} and {Object#presigned_post}.
#
# ## Basic Usage
#
# To generate a presigned post, you need AWS credentials, the region
# your bucket is in, and the name of your bucket. You can apply constraints
# to the post object as options to {#initialize} or by calling
# methods such as {#key} and {#content_length_range}.
#
# The following two examples are equivalent.
#
# ```ruby
# post = Aws::S3::PresignedPost.new(creds, region, bucket, {
# key: '/uploaded/object/key',
# content_length_range: 0..1024,
# acl: 'public-read',
# metadata: {
# 'original-filename' => '${filename}'
# }
# })
# post.fields
# #=> { ... }
#
# post = Aws::S3::PresignedPost.new(creds, region, bucket).
# key('/uploaded/object/key').
# content_length_range(0..1024).
# acl('public-read').
# metadata('original-filename' => '${filename}').
# fields
# #=> { ... }
# ```
#
# ## HTML Forms
#
# You can use a {PresignedPost} object to build an HTML form. It is
# recommended to use some helper to build the form tag and input
# tags that properly escapes values.
#
# ### Form Tag
#
# To upload a file to Amazon S3 using a browser, you need to create
# a post form. The {#url} method returns the value you should use
# as the form action.
#
# ```erb
# <form action="<%= @post.url %>" method="post" enctype="multipart/form-data">
# ...
# </form>
# ```
#
# The follow attributes must be set on the form:
#
# * `action` - This must be the {#url}.
# * `method` - This must be `post`.
# * `enctype` - This must be `multipart/form-data`.
#
# ### Form Fields
#
# The {#fields} method returns a hash of form fields to render inside
# the form. Typically these are rendered as hidden input fields.
#
# ```erb
# <% @post.fields.each do |name, value| %>
# <input type="hidden" name="<%= name %>" value="<%= value %>"/>
# <% end %>
# ```
#
# Lastly, the form must have a file field with the name `file`.
#
# ```erb
# <input type="file" name="file"/>
# ```
#
# ## Post Policy
#
# When you construct a {PresignedPost}, you must specify every form
# field name that will be posted by the browser. If you omit a form
# field sent by the browser, Amazon S3 will reject the request.
# You can specify accepted form field values three ways:
#
# * Specify exactly what the value must be.
# * Specify what value the field starts with.
# * Specify the field may have any value.
#
# ### Field Equals
#
# You can specify that a form field must be a certain value.
# Simply pass an option like `:content_type` to the constructor,
# or call the associated method.
#
# ```ruby
# post = Aws::S3::PresignedPost.new(creds, region, bucket)
# post.content_type('text/plain')
# ```
#
# If any of the given values are changed by the user in the form, then
# Amazon S3 will reject the POST request.
#
# ### Field Starts With
#
# You can specify prefix values for many of the POST form fields.
# To specify a required prefix, use the `:<fieldname>_starts_with`
# option or call the associated `#<field_name>_starts_with` method.
#
# ```ruby
# post = Aws::S3::PresignedPost.new(creds, region, bucket, {
# key_starts_with: '/images/',
# content_type_starts_with: 'image/',
# # ...
# })
# ```
#
# When using starts with, the form must contain a field where the
# user can specify the value. The {PresignedPost} will not add
# a value for these fields.
#
# ### Any Field Value
#
# To white-list a form field to send any value, you can name that
# field with `:allow_any` or {#allow_any}.
#
# ```ruby
# post = Aws::S3::PresignedPost.new(creds, region, bucket, {
# key: 'object-key',
# allow_any: ['Filename'],
# # ...
# })
# ```
#
# ### Metadata
#
# You can add rules for metadata fields using `:metadata`, {#metadata},
# `:metadata_starts_with` and {#metadata_starts_with}. Unlike other
# form fields, you pass a hash value to these options/methods:
#
# ```ruby
# post = Aws::S3::PresignedPost.new(creds, region, bucket).
# key('/fixed/key').
# metadata(foo: 'bar')
#
# post.fields['x-amz-meta-foo']
# #=> 'bar'
# ```
#
# ### The `${filename}` Variable
#
# The string `${filename}` is automatically replaced with the name of the
# file provided by the user and is recognized by all form fields. It is
# not supported with `starts_with` conditions.
#
# If the browser or client provides a full or partial path to the file,
# only the text following the last slash (/) or backslash (\) will be used
# (e.g., "C:\Program Files\directory1\file.txt" will be interpreted
# as "file.txt"). If no file or file name is provided, the variable is
# replaced with an empty string.
#
# In the following example, we use `${filename}` to store the original
# filename in the `x-amz-meta-` hash with the uploaded object.
#
# ```ruby
# post = Aws::S3::PresignedPost.new(creds, region, bucket, {
# key: '/fixed/key',
# metadata: {
# 'original-filename': '${filename}'
# }
# })
# ```
#
class PresignedPost
@@allowed_fields = []
# @param [Credentials] credentials Security credentials for signing
# the post policy.
# @param [String] bucket_region Region of the target bucket.
# @param [String] bucket_name Name of the target bucket.
# @option options [Boolean] :use_accelerate_endpoint (false) When `true`,
# PresignedPost will attempt to use accelerated endpoint.
# @option options [String] :url See {PresignedPost#url}.
# @option options [Sting, Array<String>] :allow_any
# See {PresignedPost#allow_any}.
# @option options [Time] :signature_expiration Specify when the signature on
# the post will expire. Defaults to one hour from creation of the
# presigned post. May not exceed one week from creation time.
# @option options [String] :key See {PresignedPost#key}.
# @option options [String] :key_starts_with
# See {PresignedPost#key_starts_with}.
# @option options [String] :acl See {PresignedPost#acl}.
# @option options [String] :acl_starts_with
# See {PresignedPost#acl_starts_with}.
# @option options [String] :cache_control
# See {PresignedPost#cache_control}.
# @option options [String] :cache_control_starts_with
# See {PresignedPost#cache_control_starts_with}.
# @option options [String] :content_type See {PresignedPost#content_type}.
# @option options [String] :content_type_starts_with
# See {PresignedPost#content_type_starts_with}.
# @option options [String] :content_disposition
# See {PresignedPost#content_disposition}.
# @option options [String] :content_disposition_starts_with
# See {PresignedPost#content_disposition_starts_with}.
# @option options [String] :content_encoding
# See {PresignedPost#content_encoding}.
# @option options [String] :content_encoding_starts_with
# See {PresignedPost#content_encoding_starts_with}.
# @option options [Time] :expires See {PresignedPost#expires}.
# @option options [String] :expires_starts_with
# See {PresignedPost#expires_starts_with}.
# @option options [Range<Integer>] :content_length_range
# See {PresignedPost#content_length_range}.
# @option options [String] :success_action_redirect
# See {PresignedPost#success_action_redirect}.
# @option options [String] :success_action_redirect_starts_with
# See {PresignedPost#success_action_redirect_starts_with}.
# @option options [String] :success_action_status
# See {PresignedPost#success_action_status}.
# @option options [String] :storage_class
# See {PresignedPost#storage_class}.
# @option options [String] :website_redirect_location
# See {PresignedPost#website_redirect_location}.
# @option options [Hash<String,String>] :metadata
# See {PresignedPost#metadata}.
# @option options [Hash<String,String>] :metadata_starts_with
# See {PresignedPost#metadata_starts_with}.
# @option options [String] :server_side_encryption
# See {PresignedPost#server_side_encryption}.
# @option options [String] :server_side_encryption_aws_kms_key_id
# See {PresignedPost#server_side_encryption_aws_kms_key_id}.
# @option options [String] :server_side_encryption_customer_algorithm
# See {PresignedPost#server_side_encryption_customer_algorithm}.
# @option options [String] :server_side_encryption_customer_key
# See {PresignedPost#server_side_encryption_customer_key}.
# @option options [String] :server_side_encryption_customer_key_starts_with
# See {PresignedPost#server_side_encryption_customer_key_starts_with}.
def initialize(credentials, bucket_region, bucket_name, options = {})
@credentials = credentials.credentials
@bucket_region = bucket_region
@bucket_name = bucket_name
@accelerate = !!options.delete(:use_accelerate_endpoint)
options.delete(:url) if @accelerate # resource methods pass url
@url = options.delete(:url) || bucket_url
@fields = {}
@key_set = false
@signature_expiration = Time.now + 3600
@conditions = [{ 'bucket' => @bucket_name }]
options.each do |option_name, option_value|
case option_name
when :allow_any then allow_any(option_value)
when :signature_expiration then @signature_expiration = option_value
else
if @@allowed_fields.include?(option_name)
send("#{option_name}", option_value)
else
raise ArgumentError, "Unsupported option: #{option_name}"
end
end
end
end
# @return [String] The URL to post a file upload to. This should be
# the form action.
attr_reader :url
# @return [Hash] A hash of fields to render in an HTML form
# as hidden input fields.
def fields
check_required_values!
datetime = Time.now.utc.strftime('%Y%m%dT%H%M%SZ')
fields = @fields.dup
fields.update('policy' => policy(datetime))
fields.update(signature_fields(datetime))
fields.update('x-amz-signature' => signature(datetime, fields['policy']))
end
# A list of form fields to white-list with any value.
# @param [Sting, Array<String>] field_names
# @return [self]
def allow_any(*field_names)
field_names.flatten.each do |field_name|
@key_set = true if field_name.to_s == 'key'
starts_with(field_name, '')
end
self
end
# @api private
def self.define_field(field, *args, &block)
@@allowed_fields << field
options = args.last.is_a?(Hash) ? args.pop : {}
field_name = args.last || field.to_s
if block_given?
define_method("#{field}", block)
else
define_method("#{field}") do |value|
with(field_name, value)
end
if options[:starts_with]
@@allowed_fields << "#{field}_starts_with".to_sym
define_method("#{field}_starts_with") do |value|
starts_with(field_name, value)
end
end
end
end
# @!group Fields
# @!method key(key)
# The key to use for the uploaded object. You can use `${filename}`
# as a variable in the key. This will be replaced with the name
# of the file as provided by the user.
#
# For example, if the key is given as `/user/betty/${filename}` and
# the file uploaded is named `lolcatz.jpg`, the resultant key will
# be `/user/betty/lolcatz.jpg`.
#
# @param [String] key
# @see http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingMetadata.html)
# @return [self]
define_field(:key) do |key|
@key_set = true
with('key', key)
end
# @!method key_starts_with(prefix)
# Specify a prefix the uploaded
# @param [String] prefix
# @see #key
# @return [self]
define_field(:key_starts_with) do |prefix|
@key_set = true
starts_with('key', prefix)
end
# @!method acl(canned_acl)
# Specify the cannedl ACL (access control list) for the object.
# May be one of the following values:
#
# * `private`
# * `public-read`
# * `public-read-write`
# * `authenticated-read`
# * `bucket-owner-read`
# * `bucket-owner-full-control`
#
# @param [String] canned_acl
# @see http://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html
# @return [self]
#
# @!method acl_starts_with(prefix)
# @param [String] prefix
# @see #acl
# @return [self]
define_field(:acl, starts_with: true)
# @!method cache_control(value)
# Specify caching behavior along the request/reply chain.
# @param [String] value
# @see http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9.
# @return [self]
#
# @!method cache_control_starts_with(prefix)
# @param [String] prefix
# @see #cache_control
# @return [self]
define_field(:cache_control, 'Cache-Control', starts_with: true)
# @return [String]
# @!method content_type(value)
# A standard MIME type describing the format of the contents.
# @param [String] value
# @see http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.21
# @return [self]
#
# @!method content_type_starts_with(prefix)
# @param [String] prefix
# @see #content_type
# @return [self]
define_field(:content_type, 'Content-Type', starts_with: true)
# @!method content_disposition(value)
# Specifies presentational information for the object.
# @param [String] value
# @see http://www.w3.org/Protocols/rfc2616/rfc2616-sec19.html#sec19.5.1
# @return [self]
#
# @!method content_disposition_starts_with(prefix)
# @param [String] prefix
# @see #content_disposition
# @return [self]
define_field(:content_disposition, 'Content-Disposition', starts_with: true)
# @!method content_encoding(value)
# Specifies what content encodings have been applied to the object
# and thus what decoding mechanisms must be applied to obtain the
# media-type referenced by the Content-Type header field.
# @param [String] value
# @see http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.11
# @return [self]
#
# @!method content_encoding_starts_with(prefix)
# @param [String] prefix
# @see #content_encoding
# @return [self]
define_field(:content_encoding, 'Content-Encoding', starts_with: true)
# @!method expires(time)
# The date and time at which the object is no longer cacheable.
# @note This does not affect the expiration of the presigned post
# signature.
# @param [Time] time
# @see http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.21
# @return [self]
define_field(:expires) do |time|
with('Expires', time.httpdate)
end
# @!method expires_starts_with(prefix)
# @param [String] prefix
# @see #expires
# @return [self]
define_field(:expires_starts_with) do |prefix|
starts_with('Expires', prefix)
end
# @!method content_length_range(byte_range)
# The minimum and maximum allowable size for the uploaded content.
# @param [Range<Integer>] byte_range
# @return [self]
define_field(:content_length_range) do |byte_range|
min = byte_range.begin
max = byte_range.end
max -= 1 if byte_range.exclude_end?
@conditions << ['content-length-range', min, max]
self
end
# @!method success_action_redirect(value)
# The URL to which the client is redirected
# upon successful upload. If {#success_action_redirect} is not
# specified, Amazon S3 returns the empty document type specified
# by {#success_action_status}.
#
# If Amazon S3 cannot interpret the URL, it acts as if the field
# is not present. If the upload fails, Amazon S3 displays an error
# and does not redirect the user to a URL.
#
# @param [String] value
# @return [self]
#
# @!method success_action_redirect_starts_with(prefix)
# @param [String] prefix
# @see #success_action_redirect
# @return [self]
define_field(:success_action_redirect, starts_with: true)
# @!method success_action_status(value)
# The status code returned to the client upon
# successful upload if {#success_action_redirect} is not
# specified.
#
# Accepts the values `200`, `201`, or `204` (default).
#
# If the value is set to 200 or 204, Amazon S3 returns an empty
# document with a 200 or 204 status code. If the value is set to 201,
# Amazon S3 returns an XML document with a 201 status code.
#
# If the value is not set or if it is set to an invalid value, Amazon
# S3 returns an empty document with a 204 status code.
#
# @param [String] value The status code returned to the client upon
# @return [self]
define_field(:success_action_status)
# @!method storage_class(value)
# Storage class to use for storing the object. Defaults to
# `STANDARD`. Must be one of:
#
# * `STANDARD`
# * `REDUCED_REDUNDANCY`
#
# You cannot specify `GLACIER` as the storage class. To transition
# objects to the GLACIER storage class you can use lifecycle
# configuration.
# @param [String] value Storage class to use for storing the
# @return [self]
define_field(:storage_class, 'x-amz-storage-class')
# @!method website_redirect_location(value)
# If the bucket is configured as a website,
# redirects requests for this object to another object in the
# same bucket or to an external URL. Amazon S3 stores this value
# in the object metadata.
#
# The value must be prefixed by, "/", "http://" or "https://".
# The length of the value is limited to 2K.
#
# @param [String] value
# @see http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingMetadata.html
# @see http://docs.aws.amazon.com/AmazonS3/latest/dev/WebsiteHosting.html
# @see http://docs.aws.amazon.com/AmazonS3/latest/dev/how-to-page-redirect.html
# @return [self]
define_field(:website_redirect_location, 'x-amz-website-redirect-location')
# @!method metadata(hash)
# Metadata hash to store with the uploaded object. Hash keys will be
# prefixed with "x-amz-meta-".
# @param [Hash<String,String>] hash
# @return [self]
define_field(:metadata) do |hash|
hash.each do |key, value|
with("x-amz-meta-#{key}", value)
end
self
end
# @!method metadata_starts_with(hash)
# Specify allowable prefix for each key in the metadata hash.
# @param [Hash<String,String>] hash
# @see #metadata
# @return [self]
define_field(:metadata_starts_with) do |hash|
hash.each do |key, value|
starts_with("x-amz-meta-#{key}", value)
end
self
end
# @!endgroup
# @!group Server-Side Encryption Fields
# @!method server_side_encryption(value)
# Specifies a server-side encryption algorithm to use when Amazon
# S3 creates an object. Valid values include:
#
# * `aws:kms`
# * `AES256`
#
# @param [String] value
# @return [self]
define_field(:server_side_encryption, 'x-amz-server-side-encryption')
# @!method server_side_encryption_aws_kms_key_id(value)
# If {#server_side_encryption} is called with the value of `aws:kms`,
# this method specifies the ID of the AWS Key Management Service
# (KMS) master encryption key to use for the object.
# @param [String] value
# @return [self]
define_field(
:server_side_encryption_aws_kms_key_id,
'x-amz-server-side-encryption-aws-kms-key-id'
)
# @!endgroup
# @!group Server-Side Encryption with Customer-Provided Key Fields
# @!method server_side_encryption_customer_algorithm(value)
# Specifies the algorithm to use to when encrypting the object.
# Must be set to `AES256` when using customer-provided encryption
# keys. Must also call {#server_side_encryption_customer_key}.
# @param [String] value
# @see #server_side_encryption_customer_key
# @return [self]
define_field(
:server_side_encryption_customer_algorithm,
'x-amz-server-side-encryption-customer-algorithm'
)
# @!method server_side_encryption_customer_key(value)
# Specifies the customer-provided encryption key for Amazon S3 to use
# in encrypting data. This value is used to store the object and then
# it is discarded; Amazon does not store the encryption key.
#
# You must also call {#server_side_encryption_customer_algorithm}.
#
# @param [String] value
# @see #server_side_encryption_customer_algorithm
# @return [self]
define_field(:server_side_encryption_customer_key) do |value|
field_name = 'x-amz-server-side-encryption-customer-key'
with(field_name, base64(value))
with(field_name + '-MD5', base64(OpenSSL::Digest::MD5.digest(value)))
end
# @!method server_side_encryption_customer_key_starts_with(prefix)
# @param [String] prefix
# @see #server_side_encryption_customer_key
# @return [self]
define_field(:server_side_encryption_customer_key_starts_with) do |prefix|
field_name = 'x-amz-server-side-encryption-customer-key'
starts_with(field_name, prefix)
end
# @!endgroup
private
def with(field_name, value)
fvar = '${filename}'
if index = value.rindex(fvar)
if index + fvar.size == value.size
@fields[field_name] = value
starts_with(field_name, value[0,index])
else
msg = "${filename} only supported at the end of #{field_name}"
raise ArgumentError, msg
end
else
@fields[field_name] = value.to_s
@conditions << { field_name => value.to_s }
end
self
end
def starts_with(field_name, value, &block)
@conditions << ['starts-with', "$#{field_name}", value.to_s]
self
end
def check_required_values!
unless @key_set
msg = 'key required; you must provide a key via :key, '\
":key_starts_with, or :allow_any => ['key']"
raise msg
end
end
def bucket_url
# Taken from Aws::S3::Endpoints module
params = Aws::S3::EndpointParameters.new(
bucket: @bucket_name,
region: @bucket_region,
accelerate: @accelerate,
use_global_endpoint: true
)
endpoint = Aws::S3::EndpointProvider.new.resolve_endpoint(params)
endpoint.url
end
# @return [Hash]
def policy(datetime)
check_required_values!
policy = {}
policy['expiration'] = @signature_expiration.utc.iso8601
policy['conditions'] = @conditions.dup
signature_fields(datetime).each do |name, value|
policy['conditions'] << { name => value }
end
base64(Json.dump(policy))
end
def signature_fields(datetime)
fields = {}
fields['x-amz-credential'] = credential_scope(datetime)
fields['x-amz-algorithm'] = 'AWS4-HMAC-SHA256'
fields['x-amz-date'] = datetime
if session_token = @credentials.session_token
fields['x-amz-security-token'] = session_token
end
fields
end
def signature(datetime, string_to_sign)
k_secret = @credentials.secret_access_key
k_date = hmac('AWS4' + k_secret, datetime[0,8])
k_region = hmac(k_date, @bucket_region)
k_service = hmac(k_region, 's3')
k_credentials = hmac(k_service, 'aws4_request')
hexhmac(k_credentials, string_to_sign)
end
def hmac(key, value)
OpenSSL::HMAC.digest(OpenSSL::Digest.new('sha256'), key, value)
end
def hexhmac(key, value)
OpenSSL::HMAC.hexdigest(OpenSSL::Digest.new('sha256'), key, value)
end
def credential_scope(datetime)
parts = []
parts << @credentials.access_key_id
parts << datetime[0,8]
parts << @bucket_region
parts << 's3'
parts << 'aws4_request'
parts.join('/')
end
def base64(str)
Base64.strict_encode64(str)
end
end
end
end
|