This file is indexed.

/usr/share/php/ApiGen/Charset/Configuration/CharsetOptionsResolver.php is in php-apigen 4.1.2-1ubuntu2.

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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<?php

/**
 * This file is part of the ApiGen (http://apigen.org)
 *
 * For the full copyright and license information, please view
 * the file license.md that was distributed with this source code.
 */

namespace ApiGen\Charset\Configuration;

use ApiGen\Charset\Encoding;
use ApiGen\Configuration\OptionsResolverFactory;
use Nette;
use Symfony\Component\OptionsResolver\Options;
use Symfony\Component\OptionsResolver\OptionsResolver;


class CharsetOptionsResolver extends Nette\Object
{

	const CHARSETS = 'charsets';

	/**
	 * @var OptionsResolverFactory
	 */
	private $optionsResolverFactory;

	/**
	 * @var OptionsResolver
	 */
	private $resolver;


	public function __construct(OptionsResolverFactory $optionsResolverFactory)
	{
		$this->optionsResolverFactory = $optionsResolverFactory;
	}


	/**
	 * @return string[]
	 */
	public function getDefaults()
	{
		return [self::CHARSETS => [Encoding::UTF_8]];
	}


	/**
	 * @param string[] $options
	 * @return string[]
	 */
	public function resolve(array $options = [])
	{
		$this->resolver = $this->optionsResolverFactory->create();
		$this->setDefaults();
		$this->setNormalizers();
		$options = $this->normalizeInput($options);
		$options = $this->resolver->resolve($options);
		return $this->normalizeOutput($options);
	}


	private function setDefaults()
	{
		$this->resolver->setDefaults($this->getDefaults());
	}


	private function setNormalizers()
	{
		$this->resolver->setNormalizers([
			self::CHARSETS => function (Options $options, $value) {
				$value = array_map('strtoupper', $value);
				$value = $this->replaceWin1250WithIso($value);
				$value = $this->filterSupportedCharsets($value);
				$value = $this->moveUtfFirst($value);
				return $value;
			}
		]);
	}


	/**
	 * @return array
	 */
	private function replaceWin1250WithIso(array $charsets)
	{
		if (($key = array_search(Encoding::WIN_1250, $charsets)) !== FALSE) {
			$charsets[$key] = Encoding::ISO_8859_1;
		}
		return $charsets;
	}


	/**
	 * @return array
	 */
	private function filterSupportedCharsets(array $charsets)
	{
		$supportedEncodingList = array_map('strtoupper', mb_list_encodings());
		return array_intersect($charsets, $supportedEncodingList);
	}


	/**
	 * @return array
	 */
	private function moveUtfFirst(array $charsets)
	{
		if (($key = array_search(Encoding::UTF_8, $charsets)) !== FALSE) {
			unset($charsets[$key]);
		}
		array_unshift($charsets, Encoding::UTF_8);
		return $charsets;
	}


	/**
	 * @return array
	 */
	private function normalizeInput(array $options)
	{
		if (isset($options[self::CHARSETS])) {
			return $options;
		}
		return [self::CHARSETS => $options];
	}


	/**
	 * @return string[]
	 */
	private function normalizeOutput(array $options)
	{
		return $options[self::CHARSETS];
	}

}