147 lines
5.5 KiB
PHP
147 lines
5.5 KiB
PHP
<?php
|
|
define('CONF', parse_ini_file(__DIR__ . '/config.ini', true, INI_SCANNER_TYPED));
|
|
|
|
define('DB', new PDO('sqlite:' . CONF['common']['root_path'] . '/db/niver.db'));
|
|
|
|
$locale = 'en';
|
|
if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
|
|
$client_locales = explode(',', preg_replace('/[A-Z0-9]|q=|;|-|\./', '', $_SERVER['HTTP_ACCEPT_LANGUAGE']));
|
|
$available_locales = array_diff(scandir('locales'), ['..', '.']);
|
|
foreach ($client_locales as $client_locale) {
|
|
if (in_array($client_locale, $available_locales)) {
|
|
$locale = $client_locale;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
define('LOCALE', $locale);
|
|
setlocale(LC_MESSAGES, 'C.UTF-8');
|
|
bindtextdomain('messages', 'locales/' . LOCALE);
|
|
header('Content-Language: ' . LOCALE);
|
|
|
|
const LF = "\n";
|
|
|
|
const PLACEHOLDER_DOMAIN = 'example'; // From RFC2606: Reserved Top Level DNS Names > 2. TLDs for Testing, & Documentation Examples
|
|
const PLACEHOLDER_IPV6 = '2001:db8::3'; // From RFC3849: IPv6 Address Prefix Reserved for Documentation
|
|
const PLACEHOLDER_IPV4 = '203.0.113.42'; // From RFC5737: IPv4 Address Blocks Reserved for Documentation
|
|
|
|
foreach (array_diff(scandir(CONF['common']['root_path'] . '/fn'), array('..', '.')) as $file)
|
|
require CONF['common']['root_path'] . '/fn/' . $file;
|
|
|
|
require 'pages.php';
|
|
|
|
if ($_SERVER['REQUEST_URI'] === '/sftpgo-auth.php')
|
|
return;
|
|
|
|
$pageAddress = substr($_SERVER['REQUEST_URI'], strlen(CONF['common']['prefix']) + 1);
|
|
if (strpos($pageAddress, '?') !== false) {
|
|
parse_str(substr($pageAddress, strpos($pageAddress, '?') + 1), $_GET);
|
|
$pageAddress = substr($pageAddress, 0, strpos($pageAddress, '?'));
|
|
}
|
|
define('PAGE_URL', $pageAddress);
|
|
define('PAGE_ADDRESS', $pageAddress . ((substr($pageAddress, -1) === '/' OR $pageAddress === '') ? 'index' : ''));
|
|
define('PAGE_LINEAGE', explode('/', PAGE_ADDRESS));
|
|
define('SERVICE', dirname(PAGE_ADDRESS));
|
|
define('PAGE', basename(PAGE_ADDRESS, '.php'));
|
|
|
|
function getPageInformations($pages, $pageElements) {
|
|
if (!isset($pages['index']) OR $pageElements[0] === 'index')
|
|
return [
|
|
'titles_lineage' => [$pages[$pageElements[0]]['title'] ?? false],
|
|
'page_metadata' => $pages[$pageElements[0]] ?? NULL,
|
|
'terminal' => $pageElements[0] !== 'index'
|
|
];
|
|
$result = $pages['index']['title'];
|
|
if (!isset($pageElements[1]))
|
|
unset($pages['index']);
|
|
else
|
|
$pages = $pages[array_shift($pageElements)] ?? false;
|
|
$results = getPageInformations($pages, $pageElements);
|
|
$results['titles_lineage'][] = $result;
|
|
return $results;
|
|
}
|
|
$pageInformations = getPageInformations(PAGES, PAGE_LINEAGE);
|
|
define('TITLES_LINEAGE', array_reverse($pageInformations['titles_lineage']));
|
|
define('PAGE_METADATA', $pageInformations['page_metadata']);
|
|
define('PAGE_TERMINAL', $pageInformations['terminal']);
|
|
|
|
if (!TITLES_LINEAGE[array_key_last(TITLES_LINEAGE)]) {
|
|
http_response_code(404);
|
|
exit('Page not found.');
|
|
}
|
|
|
|
const SESSION_COOKIE_NAME = 'niver-session-key';
|
|
function startSession() {
|
|
session_start([
|
|
'name' => SESSION_COOKIE_NAME,
|
|
'sid_length' => 64,
|
|
'sid_bits_per_character' => 6,
|
|
'cookie_secure' => true,
|
|
'cookie_httponly' => true,
|
|
'cookie_samesite' => 'Strict',
|
|
'cookie_path' => CONF['common']['prefix'] . '/',
|
|
'cookie_lifetime' => 432000, // = 60*60*24*5 = 5 days
|
|
'gc_maxlifetime' => 10800,
|
|
'use_strict_mode' => true,
|
|
'use_cookies' => true,
|
|
'use_only_cookies' => true,
|
|
]);
|
|
}
|
|
if (isset($_COOKIE[SESSION_COOKIE_NAME]))
|
|
startSession(); // Resume session
|
|
|
|
if (isset($_SESSION['id'])) {
|
|
if (!isset($_COOKIE['display-username-decryption-key']))
|
|
output(403, 'The display username decryption key has not been sent.');
|
|
$decryption_result = htmlspecialchars(sodium_crypto_aead_xchacha20poly1305_ietf_decrypt(
|
|
$_SESSION['display-username-cyphertext'],
|
|
NULL,
|
|
$_SESSION['display-username-nonce'],
|
|
base64_decode($_COOKIE['display-username-decryption-key'])
|
|
));
|
|
if ($decryption_result === false)
|
|
output(403, 'Unable to decrypt display username.');
|
|
define('DISPLAY_USERNAME', $decryption_result);
|
|
}
|
|
|
|
if (in_array(SERVICE, ['reg', 'ns', 'ht']) AND CONF[SERVICE]['enabled'] !== true)
|
|
output(403, 'Ce service est désactivé.');
|
|
|
|
// Protect against cross-site request forgery if a POST request is received
|
|
if ($_POST !== []) {
|
|
if (isset($_SERVER['HTTP_SEC_FETCH_SITE']) !== true)
|
|
output(403, 'The <code>Sec-Fetch-Site</code> HTTP header is required when submitting a POST request to prevent Cross-Site Request Forgery (<abbr>CSRF</abbr>).');
|
|
if ($_SERVER['HTTP_SEC_FETCH_SITE'] !== 'same-origin')
|
|
output(403, 'The <code>Sec-Fetch-Site</code> HTTP header must be <code>same-origin</code> when submitting a POST request to prevent Cross-Site Request Forgery (<abbr>CSRF</abbr>).');
|
|
}
|
|
|
|
if (isset($_SERVER['SERVER_NAME']) !== true)
|
|
output(500, 'Missing $_SERVER[\'SERVER_NAME\']');
|
|
if (in_array($_SERVER['SERVER_NAME'], CONF['common']['public_domains'], true) !== true)
|
|
output(500, 'The current server name is not allowed in configuration.');
|
|
define('SERVER_NAME', $_SERVER['SERVER_NAME']);
|
|
|
|
function displayFinalMessage($data) {
|
|
if (isset($data['final_message'])) {
|
|
echo $data['final_message'];
|
|
unset($data['final_message']);
|
|
}
|
|
}
|
|
|
|
if ($_POST !== []) {
|
|
if (PAGE_METADATA['require-login'] ?? true !== false) {
|
|
if (isset($_SESSION['id']) !== true)
|
|
output(403, _('You need to be logged in to do this.'));
|
|
if (isset(query('select', 'users', ['id' => $_SESSION['id']], 'id')[0]) !== true)
|
|
output(403, _('This account doesn\'t exist anymore. Log out to end this ghost session.'));
|
|
}
|
|
if (file_exists('pg-act/' . PAGE_ADDRESS . '.php'))
|
|
require 'pg-act/' . PAGE_ADDRESS . '.php';
|
|
}
|
|
|
|
function displayPage($data) {
|
|
|
|
require 'view.php';
|
|
exit();
|
|
}
|
|
displayPage($data ??= NULL);
|