Module: OAuth::Helper
- Extended by:
- Helper
- Included in:
- Net::HTTPGenericRequest, Client::Helper, Helper, RequestProxy::Base, Server, Signature::Base, Token
- Defined in:
- lib/oauth/helper.rb
Instance Method Summary (collapse)
-
- (Object) escape(value)
Escape value by URL encoding all non-reserved character.
-
- (Object) generate_key(size = 32)
(also: #generate_nonce)
Generate a random key of up to size bytes.
-
- (Object) generate_timestamp
:nodoc:.
-
- (Object) normalize(params)
Normalize a Hash of parameter values.
-
- (Object) parse_header(header)
Parse an Authorization / WWW-Authenticate header into a hash.
- - (Object) stringify_keys(hash)
- - (Object) unescape(value)
Instance Method Details
- (Object) escape(value)
Escape value by URL encoding all non-reserved character.
See Also: OAuth core spec version 1.0, section 5.1
11 12 13 14 15 |
# File 'lib/oauth/helper.rb', line 11 def escape(value) URI::escape(value.to_s, OAuth::RESERVED_CHARACTERS) rescue ArgumentError URI::escape(value.to_s.force_encoding(Encoding::UTF_8), OAuth::RESERVED_CHARACTERS) end |
- (Object) generate_key(size = 32) Also known as: generate_nonce
Generate a random key of up to size bytes. The value returned is Base64 encoded with non-word characters removed.
19 20 21 |
# File 'lib/oauth/helper.rb', line 19 def generate_key(size=32) Base64.encode64(OpenSSL::Random.random_bytes(size)).gsub(/\W/, '') end |
- (Object) generate_timestamp
:nodoc:
25 26 27 |
# File 'lib/oauth/helper.rb', line 25 def #:nodoc: Time.now.to_i.to_s end |
- (Object) normalize(params)
Normalize a Hash of parameter values. Parameters are sorted by name, using lexicographical byte value ordering. If two or more parameters share the same name, they are sorted by their value. Parameters are concatenated in their sorted order into a single string. For each parameter, the name is separated from the corresponding value by an "=" character, even if the value is empty. Each name-value pair is separated by an "&" character.
36 37 38 39 40 41 42 43 44 45 46 47 48 |
# File 'lib/oauth/helper.rb', line 36 def normalize(params) params.sort.map do |k, values| if values.is_a?(Array) # multiple values were provided for a single key values.sort.collect do |v| [escape(k),escape(v)] * "=" end else [escape(k),escape(values)] * "=" end end * "&" end |
- (Object) parse_header(header)
Parse an Authorization / WWW-Authenticate header into a hash. Takes care of unescaping and removing surrounding quotes. Raises a OAuth::Problem if the header is not parsable into a valid hash. Does not validate the keys or values.
hash = parse_header(headers['Authorization'] || headers['WWW-Authenticate'])
hash['oauth_timestamp']
#=>"1234567890"
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
# File 'lib/oauth/helper.rb', line 58 def parse_header(header) # decompose params = header[6,header.length].split(/[,=&]/) # odd number of arguments - must be a malformed header. raise OAuth::Problem.new("Invalid authorization header") if params.size % 2 != 0 params.map! do |v| # strip and unescape val = unescape(v.strip) # strip quotes val.sub(/^\"(.*)\"$/, '\1') end # convert into a Hash Hash[*params.flatten] end |
- (Object) stringify_keys(hash)
80 81 82 83 84 85 86 |
# File 'lib/oauth/helper.rb', line 80 def stringify_keys(hash) new_h = {} hash.each do |k, v| new_h[k.to_s] = v.is_a?(Hash) ? stringify_keys(v) : v end new_h end |
- (Object) unescape(value)
76 77 78 |
# File 'lib/oauth/helper.rb', line 76 def unescape(value) URI.unescape(value.gsub('+', '%2B')) end |