request.rb
1.03 KB
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
# frozen_string_literal: true
module Syspro
module ApiOperations
module Request
module ClassMethods
def request(method, url, params = {}, opts = {})
warn_on_opts_in_params(params)
opts = Util.normalize_opts(opts)
opts[:client] ||= SysproClient.active_client
headers = opts.clone
user_id = headers.delete(:user_id)
client = headers.delete(:client)
# Assume all remaining opts must be headers
resp = client.execute_request(
method, url,
headers: headers,
user_id: user_id,
params: params
)
resp
end
private
def warn_on_opts_in_params(params)
Util::OPTS_USER_SPECIFIED.each do |opt|
if params.key?(opt)
warn("WARNING: #{opt} should be in opts instead of params.")
end
end
end
end # ClassMethods
def self.included(base)
base.extend(ClassMethods)
end
end
end
end