Class: RackDAV::Resource

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

Direct Known Subclasses

FileResource

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path, request, response, options) ⇒ Resource

Returns a new instance of Resource.



7
8
9
10
11
12
# File 'lib/rack_dav/resource.rb', line 7

def initialize(path, request, response, options)
  @path = path
  @request = request
  @response = response
  @options = options
end

Instance Attribute Details

#optionsObject (readonly)

Returns the value of attribute options.



5
6
7
# File 'lib/rack_dav/resource.rb', line 5

def options
  @options
end

#pathObject (readonly)

Returns the value of attribute path.



5
6
7
# File 'lib/rack_dav/resource.rb', line 5

def path
  @path
end

Instance Method Details

#==(other) ⇒ Object



118
119
120
# File 'lib/rack_dav/resource.rb', line 118

def ==(other)
  path == other.path
end

#child(name, option = {}) ⇒ Object



130
131
132
# File 'lib/rack_dav/resource.rb', line 130

def child(name, option={})
  self.class.new(path + '/' + name, @request, @response, options)
end

#childrenObject

If this is a collection, return the child resources.

Raises:

  • (NotImplementedError)


15
16
17
# File 'lib/rack_dav/resource.rb', line 15

def children
  raise NotImplementedError
end

#collection?Boolean

Is this resource a collection?

Returns:

  • (Boolean)

Raises:

  • (NotImplementedError)


20
21
22
# File 'lib/rack_dav/resource.rb', line 20

def collection?
  raise NotImplementedError
end

#content_lengthObject

Return the size in bytes for this resource.

Raises:

  • (NotImplementedError)


64
65
66
# File 'lib/rack_dav/resource.rb', line 64

def content_length
  raise NotImplementedError
end

#content_typeObject

Return the mime type of this resource.

Raises:

  • (NotImplementedError)


59
60
61
# File 'lib/rack_dav/resource.rb', line 59

def content_type
  raise NotImplementedError
end

#copy(dest) ⇒ Object

HTTP COPY request.

Copy this resource to given destination resource.

Raises:

  • (NotImplementedError)


99
100
101
# File 'lib/rack_dav/resource.rb', line 99

def copy(dest)
  raise NotImplementedError
end

#creation_dateObject

Return the creation time.

Raises:

  • (NotImplementedError)


30
31
32
# File 'lib/rack_dav/resource.rb', line 30

def creation_date
  raise NotImplementedError
end

#deleteObject

HTTP DELETE request.

Delete this resource.

Raises:

  • (NotImplementedError)


92
93
94
# File 'lib/rack_dav/resource.rb', line 92

def delete
  raise NotImplementedError
end

#descendantsObject



175
176
177
178
179
180
181
182
# File 'lib/rack_dav/resource.rb', line 175

def descendants
  list = []
  children.each do |child|
    list << child
    list.concat(child.descendants)
  end
  list
end

#display_nameObject



126
127
128
# File 'lib/rack_dav/resource.rb', line 126

def display_name
  name
end

#etagObject

Return an Etag, an unique hash value for this resource.

Raises:

  • (NotImplementedError)


45
46
47
# File 'lib/rack_dav/resource.rb', line 45

def etag
  raise NotImplementedError
end

#exist?Boolean

Does this recource exist?

Returns:

  • (Boolean)

Raises:

  • (NotImplementedError)


25
26
27
# File 'lib/rack_dav/resource.rb', line 25

def exist?
  raise NotImplementedError
end

#getObject

HTTP GET request.

Write the content of the resource to the response.body.

Raises:

  • (NotImplementedError)


71
72
73
# File 'lib/rack_dav/resource.rb', line 71

def get
  raise NotImplementedError
end

#get_property(name) ⇒ Object



142
143
144
145
146
147
148
149
150
151
152
# File 'lib/rack_dav/resource.rb', line 142

def get_property(name)
  case name
  when 'resourcetype'     then resource_type
  when 'displayname'      then display_name
  when 'creationdate'     then creation_date.xmlschema
  when 'getcontentlength' then content_length.to_s
  when 'getcontenttype'   then content_type
  when 'getetag'          then etag
  when 'getlastmodified'  then last_modified.httpdate
  end
end

#last_modifiedObject

Return the time of last modification.

Raises:

  • (NotImplementedError)


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

def last_modified
  raise NotImplementedError
end

#last_modified=(time) ⇒ Object

Set the time of last modification.

Raises:

  • (NotImplementedError)


40
41
42
# File 'lib/rack_dav/resource.rb', line 40

def last_modified=(time)
  raise NotImplementedError
end

#lockable?Boolean

Returns:

  • (Boolean)


134
135
136
# File 'lib/rack_dav/resource.rb', line 134

def lockable?
  self.respond_to?(:lock) && self.respond_to?(:unlock)
end

#make_collectionObject

HTTP MKCOL request.

Create this resource as collection.

Raises:

  • (NotImplementedError)


114
115
116
# File 'lib/rack_dav/resource.rb', line 114

def make_collection
  raise NotImplementedError
end

#move(dest) ⇒ Object

HTTP MOVE request.

Move this resource to given destination resource.



106
107
108
109
# File 'lib/rack_dav/resource.rb', line 106

def move(dest)
  copy(dest)
  delete
end

#nameObject



122
123
124
# File 'lib/rack_dav/resource.rb', line 122

def name
  File.basename(path)
end

#parentObject



169
170
171
172
173
# File 'lib/rack_dav/resource.rb', line 169

def parent
  elements = @path.scan(/[^\/]+/)
  return nil if elements.empty?
  self.class.new('/' + elements[0..-2].to_a.join('/'), @options)
end

#postObject

HTTP POST request.

Usually forbidden.

Raises:

  • (NotImplementedError)


85
86
87
# File 'lib/rack_dav/resource.rb', line 85

def post
  raise NotImplementedError
end

#property_namesObject



138
139
140
# File 'lib/rack_dav/resource.rb', line 138

def property_names
  %w(creationdate displayname getlastmodified getetag resourcetype getcontenttype getcontentlength)
end

#putObject

HTTP PUT request.

Save the content of the request.body.

Raises:

  • (NotImplementedError)


78
79
80
# File 'lib/rack_dav/resource.rb', line 78

def put
  raise NotImplementedError
end

#remove_property(name) ⇒ Object

Raises:

  • (HTTPStatus::Forbidden)


165
166
167
# File 'lib/rack_dav/resource.rb', line 165

def remove_property(name)
  raise HTTPStatus::Forbidden
end

#resource_typeObject

Return the resource type.

If this is a collection, return a collection element



52
53
54
55
56
# File 'lib/rack_dav/resource.rb', line 52

def resource_type
  if collection?
    Nokogiri::XML::fragment('<D:collection xmlns:D="DAV:"/>').children.first
  end
end

#set_property(name, value) ⇒ Object



154
155
156
157
158
159
160
161
162
163
# File 'lib/rack_dav/resource.rb', line 154

def set_property(name, value)
  case name
  when 'resourcetype'    then self.resource_type = value
  when 'getcontenttype'  then self.content_type = value
  when 'getetag'         then self.etag = value
  when 'getlastmodified' then self.last_modified = Time.httpdate(value)
  end
rescue ArgumentError
  raise HTTPStatus::Conflict
end