]> git.mxchange.org Git - friendica.git/commitdiff
The key_id was added
authorMichael Vogel <icarus@dabo.de>
Wed, 29 Jun 2016 22:22:42 +0000 (00:22 +0200)
committerMichael Vogel <icarus@dabo.de>
Wed, 29 Jun 2016 22:22:42 +0000 (00:22 +0200)
mod/fetch.php

index 457fc86a6d071e5504a2ed7c7e02c762d37c9937..8888649abc94b18b9dcb99cc5f183c8efb73652f 100644 (file)
@@ -2,7 +2,9 @@
 /*
 This file is part of the Diaspora protocol. It is used for fetching single public posts.
 */
+require_once("include/crypto.php");
 require_once("include/diaspora.php");
+require_once("include/xml.php");
 
 function fetch_init($a){
 
@@ -51,7 +53,7 @@ function fetch_init($a){
        $data = array("XML" => array("post" => array($nodename => $post)));
        $xml = xml::from_array($data, $xmlobj);
 
-       $r = q("SELECT `prvkey` FROM `user` WHERE `uid` = %d", intval($item[0]["uid"]));
+       $r = q("SELECT `guid`, `prvkey` FROM `user` WHERE `uid` = %d", intval($item[0]["uid"]));
        if (!$r) {
                header($_SERVER["SERVER_PROTOCOL"].' 404 '.t('Not Found'));
                killme();
@@ -59,11 +61,10 @@ function fetch_init($a){
 
        $user = $r[0];
 
-       $key_id = "";
-
        $b64url_data = base64url_encode($xml);
        $data = str_replace(array("\n", "\r", " ", "\t"), array("", "", "", ""), $b64url_data);
 
+       $key_id = base64url_encode($user["guid"]);
        $type = "application/xml";
        $encoding = "base64url";
        $alg = "RSA-SHA256";