2015-08-23 22:38:18 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
function _well_known_init(&$a){
|
|
|
|
|
|
|
|
if(argc() > 1) {
|
|
|
|
|
|
|
|
$arr = array('server' => $_SERVER, 'request' => $_REQUEST);
|
|
|
|
call_hooks('well_known', $arr);
|
|
|
|
|
2016-02-28 12:11:12 +01:00
|
|
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-08-23 22:38:18 +02:00
|
|
|
switch(argv(1)) {
|
|
|
|
case 'zot-info':
|
2016-04-17 16:29:18 +02:00
|
|
|
App::$argc -= 1;
|
|
|
|
array_shift(App::$argv);
|
|
|
|
App::$argv[0] = 'zfinger';
|
2015-08-23 22:38:18 +02:00
|
|
|
require_once('mod/zfinger.php');
|
|
|
|
zfinger_init($a);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'webfinger':
|
2016-04-17 16:29:18 +02:00
|
|
|
App::$argc -= 1;
|
|
|
|
array_shift(App::$argv);
|
|
|
|
App::$argv[0] = 'wfinger';
|
2015-08-23 22:38:18 +02:00
|
|
|
require_once('mod/wfinger.php');
|
|
|
|
wfinger_init($a);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'host-meta':
|
2016-04-17 16:29:18 +02:00
|
|
|
App::$argc -= 1;
|
|
|
|
array_shift(App::$argv);
|
|
|
|
App::$argv[0] = 'hostxrd';
|
2015-08-23 22:38:18 +02:00
|
|
|
require_once('mod/hostxrd.php');
|
|
|
|
hostxrd_init($a);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2016-04-17 16:29:18 +02:00
|
|
|
if(file_exists(App::$cmd)) {
|
|
|
|
echo file_get_contents(App::$cmd);
|
2016-02-28 12:11:12 +01:00
|
|
|
killme();
|
|
|
|
}
|
2016-04-17 16:29:18 +02:00
|
|
|
elseif(file_exists(App::$cmd . '.php'))
|
|
|
|
require_once(App::$cmd . '.php');
|
2015-08-23 22:38:18 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
http_status_exit(404);
|
|
|
|
}
|