2010-07-24 01:33:34 +02:00
|
|
|
<?php
|
2011-02-22 05:19:33 +01:00
|
|
|
|
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-04-30 06:07:00 +02:00
|
|
|
|
2011-09-27 15:50:18 +02:00
|
|
|
require_once('include/crypto.php');
|
|
|
|
|
2017-01-09 13:12:54 +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-11-07 03:22:52 +01:00
|
|
|
$pubkey = Config::get('system','site_pubkey');
|
2011-09-28 12:45:48 +02:00
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if(! $pubkey) {
|
2012-05-21 03:30:02 +02:00
|
|
|
$res = new_keypair(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');
|
|
|
|
echo replace_macros($tpl, array(
|
|
|
|
'$zhost' => $a->get_hostname(),
|
2017-08-26 09:32:10 +02:00
|
|
|
'$zroot' => System::baseUrl(),
|
|
|
|
'$domain' => System::baseUrl(),
|
2017-11-07 03:22:52 +01:00
|
|
|
'$bigkey' => salmon_key(Config::get('system','site_pubkey')),
|
2012-12-22 20:57:29 +01:00
|
|
|
));
|
2010-07-24 01:33:34 +02:00
|
|
|
exit();
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2012-12-22 20:57:29 +01:00
|
|
|
}
|