Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.php - github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e984e2c72233c381abfbc25296a235a78333fe53 (plain)
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
<?php

/**
 * PHPPgAdmin v6.0.0-RC5
 */

require_once __DIR__.'/src/lib.inc.php';

// This section is made to be able to parse requests coming from PHP Builtin webserver
if (PHP_SAPI === 'cli-server') {
    $will_redirect = false;
    // @todo is PHP_SELF is not set, chances are REQUEST_URI won't either
    $req_uri = isset($_SERVER['PHP_SELF']) ? $_SERVER['PHP_SELF'] : $_SERVER['REQUEST_URI'];
    if (substr($req_uri, 0, 10) === '/index.php') {
        $will_redirect = true;
        $req_uri       = substr($req_uri, 10);
    }
    $filePath     = realpath(ltrim($req_uri, '/'));
    $new_location = 'Location: http://'.$_SERVER['HTTP_HOST'].$req_uri;

    if ($filePath && // 1. check that filepath is set
        is_readable($filePath) && // 2. and references a readable file/folder
        strpos($filePath, BASE_PATH.DIRECTORY_SEPARATOR) === 0 && // 3. And is inside this folder
        $filePath != BASE_PATH.DIRECTORY_SEPARATOR.'index.php' && // 4. discard circular references to index.php
        substr(basename($filePath), 0, 1) != '.' // 5. don't serve dotfiles
    ) {
        if (strtolower(substr($filePath, -4)) == '.php') {
            // php file; serve through interpreter
            include $filePath;

            return;
        }
        if ($will_redirect) {
            header($new_location, true, 301);

            return;
        }
        // asset file; serve from filesystem
        return false;
    }
}
require_once __DIR__.'/src/router.php';