]> git.mxchange.org Git - friendica.git/blobdiff - mod/hostxrd.php
Merge pull request #6356 from MrPetovan/task/6355-add-password-rules
[friendica.git] / mod / hostxrd.php
index f31497557d7bd98503ec166c3def6bbf2216ff89..93a9d833c9626426826b4b983789f2f0fae9845b 100644 (file)
@@ -1,34 +1,34 @@
 <?php
-
+/**
+ * @file mod/hostxrd.php
+ */
 use Friendica\App;
 use Friendica\Core\Config;
+use Friendica\Core\Renderer;
 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 = Config::get('system','site_pubkey');
+       $pubkey = Config::get('system', 'site_pubkey');
 
-       if(! $pubkey) {
-               $res = new_keypair(1024);
+       if (! $pubkey) {
+               $res = Crypto::newKeypair(1024);
 
                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(),System::baseUrl(),System::baseUrl(),System::baseUrl() . '/post', salmon_key(Config::get('system','site_pubkey'))),$tpl);*/
-       $tpl = get_markup_template('xrd_host.tpl');
-       echo replace_macros($tpl, array(
-               '$zhost' => $a->get_hostname(),
+       $tpl = Renderer::getMarkupTemplate('xrd_host.tpl');
+       echo Renderer::replaceMacros($tpl, [
+               '$zhost' => $a->getHostName(),
                '$zroot' => System::baseUrl(),
                '$domain' => System::baseUrl(),
-               '$zot_post' => System::baseUrl() . '/post',
-               '$bigkey' => salmon_key(Config::get('system','site_pubkey')),
-       ));
-       exit();
+               '$bigkey' => Salmon::salmonKey(Config::get('system', 'site_pubkey'))]
+       );
 
+       exit();
 }