friendica/mod/hostxrd.php

35 lines
1022 B
PHP
Raw Normal View History

2010-07-24 01:33:34 +02:00
<?php
use Friendica\App;
use Friendica\Core\Config;
use Friendica\Core\System;
require_once('include/crypto.php');
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");
$pubkey = Config::get('system','site_pubkey');
2011-09-28 12:45:48 +02:00
if(! $pubkey) {
2012-05-21 03:30:02 +02:00
$res = new_keypair(1024);
2011-09-28 12:45:48 +02: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 = file_get_contents('view/xrd_host.tpl');
/*echo str_replace(array(
'$zhost','$zroot','$domain','$zot_post','$bigkey'),array($a->get_hostname(),System::baseUrl(),System::baseUrl(),System::baseUrl() . '/post', salmon_key(Config::get('system','site_pubkey'))),$tpl);*/
2012-12-22 20:57:29 +01:00
$tpl = get_markup_template('xrd_host.tpl');
echo replace_macros($tpl, array(
'$zhost' => $a->get_hostname(),
'$zroot' => System::baseUrl(),
'$domain' => System::baseUrl(),
'$zot_post' => System::baseUrl() . '/post',
'$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();
2012-12-22 20:57:29 +01:00
}