Class: Refile::Signature

Inherits:
Object
  • Object
show all
Defined in:
lib/refile/signature.rb

Overview

A signature summarizes an HTTP request a client can make to upload a file to directly upload a file to a backend. This signature is usually generated by a backend’s ‘presign` method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(as:, id:, url:, fields:) ⇒ Signature

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of Signature.



19
20
21
22
23
24
# File 'lib/refile/signature.rb', line 19

def initialize(as:, id:, url:, fields:)
  @as = as
  @id = id
  @url = url
  @fields = fields
end

Instance Attribute Details

#asString (readonly)



7
8
9
# File 'lib/refile/signature.rb', line 7

def as
  @as
end

#fieldsString (readonly)



16
17
18
# File 'lib/refile/signature.rb', line 16

def fields
  @fields
end

#idString (readonly)



10
11
12
# File 'lib/refile/signature.rb', line 10

def id
  @id
end

#urlString (readonly)



13
14
15
# File 'lib/refile/signature.rb', line 13

def url
  @url
end

Instance Method Details

#as_jsonHash{Symbol => Object}



27
28
29
# File 'lib/refile/signature.rb', line 27

def as_json(*)
  { as: @as, id: @id, url: @url, fields: @fields }
end

#to_jsonString



32
33
34
# File 'lib/refile/signature.rb', line 32

def to_json(*)
  as_json.to_json
end