Added checklist
This commit is contained in:
parent
f6c950823f
commit
468734a26e
|
@ -2,6 +2,36 @@
|
||||||
/**
|
/**
|
||||||
* @file include/diaspora.php
|
* @file include/diaspora.php
|
||||||
* @brief The implementation of the diaspora protocol
|
* @brief The implementation of the diaspora protocol
|
||||||
|
*
|
||||||
|
* Checklist:
|
||||||
|
*
|
||||||
|
* Checked:
|
||||||
|
* - send status
|
||||||
|
* - send comment
|
||||||
|
* - send like
|
||||||
|
* - send mail
|
||||||
|
* - receive status
|
||||||
|
* - receive reshare
|
||||||
|
* - receive comment
|
||||||
|
* - receive like
|
||||||
|
* - receive connect request
|
||||||
|
* - receive profile data
|
||||||
|
* - receive mail
|
||||||
|
* - relay comment
|
||||||
|
* - relay like
|
||||||
|
* -
|
||||||
|
* -
|
||||||
|
*
|
||||||
|
* Unchecked:
|
||||||
|
* - receive account deletion
|
||||||
|
* - send share
|
||||||
|
* - send unshare
|
||||||
|
* - send status retraction
|
||||||
|
* - send comment retraction
|
||||||
|
* - send like retraction
|
||||||
|
* - relay comment retraction
|
||||||
|
* - relay like retraction
|
||||||
|
* -
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require_once("include/items.php");
|
require_once("include/items.php");
|
||||||
|
@ -2374,6 +2404,7 @@ class diaspora {
|
||||||
$msg = json_decode($signature['signed_text'], true);
|
$msg = json_decode($signature['signed_text'], true);
|
||||||
|
|
||||||
$message = array();
|
$message = array();
|
||||||
|
if (is_array($msg)) {
|
||||||
foreach ($msg AS $field => $data) {
|
foreach ($msg AS $field => $data) {
|
||||||
if (!$item["deleted"]) {
|
if (!$item["deleted"]) {
|
||||||
if ($field == "author")
|
if ($field == "author")
|
||||||
|
@ -2384,6 +2415,8 @@ class diaspora {
|
||||||
|
|
||||||
$message[$field] = $data;
|
$message[$field] = $data;
|
||||||
}
|
}
|
||||||
|
} else
|
||||||
|
logger("Signature text for item ".$item["guid"]." (".$item["id"].") couldn't be extracted: ".$signature['signed_text'], LOGGER_DEBUG);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($item["deleted"]) {
|
if ($item["deleted"]) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user