2010-07-23 16:33:34 -07:00
|
|
|
<?php
|
2011-02-21 20:19:33 -08:00
|
|
|
|
2011-09-27 06:50:18 -07:00
|
|
|
require_once('include/crypto.php');
|
|
|
|
|
2011-08-04 22:37:45 -07:00
|
|
|
function hostxrd_init(&$a) {
|
2011-06-25 19:40:37 -07:00
|
|
|
header('Access-Control-Allow-Origin: *');
|
2010-10-12 04:39:32 -07:00
|
|
|
header("Content-type: text/xml");
|
2011-09-28 03:45:48 -07:00
|
|
|
$pubkey = get_config('system','site_pubkey');
|
|
|
|
|
|
|
|
if(! $pubkey) {
|
2012-05-20 18:30:02 -07:00
|
|
|
$res = new_keypair(1024);
|
2011-09-28 03:45:48 -07:00
|
|
|
|
2012-05-20 18:30:02 -07:00
|
|
|
set_config('system','site_prvkey', $res['prvkey']);
|
|
|
|
set_config('system','site_pubkey', $res['pubkey']);
|
2011-09-28 03:45:48 -07:00
|
|
|
}
|
|
|
|
|
2012-12-22 12:57:29 -07:00
|
|
|
//$tpl = file_get_contents('view/xrd_host.tpl');
|
|
|
|
/*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);*/
|
|
|
|
$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 16:33:34 -07:00
|
|
|
session_write_close();
|
|
|
|
exit();
|
2011-02-21 20:19:33 -08:00
|
|
|
|
2012-12-22 12:57:29 -07:00
|
|
|
}
|