friendica/mod/hostxrd.php

23 lines
636 B
PHP
Raw Normal View History

2010-07-23 19:33:34 -04:00
<?php
require_once('include/crypto.php');
function hostxrd_init(&$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");
2011-09-28 06:45:48 -04:00
$pubkey = get_config('system','site_pubkey');
if(! $pubkey) {
2012-05-20 21:30:02 -04:00
$res = new_keypair(1024);
2011-09-28 06:45:48 -04:00
2012-05-20 21:30:02 -04:00
set_config('system','site_prvkey', $res['prvkey']);
set_config('system','site_pubkey', $res['pubkey']);
2011-09-28 06:45:48 -04:00
}
$tpl = file_get_contents('view/xrd_host.tpl');
2011-09-19 05:13:59 -04:00
echo str_replace(array(
'$zhost','$zroot','$domain','$zot_post','$bigkey'),array($a->get_hostname(),z_root(),z_path(),z_root() . '/post', salmon_key(get_config('system','site_pubkey'))),$tpl);
2010-07-23 19:33:34 -04:00
session_write_close();
exit();
}