Class: Ldp::Resource

Inherits:
Object
  • Object
show all
Defined in:
lib/ldp/resource.rb

Direct Known Subclasses

BinarySource, RdfSource

Defined Under Namespace

Classes: BinarySource, RdfSource

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(client, subject, response = nil, base_path = '') ⇒ Resource

Returns a new instance of Resource.



20
21
22
23
24
25
# File 'lib/ldp/resource.rb', line 20

def initialize client, subject, response = nil, base_path = ''
  @client = client
  @subject = subject
  @get = response if response.is_a? Faraday::Response and current? response
  @base_path = base_path
end

Instance Attribute Details

#clientObject (readonly)

Returns the value of attribute client.



6
7
8
# File 'lib/ldp/resource.rb', line 6

def client
  @client
end

#contentObject

Returns the value of attribute content.



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

def content
  @content
end

#subjectObject (readonly)

Returns the value of attribute subject.



6
7
8
# File 'lib/ldp/resource.rb', line 6

def subject
  @subject
end

Class Method Details

.for(client, subject, response = nil) ⇒ Object



9
10
11
12
13
14
15
16
17
18
# File 'lib/ldp/resource.rb', line 9

def self.for(client, subject, response = nil)
  case
  when response.container?
    Ldp::Container.for client, subject, response
  when response.rdf_source?
    Resource::RdfSource.new client, subject, response
  else
    Resource::BinarySource.new client, subject, response
  end
end

Instance Method Details

#create(&block) ⇒ RdfSource

Create a new resource at the URI

Returns:

Raises:



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

def create &block
  raise Ldp::Error, "Can't call create on an existing resource" unless new?
  verb = subject.nil? ? :post : :put
  resp = client.send(verb, (subject || @base_path), content) do |req|
    req.headers["Link"] = "<#{interaction_model}>;rel=\"type\"" if interaction_model
    yield req if block_given?
  end

  @subject = resp.headers['Location']
  @subject_uri = nil
  reload
end

#current?(response = nil) ⇒ Boolean

Returns:

  • (Boolean)


105
106
107
108
109
110
111
112
113
114
115
# File 'lib/ldp/resource.rb', line 105

def current? response = nil
  response ||= @get
  return true if new? and subject.nil?

  new_response = client.head(subject)

  response.headers['ETag'] &&
    response.headers['Last-Modified'] &&
    new_response.headers['ETag'] == response.headers['ETag'] &&
    new_response.headers['Last-Modified'] == response.headers['Last-Modified']
end

#deleteObject

Delete the resource



67
68
69
70
71
# File 'lib/ldp/resource.rb', line 67

def delete
  client.delete subject do |req|
    req.headers['If-Match'] = get.etag if retrieved_content?
  end
end

#getObject

Get the resource



53
54
55
# File 'lib/ldp/resource.rb', line 53

def get
  @get ||= client.get(subject)
end

#headObject



57
58
59
60
61
62
63
# File 'lib/ldp/resource.rb', line 57

def head
  @head ||= begin
    @get || client.head(subject)
  rescue Ldp::NotFound
    None
  end
end

#new?Boolean

Is the resource new, or does it exist in the LDP server?

Returns:

  • (Boolean)


41
42
43
# File 'lib/ldp/resource.rb', line 41

def new?
  subject.nil? || head == None
end

#reloadObject

Reload the LDP resource



35
36
37
# File 'lib/ldp/resource.rb', line 35

def reload
  self.class.new client, subject, @get
end

#retrieved_content?Boolean

Have we retrieved the content already?

Returns:

  • (Boolean)


47
48
49
# File 'lib/ldp/resource.rb', line 47

def retrieved_content?
  @get
end

#saveObject



73
74
75
# File 'lib/ldp/resource.rb', line 73

def save
  new? ? create : update
end

#subject_uriObject

Get the graph subject as a URI



29
30
31
# File 'lib/ldp/resource.rb', line 29

def subject_uri
  @subject_uri ||= RDF::URI.new subject
end

#update(new_content = nil) ⇒ Object

Update the stored graph



95
96
97
98
99
100
101
102
103
# File 'lib/ldp/resource.rb', line 95

def update new_content = nil
  new_content ||= content
  resp = client.put subject, new_content do |req|
    req.headers['If-Match'] = get.etag if retrieved_content?
    yield req if block_given?
  end
  update_cached_get(resp) if retrieved_content?
  resp
end

#update_cached_get(response) ⇒ Object



117
118
119
120
121
122
123
124
125
# File 'lib/ldp/resource.rb', line 117

def update_cached_get(response)
  response = Response.new(response)

  if response.etag.nil? || response.last_modified.nil?
    response = client.head(subject)
  end
  @get.etag = response.etag
  @get.last_modified = response.last_modified
end