forked from cronofy/cronofy-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi_key.rb
73 lines (62 loc) · 1.7 KB
/
api_key.rb
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
require "oauth2"
module Cronofy
class ApiKey
def initialize(client, client_secret)
@client = client
@client_secret = client_secret
end
# Make a request with the API Key
#
# @param [Symbol] verb the HTTP request method
# @param [String] path the HTTP URL path of the request
# @param [Hash] opts the options to make the request with
# @see Client#request
def request(verb, path, opts = {}, &block)
configure_authentication!(opts)
do_request { @client.request(verb, path, opts, &block) }
end
# Make a GET request with the API Key
#
# @see ApiKey#request
def get(path, opts = {}, &block)
request(:get, path, opts, &block)
end
# Make a POST request with the API Key
#
# @see ApiKey#request
def post(path, opts = {}, &block)
request(:post, path, opts, &block)
end
# Make a PUT request with the API Key
#
# @see ApiKey#request
def put(path, opts = {}, &block)
request(:put, path, opts, &block)
end
# Make a PATCH request with the API Key
#
# @see ApiKey#request
def patch(path, opts = {}, &block)
request(:patch, path, opts, &block)
end
private
def headers
{'Authorization' => "Bearer #{@client_secret}"}
end
def configure_authentication!(opts)
opts[:headers] ||= {}
opts[:headers].merge!(headers)
end
def do_request(&block)
if blank?(@client_secret)
raise CredentialsMissingError.new("OAuth client_id and client_secret must be set")
end
block.call
rescue OAuth2::Error => e
raise Errors.map_error(e)
end
def blank?(value)
value.nil? || value.strip.empty?
end
end
end