This file is indexed.

/usr/share/php/kohana2/modules/payment/libraries/Payment.php is in libkohana2-modules-php 2.3.4-2.

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
117
118
119
120
121
122
123
<?php defined('SYSPATH') OR die('No direct access allowed.');
/**
 * Provides payment support for credit cards and other providers like PayPal.
 *
 * $Id: Payment.php 3769 2008-12-15 00:48:56Z zombor $
 *
 * @package    Payment
 * @author     Kohana Team
 * @copyright  (c) 2007-2008 Kohana Team
 * @license    http://kohanaphp.com/license.html
 */
class Payment_Core {

	// Configuration
	protected $config = array
	(
		// The driver string
		'driver'      => NULL,
		// Test mode is set to true by default
		'test_mode'   => TRUE,
	);

	protected $driver = NULL;

	/**
	 * Sets the payment processing fields.
	 * The driver will translate these into the specific format for the provider.
	 * Standard fields are (Providers may have additional or different fields):
	 *
	 * card_num
	 * exp_date
	 * cvv
	 * description
	 * amount
	 * tax
	 * shipping
	 * first_name
	 * last_name
	 * company
	 * address
	 * city
	 * state
	 * zip
	 * email
	 * phone
	 * fax
	 * ship_to_first_name
	 * ship_to_last_name
	 * ship_to_company
	 * ship_to_address
	 * ship_to_city
	 * ship_to_state
	 * ship_to_zip
	 *
	 * @param  array  the driver string
	 */
	public function __construct($config = array())
	{
		if (empty($config))
		{
			// Load the default group
			$config = Kohana::config('payment.default');
		}
		elseif (is_string($config))
		{
			$this->config['driver'] = $config;
		}

		// Merge the default config with the passed config
		is_array($config) AND $this->config = array_merge($this->config, $config);

		// Set driver name
		$driver = 'Payment_'.ucfirst($this->config['driver']).'_Driver';

		// Load the driver
		if ( ! Kohana::auto_load($driver))
			throw new Kohana_Exception('core.driver_not_found', $this->config['driver'], get_class($this));

		// Get the driver specific settings
		$this->config = array_merge($this->config, Kohana::config('payment.'.$this->config['driver']));

		// Initialize the driver
		$this->driver = new $driver($this->config);

		// Validate the driver
		if ( ! ($this->driver instanceof Payment_Driver))
			throw new Kohana_Exception('core.driver_implements', $this->config['driver'], get_class($this), 'Payment_Driver');
	}

	/**
	 * Sets the credit card processing fields
	 *
	 * @param  string  field name
	 * @param  string  value
	 */
	public function __set($name, $val)
	{
		$this->driver->set_fields(array($name => $val));
	}

	/**
	 * Bulk setting of payment processing fields.
	 *
	 * @param   array   array of values to set
	 * @return  object  this object
	 */
	public function set_fields($fields)
	{
		$this->driver->set_fields((array) $fields);

		return $this;
	}

	/**
	 * Runs the transaction
	 *
	 * @return  TRUE|string  TRUE on successful payment, an error string on failure
	 */
	public function process()
	{
		return $this->driver->process();
	}
}