This file is indexed.

/usr/share/php/sabre21/Sabre/HTTP/URLUtil.php is in php-sabre-http-3 3.0.5-3.

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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
<?php

namespace Sabre\HTTP;

/**
 * URL utility class
 *
 * This class provides methods to deal with encoding and decoding url (percent encoded) strings.
 *
 * It was not possible to use PHP's built-in methods for this, because some clients don't like
 * encoding of certain characters.
 *
 * Specifically, it was found that GVFS (gnome's webdav client) does not like encoding of ( and
 * ). Since these are reserved, but don't have a reserved meaning in url, these characters are
 * kept as-is.
 *
 * @copyright Copyright (C) 2009-2015 fruux GmbH (https://fruux.com/).
 * @author Evert Pot (http://evertpot.com/)
 * @license http://sabre.io/license/ Modified BSD License
 */
class URLUtil {

    /**
     * Encodes the path of a url.
     *
     * slashes (/) are treated as path-separators.
     *
     * @param string $path
     * @return string
     */
    static function encodePath($path) {

        return preg_replace_callback('/([^A-Za-z0-9_\-\.~\(\)\/:@])/',function($match) {

            return '%'.sprintf('%02x',ord($match[0]));

        }, $path);

    }

    /**
     * Encodes a 1 segment of a path
     *
     * Slashes are considered part of the name, and are encoded as %2f
     *
     * @param string $pathSegment
     * @return string
     */
    static function encodePathSegment($pathSegment) {

        return preg_replace_callback('/([^A-Za-z0-9_\-\.~\(\):@])/',function($match) {

            return '%'.sprintf('%02x',ord($match[0]));

        }, $pathSegment);
    }

    /**
     * Decodes a url-encoded path
     *
     * @param string $path
     * @return string
     */
    static function decodePath($path) {

        return self::decodePathSegment($path);

    }

    /**
     * Decodes a url-encoded path segment
     *
     * @param string $path
     * @return string
     */
    static function decodePathSegment($path) {

        $path = rawurldecode($path);
        $encoding = mb_detect_encoding($path, ['UTF-8','ISO-8859-1']);

        switch($encoding) {

            case 'ISO-8859-1' :
                $path = utf8_encode($path);

        }

        return $path;

    }

    /**
     * Returns the 'dirname' and 'basename' for a path.
     *
     * The reason there is a custom function for this purpose, is because
     * basename() is locale aware (behaviour changes if C locale or a UTF-8 locale is used)
     * and we need a method that just operates on UTF-8 characters.
     *
     * In addition basename and dirname are platform aware, and will treat backslash (\) as a
     * directory separator on windows.
     *
     * This method returns the 2 components as an array.
     *
     * If there is no dirname, it will return an empty string. Any / appearing at the end of the
     * string is stripped off.
     *
     * @param string $path
     * @return array
     */
    static function splitPath($path) {

        $matches = [];
        if(preg_match('/^(?:(.*)\/+)?([^\/]+)\/?$/u',$path,$matches)) {
            return [$matches[1], $matches[2]];
        } else {
            return [null, null];
        }

    }

    /**
     * Resolves relative urls, like a browser would.
     *
     * This function takes a basePath, which itself _may_ also be relative, and
     * then applies the relative path on top of it.
     *
     * @param string $basePath
     * @param string $newPath
     * @return string
     */
    static function resolve($basePath, $newPath) {

        $base = parse_url($basePath);
        $delta = parse_url($newPath);

        $pick = function($part) use ($base, $delta) {

            if (isset($delta[$part])) {
                return $delta[$part];
            } elseif (isset($base[$part])) {
                return $base[$part];
            } else {
                return null;
            }

        };

        $url = '';
        $scheme = $pick('scheme');
        $host = $pick('host');

        if ($scheme) {
            // If there's a scheme, there's also a host.
            $url=$scheme.'://' . $host;
        } elseif (!$scheme && $host) {
            // No scheme, but there is a host.
            $url = '//' . $host;
        }

        $port = $pick('port');
        if ($port) {
            // tcp port.
            $url.=':' . $port;
        }

        $path = '';
        if (isset($delta['path'])) {
            // If the path starts with a slash
            if ($delta['path'][0]==='/') {
                $path = $delta['path'];
            } else {
                // Removing last component from base path.
                $path = $base['path'];
                if (strpos($path, '/')!==false) {
                    $path = substr($path,0,strrpos($path,'/'));
                }
                $path.='/' . $delta['path'];
            }
        } else {
            $path = isset($base['path'])?$base['path']:'/';
        }
        // Removing .. and .
        $pathParts = explode('/', $path);
        $newPathParts = [];
        foreach($pathParts as $pathPart) {

            switch($pathPart) {
                case '' :
                case '.' :
                    break;
                case '..' :
                    array_pop($newPathParts);
                    break;
                default :
                    $newPathParts[] = $pathPart;
                    break;
            }
        }

        $url.='/' . implode('/', $newPathParts);

        // If the source url ended with a /, we want to preserve that.
        if (substr($path, -1) === '/' && $path!=='/') {
            $url.='/';
        }

        if (isset($delta['query'])) {
            $url.='?' . $delta['query'];
        }
        if (isset($delta['fragment'])) {
            $url.='#' . $delta['fragment'];
        }

        return $url;

    }

}