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