2010-07-23 19:33:34 -04:00
|
|
|
<?php
|
2017-12-30 11:51:49 -05:00
|
|
|
/**
|
|
|
|
* @file mod/hostxrd.php
|
|
|
|
*/
|
2017-04-30 00:07:00 -04:00
|
|
|
use Friendica\App;
|
2017-11-06 21:22:52 -05:00
|
|
|
use Friendica\Core\Config;
|
2017-08-26 03:32:10 -04:00
|
|
|
use Friendica\Core\System;
|
2017-12-31 08:04:36 -05:00
|
|
|
use Friendica\Protocol\Salmon;
|
2017-12-30 11:51:49 -05:00
|
|
|
use Friendica\Util\Crypto;
|
2017-04-30 00:07:00 -04:00
|
|
|
|
2017-12-30 11:51:49 -05:00
|
|
|
function hostxrd_init(App $a)
|
|
|
|
{
|
2011-06-25 22:40:37 -04:00
|
|
|
header('Access-Control-Allow-Origin: *');
|
2010-10-12 07:39:32 -04:00
|
|
|
header("Content-type: text/xml");
|
2017-12-30 11:51:49 -05:00
|
|
|
$pubkey = Config::get('system', 'site_pubkey');
|
2011-09-28 06:45:48 -04:00
|
|
|
|
2017-12-30 11:51:49 -05:00
|
|
|
if (! $pubkey) {
|
|
|
|
$res = Crypto::newKeypair(1024);
|
2011-09-28 06:45:48 -04:00
|
|
|
|
2017-11-06 21:22:52 -05:00
|
|
|
Config::set('system','site_prvkey', $res['prvkey']);
|
|
|
|
Config::set('system','site_pubkey', $res['pubkey']);
|
2011-09-28 06:45:48 -04:00
|
|
|
}
|
|
|
|
|
2012-12-22 14:57:29 -05:00
|
|
|
$tpl = get_markup_template('xrd_host.tpl');
|
2018-01-15 08:05:12 -05:00
|
|
|
echo replace_macros($tpl, [
|
2018-10-09 13:58:58 -04:00
|
|
|
'$zhost' => $a->getHostName(),
|
2017-08-26 03:32:10 -04:00
|
|
|
'$zroot' => System::baseUrl(),
|
|
|
|
'$domain' => System::baseUrl(),
|
2018-01-15 08:05:12 -05:00
|
|
|
'$bigkey' => Salmon::salmonKey(Config::get('system', 'site_pubkey'))]
|
2017-12-30 11:51:49 -05:00
|
|
|
);
|
2016-02-07 09:11:34 -05:00
|
|
|
|
2017-12-30 11:51:49 -05:00
|
|
|
exit();
|
2012-12-22 14:57:29 -05:00
|
|
|
}
|