Class: Utopia::Content::Node

Inherits:
Object
  • Object
show all
Defined in:
lib/utopia/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.



298
299
300
301
302
303
304
# File 'lib/utopia/content/node.rb', line 298

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.



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

def file_path
  @file_path
end

#request_pathObject (readonly)

Returns the value of attribute request_path.



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

def request_path
  @request_path
end

#uri_pathObject (readonly)

Returns the value of attribute uri_path.



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

def uri_path
  @uri_path
end

Instance Method Details

#call(transaction, state) ⇒ Object



375
376
377
378
379
# File 'lib/utopia/content/node.rb', line 375

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


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

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


345
346
347
348
349
350
351
352
353
354
# File 'lib/utopia/content/node.rb', line 345

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



318
319
320
321
322
323
324
325
326
327
328
# File 'lib/utopia/content/node.rb', line 318

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



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

def lookup(tag)
	from_path = parent_path
	
	# If the current node is called 'foo', we can't lookup 'foo' in the current directory or we will have infinite recursion.
	if tag.name == @uri_path.basename
		from_path = from_path.dirname
	end
	
	return @controller.lookup_tag(tag.name, from_path)
end

#lookup_node(path) ⇒ Object



314
315
316
# File 'lib/utopia/content/node.rb', line 314

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

#parent_pathObject



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

def parent_path
	uri_path.dirname
end

#process!(request, response, attributes = {}) ⇒ Object



381
382
383
384
# File 'lib/utopia/content/node.rb', line 381

def process!(request, response, attributes = {})
	transaction = Transaction.new(request, response)
	response.write(transaction.render_node(self, attributes))
end


356
357
358
359
# File 'lib/utopia/content/node.rb', line 356

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


371
372
373
# File 'lib/utopia/content/node.rb', line 371

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

#siblings_pathObject



361
362
363
364
365
366
367
368
369
# File 'lib/utopia/content/node.rb', line 361

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