]> git.mxchange.org Git - friendica.git/blobdiff - mod/hostxrd.php
Improve Console/Config display for array values
[friendica.git] / mod / hostxrd.php
index c9f870a08c1d3235c4c3431cee64d33cfb7f203f..16f132fe092ff2a871fcc3a0e15fe67cffbe84c6 100644 (file)
@@ -1,32 +1,33 @@
 <?php
-
+/**
+ * @file mod/hostxrd.php
+ */
 use Friendica\App;
+use Friendica\Core\Config;
+use Friendica\Core\System;
+use Friendica\Protocol\Salmon;
+use Friendica\Util\Crypto;
 
-require_once('include/crypto.php');
-
-function hostxrd_init(App $a) {
+function hostxrd_init(App $a)
+{
        header('Access-Control-Allow-Origin: *');
        header("Content-type: text/xml");
-       $pubkey = get_config('system','site_pubkey');
+       $pubkey = Config::get('system', 'site_pubkey');
 
-       if(! $pubkey) {
-               $res = new_keypair(1024);
+       if (! $pubkey) {
+               $res = Crypto::newKeypair(1024);
 
-               set_config('system','site_prvkey', $res['prvkey']);
-               set_config('system','site_pubkey', $res['pubkey']);
+               Config::set('system','site_prvkey', $res['prvkey']);
+               Config::set('system','site_pubkey', $res['pubkey']);
        }
 
-       //$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(
+       echo replace_macros($tpl, [
                '$zhost' => $a->get_hostname(),
-               '$zroot' => z_root(),
-               '$domain' => z_path(),
-               '$zot_post' => z_root() . '/post',
-               '$bigkey' => salmon_key(get_config('system','site_pubkey')),
-       ));
-       exit();
+               '$zroot' => System::baseUrl(),
+               '$domain' => System::baseUrl(),
+               '$bigkey' => Salmon::salmonKey(Config::get('system', 'site_pubkey'))]
+       );
 
+       exit();
 }