mirror of
https://github.com/YunoHost-Apps/hubzilla_ynh.git
synced 2024-09-03 19:26:21 +02:00
64 lines
No EOL
1.5 KiB
PHP
64 lines
No EOL
1.5 KiB
PHP
<?php
|
|
|
|
function _well_known_init(&$a){
|
|
|
|
if(argc() > 1) {
|
|
|
|
$arr = array('server' => $_SERVER, 'request' => $_REQUEST);
|
|
call_hooks('well_known', $arr);
|
|
|
|
|
|
if(! check_siteallowed($_SERVER['REMOTE_ADDR'])) {
|
|
logger('well_known: site not allowed. ' . $_SERVER['REMOTE_ADDR']);
|
|
killme();
|
|
}
|
|
|
|
// from php.net re: REMOTE_HOST:
|
|
// Note: Your web server must be configured to create this variable. For example in Apache
|
|
// you'll need HostnameLookups On inside httpd.conf for it to exist. See also gethostbyaddr().
|
|
|
|
if(get_config('system','siteallowed_remote_host') && (! check_siteallowed($_SERVER['REMOTE_HOST']))) {
|
|
logger('well_known: site not allowed. ' . $_SERVER['REMOTE_HOST']);
|
|
killme();
|
|
}
|
|
|
|
|
|
switch(argv(1)) {
|
|
case 'zot-info':
|
|
$a->argc -= 1;
|
|
array_shift($a->argv);
|
|
$a->argv[0] = 'zfinger';
|
|
require_once('mod/zfinger.php');
|
|
zfinger_init($a);
|
|
break;
|
|
|
|
case 'webfinger':
|
|
$a->argc -= 1;
|
|
array_shift($a->argv);
|
|
$a->argv[0] = 'wfinger';
|
|
require_once('mod/wfinger.php');
|
|
wfinger_init($a);
|
|
break;
|
|
|
|
case 'host-meta':
|
|
$a->argc -= 1;
|
|
array_shift($a->argv);
|
|
$a->argv[0] = 'hostxrd';
|
|
require_once('mod/hostxrd.php');
|
|
hostxrd_init($a);
|
|
break;
|
|
|
|
default:
|
|
if(file_exists($a->cmd)) {
|
|
echo file_get_contents($a->cmd);
|
|
killme();
|
|
}
|
|
elseif(file_exists($a->cmd . '.php'))
|
|
require_once($a->cmd . '.php');
|
|
break;
|
|
|
|
}
|
|
}
|
|
|
|
http_status_exit(404);
|
|
} |