streams/mod/hostxrd.php

29 lines
660 B
PHP
Raw Normal View History

2010-07-23 23:33:34 +00:00
<?php
require_once('include/crypto.php');
function hostxrd_init(&$a) {
2011-06-26 02:40:37 +00:00
header('Access-Control-Allow-Origin: *');
2010-10-12 11:39:32 +00:00
header("Content-type: text/xml");
2011-09-28 10:45:48 +00:00
$pubkey = get_config('system','site_pubkey');
if(! $pubkey) {
2012-05-21 01:30:02 +00:00
$res = new_keypair(1024);
2011-09-28 10:45:48 +00:00
2012-05-21 01:30:02 +00:00
set_config('system','site_prvkey', $res['prvkey']);
set_config('system','site_pubkey', $res['pubkey']);
2011-09-28 10:45:48 +00:00
}
2013-01-06 21:42:51 +00:00
$tpl = get_markup_template('xrd_host.tpl');
echo replace_macros($tpl, array(
'$zhost' => $a->get_hostname(),
'$zroot' => z_root(),
'$domain' => z_path(),
'$zot_post' => z_root() . '/post',
'$bigkey' => salmon_key(get_config('system','site_pubkey')),
));
2010-07-23 23:33:34 +00:00
session_write_close();
exit();
2013-01-06 21:42:51 +00:00
}