This file is indexed.

/usr/share/php/kohana2/modules/kodoc/controllers/kodoc.php is in libkohana2-modules-php 2.3.4-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 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
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?php defined('SYSPATH') OR die('No direct access allowed.');

class Kodoc_Controller extends Template_Controller {

	// Do not allow to run in production
	const ALLOW_PRODUCTION = FALSE;

	public $template = 'kodoc/template';

	// Kodoc instance
	protected $kodoc;

	public function __construct()
	{
		parent::__construct();

		$active = $this->uri->segment(2) ? $this->uri->segment(2) : 'core';

		// Add the menu to the template
		$this->template->menu = new View('kodoc/menu', array('active' => $active));
	}

	public function index()
	{
		$this->template->content = 'hi';
	}

	public function media()
	{
		if (isset($this->profiler)) $this->profiler->disable();

		// Get the filename
		$file = implode('/', $this->uri->segment_array(1));
		$ext = strrchr($file, '.');

		if ($ext !== FALSE)
		{
			$file = substr($file, 0, -strlen($ext));
			$ext = substr($ext, 1);
		}

		// Disable auto-rendering
		$this->auto_render = FALSE;

		try
		{
			// Attempt to display the output
			echo new View('kodoc/'.$file, NULL, $ext);
		}
		catch (Kohana_Exception $e)
		{
			Event::run('system.404');
		}
	}

	public function __call($method, $args)
	{
		if (count($segments = $this->uri->segment_array(1)) > 1)
		{
			// Find directory (type) and filename
			$type = array_shift($segments);
			$file = implode('/', $segments);

			if (substr($file, -(strlen(EXT))) === EXT)
			{
				// Remove extension
				$file = substr($file, 0, -(strlen(EXT)));
			}

			if ($type === 'config')
			{
				if ($file === 'config')
				{
					// This file can only exist in one location
					$file = APPPATH.$type.'/config'.EXT;
				}
				else
				{
					foreach (array_reverse(Kohana::include_paths()) as $path)
					{
						if (is_file($path.$type.'/'.$file.EXT))
						{
							// Found the file
							$file = $path.$type.'/'.$file.EXT;
							break;
						}
					}
				}
			}
			else
			{
				// Get absolute path to file
				$file = Kohana::find_file($type, $file);
			}

			if (in_array($type, Kodoc::get_types()))
			{
				// Load Kodoc
				$this->kodoc = new Kodoc($type, $file);

				// Set the title
				$this->template->title = implode('/', $this->uri->segment_array(1));

				// Load documentation for this file
				$this->template->content = new View('kodoc/documentation');

				// Exit this method
				return;
			}
		}

		// Nothing to document
		url::redirect('kodoc');
	}

} // End Kodoc Controller