Class: Utopia::Middleware::Content::Node

Inherits:
Object
  • Object
show all
Defined in:
lib/utopia/middleware/content/node.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(controller, uri_path, request_path, file_path) ⇒ Node

Returns a new instance of Node.



275
276
277
278
279
280
281
# File 'lib/utopia/middleware/content/node.rb', line 275

def initialize(controller, uri_path, request_path, file_path)
	@controller = controller

	@uri_path = uri_path
	@request_path = request_path
	@file_path = file_path
end

Instance Attribute Details

#file_pathObject (readonly)

Returns the value of attribute file_path.



285
286
287
# File 'lib/utopia/middleware/content/node.rb', line 285

def file_path
  @file_path
end

#request_pathObject (readonly)

Returns the value of attribute request_path.



283
284
285
# File 'lib/utopia/middleware/content/node.rb', line 283

def request_path
  @request_path
end

#uri_pathObject (readonly)

Returns the value of attribute uri_path.



284
285
286
# File 'lib/utopia/middleware/content/node.rb', line 284

def uri_path
  @uri_path
end

Instance Method Details

#call(transaction, state) ⇒ Object



345
346
347
348
349
# File 'lib/utopia/middleware/content/node.rb', line 345

def call(transaction, state)
	xml_data = @controller.fetch_xml(@file_path).result(transaction.binding)
	
	transaction.parse_xml(xml_data)
end


287
288
289
# File 'lib/utopia/middleware/content/node.rb', line 287

def link
	return Link.new(:file, uri_path)
end


315
316
317
318
319
320
321
322
323
324
# File 'lib/utopia/middleware/content/node.rb', line 315

def links(path, options = {}, &block)
	path = uri_path.dirname + Path.create(path)
	links = Links.index(@controller.root, path, options)
	
	if block_given?
		links.each &block
	else
		links
	end
end

#local_path(path, base = nil) ⇒ Object



295
296
297
298
299
300
301
302
303
304
305
# File 'lib/utopia/middleware/content/node.rb', line 295

def local_path(path, base = nil)
	path = Path.create(path)
	root = Pathname.new(@controller.root)
	
	if path.absolute?
		return root.join(*path.components)
	else
		base ||= uri_path.dirname
		return root.join(*(base + path).components)
	end
end

#lookup(tag) ⇒ Object



307
308
309
# File 'lib/utopia/middleware/content/node.rb', line 307

def lookup(tag)
	return @controller.lookup_tag(tag.name, parent_path)
end

#lookup_node(path) ⇒ Object



291
292
293
# File 'lib/utopia/middleware/content/node.rb', line 291

def lookup_node(path)
	@controller.lookup_node(path)
end

#parent_pathObject



311
312
313
# File 'lib/utopia/middleware/content/node.rb', line 311

def parent_path
	uri_path.dirname
end

#process!(request, response) ⇒ Object



351
352
353
354
# File 'lib/utopia/middleware/content/node.rb', line 351

def process!(request, response)
	transaction = Transaction.new(request, response)
	response.body = [transaction.render_node(self)]
end


326
327
328
329
# File 'lib/utopia/middleware/content/node.rb', line 326

def related_links
	name = @uri_path.basename.split(".").first
	links = Links.index(@controller.root, uri_path.dirname, :name => name, :indices => true)
end


341
342
343
# File 'lib/utopia/middleware/content/node.rb', line 341

def sibling_links(options = {})
	return Links.index(@controller.root, siblings_path, options)
end

#siblings_pathObject



331
332
333
334
335
336
337
338
339
# File 'lib/utopia/middleware/content/node.rb', line 331

def siblings_path
	name = @uri_path.basename.split(".").first
	
	if name == "index"
		@uri_path.dirname(2)
	else
		@uri_path.dirname
	end
end