Module: Ldp::Client::Methods

Included in:
Ldp::Client
Defined in:
lib/ldp/client/methods.rb

Overview

HTTP client methods for making requests to an LDP resource and getting a response back.

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#httpObject (readonly)

Returns the value of attribute http.



7
8
9
# File 'lib/ldp/client/methods.rb', line 7

def http
  @http
end

Instance Method Details

#delete(url) ⇒ Object

Delete a LDP Resource by URI



57
58
59
60
61
62
63
64
65
# File 'lib/ldp/client/methods.rb', line 57

def delete url
  logger.debug "LDP: DELETE [#{url}]"
  resp = http.delete do |req|
    req.url munge_to_relative_url(url)
    yield req if block_given?
  end

  check_for_errors(resp)
end

#get(url, options = {}) ⇒ Object

Get a LDP Resource by URI



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
# File 'lib/ldp/client/methods.rb', line 28

def get url, options = {}
  logger.debug "LDP: GET [#{url}]"
  resp = http.get do |req|
    req.url munge_to_relative_url(url)

    if options[:minimal]
      req.headers["Prefer"] = "return=minimal"
    else
      includes = Array(options[:include]).map { |x| Ldp.send("prefer_#{x}") if Ldp.respond_to? "prefer_#{x}" }
      omits = Array(options[:omit]).map { |x| Ldp.send("prefer_#{x}") if Ldp.respond_to? "prefer_#{x}" }
      req.headers["Prefer"] = ["return=representation",
        ("include=\"#{includes.join(" ")}\"" unless includes.empty?),
        ("omit=\"#{omits.join(" ")}\"" unless omits.empty?)
      ].compact.join("; ")
    end

    yield req if block_given?
  end

  if Ldp::Response.resource? resp
    Ldp::Response.wrap self, resp
  else
    resp
  end

  check_for_errors(resp)
end

#head(url) ⇒ Object



16
17
18
19
20
21
22
23
24
25
# File 'lib/ldp/client/methods.rb', line 16

def head url
  logger.debug "LDP: HEAD [#{url}]"
  resp = http.head do |req|
    req.url munge_to_relative_url(url)

    yield req if block_given?
  end

  check_for_errors(resp)
end

#initialize_http_client(*http_client) ⇒ Object



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

def initialize_http_client *http_client
  if http_client.length == 1 and http_client.first.is_a? Faraday::Connection
    @http = http_client.first
  else
    @http = Faraday.new *http_client
  end
end

#patch(url, body, headers = {}) ⇒ Object

Update an LDP resource with TTL by URI



92
93
94
95
96
97
98
99
100
101
# File 'lib/ldp/client/methods.rb', line 92

def patch url, body, headers = {}
  logger.debug "LDP: PATCH [#{url}]"
  resp = http.patch do |req|
    req.url munge_to_relative_url(url)
    req.headers = default_patch_headers.merge headers
    req.body = body
    yield req if block_given?
  end
  check_for_errors(resp)
end

#post(url, body = nil, headers = {}) ⇒ Object

Post TTL to an LDP Resource



68
69
70
71
72
73
74
75
76
77
# File 'lib/ldp/client/methods.rb', line 68

def post url, body = nil, headers = {}
  logger.debug "LDP: POST [#{url}]"
  resp = http.post do |req|
    req.url munge_to_relative_url(url)
    req.headers = default_headers.merge headers
    req.body = body
    yield req if block_given?
  end
  check_for_errors(resp)
end

#put(url, body, headers = {}) ⇒ Object

Update an LDP resource with TTL by URI



80
81
82
83
84
85
86
87
88
89
# File 'lib/ldp/client/methods.rb', line 80

def put url, body, headers = {}
  logger.debug "LDP: PUT [#{url}]"
  resp = http.put do |req|
    req.url munge_to_relative_url(url)
    req.headers = default_headers.merge headers
    req.body = body
    yield req if block_given?
  end
  check_for_errors(resp)
end