Class: Klaro::Client::RequestHandler

Inherits:
Object
  • Object
show all
Defined in:
lib/klaro/client/request_handler.rb

Constant Summary collapse

Http =
HTTP

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(url) ⇒ RequestHandler

Returns a new instance of RequestHandler.



8
9
10
11
12
13
14
# File 'lib/klaro/client/request_handler.rb', line 8

def initialize(url)
  @base_url = url.gsub(/\/api\/?$/, "")
  @token = nil
  @subdomain = nil
  @workspace = nil
  @caching_options = nil
end

Instance Attribute Details

#base_urlObject (readonly)

Returns the value of attribute base_url.



6
7
8
# File 'lib/klaro/client/request_handler.rb', line 6

def base_url
  @base_url
end

#tokenObject (readonly)

Returns the value of attribute token.



6
7
8
# File 'lib/klaro/client/request_handler.rb', line 6

def token
  @token
end

Instance Method Details

#authenticate(user, password, workspace = nil) ⇒ Object



35
36
37
38
39
40
41
42
43
44
# File 'lib/klaro/client/request_handler.rb', line 35

def authenticate(user, password, workspace = nil)
  @workspace = workspace
  @token = get_token(
    Http
      .headers({
        'Content-Type' => 'application/json'
      })
      .post("#{base_url}/api/auth/tokens/", payload(user, password))
  )
end

#authenticated?Boolean

Returns:

  • (Boolean)


16
17
18
# File 'lib/klaro/client/request_handler.rb', line 16

def authenticated?
  not(@token.nil?)
end

#get(endpoint, raw = false) ⇒ Object



46
47
48
49
50
51
52
53
54
55
# File 'lib/klaro/client/request_handler.rb', line 46

def get(endpoint, raw = false)
  url = "#{base_url}#{endpoint}"
  info("GET `#{url}`")
  response = get_in_cache(url) do
    res = http.get(url, ssl_context: http_ctx)
    raise Error::NoSuchBoardFound unless res.status == 200
    res.to_s
  end
  raw ? response.to_s : JSON.parse(response.to_s)
end

#get_in_cache(url, &bl) ⇒ Object



57
58
59
60
61
62
63
64
65
66
67
68
69
70
# File 'lib/klaro/client/request_handler.rb', line 57

def get_in_cache(url, &bl)
  return bl.call unless @caching_options

  sha = Digest::SHA1.hexdigest(url)
  file = @caching_options[:path]/sha
  if file.file?
    file.read
  else
    str = bl.call
    file.parent.mkdir_p
    file.write(str)
    str
  end
end

#post(endpoint, body) ⇒ Object



72
73
74
75
76
# File 'lib/klaro/client/request_handler.rb', line 72

def post(endpoint, body)
  url = "#{base_url}#{endpoint}"
  info("POST `#{url}`")
  http.post(url, body.merge(ssl_context: http_ctx))
end

#with_cache(caching_options) ⇒ Object



30
31
32
33
# File 'lib/klaro/client/request_handler.rb', line 30

def with_cache(caching_options)
  @caching_options = caching_options
  self
end

#with_project(subdomain) ⇒ Object



25
26
27
28
# File 'lib/klaro/client/request_handler.rb', line 25

def with_project(subdomain)
  @subdomain = subdomain
  self
end

#with_token(token_type, access_token) ⇒ Object



20
21
22
23
# File 'lib/klaro/client/request_handler.rb', line 20

def with_token(token_type, access_token)
  @token = "#{token_type} #{access_token}"
  self
end