1
0
Fork 0

src Standards

This basically completes coding standards changes for the entire src directory, with the exception of App.php
This commit is contained in:
Adam Magness 2017-11-23 14:01:58 -05:00
commit 609a4de5d0
15 changed files with 370 additions and 338 deletions

View file

@ -4291,7 +4291,7 @@ function api_share_as_retweet(&$item)
{ {
$body = trim($item["body"]); $body = trim($item["body"]);
if (Diaspora::is_reshare($body, false)===false) { if (Diaspora::isReshare($body, false)===false) {
return false; return false;
} }
@ -4299,7 +4299,7 @@ function api_share_as_retweet(&$item)
$attributes = preg_replace("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism", "$1", $body); $attributes = preg_replace("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism", "$1", $body);
/* /*
* Skip if there is no shared message in there * Skip if there is no shared message in there
* we already checked this in diaspora::is_reshare() * we already checked this in diaspora::isReshare()
* but better one more than one less... * but better one more than one less...
*/ */
if ($body == $attributes) { if ($body == $attributes) {

View file

@ -272,7 +272,7 @@ function new_contact($uid, $url, $interactive = false, $network = '') {
} }
if ($contact['network'] == NETWORK_DIASPORA) { if ($contact['network'] == NETWORK_DIASPORA) {
$ret = Diaspora::send_share($a->user,$contact); $ret = Diaspora::sendShare($a->user, $contact);
logger('share returns: '.$ret); logger('share returns: '.$ret);
} }
} }

View file

@ -247,7 +247,7 @@ EOT;
} }
// Save the author information for the like in case we need to relay to Diaspora // Save the author information for the like in case we need to relay to Diaspora
Diaspora::store_like_signature($item_contact, $new_item_id); Diaspora::storeLikeSignature($item_contact, $new_item_id);
$new_item['id'] = $new_item_id; $new_item['id'] = $new_item_id;

View file

@ -440,7 +440,7 @@ function dfrn_confirm_post(App $a, $handsfree = null) {
if ((isset($new_relation) && $new_relation == CONTACT_IS_FRIEND)) { if ((isset($new_relation) && $new_relation == CONTACT_IS_FRIEND)) {
if (($contact) && ($contact['network'] === NETWORK_DIASPORA)) { if (($contact) && ($contact['network'] === NETWORK_DIASPORA)) {
$ret = Diaspora::send_share($user[0],$r[0]); $ret = Diaspora::sendShare($user[0],$r[0]);
logger('share returns: ' . $ret); logger('share returns: ' . $ret);
} }

View file

@ -175,7 +175,7 @@ function dfrn_notify_post(App $a) {
*we got a key. old code send only the key, without RINO version. *we got a key. old code send only the key, without RINO version.
* we assume RINO 1 if key and no RINO version * we assume RINO 1 if key and no RINO version
*/ */
$data = DFRN::aes_decrypt(hex2bin($data), $final_key); $data = DFRN::aesDecrypt(hex2bin($data), $final_key);
break; break;
case 2: case 2:
try { try {

View file

@ -68,12 +68,12 @@ function fetch_init(App $a)
} }
$user = $r[0]; $user = $r[0];
$status = Diaspora::build_status($item[0], $user); $status = Diaspora::buildStatus($item[0], $user);
$xml = Diaspora::build_post_xml($status["type"], $status["message"]); $xml = Diaspora::buildPostXml($status["type"], $status["message"]);
// Send the envelope // Send the envelope
header("Content-Type: application/magic-envelope+xml; charset=utf-8"); header("Content-Type: application/magic-envelope+xml; charset=utf-8");
echo Diaspora::build_magic_envelope($xml, $user); echo Diaspora::buildMagicEnvelope($xml, $user);
killme(); killme();
} }

View file

@ -985,7 +985,7 @@ function item_post(App $a) {
// Store the comment signature information in case we need to relay to Diaspora // Store the comment signature information in case we need to relay to Diaspora
Diaspora::store_comment_signature($datarray, $author, ($self ? $user['prvkey'] : false), $post_id); Diaspora::storeCommentSignature($datarray, $author, ($self ? $user['prvkey'] : false), $post_id);
} else { } else {
$parent = $post_id; $parent = $post_id;

View file

@ -58,8 +58,8 @@ function p_init($a){
} }
$user = $r[0]; $user = $r[0];
$status = Diaspora::build_status($item[0], $user); $status = Diaspora::buildStatus($item[0], $user);
$xml = Diaspora::build_post_xml($status["type"], $status["message"]); $xml = Diaspora::buildPostXml($status["type"], $status["message"]);
header("Content-Type: application/xml; charset=utf-8"); header("Content-Type: application/xml; charset=utf-8");
echo $xml; echo $xml;

View file

@ -49,14 +49,14 @@ function receive_post(App $a) {
} }
logger('mod-diaspora: message is in the new format', LOGGER_DEBUG); logger('mod-diaspora: message is in the new format', LOGGER_DEBUG);
$msg = Diaspora::decode_raw($importer, $postdata); $msg = Diaspora::decodeRaw($importer, $postdata);
} else { } else {
logger('mod-diaspora: decode message in the old format', LOGGER_DEBUG); logger('mod-diaspora: decode message in the old format', LOGGER_DEBUG);
$msg = Diaspora::decode($importer, $xml); $msg = Diaspora::decode($importer, $xml);
if ($public && !$msg) { if ($public && !$msg) {
logger('mod-diaspora: decode message in the new format', LOGGER_DEBUG); logger('mod-diaspora: decode message in the new format', LOGGER_DEBUG);
$msg = Diaspora::decode_raw($importer, $xml); $msg = Diaspora::decodeRaw($importer, $xml);
} }
} }
@ -72,7 +72,7 @@ function receive_post(App $a) {
$ret = true; $ret = true;
if ($public) { if ($public) {
Diaspora::dispatch_public($msg); Diaspora::dispatchPublic($msg);
} else { } else {
$ret = Diaspora::dispatch($importer, $msg); $ret = Diaspora::dispatch($importer, $msg);
} }

View file

@ -60,7 +60,7 @@ class DFRN
$doc = new DOMDocument('1.0', 'utf-8'); $doc = new DOMDocument('1.0', 'utf-8');
$doc->formatOutput = true; $doc->formatOutput = true;
$root = self::add_header($doc, $owner, "dfrn:owner", "", false); $root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
if (! count($items)) { if (! count($items)) {
return trim($doc->saveXML()); return trim($doc->saveXML());
@ -258,7 +258,7 @@ class DFRN
$author = "author"; $author = "author";
} }
$root = self::add_header($doc, $owner, $author, $alternatelink, true); $root = self::addHeader($doc, $owner, $author, $alternatelink, true);
/// @TODO This hook can't work anymore /// @TODO This hook can't work anymore
// call_hooks('atom_feed', $atom); // call_hooks('atom_feed', $atom);
@ -370,7 +370,7 @@ class DFRN
$root->setAttribute("xmlns:ostatus", NAMESPACE_OSTATUS); $root->setAttribute("xmlns:ostatus", NAMESPACE_OSTATUS);
$root->setAttribute("xmlns:statusnet", NAMESPACE_STATUSNET); $root->setAttribute("xmlns:statusnet", NAMESPACE_STATUSNET);
//$root = self::add_header($doc, $owner, "dfrn:owner", "", false); //$root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
foreach ($items as $item) { foreach ($items as $item) {
$entry = self::entry($doc, $type, $item, $owner, true, 0); $entry = self::entry($doc, $type, $item, $owner, true, 0);
@ -398,7 +398,7 @@ class DFRN
$doc = new DOMDocument('1.0', 'utf-8'); $doc = new DOMDocument('1.0', 'utf-8');
$doc->formatOutput = true; $doc->formatOutput = true;
$root = self::add_header($doc, $owner, "dfrn:owner", "", false); $root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
$mail = $doc->createElement("dfrn:mail"); $mail = $doc->createElement("dfrn:mail");
$sender = $doc->createElement("dfrn:sender"); $sender = $doc->createElement("dfrn:sender");
@ -434,7 +434,7 @@ class DFRN
$doc = new DOMDocument('1.0', 'utf-8'); $doc = new DOMDocument('1.0', 'utf-8');
$doc->formatOutput = true; $doc->formatOutput = true;
$root = self::add_header($doc, $owner, "dfrn:owner", "", false); $root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
$suggest = $doc->createElement("dfrn:suggest"); $suggest = $doc->createElement("dfrn:suggest");
@ -486,7 +486,7 @@ class DFRN
$doc = new DOMDocument('1.0', 'utf-8'); $doc = new DOMDocument('1.0', 'utf-8');
$doc->formatOutput = true; $doc->formatOutput = true;
$root = self::add_header($doc, $owner, "dfrn:owner", "", false); $root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
$relocate = $doc->createElement("dfrn:relocate"); $relocate = $doc->createElement("dfrn:relocate");
@ -520,7 +520,7 @@ class DFRN
* @return object XML root object * @return object XML root object
* @todo Add type-hints * @todo Add type-hints
*/ */
private static function add_header($doc, $owner, $authorelement, $alternatelink = "", $public = false) private static function addHeader($doc, $owner, $authorelement, $alternatelink = "", $public = false)
{ {
if ($alternatelink == "") { if ($alternatelink == "") {
@ -579,7 +579,7 @@ class DFRN
XML::addElement($doc, $root, "updated", datetime_convert("UTC", "UTC", "now", ATOM_TIME)); XML::addElement($doc, $root, "updated", datetime_convert("UTC", "UTC", "now", ATOM_TIME));
$author = self::add_author($doc, $owner, $authorelement, $public); $author = self::addAuthor($doc, $owner, $authorelement, $public);
$root->appendChild($author); $root->appendChild($author);
return $root; return $root;
@ -591,11 +591,12 @@ class DFRN
* @param object $doc XML document * @param object $doc XML document
* @param array $owner Owner record * @param array $owner Owner record
* @param string $authorelement Element name for the author * @param string $authorelement Element name for the author
* @param boolean $public boolean
* *
* @return object XML author object * @return object XML author object
* @todo Add type-hints * @todo Add type-hints
*/ */
private static function add_author($doc, $owner, $authorelement, $public) private static function addAuthor($doc, $owner, $authorelement, $public)
{ {
// Is the profile hidden or shouldn't be published in the net? Then add the "hide" element // Is the profile hidden or shouldn't be published in the net? Then add the "hide" element
$r = q( $r = q(
@ -739,7 +740,7 @@ class DFRN
* @return object XML author object * @return object XML author object
* @todo Add type-hints * @todo Add type-hints
*/ */
private static function add_entry_author($doc, $element, $contact_url, $item) private static function addEntryAuthor($doc, $element, $contact_url, $item)
{ {
$contact = Contact::getDetailsByURL($contact_url, $item["uid"]); $contact = Contact::getDetailsByURL($contact_url, $item["uid"]);
@ -780,7 +781,7 @@ class DFRN
* @return object XML activity object * @return object XML activity object
* @todo Add type-hints * @todo Add type-hints
*/ */
private static function create_activity($doc, $element, $activity) private static function createActivity($doc, $element, $activity)
{ {
if ($activity) { if ($activity) {
$entry = $doc->createElement($element); $entry = $doc->createElement($element);
@ -810,7 +811,7 @@ class DFRN
// XML does need a single element as root element so we add a dummy element here // XML does need a single element as root element so we add a dummy element here
$data = parse_xml_string("<dummy>" . $r->link . "</dummy>", false); $data = parse_xml_string("<dummy>" . $r->link . "</dummy>", false);
if (is_object($data)) { if (is_object($data)) {
foreach ($data->link AS $link) { foreach ($data->link as $link) {
$attributes = array(); $attributes = array();
foreach ($link->attributes() as $parameter => $value) { foreach ($link->attributes() as $parameter => $value) {
$attributes[$parameter] = $value; $attributes[$parameter] = $value;
@ -843,7 +844,7 @@ class DFRN
* @return object XML attachment object * @return object XML attachment object
* @todo Add type-hints * @todo Add type-hints
*/ */
private static function get_attachment($doc, $root, $item) private static function getAttachment($doc, $root, $item)
{ {
$arr = explode('[/attach],', $item['attach']); $arr = explode('[/attach],', $item['attach']);
if (count($arr)) { if (count($arr)) {
@ -932,10 +933,10 @@ class DFRN
$htmlbody = bbcode($htmlbody, false, false, 7); $htmlbody = bbcode($htmlbody, false, false, 7);
} }
$author = self::add_entry_author($doc, "author", $item["author-link"], $item); $author = self::addEntryAuthor($doc, "author", $item["author-link"], $item);
$entry->appendChild($author); $entry->appendChild($author);
$dfrnowner = self::add_entry_author($doc, "dfrn:owner", $item["owner-link"], $item); $dfrnowner = self::addEntryAuthor($doc, "dfrn:owner", $item["owner-link"], $item);
$entry->appendChild($dfrnowner); $entry->appendChild($dfrnowner);
if (($item['parent'] != $item['id']) || ($item['parent-uri'] !== $item['uri']) || (($item['thr-parent'] !== '') && ($item['thr-parent'] !== $item['uri']))) { if (($item['parent'] != $item['id']) || ($item['parent-uri'] !== $item['uri']) || (($item['thr-parent'] !== '') && ($item['thr-parent'] !== $item['uri']))) {
@ -1041,12 +1042,12 @@ class DFRN
XML::addElement($doc, $entry, "activity:object-type", ACTIVITY_OBJ_COMMENT); XML::addElement($doc, $entry, "activity:object-type", ACTIVITY_OBJ_COMMENT);
} }
$actobj = self::create_activity($doc, "activity:object", $item['object']); $actobj = self::createActivity($doc, "activity:object", $item['object']);
if ($actobj) { if ($actobj) {
$entry->appendChild($actobj); $entry->appendChild($actobj);
} }
$actarg = self::create_activity($doc, "activity:target", $item['target']); $actarg = self::createActivity($doc, "activity:target", $item['target']);
if ($actarg) { if ($actarg) {
$entry->appendChild($actarg); $entry->appendChild($actarg);
} }
@ -1099,7 +1100,7 @@ class DFRN
} }
} }
self::get_attachment($doc, $entry, $item); self::getAttachment($doc, $entry, $item);
return $entry; return $entry;
} }
@ -1112,7 +1113,7 @@ class DFRN
* *
* @return string encrypted data * @return string encrypted data
*/ */
private static function aes_encrypt($data, $key) private static function aesEncrypt($data, $key)
{ {
return openssl_encrypt($data, 'aes-128-ecb', $key, OPENSSL_RAW_DATA); return openssl_encrypt($data, 'aes-128-ecb', $key, OPENSSL_RAW_DATA);
} }
@ -1125,7 +1126,7 @@ class DFRN
* *
* @return string decrypted data * @return string decrypted data
*/ */
public static function aes_decrypt($encrypted, $key) public static function aesDecrypt($encrypted, $key)
{ {
return openssl_decrypt($encrypted, 'aes-128-ecb', $key, OPENSSL_RAW_DATA); return openssl_decrypt($encrypted, 'aes-128-ecb', $key, OPENSSL_RAW_DATA);
} }
@ -1291,7 +1292,7 @@ class DFRN
case 1: case 1:
// Deprecated rino version! // Deprecated rino version!
$key = openssl_random_pseudo_bytes(16); $key = openssl_random_pseudo_bytes(16);
$data = self::aes_encrypt($postvars['data'], $key); $data = self::aesEncrypt($postvars['data'], $key);
break; break;
case 2: case 2:
// RINO 2 based on php-encryption // RINO 2 based on php-encryption
@ -1392,9 +1393,10 @@ class DFRN
* *
* @param array $contact Contact record * @param array $contact Contact record
* @param string $birthday Birthday of the contact * @param string $birthday Birthday of the contact
* @return void
* @todo Add array type-hint for $contact * @todo Add array type-hint for $contact
*/ */
private static function birthday_event($contact, $birthday) private static function birthdayEvent($contact, $birthday)
{ {
// Check for duplicates // Check for duplicates
$r = q( $r = q(
@ -1437,6 +1439,7 @@ class DFRN
* @param array $importer Record of the importer user mixed with contact of the content * @param array $importer Record of the importer user mixed with contact of the content
* @param string $element Element name from which the data is fetched * @param string $element Element name from which the data is fetched
* @param bool $onlyfetch Should the data only be fetched or should it update the contact record as well * @param bool $onlyfetch Should the data only be fetched or should it update the contact record as well
* @param string $xml optional, default empty
* *
* @return Returns an array with relevant data of the author * @return Returns an array with relevant data of the author
* @todo Find good type-hints for all parameter * @todo Find good type-hints for all parameter
@ -1474,10 +1477,10 @@ class DFRN
$avatarlist = array(); $avatarlist = array();
/// @todo check if "avatar" or "photo" would be the best field in the specification /// @todo check if "avatar" or "photo" would be the best field in the specification
$avatars = $xpath->query($element."/atom:link[@rel='avatar']", $context); $avatars = $xpath->query($element."/atom:link[@rel='avatar']", $context);
foreach ($avatars AS $avatar) { foreach ($avatars as $avatar) {
$href = ""; $href = "";
$width = 0; $width = 0;
foreach ($avatar->attributes AS $attributes) { foreach ($avatar->attributes as $attributes) {
/// @TODO Rewrite these similar if () to one switch /// @TODO Rewrite these similar if () to one switch
if ($attributes->name == "href") { if ($attributes->name == "href") {
$href = $attributes->textContent; $href = $attributes->textContent;
@ -1505,14 +1508,14 @@ class DFRN
// When was the last change to name or uri? // When was the last change to name or uri?
$name_element = $xpath->query($element . "/atom:name", $context)->item(0); $name_element = $xpath->query($element . "/atom:name", $context)->item(0);
foreach ($name_element->attributes AS $attributes) { foreach ($name_element->attributes as $attributes) {
if ($attributes->name == "updated") { if ($attributes->name == "updated") {
$poco["name-date"] = $attributes->textContent; $poco["name-date"] = $attributes->textContent;
} }
} }
$link_element = $xpath->query($element . "/atom:link", $context)->item(0); $link_element = $xpath->query($element . "/atom:link", $context)->item(0);
foreach ($link_element->attributes AS $attributes) { foreach ($link_element->attributes as $attributes) {
if ($attributes->name == "updated") { if ($attributes->name == "updated") {
$poco["uri-date"] = $attributes->textContent; $poco["uri-date"] = $attributes->textContent;
} }
@ -1571,7 +1574,7 @@ class DFRN
// Save the keywords into the contact table // Save the keywords into the contact table
$tags = array(); $tags = array();
$tagelements = $xpath->evaluate($element . "/poco:tags/text()", $context); $tagelements = $xpath->evaluate($element . "/poco:tags/text()", $context);
foreach ($tagelements AS $tag) { foreach ($tagelements as $tag) {
$tags[$tag->nodeValue] = $tag->nodeValue; $tags[$tag->nodeValue] = $tag->nodeValue;
} }
@ -1608,12 +1611,12 @@ class DFRN
$contact = array_merge($contact, $poco); $contact = array_merge($contact, $poco);
if ($old_bdyear != $contact["bdyear"]) { if ($old_bdyear != $contact["bdyear"]) {
self::birthday_event($contact, $birthday); self::birthdayEvent($contact, $birthday);
} }
// Get all field names // Get all field names
$fields = array(); $fields = array();
foreach ($r[0] AS $field => $data) { foreach ($r[0] as $field => $data) {
$fields[$field] = $data; $fields[$field] = $data;
} }
@ -1626,14 +1629,14 @@ class DFRN
// Update check for this field has to be done differently // Update check for this field has to be done differently
$datefields = array("name-date", "uri-date"); $datefields = array("name-date", "uri-date");
foreach ($datefields AS $field) { foreach ($datefields as $field) {
if (strtotime($contact[$field]) > strtotime($r[0][$field])) { if (strtotime($contact[$field]) > strtotime($r[0][$field])) {
logger("Difference for contact " . $contact["id"] . " in field '" . $field . "'. New value: '" . $contact[$field] . "', old value '" . $r[0][$field] . "'", LOGGER_DEBUG); logger("Difference for contact " . $contact["id"] . " in field '" . $field . "'. New value: '" . $contact[$field] . "', old value '" . $r[0][$field] . "'", LOGGER_DEBUG);
$update = true; $update = true;
} }
} }
foreach ($fields AS $field => $data) { foreach ($fields as $field => $data) {
if ($contact[$field] != $r[0][$field]) { if ($contact[$field] != $r[0][$field]) {
logger("Difference for contact " . $contact["id"] . " in field '" . $field . "'. New value: '" . $contact[$field] . "', old value '" . $r[0][$field] . "'", LOGGER_DEBUG); logger("Difference for contact " . $contact["id"] . " in field '" . $field . "'. New value: '" . $contact[$field] . "', old value '" . $r[0][$field] . "'", LOGGER_DEBUG);
$update = true; $update = true;
@ -1692,7 +1695,7 @@ class DFRN
* @return string XML string * @return string XML string
* @todo Find good type-hints for all parameter * @todo Find good type-hints for all parameter
*/ */
private static function transform_activity($xpath, $activity, $element) private static function transformActivity($xpath, $activity, $element)
{ {
if (!is_object($activity)) { if (!is_object($activity)) {
return ""; return "";
@ -1743,9 +1746,10 @@ class DFRN
* @param object $xpath XPath object * @param object $xpath XPath object
* @param object $mail mail elements * @param object $mail mail elements
* @param array $importer Record of the importer user mixed with contact of the content * @param array $importer Record of the importer user mixed with contact of the content
* @return void
* @todo Find good type-hints for all parameter * @todo Find good type-hints for all parameter
*/ */
private static function process_mail($xpath, $mail, $importer) private static function processMail($xpath, $mail, $importer)
{ {
logger("Processing mails"); logger("Processing mails");
@ -1794,9 +1798,10 @@ class DFRN
* @param object $xpath XPath object * @param object $xpath XPath object
* @param object $suggestion suggestion elements * @param object $suggestion suggestion elements
* @param array $importer Record of the importer user mixed with contact of the content * @param array $importer Record of the importer user mixed with contact of the content
* @return boolean
* @todo Find good type-hints for all parameter * @todo Find good type-hints for all parameter
*/ */
private static function process_suggestion($xpath, $suggestion, $importer) private static function processSuggestion($xpath, $suggestion, $importer)
{ {
$a = get_app(); $a = get_app();
@ -1903,7 +1908,8 @@ class DFRN
intval(0) intval(0)
); );
notification(array( notification(
array(
"type" => NOTIFY_SUGGEST, "type" => NOTIFY_SUGGEST,
"notify_flags" => $importer["notify-flags"], "notify_flags" => $importer["notify-flags"],
"language" => $importer["language"], "language" => $importer["language"],
@ -1928,9 +1934,10 @@ class DFRN
* @param object $xpath XPath object * @param object $xpath XPath object
* @param object $relocation relocation elements * @param object $relocation relocation elements
* @param array $importer Record of the importer user mixed with contact of the content * @param array $importer Record of the importer user mixed with contact of the content
* @return boolean
* @todo Find good type-hints for all parameter * @todo Find good type-hints for all parameter
*/ */
private static function process_relocation($xpath, $relocation, $importer) private static function processRelocation($xpath, $relocation, $importer)
{ {
logger("Processing relocations"); logger("Processing relocations");
@ -2080,9 +2087,10 @@ class DFRN
* @param array $item the new item record * @param array $item the new item record
* @param array $importer Record of the importer user mixed with contact of the content * @param array $importer Record of the importer user mixed with contact of the content
* @param int $entrytype Is it a toplevel entry, a comment or a relayed comment? * @param int $entrytype Is it a toplevel entry, a comment or a relayed comment?
* @return mixed
* @todo set proper type-hints (array?) * @todo set proper type-hints (array?)
*/ */
private static function update_content($current, $item, $importer, $entrytype) private static function updateContent($current, $item, $importer, $entrytype)
{ {
$changed = false; $changed = false;
@ -2137,7 +2145,7 @@ class DFRN
* @return int Is it a toplevel entry, a comment or a relayed comment? * @return int Is it a toplevel entry, a comment or a relayed comment?
* @todo set proper type-hints (array?) * @todo set proper type-hints (array?)
*/ */
private static function get_entry_type($importer, $item) private static function getEntryType($importer, $item)
{ {
if ($item["parent-uri"] != $item["uri"]) { if ($item["parent-uri"] != $item["uri"]) {
$community = false; $community = false;
@ -2208,9 +2216,10 @@ class DFRN
* @param array $item the new item record * @param array $item the new item record
* @param array $importer Record of the importer user mixed with contact of the content * @param array $importer Record of the importer user mixed with contact of the content
* @param int $posted_id The record number of item record that was just posted * @param int $posted_id The record number of item record that was just posted
* @return void
* @todo set proper type-hints (array?) * @todo set proper type-hints (array?)
*/ */
private static function do_poke($item, $importer, $posted_id) private static function doPoke($item, $importer, $posted_id)
{ {
$verb = urldecode(substr($item["verb"], strpos($item["verb"], "#")+1)); $verb = urldecode(substr($item["verb"], strpos($item["verb"], "#")+1));
if (!$verb) { if (!$verb) {
@ -2267,7 +2276,7 @@ class DFRN
* @return bool Should the processing of the entries be continued? * @return bool Should the processing of the entries be continued?
* @todo set proper type-hints (array?) * @todo set proper type-hints (array?)
*/ */
private static function process_verbs($entrytype, $importer, &$item, &$is_like) private static function processVerbs($entrytype, $importer, &$item, &$is_like)
{ {
logger("Process verb ".$item["verb"]." and object-type ".$item["object-type"]." for entrytype ".$entrytype, LOGGER_DEBUG); logger("Process verb ".$item["verb"]." and object-type ".$item["object-type"]." for entrytype ".$entrytype, LOGGER_DEBUG);
@ -2338,7 +2347,6 @@ class DFRN
} }
if (($item["verb"] == ACTIVITY_TAG) && ($item["object-type"] == ACTIVITY_OBJ_TAGTERM)) { if (($item["verb"] == ACTIVITY_TAG) && ($item["object-type"] == ACTIVITY_OBJ_TAGTERM)) {
$xo = parse_xml_string($item["object"], false); $xo = parse_xml_string($item["object"], false);
$xt = parse_xml_string($item["target"], false); $xt = parse_xml_string($item["target"], false);
@ -2357,7 +2365,8 @@ class DFRN
// extract tag, if not duplicate, add to parent item // extract tag, if not duplicate, add to parent item
if ($xo->content) { if ($xo->content) {
if (!(stristr($r[0]["tag"], trim($xo->content)))) { if (!(stristr($r[0]["tag"], trim($xo->content)))) {
q("UPDATE `item` SET `tag` = '%s' WHERE `id` = %d", q(
"UPDATE `item` SET `tag` = '%s' WHERE `id` = %d",
dbesc($r[0]["tag"] . (strlen($r[0]["tag"]) ? ',' : '') . '#[url=' . $xo->id . ']'. $xo->content . '[/url]'), dbesc($r[0]["tag"] . (strlen($r[0]["tag"]) ? ',' : '') . '#[url=' . $xo->id . ']'. $xo->content . '[/url]'),
intval($r[0]["id"]) intval($r[0]["id"])
); );
@ -2375,17 +2384,18 @@ class DFRN
* *
* @param object $links link elements * @param object $links link elements
* @param array $item the item record * @param array $item the item record
* @return void
* @todo set proper type-hints * @todo set proper type-hints
*/ */
private static function parse_links($links, &$item) private static function parseLinks($links, &$item)
{ {
$rel = ""; $rel = "";
$href = ""; $href = "";
$type = ""; $type = "";
$length = "0"; $length = "0";
$title = ""; $title = "";
foreach ($links AS $link) { foreach ($links as $link) {
foreach ($link->attributes AS $attributes) { foreach ($link->attributes as $attributes) {
/// @TODO Rewrite these repeated (same) if () statements to a switch() /// @TODO Rewrite these repeated (same) if () statements to a switch()
if ($attributes->name == "href") { if ($attributes->name == "href") {
$href = $attributes->textContent; $href = $attributes->textContent;
@ -2428,9 +2438,11 @@ class DFRN
* @param object $xpath XPath object * @param object $xpath XPath object
* @param object $entry entry elements * @param object $entry entry elements
* @param array $importer Record of the importer user mixed with contact of the content * @param array $importer Record of the importer user mixed with contact of the content
* @param object $xml xml
* @return void
* @todo Add type-hints * @todo Add type-hints
*/ */
private static function process_entry($header, $xpath, $entry, $importer, $xml) private static function processEntry($header, $xpath, $entry, $importer, $xml)
{ {
logger("Processing entries"); logger("Processing entries");
@ -2527,7 +2539,7 @@ class DFRN
$notice_info = $xpath->query("statusnet:notice_info", $entry); $notice_info = $xpath->query("statusnet:notice_info", $entry);
if ($notice_info && ($notice_info->length > 0)) { if ($notice_info && ($notice_info->length > 0)) {
foreach ($notice_info->item(0)->attributes AS $attributes) { foreach ($notice_info->item(0)->attributes as $attributes) {
if ($attributes->name == "source") { if ($attributes->name == "source") {
$item["app"] = strip_tags($attributes->textContent); $item["app"] = strip_tags($attributes->textContent);
} }
@ -2549,7 +2561,7 @@ class DFRN
} }
$object = $xpath->query("activity:object", $entry)->item(0); $object = $xpath->query("activity:object", $entry)->item(0);
$item["object"] = self::transform_activity($xpath, $object, "object"); $item["object"] = self::transformActivity($xpath, $object, "object");
if (trim($item["object"]) != "") { if (trim($item["object"]) != "") {
$r = parse_xml_string($item["object"], false); $r = parse_xml_string($item["object"], false);
@ -2559,14 +2571,14 @@ class DFRN
} }
$target = $xpath->query("activity:target", $entry)->item(0); $target = $xpath->query("activity:target", $entry)->item(0);
$item["target"] = self::transform_activity($xpath, $target, "target"); $item["target"] = self::transformActivity($xpath, $target, "target");
$categories = $xpath->query("atom:category", $entry); $categories = $xpath->query("atom:category", $entry);
if ($categories) { if ($categories) {
foreach ($categories AS $category) { foreach ($categories as $category) {
$term = ""; $term = "";
$scheme = ""; $scheme = "";
foreach ($category->attributes AS $attributes) { foreach ($category->attributes as $attributes) {
if ($attributes->name == "term") { if ($attributes->name == "term") {
$term = $attributes->textContent; $term = $attributes->textContent;
} }
@ -2596,14 +2608,14 @@ class DFRN
$links = $xpath->query("atom:link", $entry); $links = $xpath->query("atom:link", $entry);
if ($links) { if ($links) {
self::parse_links($links, $item); self::parseLinks($links, $item);
} }
$item['conversation-uri'] = $xpath->query('ostatus:conversation/text()', $entry)->item(0)->nodeValue; $item['conversation-uri'] = $xpath->query('ostatus:conversation/text()', $entry)->item(0)->nodeValue;
$conv = $xpath->query('ostatus:conversation', $entry); $conv = $xpath->query('ostatus:conversation', $entry);
if (is_object($conv->item(0))) { if (is_object($conv->item(0))) {
foreach ($conv->item(0)->attributes AS $attributes) { foreach ($conv->item(0)->attributes as $attributes) {
if ($attributes->name == "ref") { if ($attributes->name == "ref") {
$item['conversation-uri'] = $attributes->textContent; $item['conversation-uri'] = $attributes->textContent;
} }
@ -2618,7 +2630,7 @@ class DFRN
$inreplyto = $xpath->query("thr:in-reply-to", $entry); $inreplyto = $xpath->query("thr:in-reply-to", $entry);
if (is_object($inreplyto->item(0))) { if (is_object($inreplyto->item(0))) {
foreach ($inreplyto->item(0)->attributes AS $attributes) { foreach ($inreplyto->item(0)->attributes as $attributes) {
if ($attributes->name == "ref") { if ($attributes->name == "ref") {
$item["parent-uri"] = $attributes->textContent; $item["parent-uri"] = $attributes->textContent;
} }
@ -2626,7 +2638,7 @@ class DFRN
} }
// Get the type of the item (Top level post, reply or remote reply) // Get the type of the item (Top level post, reply or remote reply)
$entrytype = self::get_entry_type($importer, $item); $entrytype = self::getEntryType($importer, $item);
// Now assign the rest of the values that depend on the type of the message // Now assign the rest of the values that depend on the type of the message
if (in_array($entrytype, array(DFRN_REPLY, DFRN_REPLY_RC))) { if (in_array($entrytype, array(DFRN_REPLY, DFRN_REPLY_RC))) {
@ -2699,14 +2711,14 @@ class DFRN
} }
} }
if (!self::process_verbs($entrytype, $importer, $item, $is_like)) { if (!self::processVerbs($entrytype, $importer, $item, $is_like)) {
logger("Exiting because 'process_verbs' told us so", LOGGER_DEBUG); logger("Exiting because 'processVerbs' told us so", LOGGER_DEBUG);
return; return;
} }
// Update content if 'updated' changes // Update content if 'updated' changes
if (DBM::is_result($current)) { if (DBM::is_result($current)) {
if (self::update_content($r[0], $item, $importer, $entrytype)) { if (self::updateContent($r[0], $item, $importer, $entrytype)) {
logger("Item ".$item["uri"]." was updated.", LOGGER_DEBUG); logger("Item ".$item["uri"]." was updated.", LOGGER_DEBUG);
} else { } else {
logger("Item ".$item["uri"]." already existed.", LOGGER_DEBUG); logger("Item ".$item["uri"]." already existed.", LOGGER_DEBUG);
@ -2783,8 +2795,9 @@ class DFRN
logger("Item was stored with id ".$posted_id, LOGGER_DEBUG); logger("Item was stored with id ".$posted_id, LOGGER_DEBUG);
if (stristr($item["verb"],ACTIVITY_POKE)) if (stristr($item["verb"], ACTIVITY_POKE)) {
self::do_poke($item, $importer, $posted_id); self::doPoke($item, $importer, $posted_id);
}
} }
} }
@ -2794,13 +2807,14 @@ class DFRN
* @param object $xpath XPath object * @param object $xpath XPath object
* @param object $deletion deletion elements * @param object $deletion deletion elements
* @param array $importer Record of the importer user mixed with contact of the content * @param array $importer Record of the importer user mixed with contact of the content
* @return void
* @todo set proper type-hints * @todo set proper type-hints
*/ */
private static function process_deletion($xpath, $deletion, $importer) private static function processDeletion($xpath, $deletion, $importer)
{ {
logger("Processing deletions"); logger("Processing deletions");
foreach ($deletion->attributes AS $attributes) { foreach ($deletion->attributes as $attributes) {
if ($attributes->name == "ref") { if ($attributes->name == "ref") {
$uri = $attributes->textContent; $uri = $attributes->textContent;
} }
@ -2832,7 +2846,7 @@ class DFRN
} else { } else {
$item = $r[0]; $item = $r[0];
$entrytype = self::get_entry_type($importer, $item); $entrytype = self::getEntryType($importer, $item);
if (!$item["deleted"]) { if (!$item["deleted"]) {
logger('deleting item '.$item["id"].' uri='.$uri, LOGGER_DEBUG); logger('deleting item '.$item["id"].' uri='.$uri, LOGGER_DEBUG);
@ -2846,7 +2860,6 @@ class DFRN
} }
if (($item["verb"] == ACTIVITY_TAG) && ($item["object-type"] == ACTIVITY_OBJ_TAGTERM)) { if (($item["verb"] == ACTIVITY_TAG) && ($item["object-type"] == ACTIVITY_OBJ_TAGTERM)) {
$xo = parse_xml_string($item["object"], false); $xo = parse_xml_string($item["object"], false);
$xt = parse_xml_string($item["target"], false); $xt = parse_xml_string($item["target"], false);
@ -3017,8 +3030,8 @@ class DFRN
// We are processing relocations even if we are ignoring a contact // We are processing relocations even if we are ignoring a contact
$relocations = $xpath->query("/atom:feed/dfrn:relocate"); $relocations = $xpath->query("/atom:feed/dfrn:relocate");
foreach ($relocations AS $relocation) { foreach ($relocations as $relocation) {
self::process_relocation($xpath, $relocation, $importer); self::processRelocation($xpath, $relocation, $importer);
} }
if ($importer["readonly"]) { if ($importer["readonly"]) {
@ -3029,29 +3042,29 @@ class DFRN
} }
$mails = $xpath->query("/atom:feed/dfrn:mail"); $mails = $xpath->query("/atom:feed/dfrn:mail");
foreach ($mails AS $mail) { foreach ($mails as $mail) {
self::process_mail($xpath, $mail, $importer); self::processMail($xpath, $mail, $importer);
} }
$suggestions = $xpath->query("/atom:feed/dfrn:suggest"); $suggestions = $xpath->query("/atom:feed/dfrn:suggest");
foreach ($suggestions AS $suggestion) { foreach ($suggestions as $suggestion) {
self::process_suggestion($xpath, $suggestion, $importer); self::processSuggestion($xpath, $suggestion, $importer);
} }
$deletions = $xpath->query("/atom:feed/at:deleted-entry"); $deletions = $xpath->query("/atom:feed/at:deleted-entry");
foreach ($deletions AS $deletion) { foreach ($deletions as $deletion) {
self::process_deletion($xpath, $deletion, $importer); self::processDeletion($xpath, $deletion, $importer);
} }
if (!$sort_by_date) { if (!$sort_by_date) {
$entries = $xpath->query("/atom:feed/atom:entry"); $entries = $xpath->query("/atom:feed/atom:entry");
foreach ($entries AS $entry) { foreach ($entries as $entry) {
self::process_entry($header, $xpath, $entry, $importer, $xml); self::processEntry($header, $xpath, $entry, $importer, $xml);
} }
} else { } else {
$newentries = array(); $newentries = array();
$entries = $xpath->query("/atom:feed/atom:entry"); $entries = $xpath->query("/atom:feed/atom:entry");
foreach ($entries AS $entry) { foreach ($entries as $entry) {
$created = $xpath->query("atom:published/text()", $entry)->item(0)->nodeValue; $created = $xpath->query("atom:published/text()", $entry)->item(0)->nodeValue;
$newentries[strtotime($created)] = $entry; $newentries[strtotime($created)] = $entry;
} }
@ -3059,8 +3072,8 @@ class DFRN
// Now sort after the publishing date // Now sort after the publishing date
ksort($newentries); ksort($newentries);
foreach ($newentries AS $entry) { foreach ($newentries as $entry) {
self::process_entry($header, $xpath, $entry, $importer, $xml); self::processEntry($header, $xpath, $entry, $importer, $xml);
} }
} }
logger("Import done for user " . $importer["uid"] . " from contact " . $importer["id"], LOGGER_DEBUG); logger("Import done for user " . $importer["uid"] . " from contact " . $importer["id"], LOGGER_DEBUG);

View file

@ -5,7 +5,7 @@
* *
* The new protocol is described here: http://diaspora.github.io/diaspora_federation/index.html * The new protocol is described here: http://diaspora.github.io/diaspora_federation/index.html
* This implementation here interprets the old and the new protocol and sends the new one. * This implementation here interprets the old and the new protocol and sends the new one.
* In the future we will remove most stuff from "valid_posting" and interpret only the new protocol. * In the future we will remove most stuff from "validPosting" and interpret only the new protocol.
*/ */
namespace Friendica\Protocol; namespace Friendica\Protocol;
@ -46,7 +46,7 @@ class Diaspora
* *
* @return array of relay servers * @return array of relay servers
*/ */
public static function relay_list() public static function relayList()
{ {
$serverdata = Config::get("system", "relay_server"); $serverdata = Config::get("system", "relay_server");
if ($serverdata == "") { if ($serverdata == "") {
@ -109,7 +109,7 @@ class Diaspora
* *
* @return string the repaired signature * @return string the repaired signature
*/ */
private static function repair_signature($signature, $handle = "", $level = 1) private static function repairSignature($signature, $handle = "", $level = 1)
{ {
if ($signature == "") { if ($signature == "") {
return ($signature); return ($signature);
@ -121,7 +121,7 @@ class Diaspora
// Do a recursive call to be able to fix even multiple levels // Do a recursive call to be able to fix even multiple levels
if ($level < 10) { if ($level < 10) {
$signature = self::repair_signature($signature, $handle, ++$level); $signature = self::repairSignature($signature, $handle, ++$level);
} }
} }
@ -135,7 +135,7 @@ class Diaspora
* *
* @return string verified data * @return string verified data
*/ */
private static function verify_magic_envelope($envelope) private static function verifyMagicEnvelope($envelope)
{ {
$basedom = parse_xml_string($envelope); $basedom = parse_xml_string($envelope);
@ -191,7 +191,7 @@ class Diaspora
* *
* @return string encrypted data * @return string encrypted data
*/ */
private static function aes_encrypt($key, $iv, $data) private static function aesEncrypt($key, $iv, $data)
{ {
return openssl_encrypt($data, 'aes-256-cbc', str_pad($key, 32, "\0"), OPENSSL_RAW_DATA, str_pad($iv, 16, "\0")); return openssl_encrypt($data, 'aes-256-cbc', str_pad($key, 32, "\0"), OPENSSL_RAW_DATA, str_pad($iv, 16, "\0"));
} }
@ -205,7 +205,7 @@ class Diaspora
* *
* @return string decrypted data * @return string decrypted data
*/ */
private static function aes_decrypt($key, $iv, $encrypted) private static function aesDecrypt($key, $iv, $encrypted)
{ {
return openssl_decrypt($encrypted, 'aes-256-cbc', str_pad($key, 32, "\0"), OPENSSL_RAW_DATA, str_pad($iv, 16, "\0")); return openssl_decrypt($encrypted, 'aes-256-cbc', str_pad($key, 32, "\0"), OPENSSL_RAW_DATA, str_pad($iv, 16, "\0"));
} }
@ -221,7 +221,7 @@ class Diaspora
* 'author' -> author diaspora handle * 'author' -> author diaspora handle
* 'key' -> author public key (converted to pkcs#8) * 'key' -> author public key (converted to pkcs#8)
*/ */
public static function decode_raw($importer, $raw) public static function decodeRaw($importer, $raw)
{ {
$data = json_decode($raw); $data = json_decode($raw);
@ -242,7 +242,7 @@ class Diaspora
$outer_iv = base64_decode($j_outer_key_bundle->iv); $outer_iv = base64_decode($j_outer_key_bundle->iv);
$outer_key = base64_decode($j_outer_key_bundle->key); $outer_key = base64_decode($j_outer_key_bundle->key);
$xml = self::aes_decrypt($outer_key, $outer_iv, $ciphertext); $xml = self::aesDecrypt($outer_key, $outer_iv, $ciphertext);
} else { } else {
$xml = $raw; $xml = $raw;
} }
@ -329,7 +329,7 @@ class Diaspora
$outer_iv = base64_decode($j_outer_key_bundle->iv); $outer_iv = base64_decode($j_outer_key_bundle->iv);
$outer_key = base64_decode($j_outer_key_bundle->key); $outer_key = base64_decode($j_outer_key_bundle->key);
$decrypted = self::aes_decrypt($outer_key, $outer_iv, $ciphertext); $decrypted = self::aesDecrypt($outer_key, $outer_iv, $ciphertext);
logger('decrypted: '.$decrypted, LOGGER_DEBUG); logger('decrypted: '.$decrypted, LOGGER_DEBUG);
$idom = parse_xml_string($decrypted); $idom = parse_xml_string($decrypted);
@ -387,7 +387,7 @@ class Diaspora
} else { } else {
// Decode the encrypted blob // Decode the encrypted blob
$inner_encrypted = base64_decode($data); $inner_encrypted = base64_decode($data);
$inner_decrypted = self::aes_decrypt($inner_aes_key, $inner_iv, $inner_encrypted); $inner_decrypted = self::aesDecrypt($inner_aes_key, $inner_iv, $inner_encrypted);
} }
if (!$author_link) { if (!$author_link) {
@ -428,7 +428,7 @@ class Diaspora
* *
* @return int The message id of the generated message, "true" or "false" if there was an error * @return int The message id of the generated message, "true" or "false" if there was an error
*/ */
public static function dispatch_public($msg) public static function dispatchPublic($msg)
{ {
$enabled = intval(Config::get("system", "diaspora_enabled")); $enabled = intval(Config::get("system", "diaspora_enabled"));
if (!$enabled) { if (!$enabled) {
@ -436,7 +436,7 @@ class Diaspora
return false; return false;
} }
if (!($postdata = self::valid_posting($msg))) { if (!($postdata = self::validPosting($msg))) {
logger("Invalid posting"); logger("Invalid posting");
return false; return false;
} }
@ -446,7 +446,7 @@ class Diaspora
// Is it a an action (comment, like, ...) for our own post? // Is it a an action (comment, like, ...) for our own post?
if (isset($fields->parent_guid) && !$postdata["relayed"]) { if (isset($fields->parent_guid) && !$postdata["relayed"]) {
$guid = notags(unxmlify($fields->parent_guid)); $guid = notags(unxmlify($fields->parent_guid));
$importer = self::importer_for_guid($guid); $importer = self::importerForGuid($guid);
if (is_array($importer)) { if (is_array($importer)) {
logger("delivering to origin: ".$importer["name"]); logger("delivering to origin: ".$importer["name"]);
$message_id = self::dispatch($importer, $msg, $fields); $message_id = self::dispatch($importer, $msg, $fields);
@ -508,7 +508,7 @@ class Diaspora
// This is only needed for private postings since this is already done for public ones before // This is only needed for private postings since this is already done for public ones before
if (is_null($fields)) { if (is_null($fields)) {
if (!($postdata = self::valid_posting($msg))) { if (!($postdata = self::validPosting($msg))) {
logger("Invalid posting"); logger("Invalid posting");
return false; return false;
} }
@ -524,43 +524,43 @@ class Diaspora
return self::receiveAccountMigration($importer, $fields); return self::receiveAccountMigration($importer, $fields);
case "account_deletion": case "account_deletion":
return self::receive_account_deletion($importer, $fields); return self::receiveAccountDeletion($importer, $fields);
case "comment": case "comment":
return self::receive_comment($importer, $sender, $fields, $msg["message"]); return self::receiveComment($importer, $sender, $fields, $msg["message"]);
case "contact": case "contact":
return self::receive_contact_request($importer, $fields); return self::receiveContactRequest($importer, $fields);
case "conversation": case "conversation":
return self::receive_conversation($importer, $msg, $fields); return self::receiveConversation($importer, $msg, $fields);
case "like": case "like":
return self::receive_like($importer, $sender, $fields); return self::receiveLike($importer, $sender, $fields);
case "message": case "message":
return self::receive_message($importer, $fields); return self::receiveMessage($importer, $fields);
case "participation": // Not implemented case "participation": // Not implemented
return self::receive_participation($importer, $fields); return self::receiveParticipation($importer, $fields);
case "photo": // Not implemented case "photo": // Not implemented
return self::receive_photo($importer, $fields); return self::receivePhoto($importer, $fields);
case "poll_participation": // Not implemented case "poll_participation": // Not implemented
return self::receive_poll_participation($importer, $fields); return self::receivePollParticipation($importer, $fields);
case "profile": case "profile":
return self::receive_profile($importer, $fields); return self::receiveProfile($importer, $fields);
case "reshare": case "reshare":
return self::receive_reshare($importer, $fields, $msg["message"]); return self::receiveReshare($importer, $fields, $msg["message"]);
case "retraction": case "retraction":
return self::receive_retraction($importer, $sender, $fields); return self::receiveRetraction($importer, $sender, $fields);
case "status_message": case "status_message":
return self::receive_status_message($importer, $fields, $msg["message"]); return self::receiveStatusMessage($importer, $fields, $msg["message"]);
default: default:
logger("Unknown message type ".$type); logger("Unknown message type ".$type);
@ -580,7 +580,7 @@ class Diaspora
* *
* @return bool|array If the posting is valid then an array with an SimpleXML object is returned * @return bool|array If the posting is valid then an array with an SimpleXML object is returned
*/ */
private static function valid_posting($msg) private static function validPosting($msg)
{ {
$data = parse_xml_string($msg["message"]); $data = parse_xml_string($msg["message"]);
@ -731,7 +731,7 @@ class Diaspora
logger("Fetching diaspora key for: ".$handle); logger("Fetching diaspora key for: ".$handle);
$r = self::person_by_handle($handle); $r = self::personByHandle($handle);
if ($r) { if ($r) {
return $r["pubkey"]; return $r["pubkey"];
} }
@ -746,7 +746,7 @@ class Diaspora
* *
* @return array the queried data * @return array the queried data
*/ */
public static function person_by_handle($handle) public static function personByHandle($handle)
{ {
$r = q( $r = q(
"SELECT * FROM `fcontact` WHERE `network` = '%s' AND `addr` = '%s' LIMIT 1", "SELECT * FROM `fcontact` WHERE `network` = '%s' AND `addr` = '%s' LIMIT 1",
@ -775,7 +775,7 @@ class Diaspora
// Note that Friendica contacts will return a "Diaspora person" // Note that Friendica contacts will return a "Diaspora person"
// if Diaspora connectivity is enabled on their server // if Diaspora connectivity is enabled on their server
if ($r && ($r["network"] === NETWORK_DIASPORA)) { if ($r && ($r["network"] === NETWORK_DIASPORA)) {
self::add_fcontact($r, $update); self::addFContact($r, $update);
$person = $r; $person = $r;
} }
} }
@ -790,7 +790,7 @@ class Diaspora
* *
* @return string The id of the fcontact entry * @return string The id of the fcontact entry
*/ */
private static function add_fcontact($arr, $update = false) private static function addFContact($arr, $update = false)
{ {
if ($update) { if ($update) {
$r = q( $r = q(
@ -859,7 +859,7 @@ class Diaspora
* *
* @return string the handle * @return string the handle
*/ */
public static function handle_from_contact($contact_id, $gcontact_id = 0) public static function handleFromContact($contact_id, $gcontact_id = 0)
{ {
$handle = false; $handle = false;
@ -908,7 +908,7 @@ class Diaspora
* *
* @return string the contact url or null * @return string the contact url or null
*/ */
public static function url_from_contact_guid($fcontact_guid) public static function urlFromContactGuid($fcontact_guid)
{ {
logger("fcontact guid is ".$fcontact_guid, LOGGER_DEBUG); logger("fcontact guid is ".$fcontact_guid, LOGGER_DEBUG);
@ -933,7 +933,7 @@ class Diaspora
* *
* @return The contact id * @return The contact id
*/ */
private static function contact_by_handle($uid, $handle) private static function contactByHandle($uid, $handle)
{ {
// First do a direct search on the contact table // First do a direct search on the contact table
$r = q( $r = q(
@ -986,8 +986,8 @@ class Diaspora
* *
* @return bool is the contact allowed to post? * @return bool is the contact allowed to post?
*/ */
private static function post_allow($importer, $contact, $is_comment = false) { private static function postAllow($importer, $contact, $is_comment = false)
{
/* /*
* Perhaps we were already sharing with this person. Now they're sharing with us. * Perhaps we were already sharing with this person. Now they're sharing with us.
* That makes us friends. * That makes us friends.
@ -1034,9 +1034,9 @@ class Diaspora
* *
* @return array The contact data * @return array The contact data
*/ */
private static function allowed_contact_by_handle($importer, $handle, $is_comment = false) private static function allowedContactByHandle($importer, $handle, $is_comment = false)
{ {
$contact = self::contact_by_handle($importer["uid"], $handle); $contact = self::contactByHandle($importer["uid"], $handle);
if (!$contact) { if (!$contact) {
logger("A Contact for handle ".$handle." and user ".$importer["uid"]." was not found"); logger("A Contact for handle ".$handle." and user ".$importer["uid"]." was not found");
// If a contact isn't found, we accept it anyway if it is a comment // If a contact isn't found, we accept it anyway if it is a comment
@ -1047,7 +1047,7 @@ class Diaspora
} }
} }
if (!self::post_allow($importer, $contact, $is_comment)) { if (!self::postAllow($importer, $contact, $is_comment)) {
logger("The handle: ".$handle." is not allowed to post to user ".$importer["uid"]); logger("The handle: ".$handle." is not allowed to post to user ".$importer["uid"]);
return false; return false;
} }
@ -1062,7 +1062,7 @@ class Diaspora
* *
* @return int|bool message id if the message already was stored into the system - or false. * @return int|bool message id if the message already was stored into the system - or false.
*/ */
private static function message_exists($uid, $guid) private static function messageExists($uid, $guid)
{ {
$r = q( $r = q(
"SELECT `id` FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1", "SELECT `id` FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
@ -1082,14 +1082,15 @@ class Diaspora
* @brief Checks for links to posts in a message * @brief Checks for links to posts in a message
* *
* @param array $item The item array * @param array $item The item array
* @return void
*/ */
private static function fetch_guid($item) private static function fetchGuid($item)
{ {
$expression = "=diaspora://.*?/post/([0-9A-Za-z\-_@.:]{15,254}[0-9A-Za-z])=ism"; $expression = "=diaspora://.*?/post/([0-9A-Za-z\-_@.:]{15,254}[0-9A-Za-z])=ism";
preg_replace_callback( preg_replace_callback(
$expression, $expression,
function ($match) use ($item) { function ($match) use ($item) {
return self::fetch_guid_sub($match, $item); return self::fetchGuidSub($match, $item);
}, },
$item["body"] $item["body"]
); );
@ -1097,7 +1098,7 @@ class Diaspora
preg_replace_callback( preg_replace_callback(
"&\[url=/posts/([^\[\]]*)\](.*)\[\/url\]&Usi", "&\[url=/posts/([^\[\]]*)\](.*)\[\/url\]&Usi",
function ($match) use ($item) { function ($match) use ($item) {
return self::fetch_guid_sub($match, $item); return self::fetchGuidSub($match, $item);
}, },
$item["body"] $item["body"]
); );
@ -1112,7 +1113,7 @@ class Diaspora
* *
* @return the replaced string * @return the replaced string
*/ */
public static function replace_people_guid($body, $author_link) public static function replacePeopleGuid($body, $author_link)
{ {
$return = preg_replace_callback( $return = preg_replace_callback(
"&\[url=/people/([^\[\]]*)\](.*)\[\/url\]&Usi", "&\[url=/people/([^\[\]]*)\](.*)\[\/url\]&Usi",
@ -1121,7 +1122,7 @@ class Diaspora
// 0 => '[url=/people/0123456789abcdef]Foo Bar[/url]' // 0 => '[url=/people/0123456789abcdef]Foo Bar[/url]'
// 1 => '0123456789abcdef' // 1 => '0123456789abcdef'
// 2 => 'Foo Bar' // 2 => 'Foo Bar'
$handle = self::url_from_contact_guid($match[1]); $handle = self::urlFromContactGuid($match[1]);
if ($handle) { if ($handle) {
$return = '@[url='.$handle.']'.$match[2].'[/url]'; $return = '@[url='.$handle.']'.$match[2].'[/url]';
@ -1140,15 +1141,16 @@ class Diaspora
} }
/** /**
* @brief sub function of "fetch_guid" which checks for links in messages * @brief sub function of "fetchGuid" which checks for links in messages
* *
* @param array $match array containing a link that has to be checked for a message link * @param array $match array containing a link that has to be checked for a message link
* @param array $item The item array * @param array $item The item array
* @return void
*/ */
private static function fetch_guid_sub($match, $item) private static function fetchGuidSub($match, $item)
{ {
if (!self::store_by_guid($match[1], $item["author-link"])) { if (!self::storeByGuid($match[1], $item["author-link"])) {
self::store_by_guid($match[1], $item["owner-link"]); self::storeByGuid($match[1], $item["owner-link"]);
} }
} }
@ -1161,7 +1163,7 @@ class Diaspora
* *
* @return int the message id of the stored message or false * @return int the message id of the stored message or false
*/ */
private static function store_by_guid($guid, $server, $uid = 0) private static function storeByGuid($guid, $server, $uid = 0)
{ {
$serverparts = parse_url($server); $serverparts = parse_url($server);
$server = $serverparts["scheme"]."://".$serverparts["host"]; $server = $serverparts["scheme"]."://".$serverparts["host"];
@ -1177,7 +1179,7 @@ class Diaspora
logger("Successfully fetched item ".$guid." from ".$server, LOGGER_DEBUG); logger("Successfully fetched item ".$guid." from ".$server, LOGGER_DEBUG);
// Now call the dispatcher // Now call the dispatcher
return self::dispatch_public($msg); return self::dispatchPublic($msg);
} }
/** /**
@ -1206,7 +1208,7 @@ class Diaspora
$envelope = fetch_url($source_url); $envelope = fetch_url($source_url);
if ($envelope) { if ($envelope) {
logger("Envelope was fetched.", LOGGER_DEBUG); logger("Envelope was fetched.", LOGGER_DEBUG);
$x = self::verify_magic_envelope($envelope); $x = self::verifyMagicEnvelope($envelope);
if (!$x) { if (!$x) {
logger("Envelope could not be verified.", LOGGER_DEBUG); logger("Envelope could not be verified.", LOGGER_DEBUG);
} else { } else {
@ -1275,7 +1277,7 @@ class Diaspora
* *
* @return array the item record * @return array the item record
*/ */
private static function parent_item($uid, $guid, $author, $contact) private static function parentItem($uid, $guid, $author, $contact)
{ {
$r = q( $r = q(
"SELECT `id`, `parent`, `body`, `wall`, `uri`, `guid`, `private`, `origin`, "SELECT `id`, `parent`, `body`, `wall`, `uri`, `guid`, `private`, `origin`,
@ -1287,11 +1289,11 @@ class Diaspora
); );
if (!$r) { if (!$r) {
$result = self::store_by_guid($guid, $contact["url"], $uid); $result = self::storeByGuid($guid, $contact["url"], $uid);
if (!$result) { if (!$result) {
$person = self::person_by_handle($author); $person = self::personByHandle($author);
$result = self::store_by_guid($guid, $person["url"], $uid); $result = self::storeByGuid($guid, $person["url"], $uid);
} }
if ($result) { if ($result) {
@ -1328,7 +1330,7 @@ class Diaspora
* 'cid' => contact id * 'cid' => contact id
* 'network' => network type * 'network' => network type
*/ */
private static function author_contact_by_url($contact, $person, $uid) private static function authorContactByUrl($contact, $person, $uid)
{ {
$r = q( $r = q(
"SELECT `id`, `network`, `url` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d LIMIT 1", "SELECT `id`, `network`, `url` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d LIMIT 1",
@ -1357,7 +1359,7 @@ class Diaspora
* *
* @return bool is it a hubzilla server? * @return bool is it a hubzilla server?
*/ */
public static function is_redmatrix($url) public static function isRedmatrix($url)
{ {
return(strstr($url, "/channel/")); return(strstr($url, "/channel/"));
} }
@ -1395,7 +1397,7 @@ class Diaspora
return str_replace("/profile/".$r[0]["nick"]."/", "/display/".$guid, $r[0]["url"]."/"); return str_replace("/profile/".$r[0]["nick"]."/", "/display/".$guid, $r[0]["url"]."/");
} }
if (self::is_redmatrix($r[0]["url"])) { if (self::isRedmatrix($r[0]["url"])) {
return $r[0]["url"]."/?f=&mid=".$guid; return $r[0]["url"]."/?f=&mid=".$guid;
} }
@ -1420,7 +1422,7 @@ class Diaspora
$new_handle = notags(unxmlify($data->profile->author)); $new_handle = notags(unxmlify($data->profile->author));
$signature = notags(unxmlify($data->signature)); $signature = notags(unxmlify($data->signature));
$contact = self::contact_by_handle($importer["uid"], $old_handle); $contact = self::contactByHandle($importer["uid"], $old_handle);
if (!$contact) { if (!$contact) {
logger("cannot find contact for sender: ".$old_handle." and user ".$importer["uid"]); logger("cannot find contact for sender: ".$old_handle." and user ".$importer["uid"]);
return false; return false;
@ -1437,7 +1439,7 @@ class Diaspora
} }
// Update the profile // Update the profile
self::receive_profile($importer, $data->profile); self::receiveProfile($importer, $data->profile);
// change the technical stuff in contact and gcontact // change the technical stuff in contact and gcontact
$data = Probe::uri($new_handle); $data = Probe::uri($new_handle);
@ -1507,13 +1509,13 @@ class Diaspora
* *
* @return bool Success * @return bool Success
*/ */
private static function receive_account_deletion($importer, $data) private static function receiveAccountDeletion($importer, $data)
{ {
/// @todo Account deletion should remove the contact from the global contacts as well /// @todo Account deletion should remove the contact from the global contacts as well
$author = notags(unxmlify($data->author)); $author = notags(unxmlify($data->author));
$contact = self::contact_by_handle($importer["uid"], $author); $contact = self::contactByHandle($importer["uid"], $author);
if (!$contact) { if (!$contact) {
logger("cannot find contact for author: ".$author); logger("cannot find contact for author: ".$author);
return false; return false;
@ -1533,7 +1535,7 @@ class Diaspora
* *
* @return string The constructed uri or the one from our database * @return string The constructed uri or the one from our database
*/ */
private static function get_uri_from_guid($author, $guid, $onlyfound = false) private static function getUriFromGuid($author, $guid, $onlyfound = false)
{ {
$r = q("SELECT `uri` FROM `item` WHERE `guid` = '%s' LIMIT 1", dbesc($guid)); $r = q("SELECT `uri` FROM `item` WHERE `guid` = '%s' LIMIT 1", dbesc($guid));
if (DBM::is_result($r)) { if (DBM::is_result($r)) {
@ -1553,7 +1555,7 @@ class Diaspora
* *
* @return string The post guid * @return string The post guid
*/ */
private static function get_guid_from_uri($uri, $uid) private static function getGuidFromUri($uri, $uid)
{ {
$r = q("SELECT `guid` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1", dbesc($uri), intval($uid)); $r = q("SELECT `guid` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1", dbesc($uri), intval($uid));
if (DBM::is_result($r)) { if (DBM::is_result($r)) {
@ -1570,7 +1572,7 @@ class Diaspora
* *
* @return array|boolean the origin owner of that post - or false * @return array|boolean the origin owner of that post - or false
*/ */
private static function importer_for_guid($guid) private static function importerForGuid($guid)
{ {
$item = dba::fetch_first("SELECT `uid` FROM `item` WHERE `origin` AND `guid` = ? LIMIT 1", $guid); $item = dba::fetch_first("SELECT `uid` FROM `item` WHERE `origin` AND `guid` = ? LIMIT 1", $guid);
@ -1594,7 +1596,7 @@ class Diaspora
* *
* @return int The message id of the generated comment or "false" if there was an error * @return int The message id of the generated comment or "false" if there was an error
*/ */
private static function receive_comment($importer, $sender, $data, $xml) private static function receiveComment($importer, $sender, $data, $xml)
{ {
$author = notags(unxmlify($data->author)); $author = notags(unxmlify($data->author));
$guid = notags(unxmlify($data->guid)); $guid = notags(unxmlify($data->guid));
@ -1609,34 +1611,34 @@ class Diaspora
if (isset($data->thread_parent_guid)) { if (isset($data->thread_parent_guid)) {
$thread_parent_guid = notags(unxmlify($data->thread_parent_guid)); $thread_parent_guid = notags(unxmlify($data->thread_parent_guid));
$thr_uri = self::get_uri_from_guid("", $thread_parent_guid, true); $thr_uri = self::getUriFromGuid("", $thread_parent_guid, true);
} else { } else {
$thr_uri = ""; $thr_uri = "";
} }
$contact = self::allowed_contact_by_handle($importer, $sender, true); $contact = self::allowedContactByHandle($importer, $sender, true);
if (!$contact) { if (!$contact) {
return false; return false;
} }
$message_id = self::message_exists($importer["uid"], $guid); $message_id = self::messageExists($importer["uid"], $guid);
if ($message_id) { if ($message_id) {
return true; return true;
} }
$parent_item = self::parent_item($importer["uid"], $parent_guid, $author, $contact); $parent_item = self::parentItem($importer["uid"], $parent_guid, $author, $contact);
if (!$parent_item) { if (!$parent_item) {
return false; return false;
} }
$person = self::person_by_handle($author); $person = self::personByHandle($author);
if (!is_array($person)) { if (!is_array($person)) {
logger("unable to find author details"); logger("unable to find author details");
return false; return false;
} }
// Fetch the contact id - if we know this contact // Fetch the contact id - if we know this contact
$author_contact = self::author_contact_by_url($contact, $person, $importer["uid"]); $author_contact = self::authorContactByUrl($contact, $person, $importer["uid"]);
$datarray = array(); $datarray = array();
@ -1653,7 +1655,7 @@ class Diaspora
$datarray["owner-avatar"] = ((x($contact, "thumb")) ? $contact["thumb"] : $contact["photo"]); $datarray["owner-avatar"] = ((x($contact, "thumb")) ? $contact["thumb"] : $contact["photo"]);
$datarray["guid"] = $guid; $datarray["guid"] = $guid;
$datarray["uri"] = self::get_uri_from_guid($author, $guid); $datarray["uri"] = self::getUriFromGuid($author, $guid);
$datarray["type"] = "remote-comment"; $datarray["type"] = "remote-comment";
$datarray["verb"] = ACTIVITY_POST; $datarray["verb"] = ACTIVITY_POST;
@ -1676,9 +1678,9 @@ class Diaspora
$body = diaspora2bb($text); $body = diaspora2bb($text);
$datarray["body"] = self::replace_people_guid($body, $person["url"]); $datarray["body"] = self::replacePeopleGuid($body, $person["url"]);
self::fetch_guid($datarray); self::fetchGuid($datarray);
$message_id = item_store($datarray); $message_id = item_store($datarray);
@ -1715,7 +1717,7 @@ class Diaspora
* *
* @return bool "true" if it was successful * @return bool "true" if it was successful
*/ */
private static function receive_conversation_message($importer, $contact, $data, $msg, $mesg, $conversation) private static function receiveConversationMessage($importer, $contact, $data, $msg, $mesg, $conversation)
{ {
$author = notags(unxmlify($data->author)); $author = notags(unxmlify($data->author));
$guid = notags(unxmlify($data->guid)); $guid = notags(unxmlify($data->guid));
@ -1744,7 +1746,7 @@ class Diaspora
$body = diaspora2bb($msg_text); $body = diaspora2bb($msg_text);
$message_uri = $msg_author.":".$msg_guid; $message_uri = $msg_author.":".$msg_guid;
$person = self::person_by_handle($msg_author); $person = self::personByHandle($msg_author);
dba::lock('mail'); dba::lock('mail');
@ -1794,8 +1796,8 @@ class Diaspora
"source_link" => $person["url"], "source_link" => $person["url"],
"source_photo" => $person["thumb"], "source_photo" => $person["thumb"],
"verb" => ACTIVITY_POST, "verb" => ACTIVITY_POST,
"otype" => "mail" "otype" => "mail")
)); );
return true; return true;
} }
@ -1808,7 +1810,7 @@ class Diaspora
* *
* @return bool Success * @return bool Success
*/ */
private static function receive_conversation($importer, $msg, $data) private static function receiveConversation($importer, $msg, $data)
{ {
$author = notags(unxmlify($data->author)); $author = notags(unxmlify($data->author));
$guid = notags(unxmlify($data->guid)); $guid = notags(unxmlify($data->guid));
@ -1823,7 +1825,7 @@ class Diaspora
return false; return false;
} }
$contact = self::allowed_contact_by_handle($importer, $msg["author"], true); $contact = self::allowedContactByHandle($importer, $msg["author"], true);
if (!$contact) { if (!$contact) {
return false; return false;
} }
@ -1867,7 +1869,7 @@ class Diaspora
} }
foreach ($messages as $mesg) { foreach ($messages as $mesg) {
self::receive_conversation_message($importer, $contact, $data, $msg, $mesg, $conversation); self::receiveConversationMessage($importer, $contact, $data, $msg, $mesg, $conversation);
} }
return true; return true;
@ -1882,7 +1884,8 @@ class Diaspora
* *
* @return string the body * @return string the body
*/ */
private static function construct_like_body($contact, $parent_item, $guid) { private static function constructLikeBody($contact, $parent_item, $guid)
{
$bodyverb = t('%1$s likes %2$s\'s %3$s'); $bodyverb = t('%1$s likes %2$s\'s %3$s');
$ulink = "[url=".$contact["url"]."]".$contact["name"]."[/url]"; $ulink = "[url=".$contact["url"]."]".$contact["name"]."[/url]";
@ -1900,7 +1903,7 @@ class Diaspora
* *
* @return string The XML * @return string The XML
*/ */
private static function construct_like_object($importer, $parent_item) private static function constructLikeObject($importer, $parent_item)
{ {
$objtype = ACTIVITY_OBJ_NOTE; $objtype = ACTIVITY_OBJ_NOTE;
$link = '<link rel="alternate" type="text/html" href="'.System::baseUrl()."/display/".$importer["nickname"]."/".$parent_item["id"].'" />'; $link = '<link rel="alternate" type="text/html" href="'.System::baseUrl()."/display/".$importer["nickname"]."/".$parent_item["id"].'" />';
@ -1925,7 +1928,7 @@ class Diaspora
* *
* @return int The message id of the generated like or "false" if there was an error * @return int The message id of the generated like or "false" if there was an error
*/ */
private static function receive_like($importer, $sender, $data) private static function receiveLike($importer, $sender, $data)
{ {
$author = notags(unxmlify($data->author)); $author = notags(unxmlify($data->author));
$guid = notags(unxmlify($data->guid)); $guid = notags(unxmlify($data->guid));
@ -1939,29 +1942,29 @@ class Diaspora
return false; return false;
} }
$contact = self::allowed_contact_by_handle($importer, $sender, true); $contact = self::allowedContactByHandle($importer, $sender, true);
if (!$contact) { if (!$contact) {
return false; return false;
} }
$message_id = self::message_exists($importer["uid"], $guid); $message_id = self::messageExists($importer["uid"], $guid);
if ($message_id) { if ($message_id) {
return true; return true;
} }
$parent_item = self::parent_item($importer["uid"], $parent_guid, $author, $contact); $parent_item = self::parentItem($importer["uid"], $parent_guid, $author, $contact);
if (!$parent_item) { if (!$parent_item) {
return false; return false;
} }
$person = self::person_by_handle($author); $person = self::personByHandle($author);
if (!is_array($person)) { if (!is_array($person)) {
logger("unable to find author details"); logger("unable to find author details");
return false; return false;
} }
// Fetch the contact id - if we know this contact // Fetch the contact id - if we know this contact
$author_contact = self::author_contact_by_url($contact, $person, $importer["uid"]); $author_contact = self::authorContactByUrl($contact, $person, $importer["uid"]);
// "positive" = "false" would be a Dislike - wich isn't currently supported by Diaspora // "positive" = "false" would be a Dislike - wich isn't currently supported by Diaspora
// We would accept this anyhow. // We would accept this anyhow.
@ -1988,7 +1991,7 @@ class Diaspora
$datarray["owner-avatar"] = ((x($contact, "thumb")) ? $contact["thumb"] : $contact["photo"]); $datarray["owner-avatar"] = ((x($contact, "thumb")) ? $contact["thumb"] : $contact["photo"]);
$datarray["guid"] = $guid; $datarray["guid"] = $guid;
$datarray["uri"] = self::get_uri_from_guid($author, $guid); $datarray["uri"] = self::getUriFromGuid($author, $guid);
$datarray["type"] = "activity"; $datarray["type"] = "activity";
$datarray["verb"] = $verb; $datarray["verb"] = $verb;
@ -1996,9 +1999,9 @@ class Diaspora
$datarray["parent-uri"] = $parent_item["uri"]; $datarray["parent-uri"] = $parent_item["uri"];
$datarray["object-type"] = ACTIVITY_OBJ_NOTE; $datarray["object-type"] = ACTIVITY_OBJ_NOTE;
$datarray["object"] = self::construct_like_object($importer, $parent_item); $datarray["object"] = self::constructLikeObject($importer, $parent_item);
$datarray["body"] = self::construct_like_body($contact, $parent_item, $guid); $datarray["body"] = self::constructLikeBody($contact, $parent_item, $guid);
$message_id = item_store($datarray); $message_id = item_store($datarray);
@ -2039,7 +2042,7 @@ class Diaspora
* *
* @return bool Success? * @return bool Success?
*/ */
private static function receive_message($importer, $data) private static function receiveMessage($importer, $data)
{ {
$author = notags(unxmlify($data->author)); $author = notags(unxmlify($data->author));
$guid = notags(unxmlify($data->guid)); $guid = notags(unxmlify($data->guid));
@ -2047,7 +2050,7 @@ class Diaspora
$text = unxmlify($data->text); $text = unxmlify($data->text);
$created_at = datetime_convert("UTC", "UTC", notags(unxmlify($data->created_at))); $created_at = datetime_convert("UTC", "UTC", notags(unxmlify($data->created_at)));
$contact = self::allowed_contact_by_handle($importer, $author, true); $contact = self::allowedContactByHandle($importer, $author, true);
if (!$contact) { if (!$contact) {
return false; return false;
} }
@ -2068,7 +2071,7 @@ class Diaspora
$message_uri = $author.":".$guid; $message_uri = $author.":".$guid;
$person = self::person_by_handle($author); $person = self::personByHandle($author);
if (!$person) { if (!$person) {
logger("unable to find author details"); logger("unable to find author details");
return false; return false;
@ -2076,7 +2079,7 @@ class Diaspora
$body = diaspora2bb($text); $body = diaspora2bb($text);
$body = self::replace_people_guid($body, $person["url"]); $body = self::replacePeopleGuid($body, $person["url"]);
dba::lock('mail'); dba::lock('mail');
@ -2123,7 +2126,7 @@ class Diaspora
* *
* @return bool always true * @return bool always true
*/ */
private static function receive_participation($importer, $data) private static function receiveParticipation($importer, $data)
{ {
// I'm not sure if we can fully support this message type // I'm not sure if we can fully support this message type
return true; return true;
@ -2137,7 +2140,7 @@ class Diaspora
* *
* @return bool always true * @return bool always true
*/ */
private static function receive_photo($importer, $data) private static function receivePhoto($importer, $data)
{ {
// There doesn't seem to be a reason for this function, // There doesn't seem to be a reason for this function,
// since the photo data is transmitted in the status message as well // since the photo data is transmitted in the status message as well
@ -2152,7 +2155,7 @@ class Diaspora
* *
* @return bool always true * @return bool always true
*/ */
private static function receive_poll_participation($importer, $data) private static function receivePollParticipation($importer, $data)
{ {
// We don't support polls by now // We don't support polls by now
return true; return true;
@ -2166,11 +2169,11 @@ class Diaspora
* *
* @return bool Success * @return bool Success
*/ */
private static function receive_profile($importer, $data) private static function receiveProfile($importer, $data)
{ {
$author = strtolower(notags(unxmlify($data->author))); $author = strtolower(notags(unxmlify($data->author)));
$contact = self::contact_by_handle($importer["uid"], $author); $contact = self::contactByHandle($importer["uid"], $author);
if (!$contact) { if (!$contact) {
return false; return false;
} }
@ -2261,8 +2264,9 @@ class Diaspora
* *
* @param array $importer Array of the importer user * @param array $importer Array of the importer user
* @param array $contact The contact that send the request * @param array $contact The contact that send the request
* @return void
*/ */
private static function receive_request_make_friend($importer, $contact) private static function receiveRequestMakeFriend($importer, $contact)
{ {
$a = get_app(); $a = get_app();
@ -2281,7 +2285,6 @@ class Diaspora
); );
if ($r && !$r[0]["hide-friends"] && !$contact["hidden"] && intval(PConfig::get($importer["uid"], "system", "post_newfriend"))) { if ($r && !$r[0]["hide-friends"] && !$contact["hidden"] && intval(PConfig::get($importer["uid"], "system", "post_newfriend"))) {
$self = q( $self = q(
"SELECT * FROM `contact` WHERE `self` AND `uid` = %d LIMIT 1", "SELECT * FROM `contact` WHERE `self` AND `uid` = %d LIMIT 1",
intval($importer["uid"]) intval($importer["uid"])
@ -2310,7 +2313,7 @@ class Diaspora
$BPhoto = "[url=".$contact["url"]."][img]".$contact["thumb"]."[/img][/url]"; $BPhoto = "[url=".$contact["url"]."][img]".$contact["thumb"]."[/img][/url]";
$arr["body"] = sprintf(t("%1$s is now friends with %2$s"), $A, $B)."\n\n\n".$Bphoto; $arr["body"] = sprintf(t("%1$s is now friends with %2$s"), $A, $B)."\n\n\n".$Bphoto;
$arr["object"] = self::construct_new_friend_object($contact); $arr["object"] = self::constructNewFriendObject($contact);
$arr["last-child"] = 1; $arr["last-child"] = 1;
@ -2334,7 +2337,7 @@ class Diaspora
* *
* @return string The XML * @return string The XML
*/ */
private static function construct_new_friend_object($contact) private static function constructNewFriendObject($contact)
{ {
$objtype = ACTIVITY_OBJ_PERSON; $objtype = ACTIVITY_OBJ_PERSON;
$link = '<link rel="alternate" type="text/html" href="'.$contact["url"].'" />'."\n". $link = '<link rel="alternate" type="text/html" href="'.$contact["url"].'" />'."\n".
@ -2356,7 +2359,7 @@ class Diaspora
* *
* @return bool Success * @return bool Success
*/ */
private static function receive_contact_request($importer, $data) private static function receiveContactRequest($importer, $data)
{ {
$author = unxmlify($data->author); $author = unxmlify($data->author);
$recipient = unxmlify($data->recipient); $recipient = unxmlify($data->recipient);
@ -2379,17 +2382,17 @@ class Diaspora
$sharing = true; $sharing = true;
} }
$contact = self::contact_by_handle($importer["uid"], $author); $contact = self::contactByHandle($importer["uid"], $author);
// perhaps we were already sharing with this person. Now they're sharing with us. // perhaps we were already sharing with this person. Now they're sharing with us.
// That makes us friends. // That makes us friends.
if ($contact) { if ($contact) {
if ($following) { if ($following) {
logger("Author ".$author." (Contact ".$contact["id"].") wants to follow us.", LOGGER_DEBUG); logger("Author ".$author." (Contact ".$contact["id"].") wants to follow us.", LOGGER_DEBUG);
self::receive_request_make_friend($importer, $contact); self::receiveRequestMakeFriend($importer, $contact);
// refetch the contact array // refetch the contact array
$contact = self::contact_by_handle($importer["uid"], $author); $contact = self::contactByHandle($importer["uid"], $author);
// If we are now friends, we are sending a share message. // If we are now friends, we are sending a share message.
// Normally we needn't to do so, but the first message could have been vanished. // Normally we needn't to do so, but the first message could have been vanished.
@ -2397,7 +2400,7 @@ class Diaspora
$u = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1", intval($importer["uid"])); $u = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1", intval($importer["uid"]));
if ($u) { if ($u) {
logger("Sending share message to author ".$author." - Contact: ".$contact["id"]." - User: ".$importer["uid"], LOGGER_DEBUG); logger("Sending share message to author ".$author." - Contact: ".$contact["id"]." - User: ".$importer["uid"], LOGGER_DEBUG);
$ret = self::send_share($u[0], $contact); $ret = self::sendShare($u[0], $contact);
} }
} }
return true; return true;
@ -2422,7 +2425,7 @@ class Diaspora
logger("Author ".$author." wants to listen to us.", LOGGER_DEBUG); logger("Author ".$author." wants to listen to us.", LOGGER_DEBUG);
} }
$ret = self::person_by_handle($author); $ret = self::personByHandle($author);
if (!$ret || ($ret["network"] != NETWORK_DIASPORA)) { if (!$ret || ($ret["network"] != NETWORK_DIASPORA)) {
logger("Cannot resolve diaspora handle ".$author." for ".$recipient); logger("Cannot resolve diaspora handle ".$author." for ".$recipient);
@ -2453,7 +2456,7 @@ class Diaspora
// find the contact record we just created // find the contact record we just created
$contact_record = self::contact_by_handle($importer["uid"], $author); $contact_record = self::contactByHandle($importer["uid"], $author);
if (!$contact_record) { if (!$contact_record) {
logger("unable to locate newly created contact record."); logger("unable to locate newly created contact record.");
@ -2523,10 +2526,10 @@ class Diaspora
$u = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1", intval($importer["uid"])); $u = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1", intval($importer["uid"]));
if ($u) { if ($u) {
logger("Sending share message (Relation: ".$new_relation.") to author ".$author." - Contact: ".$contact_record["id"]." - User: ".$importer["uid"], LOGGER_DEBUG); logger("Sending share message (Relation: ".$new_relation.") to author ".$author." - Contact: ".$contact_record["id"]." - User: ".$importer["uid"], LOGGER_DEBUG);
$ret = self::send_share($u[0], $contact_record); $ret = self::sendShare($u[0], $contact_record);
// Send the profile data, maybe it weren't transmitted before // Send the profile data, maybe it weren't transmitted before
self::send_profile($importer["uid"], array($contact_record)); self::sendProfile($importer["uid"], array($contact_record));
} }
} }
@ -2542,7 +2545,7 @@ class Diaspora
* *
* @return array The fetched item * @return array The fetched item
*/ */
private static function original_item($guid, $orig_author, $author) private static function originalItem($guid, $orig_author, $author)
{ {
// Do we already have this item? // Do we already have this item?
$r = q( $r = q(
@ -2558,12 +2561,12 @@ class Diaspora
// Maybe it is already a reshared item? // Maybe it is already a reshared item?
// Then refetch the content, if it is a reshare from a reshare. // Then refetch the content, if it is a reshare from a reshare.
// If it is a reshared post from another network then reformat to avoid display problems with two share elements // If it is a reshared post from another network then reformat to avoid display problems with two share elements
if (self::is_reshare($r[0]["body"], true)) { if (self::isReshare($r[0]["body"], true)) {
$r = array(); $r = array();
} elseif (self::is_reshare($r[0]["body"], false) || strstr($r[0]["body"], "[share")) { } elseif (self::isReshare($r[0]["body"], false) || strstr($r[0]["body"], "[share")) {
$r[0]["body"] = diaspora2bb(bb2diaspora($r[0]["body"])); $r[0]["body"] = diaspora2bb(bb2diaspora($r[0]["body"]));
$r[0]["body"] = self::replace_people_guid($r[0]["body"], $r[0]["author-link"]); $r[0]["body"] = self::replacePeopleGuid($r[0]["body"], $r[0]["author-link"]);
// Add OEmbed and other information to the body // Add OEmbed and other information to the body
$r[0]["body"] = add_page_info_to_body($r[0]["body"], false, true); $r[0]["body"] = add_page_info_to_body($r[0]["body"], false, true);
@ -2577,12 +2580,12 @@ class Diaspora
if (!DBM::is_result($r)) { if (!DBM::is_result($r)) {
$server = "https://".substr($orig_author, strpos($orig_author, "@") + 1); $server = "https://".substr($orig_author, strpos($orig_author, "@") + 1);
logger("1st try: reshared message ".$guid." will be fetched via SSL from the server ".$server); logger("1st try: reshared message ".$guid." will be fetched via SSL from the server ".$server);
$item_id = self::store_by_guid($guid, $server); $item_id = self::storeByGuid($guid, $server);
if (!$item_id) { if (!$item_id) {
$server = "http://".substr($orig_author, strpos($orig_author, "@") + 1); $server = "http://".substr($orig_author, strpos($orig_author, "@") + 1);
logger("2nd try: reshared message ".$guid." will be fetched without SLL from the server ".$server); logger("2nd try: reshared message ".$guid." will be fetched without SLL from the server ".$server);
$item_id = self::store_by_guid($guid, $server); $item_id = self::storeByGuid($guid, $server);
} }
if ($item_id) { if ($item_id) {
@ -2595,9 +2598,9 @@ class Diaspora
if (DBM::is_result($r)) { if (DBM::is_result($r)) {
// If it is a reshared post from another network then reformat to avoid display problems with two share elements // If it is a reshared post from another network then reformat to avoid display problems with two share elements
if (self::is_reshare($r[0]["body"], false)) { if (self::isReshare($r[0]["body"], false)) {
$r[0]["body"] = diaspora2bb(bb2diaspora($r[0]["body"])); $r[0]["body"] = diaspora2bb(bb2diaspora($r[0]["body"]));
$r[0]["body"] = self::replace_people_guid($r[0]["body"], $r[0]["author-link"]); $r[0]["body"] = self::replacePeopleGuid($r[0]["body"], $r[0]["author-link"]);
} }
return $r[0]; return $r[0];
@ -2616,7 +2619,7 @@ class Diaspora
* *
* @return int the message id * @return int the message id
*/ */
private static function receive_reshare($importer, $data, $xml) private static function receiveReshare($importer, $data, $xml)
{ {
$author = notags(unxmlify($data->author)); $author = notags(unxmlify($data->author));
$guid = notags(unxmlify($data->guid)); $guid = notags(unxmlify($data->guid));
@ -2626,17 +2629,17 @@ class Diaspora
/// @todo handle unprocessed property "provider_display_name" /// @todo handle unprocessed property "provider_display_name"
$public = notags(unxmlify($data->public)); $public = notags(unxmlify($data->public));
$contact = self::allowed_contact_by_handle($importer, $author, false); $contact = self::allowedContactByHandle($importer, $author, false);
if (!$contact) { if (!$contact) {
return false; return false;
} }
$message_id = self::message_exists($importer["uid"], $guid); $message_id = self::messageExists($importer["uid"], $guid);
if ($message_id) { if ($message_id) {
return true; return true;
} }
$original_item = self::original_item($root_guid, $root_author, $author); $original_item = self::originalItem($root_guid, $root_author, $author);
if (!$original_item) { if (!$original_item) {
return false; return false;
} }
@ -2658,7 +2661,7 @@ class Diaspora
$datarray["owner-avatar"] = $datarray["author-avatar"]; $datarray["owner-avatar"] = $datarray["author-avatar"];
$datarray["guid"] = $guid; $datarray["guid"] = $guid;
$datarray["uri"] = $datarray["parent-uri"] = self::get_uri_from_guid($author, $guid); $datarray["uri"] = $datarray["parent-uri"] = self::getUriFromGuid($author, $guid);
$datarray["verb"] = ACTIVITY_POST; $datarray["verb"] = ACTIVITY_POST;
$datarray["gravity"] = GRAVITY_PARENT; $datarray["gravity"] = GRAVITY_PARENT;
@ -2685,7 +2688,7 @@ class Diaspora
$datarray["object-type"] = $original_item["object-type"]; $datarray["object-type"] = $original_item["object-type"];
self::fetch_guid($datarray); self::fetchGuid($datarray);
$message_id = item_store($datarray); $message_id = item_store($datarray);
if ($message_id) { if ($message_id) {
@ -2705,13 +2708,13 @@ class Diaspora
* *
* @return bool success * @return bool success
*/ */
private static function item_retraction($importer, $contact, $data) private static function itemRetraction($importer, $contact, $data)
{ {
$author = notags(unxmlify($data->author)); $author = notags(unxmlify($data->author));
$target_guid = notags(unxmlify($data->target_guid)); $target_guid = notags(unxmlify($data->target_guid));
$target_type = notags(unxmlify($data->target_type)); $target_type = notags(unxmlify($data->target_type));
$person = self::person_by_handle($author); $person = self::personByHandle($author);
if (!is_array($person)) { if (!is_array($person)) {
logger("unable to find author detail for ".$author); logger("unable to find author detail for ".$author);
return false; return false;
@ -2785,11 +2788,11 @@ class Diaspora
* *
* @return bool Success * @return bool Success
*/ */
private static function receive_retraction($importer, $sender, $data) private static function receiveRetraction($importer, $sender, $data)
{ {
$target_type = notags(unxmlify($data->target_type)); $target_type = notags(unxmlify($data->target_type));
$contact = self::contact_by_handle($importer["uid"], $sender); $contact = self::contactByHandle($importer["uid"], $sender);
if (!$contact && (in_array($target_type, array("Contact", "Person")))) { if (!$contact && (in_array($target_type, array("Contact", "Person")))) {
logger("cannot find contact for sender: ".$sender." and user ".$importer["uid"]); logger("cannot find contact for sender: ".$sender." and user ".$importer["uid"]);
return false; return false;
@ -2803,7 +2806,7 @@ class Diaspora
case "Post": case "Post":
case "Reshare": case "Reshare":
case "StatusMessage": case "StatusMessage":
return self::item_retraction($importer, $contact, $data); return self::itemRetraction($importer, $contact, $data);
case "Contact": case "Contact":
case "Person": case "Person":
@ -2828,7 +2831,7 @@ class Diaspora
* *
* @return int The message id of the newly created item * @return int The message id of the newly created item
*/ */
private static function receive_status_message($importer, $data, $xml) private static function receiveStatusMessage($importer, $data, $xml)
{ {
$author = notags(unxmlify($data->author)); $author = notags(unxmlify($data->author));
$guid = notags(unxmlify($data->guid)); $guid = notags(unxmlify($data->guid));
@ -2837,12 +2840,12 @@ class Diaspora
$text = unxmlify($data->text); $text = unxmlify($data->text);
$provider_display_name = notags(unxmlify($data->provider_display_name)); $provider_display_name = notags(unxmlify($data->provider_display_name));
$contact = self::allowed_contact_by_handle($importer, $author, false); $contact = self::allowedContactByHandle($importer, $author, false);
if (!$contact) { if (!$contact) {
return false; return false;
} }
$message_id = self::message_exists($importer["uid"], $guid); $message_id = self::messageExists($importer["uid"], $guid);
if ($message_id) { if ($message_id) {
return true; return true;
} }
@ -2870,7 +2873,7 @@ class Diaspora
$datarray["object-type"] = ACTIVITY_OBJ_NOTE; $datarray["object-type"] = ACTIVITY_OBJ_NOTE;
// Add OEmbed and other information to the body // Add OEmbed and other information to the body
if (!self::is_redmatrix($contact["url"])) { if (!self::isRedmatrix($contact["url"])) {
$body = add_page_info_to_body($body, false, true); $body = add_page_info_to_body($body, false, true);
} }
} }
@ -2897,7 +2900,7 @@ class Diaspora
$datarray["owner-avatar"] = $datarray["author-avatar"]; $datarray["owner-avatar"] = $datarray["author-avatar"];
$datarray["guid"] = $guid; $datarray["guid"] = $guid;
$datarray["uri"] = $datarray["parent-uri"] = self::get_uri_from_guid($author, $guid); $datarray["uri"] = $datarray["parent-uri"] = self::getUriFromGuid($author, $guid);
$datarray["verb"] = ACTIVITY_POST; $datarray["verb"] = ACTIVITY_POST;
$datarray["gravity"] = GRAVITY_PARENT; $datarray["gravity"] = GRAVITY_PARENT;
@ -2905,7 +2908,7 @@ class Diaspora
$datarray["protocol"] = PROTOCOL_DIASPORA; $datarray["protocol"] = PROTOCOL_DIASPORA;
$datarray["source"] = $xml; $datarray["source"] = $xml;
$datarray["body"] = self::replace_people_guid($body, $contact["url"]); $datarray["body"] = self::replacePeopleGuid($body, $contact["url"]);
if ($provider_display_name != "") { if ($provider_display_name != "") {
$datarray["app"] = $provider_display_name; $datarray["app"] = $provider_display_name;
@ -2923,7 +2926,7 @@ class Diaspora
$datarray["coord"] = $address["lat"]." ".$address["lng"]; $datarray["coord"] = $address["lat"]." ".$address["lng"];
} }
self::fetch_guid($datarray); self::fetchGuid($datarray);
$message_id = item_store($datarray); $message_id = item_store($datarray);
if ($message_id) { if ($message_id) {
@ -2945,7 +2948,7 @@ class Diaspora
* *
* @return string the handle in the format user@domain.tld * @return string the handle in the format user@domain.tld
*/ */
private static function my_handle($contact) private static function myHandle($contact)
{ {
if ($contact["addr"] != "") { if ($contact["addr"] != "") {
return $contact["addr"]; return $contact["addr"];
@ -2974,7 +2977,7 @@ class Diaspora
* *
* @return string The encrypted data * @return string The encrypted data
*/ */
public static function encode_private_data($msg, $user, $contact, $prvkey, $pubkey) public static function encodePrivateData($msg, $user, $contact, $prvkey, $pubkey)
{ {
logger("Message: ".$msg, LOGGER_DATA); logger("Message: ".$msg, LOGGER_DATA);
@ -2989,7 +2992,7 @@ class Diaspora
$iv = openssl_random_pseudo_bytes(16); $iv = openssl_random_pseudo_bytes(16);
$b_iv = base64_encode($iv); $b_iv = base64_encode($iv);
$ciphertext = self::aes_encrypt($aes_key, $iv, $msg); $ciphertext = self::aesEncrypt($aes_key, $iv, $msg);
$json = json_encode(array("iv" => $b_iv, "key" => $b_aes_key)); $json = json_encode(array("iv" => $b_iv, "key" => $b_aes_key));
@ -3012,12 +3015,12 @@ class Diaspora
* *
* @return string The envelope * @return string The envelope
*/ */
public static function build_magic_envelope($msg, $user) public static function buildMagicEnvelope($msg, $user)
{ {
$b64url_data = base64url_encode($msg); $b64url_data = base64url_encode($msg);
$data = str_replace(array("\n", "\r", " ", "\t"), array("", "", "", ""), $b64url_data); $data = str_replace(array("\n", "\r", " ", "\t"), array("", "", "", ""), $b64url_data);
$key_id = base64url_encode(self::my_handle($user)); $key_id = base64url_encode(self::myHandle($user));
$type = "application/xml"; $type = "application/xml";
$encoding = "base64url"; $encoding = "base64url";
$alg = "RSA-SHA256"; $alg = "RSA-SHA256";
@ -3055,14 +3058,14 @@ class Diaspora
* *
* @return string The message that will be transmitted to other servers * @return string The message that will be transmitted to other servers
*/ */
private static function build_message($msg, $user, $contact, $prvkey, $pubkey, $public = false) private static function buildMessage($msg, $user, $contact, $prvkey, $pubkey, $public = false)
{ {
// The message is put into an envelope with the sender's signature // The message is put into an envelope with the sender's signature
$envelope = self::build_magic_envelope($msg, $user); $envelope = self::buildMagicEnvelope($msg, $user);
// Private messages are put into a second envelope, encrypted with the receivers public key // Private messages are put into a second envelope, encrypted with the receivers public key
if (!$public) { if (!$public) {
$envelope = self::encode_private_data($envelope, $user, $contact, $prvkey, $pubkey); $envelope = self::encodePrivateData($envelope, $user, $contact, $prvkey, $pubkey);
} }
return $envelope; return $envelope;
@ -3169,7 +3172,7 @@ class Diaspora
* *
* @return string The post XML * @return string The post XML
*/ */
public static function build_post_xml($type, $message) public static function buildPostXml($type, $message)
{ {
$data = array($type => $message); $data = array($type => $message);
@ -3189,9 +3192,9 @@ class Diaspora
* *
* @return int Result of the transmission * @return int Result of the transmission
*/ */
private static function build_and_transmit($owner, $contact, $type, $message, $public_batch = false, $guid = "", $spool = false) private static function buildAndTransmit($owner, $contact, $type, $message, $public_batch = false, $guid = "", $spool = false)
{ {
$msg = self::build_post_xml($type, $message); $msg = self::buildPostXml($type, $message);
logger('message: '.$msg, LOGGER_DATA); logger('message: '.$msg, LOGGER_DATA);
logger('send guid '.$guid, LOGGER_DEBUG); logger('send guid '.$guid, LOGGER_DEBUG);
@ -3201,7 +3204,7 @@ class Diaspora
$owner['uprvkey'] = $owner['prvkey']; $owner['uprvkey'] = $owner['prvkey'];
} }
$envelope = self::build_message($msg, $owner, $contact, $owner['uprvkey'], $contact['pubkey'], $public_batch); $envelope = self::buildMessage($msg, $owner, $contact, $owner['uprvkey'], $contact['pubkey'], $public_batch);
if ($spool) { if ($spool) {
add_to_queue($contact['id'], NETWORK_DIASPORA, $envelope, $public_batch); add_to_queue($contact['id'], NETWORK_DIASPORA, $envelope, $public_batch);
@ -3238,7 +3241,7 @@ class Diaspora
logger("Send account migration ".print_r($message, true), LOGGER_DEBUG); logger("Send account migration ".print_r($message, true), LOGGER_DEBUG);
return self::build_and_transmit($owner, $contact, "account_migration", $message); return self::buildAndTransmit($owner, $contact, "account_migration", $message);
} }
/** /**
@ -3249,13 +3252,13 @@ class Diaspora
* *
* @return int The result of the transmission * @return int The result of the transmission
*/ */
public static function send_share($owner, $contact) public static function sendShare($owner, $contact)
{ {
/** /**
* @todo support the different possible combinations of "following" and "sharing" * @todo support the different possible combinations of "following" and "sharing"
* Currently, Diaspora only interprets the "sharing" field * Currently, Diaspora only interprets the "sharing" field
* *
* Before switching this code productive, we have to check all "send_share" calls if "rel" is set correctly * Before switching this code productive, we have to check all "sendShare" calls if "rel" is set correctly
*/ */
/* /*
@ -3272,14 +3275,14 @@ class Diaspora
} }
*/ */
$message = array("author" => self::my_handle($owner), $message = array("author" => self::myHandle($owner),
"recipient" => $contact["addr"], "recipient" => $contact["addr"],
"following" => "true", "following" => "true",
"sharing" => "true"); "sharing" => "true");
logger("Send share ".print_r($message, true), LOGGER_DEBUG); logger("Send share ".print_r($message, true), LOGGER_DEBUG);
return self::build_and_transmit($owner, $contact, "contact", $message); return self::buildAndTransmit($owner, $contact, "contact", $message);
} }
/** /**
@ -3292,14 +3295,14 @@ class Diaspora
*/ */
public static function sendUnshare($owner, $contact) public static function sendUnshare($owner, $contact)
{ {
$message = array("author" => self::my_handle($owner), $message = array("author" => self::myHandle($owner),
"recipient" => $contact["addr"], "recipient" => $contact["addr"],
"following" => "false", "following" => "false",
"sharing" => "false"); "sharing" => "false");
logger("Send unshare ".print_r($message, true), LOGGER_DEBUG); logger("Send unshare ".print_r($message, true), LOGGER_DEBUG);
return self::build_and_transmit($owner, $contact, "contact", $message); return self::buildAndTransmit($owner, $contact, "contact", $message);
} }
/** /**
@ -3310,7 +3313,7 @@ class Diaspora
* *
* @return array|bool Reshare details or "false" if no reshare * @return array|bool Reshare details or "false" if no reshare
*/ */
public static function is_reshare($body, $complete = true) public static function isReshare($body, $complete = true)
{ {
$body = trim($body); $body = trim($body);
@ -3356,7 +3359,7 @@ class Diaspora
); );
if ($r) { if ($r) {
$ret= array(); $ret= array();
$ret["root_handle"] = self::handle_from_contact($r[0]["contact-id"]); $ret["root_handle"] = self::handleFromContact($r[0]["contact-id"]);
$ret["root_guid"] = $guid; $ret["root_guid"] = $guid;
return($ret); return($ret);
} }
@ -3406,7 +3409,7 @@ class Diaspora
* *
* @return array with event data * @return array with event data
*/ */
private static function build_event($event_id) private static function buildEvent($event_id)
{ {
$r = q("SELECT `guid`, `uid`, `start`, `finish`, `nofinish`, `summary`, `desc`, `location`, `adjust` FROM `event` WHERE `id` = %d", intval($event_id)); $r = q("SELECT `guid`, `uid`, `start`, `finish`, `nofinish`, `summary`, `desc`, `location`, `adjust` FROM `event` WHERE `id` = %d", intval($event_id));
if (!DBM::is_result($r)) { if (!DBM::is_result($r)) {
@ -3431,7 +3434,7 @@ class Diaspora
$owner = $r[0]; $owner = $r[0];
$eventdata['author'] = self::my_handle($owner); $eventdata['author'] = self::myHandle($owner);
if ($event['guid']) { if ($event['guid']) {
$eventdata['guid'] = $event['guid']; $eventdata['guid'] = $event['guid'];
@ -3483,23 +3486,23 @@ class Diaspora
* 'type' -> Message type ("status_message" or "reshare") * 'type' -> Message type ("status_message" or "reshare")
* 'message' -> Array of XML elements of the status * 'message' -> Array of XML elements of the status
*/ */
public static function build_status($item, $owner) public static function buildStatus($item, $owner)
{ {
$cachekey = "diaspora:build_status:".$item['guid']; $cachekey = "diaspora:buildStatus:".$item['guid'];
$result = Cache::get($cachekey); $result = Cache::get($cachekey);
if (!is_null($result)) { if (!is_null($result)) {
return $result; return $result;
} }
$myaddr = self::my_handle($owner); $myaddr = self::myHandle($owner);
$public = (($item["private"]) ? "false" : "true"); $public = (($item["private"]) ? "false" : "true");
$created = datetime_convert("UTC", "UTC", $item["created"], 'Y-m-d\TH:i:s\Z'); $created = datetime_convert("UTC", "UTC", $item["created"], 'Y-m-d\TH:i:s\Z');
// Detect a share element and do a reshare // Detect a share element and do a reshare
if (!$item['private'] && ($ret = self::is_reshare($item["body"]))) { if (!$item['private'] && ($ret = self::isReshare($item["body"]))) {
$message = array("author" => $myaddr, $message = array("author" => $myaddr,
"guid" => $item["guid"], "guid" => $item["guid"],
"created_at" => $created, "created_at" => $created,
@ -3556,7 +3559,7 @@ class Diaspora
} }
if ($item['event-id'] > 0) { if ($item['event-id'] > 0) {
$event = self::build_event($item['event-id']); $event = self::buildEvent($item['event-id']);
if (count($event)) { if (count($event)) {
$message['event'] = $event; $message['event'] = $event;
@ -3585,11 +3588,11 @@ class Diaspora
* *
* @return int The result of the transmission * @return int The result of the transmission
*/ */
public static function send_status($item, $owner, $contact, $public_batch = false) public static function sendStatus($item, $owner, $contact, $public_batch = false)
{ {
$status = self::build_status($item, $owner); $status = self::buildStatus($item, $owner);
return self::build_and_transmit($owner, $contact, $status["type"], $status["message"], $public_batch, $item["guid"]); return self::buildAndTransmit($owner, $contact, $status["type"], $status["message"], $public_batch, $item["guid"]);
} }
/** /**
@ -3600,7 +3603,7 @@ class Diaspora
* *
* @return array The data for a "like" * @return array The data for a "like"
*/ */
private static function construct_like($item, $owner) private static function constructLike($item, $owner)
{ {
$p = q( $p = q(
"SELECT `guid`, `uri`, `parent-uri` FROM `item` WHERE `uri` = '%s' LIMIT 1", "SELECT `guid`, `uri`, `parent-uri` FROM `item` WHERE `uri` = '%s' LIMIT 1",
@ -3619,7 +3622,7 @@ class Diaspora
$positive = "false"; $positive = "false";
} }
return(array("author" => self::my_handle($owner), return(array("author" => self::myHandle($owner),
"guid" => $item["guid"], "guid" => $item["guid"],
"parent_guid" => $parent["guid"], "parent_guid" => $parent["guid"],
"parent_type" => $target_type, "parent_type" => $target_type,
@ -3635,8 +3638,8 @@ class Diaspora
* *
* @return array The data for an "EventParticipation" * @return array The data for an "EventParticipation"
*/ */
private static function construct_attend($item, $owner) { private static function constructAttend($item, $owner)
{
$p = q( $p = q(
"SELECT `guid`, `uri`, `parent-uri` FROM `item` WHERE `uri` = '%s' LIMIT 1", "SELECT `guid`, `uri`, `parent-uri` FROM `item` WHERE `uri` = '%s' LIMIT 1",
dbesc($item["thr-parent"]) dbesc($item["thr-parent"])
@ -3662,7 +3665,7 @@ class Diaspora
return false; return false;
} }
return(array("author" => self::my_handle($owner), return(array("author" => self::myHandle($owner),
"guid" => $item["guid"], "guid" => $item["guid"],
"parent_guid" => $parent["guid"], "parent_guid" => $parent["guid"],
"status" => $attend_answer, "status" => $attend_answer,
@ -3677,9 +3680,9 @@ class Diaspora
* *
* @return array The data for a comment * @return array The data for a comment
*/ */
private static function construct_comment($item, $owner) private static function constructComment($item, $owner)
{ {
$cachekey = "diaspora:construct_comment:".$item['guid']; $cachekey = "diaspora:constructComment:".$item['guid'];
$result = Cache::get($cachekey); $result = Cache::get($cachekey);
if (!is_null($result)) { if (!is_null($result)) {
@ -3701,7 +3704,7 @@ class Diaspora
$text = html_entity_decode(bb2diaspora($item["body"])); $text = html_entity_decode(bb2diaspora($item["body"]));
$created = datetime_convert("UTC", "UTC", $item["created"], 'Y-m-d\TH:i:s\Z'); $created = datetime_convert("UTC", "UTC", $item["created"], 'Y-m-d\TH:i:s\Z');
$comment = array("author" => self::my_handle($owner), $comment = array("author" => self::myHandle($owner),
"guid" => $item["guid"], "guid" => $item["guid"],
"created_at" => $created, "created_at" => $created,
"parent_guid" => $parent["guid"], "parent_guid" => $parent["guid"],
@ -3710,7 +3713,7 @@ class Diaspora
// Send the thread parent guid only if it is a threaded comment // Send the thread parent guid only if it is a threaded comment
if ($item['thr-parent'] != $item['parent-uri']) { if ($item['thr-parent'] != $item['parent-uri']) {
$comment['thread_parent_guid'] = self::get_guid_from_uri($item['thr-parent'], $item['uid']); $comment['thread_parent_guid'] = self::getGuidFromUri($item['thr-parent'], $item['uid']);
} }
Cache::set($cachekey, $comment, CACHE_QUARTER_HOUR); Cache::set($cachekey, $comment, CACHE_QUARTER_HOUR);
@ -3728,16 +3731,16 @@ class Diaspora
* *
* @return int The result of the transmission * @return int The result of the transmission
*/ */
public static function send_followup($item, $owner, $contact, $public_batch = false) public static function sendFollowup($item, $owner, $contact, $public_batch = false)
{ {
if (in_array($item['verb'], array(ACTIVITY_ATTEND, ACTIVITY_ATTENDNO, ACTIVITY_ATTENDMAYBE))) { if (in_array($item['verb'], array(ACTIVITY_ATTEND, ACTIVITY_ATTENDNO, ACTIVITY_ATTENDMAYBE))) {
$message = self::construct_attend($item, $owner); $message = self::constructAttend($item, $owner);
$type = "event_participation"; $type = "event_participation";
} elseif (in_array($item["verb"], array(ACTIVITY_LIKE, ACTIVITY_DISLIKE))) { } elseif (in_array($item["verb"], array(ACTIVITY_LIKE, ACTIVITY_DISLIKE))) {
$message = self::construct_like($item, $owner); $message = self::constructLike($item, $owner);
$type = "like"; $type = "like";
} else { } else {
$message = self::construct_comment($item, $owner); $message = self::constructComment($item, $owner);
$type = "comment"; $type = "comment";
} }
@ -3747,7 +3750,7 @@ class Diaspora
$message["author_signature"] = self::signature($owner, $message); $message["author_signature"] = self::signature($owner, $message);
return self::build_and_transmit($owner, $contact, $type, $message, $public_batch, $item["guid"]); return self::buildAndTransmit($owner, $contact, $type, $message, $public_batch, $item["guid"]);
} }
/** /**
@ -3758,7 +3761,7 @@ class Diaspora
* *
* @return string The message * @return string The message
*/ */
private static function message_from_signature($item, $signature) private static function messageFromSignature($item, $signature)
{ {
// Split the signed text // Split the signed text
$signed_parts = explode(";", $signature['signed_text']); $signed_parts = explode(";", $signature['signed_text']);
@ -3808,10 +3811,10 @@ class Diaspora
* *
* @return int The result of the transmission * @return int The result of the transmission
*/ */
public static function send_relay($item, $owner, $contact, $public_batch = false) public static function sendRelay($item, $owner, $contact, $public_batch = false)
{ {
if ($item["deleted"]) { if ($item["deleted"]) {
return self::send_retraction($item, $owner, $contact, $public_batch, true); return self::sendRetraction($item, $owner, $contact, $public_batch, true);
} elseif (in_array($item["verb"], array(ACTIVITY_LIKE, ACTIVITY_DISLIKE))) { } elseif (in_array($item["verb"], array(ACTIVITY_LIKE, ACTIVITY_DISLIKE))) {
$type = "like"; $type = "like";
} else { } else {
@ -3837,13 +3840,13 @@ class Diaspora
// Old way - is used by the internal Friendica functions // Old way - is used by the internal Friendica functions
/// @todo Change all signatur storing functions to the new format /// @todo Change all signatur storing functions to the new format
if ($signature['signed_text'] && $signature['signature'] && $signature['signer']) { if ($signature['signed_text'] && $signature['signature'] && $signature['signer']) {
$message = self::message_from_signature($item, $signature); $message = self::messageFromSignature($item, $signature);
} else {// New way } else {// New way
$msg = json_decode($signature['signed_text'], true); $msg = json_decode($signature['signed_text'], true);
$message = array(); $message = array();
if (is_array($msg)) { if (is_array($msg)) {
foreach ($msg AS $field => $data) { foreach ($msg as $field => $data) {
if (!$item["deleted"]) { if (!$item["deleted"]) {
if ($field == "diaspora_handle") { if ($field == "diaspora_handle") {
$field = "author"; $field = "author";
@ -3864,7 +3867,7 @@ class Diaspora
logger("Relayed data ".print_r($message, true), LOGGER_DEBUG); logger("Relayed data ".print_r($message, true), LOGGER_DEBUG);
return self::build_and_transmit($owner, $contact, $type, $message, $public_batch, $item["guid"]); return self::buildAndTransmit($owner, $contact, $type, $message, $public_batch, $item["guid"]);
} }
/** /**
@ -3878,9 +3881,9 @@ class Diaspora
* *
* @return int The result of the transmission * @return int The result of the transmission
*/ */
public static function send_retraction($item, $owner, $contact, $public_batch = false, $relay = false) public static function sendRetraction($item, $owner, $contact, $public_batch = false, $relay = false)
{ {
$itemaddr = self::handle_from_contact($item["contact-id"], $item["gcontact-id"]); $itemaddr = self::handleFromContact($item["contact-id"], $item["gcontact-id"]);
$msg_type = "retraction"; $msg_type = "retraction";
@ -3898,7 +3901,7 @@ class Diaspora
logger("Got message ".print_r($message, true), LOGGER_DEBUG); logger("Got message ".print_r($message, true), LOGGER_DEBUG);
return self::build_and_transmit($owner, $contact, $msg_type, $message, $public_batch, $item["guid"]); return self::buildAndTransmit($owner, $contact, $msg_type, $message, $public_batch, $item["guid"]);
} }
/** /**
@ -3910,9 +3913,9 @@ class Diaspora
* *
* @return int The result of the transmission * @return int The result of the transmission
*/ */
public static function send_mail($item, $owner, $contact) public static function sendMail($item, $owner, $contact)
{ {
$myaddr = self::my_handle($owner); $myaddr = self::myHandle($owner);
$r = q( $r = q(
"SELECT * FROM `conv` WHERE `id` = %d AND `uid` = %d LIMIT 1", "SELECT * FROM `conv` WHERE `id` = %d AND `uid` = %d LIMIT 1",
@ -3960,7 +3963,7 @@ class Diaspora
$type = "conversation"; $type = "conversation";
} }
return self::build_and_transmit($owner, $contact, $type, $message, false, $item["guid"]); return self::buildAndTransmit($owner, $contact, $type, $message, false, $item["guid"]);
} }
/** /**
@ -4042,8 +4045,10 @@ class Diaspora
* @brief Sends profile data * @brief Sends profile data
* *
* @param int $uid The user id * @param int $uid The user id
* @param bool $recips optional, default false
* @return void
*/ */
public static function send_profile($uid, $recips = false) public static function sendProfile($uid, $recips = false)
{ {
if (!$uid) { if (!$uid) {
return; return;
@ -4067,7 +4072,7 @@ class Diaspora
foreach ($recips as $recip) { foreach ($recips as $recip) {
logger("Send updated profile data for user ".$uid." to contact ".$recip["id"], LOGGER_DEBUG); logger("Send updated profile data for user ".$uid." to contact ".$recip["id"], LOGGER_DEBUG);
self::build_and_transmit($profile, $recip, "profile", $message, false, "", true); self::buildAndTransmit($profile, $recip, "profile", $message, false, "", true);
} }
} }
@ -4079,7 +4084,7 @@ class Diaspora
* *
* @return bool Success * @return bool Success
*/ */
public static function store_like_signature($contact, $post_id) public static function storeLikeSignature($contact, $post_id)
{ {
// Is the contact the owner? Then fetch the private key // Is the contact the owner? Then fetch the private key
if (!$contact['self'] || ($contact['uid'] == 0)) { if (!$contact['self'] || ($contact['uid'] == 0)) {
@ -4103,7 +4108,7 @@ class Diaspora
return false; return false;
} }
$message = self::construct_like($r[0], $contact); $message = self::constructLike($r[0], $contact);
$message["author_signature"] = self::signature($contact, $message); $message["author_signature"] = self::signature($contact, $message);
/* /*
@ -4126,7 +4131,7 @@ class Diaspora
* *
* @return bool Success * @return bool Success
*/ */
public static function store_comment_signature($item, $contact, $uprvkey, $message_id) public static function storeCommentSignature($item, $contact, $uprvkey, $message_id)
{ {
if ($uprvkey == "") { if ($uprvkey == "") {
logger('No private key, so not storing comment signature', LOGGER_DEBUG); logger('No private key, so not storing comment signature', LOGGER_DEBUG);
@ -4135,7 +4140,7 @@ class Diaspora
$contact["uprvkey"] = $uprvkey; $contact["uprvkey"] = $uprvkey;
$message = self::construct_comment($item, $contact); $message = self::constructComment($item, $contact);
$message["author_signature"] = self::signature($contact, $message); $message["author_signature"] = self::signature($contact, $message);
/* /*

View file

@ -298,6 +298,7 @@ class OStatus
* @param array $importer user record of the importing user * @param array $importer user record of the importing user
* @param array $contact contact * @param array $contact contact
* @param string $hub Called by reference, returns the fetched hub data * @param string $hub Called by reference, returns the fetched hub data
* @return void
*/ */
public static function import($xml, $importer, &$contact, &$hub) public static function import($xml, $importer, &$contact, &$hub)
{ {
@ -309,7 +310,7 @@ class OStatus
* *
* @param string $xml The XML * @param string $xml The XML
* @param array $importer user record of the importing user * @param array $importer user record of the importing user
* @param array $contact * @param array $contact contact
* @param string $hub Called by reference, returns the fetched hub data * @param string $hub Called by reference, returns the fetched hub data
* @param boolean $stored Is the post fresh imported or from the database? * @param boolean $stored Is the post fresh imported or from the database?
* @param boolean $initialize Is it the leading post so that data has to be initialized? * @param boolean $initialize Is it the leading post so that data has to be initialized?
@ -537,6 +538,10 @@ class OStatus
return true; return true;
} }
/**
* @param object $item item
* @return void
*/
private static function deleteNotice($item) private static function deleteNotice($item)
{ {
$condition = array('uid' => $item['uid'], 'author-link' => $item['author-link'], 'uri' => $item['uri']); $condition = array('uid' => $item['uid'], 'author-link' => $item['author-link'], 'uri' => $item['uri']);
@ -567,6 +572,7 @@ class OStatus
* @param object $entry The xml entry that is processed * @param object $entry The xml entry that is processed
* @param array $item The item array * @param array $item The item array
* @param array $importer user record of the importing user * @param array $importer user record of the importing user
* @return void
*/ */
private static function processPost($xpath, $entry, &$item, $importer) private static function processPost($xpath, $entry, &$item, $importer)
{ {
@ -708,6 +714,7 @@ class OStatus
* *
* @param string $conversation The link to the conversation * @param string $conversation The link to the conversation
* @param string $conversation_uri The conversation in "uri" format * @param string $conversation_uri The conversation in "uri" format
* @return void
*/ */
private static function fetchConversation($conversation, $conversation_uri) private static function fetchConversation($conversation, $conversation_uri)
{ {
@ -768,6 +775,7 @@ class OStatus
* @param string $xml The feed * @param string $xml The feed
* @param string $conversation conversation * @param string $conversation conversation
* @param string $conversation_uri conversation uri * @param string $conversation_uri conversation uri
* @return void
*/ */
private static function storeConversation($xml, $conversation = '', $conversation_uri = '') private static function storeConversation($xml, $conversation = '', $conversation_uri = '')
{ {
@ -844,13 +852,14 @@ class OStatus
/** /**
* @brief Fetch the own post so that it can be stored later * @brief Fetch the own post so that it can be stored later
* @param array $item The item array
* *
* We want to store the original data for later processing. * We want to store the original data for later processing.
* This function is meant for cases where we process a feed with multiple entries. * This function is meant for cases where we process a feed with multiple entries.
* In that case we need to fetch the single posts here. * In that case we need to fetch the single posts here.
* *
* @param string $self The link to the self item * @param string $self The link to the self item
* @param array $item The item array
* @return void
*/ */
private static function fetchSelf($self, &$item) private static function fetchSelf($self, &$item)
{ {
@ -885,6 +894,7 @@ class OStatus
* @param string $related The link to the related item * @param string $related The link to the related item
* @param string $related_uri The related item in "uri" format * @param string $related_uri The related item in "uri" format
* @param array $importer user record of the importing user * @param array $importer user record of the importing user
* @return void
*/ */
private static function fetchRelated($related, $related_uri, $importer) private static function fetchRelated($related, $related_uri, $importer)
{ {
@ -1293,6 +1303,7 @@ class OStatus
* @param object $doc XML document * @param object $doc XML document
* @param object $root XML root element where the hub links are added * @param object $root XML root element where the hub links are added
* @param object $nick nick * @param object $nick nick
* @return void
*/ */
public static function hublinks($doc, $root, $nick) public static function hublinks($doc, $root, $nick)
{ {
@ -1306,6 +1317,7 @@ class OStatus
* @param object $doc XML document * @param object $doc XML document
* @param object $root XML root element where the hub links are added * @param object $root XML root element where the hub links are added
* @param array $item Data of the item that is to be posted * @param array $item Data of the item that is to be posted
* @return void
*/ */
private static function getAttachment($doc, $root, $item) private static function getAttachment($doc, $root, $item)
{ {
@ -1582,7 +1594,7 @@ class OStatus
* @param object $doc XML document * @param object $doc XML document
* @param array $item Data of the item that is to be posted * @param array $item Data of the item that is to be posted
* @param array $owner Contact data of the poster * @param array $owner Contact data of the poster
* @param $repeated_guid * @param string $repeated_guid guid
* @param bool $toplevel Is it for en entry element (false) or a feed entry (true)? * @param bool $toplevel Is it for en entry element (false) or a feed entry (true)?
* *
* @return object Entry element * @return object Entry element
@ -1872,6 +1884,7 @@ class OStatus
* @param string $title Title for the post * @param string $title Title for the post
* @param string $verb The activity verb * @param string $verb The activity verb
* @param bool $complete Add the "status_net" element? * @param bool $complete Add the "status_net" element?
* @return void
*/ */
private static function entryContent($doc, $entry, $item, $owner, $title, $verb = "", $complete = true) private static function entryContent($doc, $entry, $item, $owner, $title, $verb = "", $complete = true)
{ {
@ -1914,6 +1927,7 @@ class OStatus
* @param array $item Data of the item that is to be posted * @param array $item Data of the item that is to be posted
* @param array $owner Contact data of the poster * @param array $owner Contact data of the poster
* @param bool $complete default true * @param bool $complete default true
* @return void
*/ */
private static function entryFooter($doc, $entry, $item, $owner, $complete = true) private static function entryFooter($doc, $entry, $item, $owner, $complete = true)
{ {

View file

@ -485,7 +485,7 @@ class Delivery {
break; break;
if ($mail) { if ($mail) {
Diaspora::send_mail($item,$owner,$contact); Diaspora::sendMail($item,$owner,$contact);
break; break;
} }
@ -498,7 +498,7 @@ class Delivery {
if (($target_item['deleted']) && (($target_item['uri'] === $target_item['parent-uri']) || $followup)) { if (($target_item['deleted']) && (($target_item['uri'] === $target_item['parent-uri']) || $followup)) {
// top-level retraction // top-level retraction
logger('diaspora retract: '.$loc); logger('diaspora retract: '.$loc);
Diaspora::send_retraction($target_item,$owner,$contact,$public_message); Diaspora::sendRetraction($target_item,$owner,$contact,$public_message);
break; break;
} elseif ($relocate) { } elseif ($relocate) {
Diaspora::sendAccountMigration($owner, $contact, $uid); Diaspora::sendAccountMigration($owner, $contact, $uid);
@ -506,17 +506,17 @@ class Delivery {
} elseif ($followup) { } elseif ($followup) {
// send comments and likes to owner to relay // send comments and likes to owner to relay
logger('diaspora followup: '.$loc); logger('diaspora followup: '.$loc);
Diaspora::send_followup($target_item,$owner,$contact,$public_message); Diaspora::sendFollowup($target_item,$owner,$contact,$public_message);
break; break;
} elseif ($target_item['uri'] !== $target_item['parent-uri']) { } elseif ($target_item['uri'] !== $target_item['parent-uri']) {
// we are the relay - send comments, likes and relayable_retractions to our conversants // we are the relay - send comments, likes and relayable_retractions to our conversants
logger('diaspora relay: '.$loc); logger('diaspora relay: '.$loc);
Diaspora::send_relay($target_item,$owner,$contact,$public_message); Diaspora::sendRelay($target_item,$owner,$contact,$public_message);
break; break;
} elseif ($top_level && !$walltowall) { } elseif ($top_level && !$walltowall) {
// currently no workable solution for sending walltowall // currently no workable solution for sending walltowall
logger('diaspora status: '.$loc); logger('diaspora status: '.$loc);
Diaspora::send_status($target_item,$owner,$contact,$public_message); Diaspora::sendStatus($target_item,$owner,$contact,$public_message);
break; break;
} }

View file

@ -525,7 +525,7 @@ class Notifier {
if ($diaspora_delivery) { if ($diaspora_delivery) {
if (!$followup) { if (!$followup) {
$r0 = Diaspora::relay_list(); $r0 = Diaspora::relayList();
} }
$r1 = q("SELECT `batch`, ANY_VALUE(`id`) AS `id`, ANY_VALUE(`name`) AS `name`, ANY_VALUE(`network`) AS `network` $r1 = q("SELECT `batch`, ANY_VALUE(`id`) AS `id`, ANY_VALUE(`name`) AS `name`, ANY_VALUE(`network`) AS `network`

View file

@ -14,6 +14,6 @@ class ProfileUpdate {
return; return;
} }
Diaspora::send_profile($uid); Diaspora::sendProfile($uid);
} }
} }