3 * @file include/diaspora.php
4 * @brief The implementation of the diaspora protocol
7 require_once("include/items.php");
8 require_once("include/bb2diaspora.php");
9 require_once("include/Scrape.php");
10 require_once("include/Contact.php");
11 require_once("include/Photo.php");
12 require_once("include/socgraph.php");
13 require_once("include/group.php");
14 require_once("include/api.php");
17 * @brief This class contain functions to work with XML data
21 function from_array($array, &$xml) {
23 if (!is_object($xml)) {
24 foreach($array as $key => $value) {
25 $root = new SimpleXMLElement("<".$key."/>");
26 array_to_xml($value, $root);
28 $dom = dom_import_simplexml($root)->ownerDocument;
29 $dom->formatOutput = true;
30 return $dom->saveXML();
34 foreach($array as $key => $value) {
35 if (!is_array($value) AND !is_numeric($key))
36 $xml->addChild($key, $value);
37 elseif (is_array($value))
38 array_to_xml($value, $xml->addChild($key));
42 function copy(&$source, &$target, $elementname) {
43 if (count($source->children()) == 0)
44 $target->addChild($elementname, $source);
46 $child = $target->addChild($elementname);
47 foreach ($source->children() AS $childfield => $childentry)
48 self::copy($childentry, $child, $childfield);
54 * @brief This class contain functions to create and send Diaspora XML files
60 * @brief Dispatches public messages and find the fitting receivers
62 * @param array $msg The post that will be dispatched
64 * @return bool Was the message accepted?
66 public static function dispatch_public($msg) {
68 $enabled = intval(get_config("system", "diaspora_enabled"));
70 logger("diaspora is disabled");
74 // Use a dummy importer to import the data for the public copy
75 $importer = array("uid" => 0, "page-flags" => PAGE_FREELOVE);
76 $item_id = self::dispatch($importer,$msg);
78 // Now distribute it to the followers
79 $r = q("SELECT `user`.* FROM `user` WHERE `user`.`uid` IN
80 (SELECT `contact`.`uid` FROM `contact` WHERE `contact`.`network` = '%s' AND `contact`.`addr` = '%s')
81 AND NOT `account_expired` AND NOT `account_removed`",
82 dbesc(NETWORK_DIASPORA),
87 logger("delivering to: ".$rr["username"]);
88 self::dispatch($rr,$msg);
91 logger("No subscribers for ".$msg["author"]." ".print_r($msg, true));
97 * @brief Dispatches the different message types to the different functions
99 * @param array $importer Array of the importer user
100 * @param array $msg The post that will be dispatched
102 * @return bool Was the message accepted?
104 public static function dispatch($importer, $msg) {
106 // The sender is the handle of the contact that sent the message.
107 // This will often be different with relayed messages (for example "like" and "comment")
108 $sender = $msg["author"];
110 if (!diaspora::valid_posting($msg, $fields)) {
111 logger("Invalid posting");
115 $type = $fields->getName();
118 case "account_deletion": // Done
120 return self::receive_account_deletion($importer, $fields);
122 case "comment": // Done
124 return self::receive_comment($importer, $sender, $fields);
126 case "conversation": // Done
128 return self::receive_conversation($importer, $msg, $fields);
132 return self::receive_like($importer, $sender, $fields);
134 case "message": // Done
136 return self::receive_message($importer, $fields);
138 case "participation": // Not implemented
139 return self::receive_participation($importer, $fields);
141 case "photo": // Not needed
142 return self::receive_photo($importer, $fields);
144 case "poll_participation": // Not implemented
145 return self::receive_poll_participation($importer, $fields);
147 case "profile": // Done
149 return self::receive_profile($importer, $fields);
153 return self::receive_request($importer, $fields);
155 case "reshare": // Done
157 return self::receive_reshare($importer, $fields);
159 case "retraction": // Done
161 return self::receive_retraction($importer, $sender, $fields);
163 case "status_message": // Done
165 return self::receive_status_message($importer, $fields);
168 logger("Unknown message type ".$type);
176 * @brief Checks if a posting is valid and fetches the data fields.
178 * This function does not only check the signature.
179 * It also does the conversion between the old and the new diaspora format.
181 * @param array $msg Array with the XML, the sender handle and the sender signature
182 * @param object $fields SimpleXML object that contains the posting when it is valid
184 * @return bool Is the posting valid?
186 private function valid_posting($msg, &$fields) {
188 $data = parse_xml_string($msg["message"], false);
190 if (!is_object($data))
193 $first_child = $data->getName();
195 // Is this the new or the old version?
196 if ($data->getName() == "XML") {
198 foreach ($data->post->children() as $child)
205 $type = $element->getName();
208 // All retractions are handled identically from now on.
209 // In the new version there will only be "retraction".
210 if (in_array($type, array("signed_retraction", "relayable_retraction")))
211 $type = "retraction";
213 $fields = new SimpleXMLElement("<".$type."/>");
217 foreach ($element->children() AS $fieldname => $entry) {
219 // Translation for the old XML structure
220 if ($fieldname == "diaspora_handle")
221 $fieldname = "author";
223 if ($fieldname == "participant_handles")
224 $fieldname = "participants";
226 if (in_array($type, array("like", "participation"))) {
227 if ($fieldname == "target_type")
228 $fieldname = "parent_type";
231 if ($fieldname == "sender_handle")
232 $fieldname = "author";
234 if ($fieldname == "recipient_handle")
235 $fieldname = "recipient";
237 if ($fieldname == "root_diaspora_id")
238 $fieldname = "root_author";
240 if ($type == "retraction") {
241 if ($fieldname == "post_guid")
242 $fieldname = "target_guid";
244 if ($fieldname == "type")
245 $fieldname = "target_type";
249 if ($fieldname == "author_signature")
250 $author_signature = base64_decode($entry);
251 elseif ($fieldname == "parent_author_signature")
252 $parent_author_signature = base64_decode($entry);
253 elseif ($fieldname != "target_author_signature") {
254 if ($signed_data != "") {
256 $signed_data_parent .= ";";
259 $signed_data .= $entry;
261 if (!in_array($fieldname, array("parent_author_signature", "target_author_signature")) OR
262 ($orig_type == "relayable_retraction"))
263 xml::copy($entry, $fields, $fieldname);
266 // This is something that shouldn't happen at all.
267 if (in_array($type, array("status_message", "reshare", "profile")))
268 if ($msg["author"] != $fields->author) {
269 logger("Message handle is not the same as envelope sender. Quitting this message.");
273 // Only some message types have signatures. So we quit here for the other types.
274 if (!in_array($type, array("comment", "message", "like")))
277 // No author_signature? This is a must, so we quit.
278 if (!isset($author_signature))
281 if (isset($parent_author_signature)) {
282 $key = self::get_key($msg["author"]);
284 if (!rsa_verify($signed_data, $parent_author_signature, $key, "sha256"))
288 $key = self::get_key($fields->author);
290 return rsa_verify($signed_data, $author_signature, $key, "sha256");
294 * @brief Fetches the public key for a given handle
296 * @param string $handle The handle
298 * @return string The public key
300 private function get_key($handle) {
301 logger("Fetching diaspora key for: ".$handle);
303 $r = self::get_person_by_handle($handle);
311 * @brief Fetches data for a given handle
313 * @param string $handle The handle
315 * @return array the queried data
317 private function get_person_by_handle($handle) {
319 $r = q("SELECT * FROM `fcontact` WHERE `network` = '%s' AND `addr` = '%s' LIMIT 1",
320 dbesc(NETWORK_DIASPORA),
325 logger("In cache ".print_r($r,true), LOGGER_DEBUG);
327 // update record occasionally so it doesn't get stale
328 $d = strtotime($person["updated"]." +00:00");
329 if ($d < strtotime("now - 14 days"))
333 if (!$person OR $update) {
334 logger("create or refresh", LOGGER_DEBUG);
335 $r = probe_url($handle, PROBE_DIASPORA);
337 // Note that Friendica contacts will return a "Diaspora person"
338 // if Diaspora connectivity is enabled on their server
339 if ($r AND ($r["network"] === NETWORK_DIASPORA)) {
340 self::add_fcontact($r, $update);
348 * @brief Updates the fcontact table
350 * @param array $arr The fcontact data
351 * @param bool $update Update or insert?
353 * @return string The id of the fcontact entry
355 private function add_fcontact($arr, $update = false) {
356 /// @todo Remove this function from include/network.php
359 $r = q("UPDATE `fcontact` SET
372 WHERE `url` = '%s' AND `network` = '%s'",
374 dbesc($arr["photo"]),
375 dbesc($arr["request"]),
378 dbesc($arr["batch"]),
379 dbesc($arr["notify"]),
381 dbesc($arr["confirm"]),
382 dbesc($arr["alias"]),
383 dbesc($arr["pubkey"]),
384 dbesc(datetime_convert()),
386 dbesc($arr["network"])
389 $r = q("INSERT INTO `fcontact` (`url`,`name`,`photo`,`request`,`nick`,`addr`,
390 `batch`, `notify`,`poll`,`confirm`,`network`,`alias`,`pubkey`,`updated`)
391 VALUES ('%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s')",
394 dbesc($arr["photo"]),
395 dbesc($arr["request"]),
398 dbesc($arr["batch"]),
399 dbesc($arr["notify"]),
401 dbesc($arr["confirm"]),
402 dbesc($arr["network"]),
403 dbesc($arr["alias"]),
404 dbesc($arr["pubkey"]),
405 dbesc(datetime_convert())
412 private function get_contact_by_handle($uid, $handle) {
413 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `addr` = '%s' LIMIT 1",
421 $handle_parts = explode("@", $handle);
422 $nurl_sql = "%%://".$handle_parts[1]."%%/profile/".$handle_parts[0];
423 $r = q("SELECT * FROM `contact` WHERE `network` = '%s' AND `uid` = %d AND `nurl` LIKE '%s' LIMIT 1",
434 private function post_allow($importer, $contact, $is_comment = false) {
436 // perhaps we were already sharing with this person. Now they're sharing with us.
437 // That makes us friends.
438 // Normally this should have handled by getting a request - but this could get lost
439 if($contact["rel"] == CONTACT_IS_FOLLOWER && in_array($importer["page-flags"], array(PAGE_FREELOVE))) {
440 q("UPDATE `contact` SET `rel` = %d, `writable` = 1 WHERE `id` = %d AND `uid` = %d",
441 intval(CONTACT_IS_FRIEND),
442 intval($contact["id"]),
443 intval($importer["uid"])
445 $contact["rel"] = CONTACT_IS_FRIEND;
446 logger("defining user ".$contact["nick"]." as friend");
449 if(($contact["blocked"]) || ($contact["readonly"]) || ($contact["archive"]))
451 if($contact["rel"] == CONTACT_IS_SHARING || $contact["rel"] == CONTACT_IS_FRIEND)
453 if($contact["rel"] == CONTACT_IS_FOLLOWER)
454 if(($importer["page-flags"] == PAGE_COMMUNITY) OR $is_comment)
457 // Messages for the global users are always accepted
458 if ($importer["uid"] == 0)
464 private function get_allowed_contact_by_handle($importer, $handle, $is_comment = false) {
465 $contact = self::get_contact_by_handle($importer["uid"], $handle);
467 logger("A Contact for handle ".$handle." and user ".$importer["uid"]." was not found");
471 if (!self::post_allow($importer, $contact, false)) {
472 logger("The handle: ".$handle." is not allowed to post to user ".$importer["uid"]);
478 private function message_exists($uid, $guid) {
479 $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
485 logger("message ".$guid." already exists for user ".$uid);
492 private function fetch_guid($item) {
493 preg_replace_callback("&\[url=/posts/([^\[\]]*)\](.*)\[\/url\]&Usi",
494 function ($match) use ($item){
495 return(self::fetch_guid_sub($match, $item));
499 private function fetch_guid_sub($match, $item) {
500 if (!self::store_by_guid($match[1], $item["author-link"]))
501 self::store_by_guid($match[1], $item["owner-link"]);
504 private function store_by_guid($guid, $server, $uid = 0) {
505 $serverparts = parse_url($server);
506 $server = $serverparts["scheme"]."://".$serverparts["host"];
508 logger("Trying to fetch item ".$guid." from ".$server, LOGGER_DEBUG);
510 $msg = self::fetch_message($guid, $server);
515 logger("Successfully fetched item ".$guid." from ".$server, LOGGER_DEBUG);
517 // Now call the dispatcher
518 return self::dispatch_public($msg);
521 private function fetch_message($guid, $server, $level = 0) {
526 // This will work for Diaspora and newer Friendica servers
527 $source_url = $server."/p/".$guid.".xml";
528 $x = fetch_url($source_url);
532 $source_xml = parse_xml_string($x, false);
534 if (!is_object($source_xml))
537 if ($source_xml->post->reshare) {
538 // Reshare of a reshare - old Diaspora version
539 return self::fetch_message($source_xml->post->reshare->root_guid, $server, ++$level);
540 } elseif ($source_xml->getName() == "reshare") {
541 // Reshare of a reshare - new Diaspora version
542 return self::fetch_message($source_xml->root_guid, $server, ++$level);
545 // Fetch the author - for the old and the new Diaspora version
546 if ($source_xml->post->status_message->diaspora_handle)
547 $author = (string)$source_xml->post->status_message->diaspora_handle;
548 elseif ($source_xml->author)
549 $author = (string)$source_xml->author;
554 $msg = array("message" => $x, "author" => $author);
556 $msg["key"] = self::get_key($msg["author"]);
561 private function fetch_parent_item($uid, $guid, $author, $contact) {
562 $r = q("SELECT `id`, `body`, `wall`, `uri`, `private`, `origin`,
563 `author-name`, `author-link`, `author-avatar`,
564 `owner-name`, `owner-link`, `owner-avatar`
565 FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
566 intval($uid), dbesc($guid));
569 $result = self::store_by_guid($guid, $contact["url"], $uid);
572 $person = self::get_person_by_handle($author);
573 $result = self::store_by_guid($guid, $person["url"], $uid);
577 logger("Fetched missing item ".$guid." - result: ".$result, LOGGER_DEBUG);
579 $r = q("SELECT `id`, `body`, `wall`, `uri`, `private`, `origin`,
580 `author-name`, `author-link`, `author-avatar`,
581 `owner-name`, `owner-link`, `owner-avatar`
582 FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
583 intval($uid), dbesc($guid));
588 logger("parent item not found: parent: ".$guid." item: ".$guid);
594 private function get_author_contact_by_url($contact, $person, $uid) {
596 $r = q("SELECT `id`, `network` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d LIMIT 1",
597 dbesc(normalise_link($person["url"])), intval($uid));
600 $network = $r[0]["network"];
602 $cid = $contact["id"];
603 $network = NETWORK_DIASPORA;
606 return (array("cid" => $cid, "network" => $network));
609 public static function is_redmatrix($url) {
610 return(strstr($url, "/channel/"));
613 private function plink($addr, $guid) {
614 $r = q("SELECT `url`, `nick`, `network` FROM `fcontact` WHERE `addr`='%s' LIMIT 1", dbesc($addr));
618 return "https://".substr($addr,strpos($addr,"@")+1)."/posts/".$guid;
620 // Friendica contacts are often detected as Diaspora contacts in the "fcontact" table
621 // So we try another way as well.
622 $s = q("SELECT `network` FROM `gcontact` WHERE `nurl`='%s' LIMIT 1", dbesc(normalise_link($r[0]["url"])));
624 $r[0]["network"] = $s[0]["network"];
626 if ($r[0]["network"] == NETWORK_DFRN)
627 return(str_replace("/profile/".$r[0]["nick"]."/", "/display/".$guid, $r[0]["url"]."/"));
629 if (self::is_redmatrix($r[0]["url"]))
630 return $r[0]["url"]."/?f=&mid=".$guid;
632 return "https://".substr($addr,strpos($addr,"@")+1)."/posts/".$guid;
635 private function receive_account_deletion($importer, $data) {
636 $author = notags(unxmlify($data->author));
638 $contact = self::get_contact_by_handle($importer["uid"], $author);
640 logger("cannot find contact for author: ".$author);
644 // We now remove the contact
645 contact_remove($contact["id"]);
649 private function receive_comment($importer, $sender, $data) {
650 $guid = notags(unxmlify($data->guid));
651 $parent_guid = notags(unxmlify($data->parent_guid));
652 $text = unxmlify($data->text);
653 $author = notags(unxmlify($data->author));
655 $contact = self::get_allowed_contact_by_handle($importer, $sender, true);
659 if (self::message_exists($importer["uid"], $guid))
662 $parent_item = self::fetch_parent_item($importer["uid"], $parent_guid, $author, $contact);
666 $person = self::get_person_by_handle($author);
667 if (!is_array($person)) {
668 logger("unable to find author details");
672 // Fetch the contact id - if we know this contact
673 $author_contact = self::get_author_contact_by_url($contact, $person, $importer["uid"]);
677 $datarray["uid"] = $importer["uid"];
678 $datarray["contact-id"] = $author_contact["cid"];
679 $datarray["network"] = $author_contact["network"];
681 $datarray["author-name"] = $person["name"];
682 $datarray["author-link"] = $person["url"];
683 $datarray["author-avatar"] = ((x($person,"thumb")) ? $person["thumb"] : $person["photo"]);
685 $datarray["owner-name"] = $contact["name"];
686 $datarray["owner-link"] = $contact["url"];
687 $datarray["owner-avatar"] = ((x($contact,"thumb")) ? $contact["thumb"] : $contact["photo"]);
689 $datarray["guid"] = $guid;
690 $datarray["uri"] = $author.":".$guid;
692 $datarray["type"] = "remote-comment";
693 $datarray["verb"] = ACTIVITY_POST;
694 $datarray["gravity"] = GRAVITY_COMMENT;
695 $datarray["parent-uri"] = $parent_item["uri"];
697 $datarray["object-type"] = ACTIVITY_OBJ_COMMENT;
698 $datarray["object"] = json_encode($data);
700 $datarray["body"] = diaspora2bb($text);
702 self::fetch_guid($datarray);
704 $message_id = item_store($datarray);
705 // print_r($datarray);
707 // If we are the origin of the parent we store the original data and notify our followers
708 if($message_id AND $parent_item["origin"]) {
710 // Formerly we stored the signed text, the signature and the author in different fields.
711 // We now store the raw data so that we are more flexible.
712 q("INSERT INTO `sign` (`iid`,`signed_text`) VALUES (%d,'%s')",
714 dbesc(json_encode($data))
718 proc_run("php", "include/notifier.php", "comment-import", $message_id);
724 private function receive_conversation_message($importer, $contact, $data, $msg, $mesg) {
725 $guid = notags(unxmlify($data->guid));
726 $subject = notags(unxmlify($data->subject));
727 $author = notags(unxmlify($data->author));
731 $msg_guid = notags(unxmlify($mesg->guid));
732 $msg_parent_guid = notags(unxmlify($mesg->parent_guid));
733 $msg_parent_author_signature = notags(unxmlify($mesg->parent_author_signature));
734 $msg_author_signature = notags(unxmlify($mesg->author_signature));
735 $msg_text = unxmlify($mesg->text);
736 $msg_created_at = datetime_convert("UTC", "UTC", notags(unxmlify($mesg->created_at)));
738 // "diaspora_handle" is the element name from the old version
739 // "author" is the element name from the new version
741 $msg_author = notags(unxmlify($mesg->author));
742 elseif ($mesg->diaspora_handle)
743 $msg_author = notags(unxmlify($mesg->diaspora_handle));
747 $msg_conversation_guid = notags(unxmlify($mesg->conversation_guid));
749 if($msg_conversation_guid != $guid) {
750 logger("message conversation guid does not belong to the current conversation.");
754 $body = diaspora2bb($msg_text);
755 $message_uri = $msg_author.":".$msg_guid;
757 $author_signed_data = $msg_guid.";".$msg_parent_guid.";".$msg_text.";".unxmlify($mesg->created_at).";".$msg_author.";".$msg_conversation_guid;
759 $author_signature = base64_decode($msg_author_signature);
761 if(strcasecmp($msg_author,$msg["author"]) == 0) {
765 $person = self::get_person_by_handle($msg_author);
767 if (is_array($person) && x($person, "pubkey"))
768 $key = $person["pubkey"];
770 logger("unable to find author details");
775 if (!rsa_verify($author_signed_data, $author_signature, $key, "sha256")) {
776 logger("verification failed.");
780 if($msg_parent_author_signature) {
781 $owner_signed_data = $msg_guid.";".$msg_parent_guid.";".$msg_text.";".unxmlify($mesg->created_at).";".$msg_author.";".$msg_conversation_guid;
783 $parent_author_signature = base64_decode($msg_parent_author_signature);
787 if (!rsa_verify($owner_signed_data, $parent_author_signature, $key, "sha256")) {
788 logger("owner verification failed.");
793 $r = q("SELECT `id` FROM `mail` WHERE `uri` = '%s' LIMIT 1",
797 logger("duplicate message already delivered.", LOGGER_DEBUG);
801 q("INSERT INTO `mail` (`uid`, `guid`, `convid`, `from-name`,`from-photo`,`from-url`,`contact-id`,`title`,`body`,`seen`,`reply`,`uri`,`parent-uri`,`created`)
802 VALUES (%d, '%s', %d, '%s', '%s', '%s', %d, '%s', '%s', %d, %d, '%s','%s','%s')",
803 intval($importer["uid"]),
805 intval($conversation["id"]),
806 dbesc($person["name"]),
807 dbesc($person["photo"]),
808 dbesc($person["url"]),
809 intval($contact["id"]),
815 dbesc($author.":".$guid),
816 dbesc($msg_created_at)
819 q("UPDATE `conv` SET `updated` = '%s' WHERE `id` = %d",
820 dbesc(datetime_convert()),
821 intval($conversation["id"])
825 "type" => NOTIFY_MAIL,
826 "notify_flags" => $importer["notify-flags"],
827 "language" => $importer["language"],
828 "to_name" => $importer["username"],
829 "to_email" => $importer["email"],
830 "uid" =>$importer["uid"],
831 "item" => array("subject" => $subject, "body" => $body),
832 "source_name" => $person["name"],
833 "source_link" => $person["url"],
834 "source_photo" => $person["thumb"],
835 "verb" => ACTIVITY_POST,
840 private function receive_conversation($importer, $msg, $data) {
841 $guid = notags(unxmlify($data->guid));
842 $subject = notags(unxmlify($data->subject));
843 $created_at = datetime_convert("UTC", "UTC", notags(unxmlify($data->created_at)));
844 $author = notags(unxmlify($data->author));
845 $participants = notags(unxmlify($data->participants));
847 $messages = $data->message;
849 if (!count($messages)) {
850 logger("empty conversation");
854 $contact = self::get_allowed_contact_by_handle($importer, $msg["author"], true);
858 $conversation = null;
860 $c = q("SELECT * FROM `conv` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
861 intval($importer["uid"]),
865 $conversation = $c[0];
867 $r = q("INSERT INTO `conv` (`uid`, `guid`, `creator`, `created`, `updated`, `subject`, `recips`)
868 VALUES (%d, '%s', '%s', '%s', '%s', '%s', '%s')",
869 intval($importer["uid"]),
872 dbesc(datetime_convert("UTC", "UTC", $created_at)),
873 dbesc(datetime_convert()),
878 $c = q("SELECT * FROM `conv` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
879 intval($importer["uid"]),
884 $conversation = $c[0];
886 if (!$conversation) {
887 logger("unable to create conversation.");
891 foreach($messages as $mesg)
892 self::receive_conversation_message($importer, $contact, $data, $msg, $mesg);
897 private function construct_like_body($contact, $parent_item, $guid) {
898 $bodyverb = t('%1$s likes %2$s\'s %3$s');
900 $ulink = "[url=".$contact["url"]."]".$contact["name"]."[/url]";
901 $alink = "[url=".$parent_item["author-link"]."]".$parent_item["author-name"]."[/url]";
902 $plink = "[url=".App::get_baseurl()."/display/".urlencode($guid)."]".t("status")."[/url]";
904 return sprintf($bodyverb, $ulink, $alink, $plink);
907 private function construct_like_object($importer, $parent_item) {
908 $objtype = ACTIVITY_OBJ_NOTE;
909 $link = xmlify('<link rel="alternate" type="text/html" href="'.App::get_baseurl()."/display/".$importer["nickname"]."/".$parent_item["id"].'" />'."\n") ;
910 $parent_body = $parent_item["body"];
915 <type>$objtype</type>
917 <id>{$parent_item["uri"]}</id>
920 <content>$parent_body</content>
927 private function receive_like($importer, $sender, $data) {
928 $positive = notags(unxmlify($data->positive));
929 $guid = notags(unxmlify($data->guid));
930 $parent_type = notags(unxmlify($data->parent_type));
931 $parent_guid = notags(unxmlify($data->parent_guid));
932 $author = notags(unxmlify($data->author));
934 // likes on comments aren't supported by Diaspora - only on posts
935 // But maybe this will be supported in the future, so we will accept it.
936 if (!in_array($parent_type, array("Post", "Comment")))
939 $contact = self::get_allowed_contact_by_handle($importer, $sender, true);
943 if (self::message_exists($importer["uid"], $guid))
946 $parent_item = self::fetch_parent_item($importer["uid"], $parent_guid, $author, $contact);
950 $person = self::get_person_by_handle($author);
951 if (!is_array($person)) {
952 logger("unable to find author details");
956 // Fetch the contact id - if we know this contact
957 $author_contact = self::get_author_contact_by_url($contact, $person, $importer["uid"]);
959 // "positive" = "false" would be a Dislike - wich isn't currently supported by Diaspora
960 // We would accept this anyhow.
961 if ($positive === "true")
962 $verb = ACTIVITY_LIKE;
964 $verb = ACTIVITY_DISLIKE;
968 $datarray["uid"] = $importer["uid"];
969 $datarray["contact-id"] = $author_contact["cid"];
970 $datarray["network"] = $author_contact["network"];
972 $datarray["author-name"] = $person["name"];
973 $datarray["author-link"] = $person["url"];
974 $datarray["author-avatar"] = ((x($person,"thumb")) ? $person["thumb"] : $person["photo"]);
976 $datarray["owner-name"] = $contact["name"];
977 $datarray["owner-link"] = $contact["url"];
978 $datarray["owner-avatar"] = ((x($contact,"thumb")) ? $contact["thumb"] : $contact["photo"]);
980 $datarray["guid"] = $guid;
981 $datarray["uri"] = $author.":".$guid;
983 $datarray["type"] = "activity";
984 $datarray["verb"] = $verb;
985 $datarray["gravity"] = GRAVITY_LIKE;
986 $datarray["parent-uri"] = $parent_item["uri"];
988 $datarray["object-type"] = ACTIVITY_OBJ_NOTE;
989 $datarray["object"] = self::construct_like_object($importer, $parent_item);
991 $datarray["body"] = self::construct_like_body($contact, $parent_item, $guid);
993 $message_id = item_store($datarray);
994 // print_r($datarray);
996 // If we are the origin of the parent we store the original data and notify our followers
997 if($message_id AND $parent_item["origin"]) {
999 // Formerly we stored the signed text, the signature and the author in different fields.
1000 // We now store the raw data so that we are more flexible.
1001 q("INSERT INTO `sign` (`iid`,`signed_text`) VALUES (%d,'%s')",
1002 intval($message_id),
1003 dbesc(json_encode($data))
1007 proc_run("php", "include/notifier.php", "comment-import", $message_id);
1013 private function receive_message($importer, $data) {
1014 $guid = notags(unxmlify($data->guid));
1015 $parent_guid = notags(unxmlify($data->parent_guid));
1016 $text = unxmlify($data->text);
1017 $created_at = datetime_convert("UTC", "UTC", notags(unxmlify($data->created_at)));
1018 $author = notags(unxmlify($data->author));
1019 $conversation_guid = notags(unxmlify($data->conversation_guid));
1021 $contact = self::get_allowed_contact_by_handle($importer, $author, true);
1025 $conversation = null;
1027 $c = q("SELECT * FROM `conv` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1028 intval($importer["uid"]),
1029 dbesc($conversation_guid)
1032 $conversation = $c[0];
1034 logger("conversation not available.");
1040 $body = diaspora2bb($text);
1041 $message_uri = $author.":".$guid;
1043 $person = self::get_person_by_handle($author);
1045 logger("unable to find author details");
1049 $r = q("SELECT `id` FROM `mail` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1050 dbesc($message_uri),
1051 intval($importer["uid"])
1054 logger("duplicate message already delivered.", LOGGER_DEBUG);
1058 q("INSERT INTO `mail` (`uid`, `guid`, `convid`, `from-name`,`from-photo`,`from-url`,`contact-id`,`title`,`body`,`seen`,`reply`,`uri`,`parent-uri`,`created`)
1059 VALUES ( %d, '%s', %d, '%s', '%s', '%s', %d, '%s', '%s', %d, %d, '%s','%s','%s')",
1060 intval($importer["uid"]),
1062 intval($conversation["id"]),
1063 dbesc($person["name"]),
1064 dbesc($person["photo"]),
1065 dbesc($person["url"]),
1066 intval($contact["id"]),
1067 dbesc($conversation["subject"]),
1071 dbesc($message_uri),
1072 dbesc($author.":".$parent_guid),
1076 q("UPDATE `conv` SET `updated` = '%s' WHERE `id` = %d",
1077 dbesc(datetime_convert()),
1078 intval($conversation["id"])
1084 private function receive_participation($importer, $data) {
1085 // I'm not sure if we can fully support this message type
1089 private function receive_photo($importer, $data) {
1090 // There doesn't seem to be a reason for this function, since the photo data is transmitted in the status message as well
1094 private function receive_poll_participation($importer, $data) {
1095 // We don't support polls by now
1099 private function receive_profile($importer, $data) {
1100 $author = notags(unxmlify($data->author));
1102 $contact = self::get_contact_by_handle($importer["uid"], $author);
1106 $name = unxmlify($data->first_name).((strlen($data->last_name)) ? " ".unxmlify($data->last_name) : "");
1107 $image_url = unxmlify($data->image_url);
1108 $birthday = unxmlify($data->birthday);
1109 $location = diaspora2bb(unxmlify($data->location));
1110 $about = diaspora2bb(unxmlify($data->bio));
1111 $gender = unxmlify($data->gender);
1112 $searchable = (unxmlify($data->searchable) == "true");
1113 $nsfw = (unxmlify($data->nsfw) == "true");
1114 $tags = unxmlify($data->tag_string);
1116 $tags = explode("#", $tags);
1118 $keywords = array();
1119 foreach ($tags as $tag) {
1120 $tag = trim(strtolower($tag));
1125 $keywords = implode(", ", $keywords);
1127 $handle_parts = explode("@", $author);
1128 $nick = $handle_parts[0];
1131 $name = $handle_parts[0];
1133 if( preg_match("|^https?://|", $image_url) === 0)
1134 $image_url = "http://".$handle_parts[1].$image_url;
1136 update_contact_avatar($image_url, $importer["uid"], $contact["id"]);
1138 // Generic birthday. We don't know the timezone. The year is irrelevant.
1140 $birthday = str_replace("1000", "1901", $birthday);
1142 if ($birthday != "")
1143 $birthday = datetime_convert("UTC", "UTC", $birthday, "Y-m-d");
1145 // this is to prevent multiple birthday notifications in a single year
1146 // if we already have a stored birthday and the 'm-d' part hasn't changed, preserve the entry, which will preserve the notify year
1148 if(substr($birthday,5) === substr($contact["bd"],5))
1149 $birthday = $contact["bd"];
1151 $r = q("UPDATE `contact` SET `name` = '%s', `nick` = '%s', `addr` = '%s', `name-date` = '%s', `bd` = '%s',
1152 `location` = '%s', `about` = '%s', `keywords` = '%s', `gender` = '%s' WHERE `id` = %d AND `uid` = %d",
1156 dbesc(datetime_convert()),
1162 intval($contact["id"]),
1163 intval($importer["uid"])
1167 poco_check($contact["url"], $name, NETWORK_DIASPORA, $image_url, $about, $location, $gender, $keywords, "",
1168 datetime_convert(), 2, $contact["id"], $importer["uid"]);
1171 $gcontact = array("url" => $contact["url"], "network" => NETWORK_DIASPORA, "generation" => 2,
1172 "photo" => $image_url, "name" => $name, "location" => $location,
1173 "about" => $about, "birthday" => $birthday, "gender" => $gender,
1174 "addr" => $author, "nick" => $nick, "keywords" => $keywords,
1175 "hide" => !$searchable, "nsfw" => $nsfw);
1177 update_gcontact($gcontact);
1182 private function receive_request_make_friend($importer, $contact) {
1183 if($contact["rel"] == CONTACT_IS_FOLLOWER && in_array($importer["page-flags"], array(PAGE_FREELOVE))) {
1184 q("UPDATE `contact` SET `rel` = %d, `writable` = 1 WHERE `id` = %d AND `uid` = %d",
1185 intval(CONTACT_IS_FRIEND),
1186 intval($contact["id"]),
1187 intval($importer["uid"])
1190 // send notification
1192 $r = q("SELECT `hide-friends` FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1",
1193 intval($importer["uid"])
1196 if($r && !$r[0]["hide-friends"] && !$contact["hidden"] && intval(get_pconfig($importer["uid"], "system", "post_newfriend"))) {
1198 $self = q("SELECT * FROM `contact` WHERE `self` AND `uid` = %d LIMIT 1",
1199 intval($importer["uid"])
1202 // they are not CONTACT_IS_FOLLOWER anymore but that's what we have in the array
1204 if($self && $contact["rel"] == CONTACT_IS_FOLLOWER) {
1207 $arr["uri"] = $arr["parent-uri"] = item_new_uri(App::get_hostname(), $importer["uid"]);
1208 $arr["uid"] = $importer["uid"];
1209 $arr["contact-id"] = $self[0]["id"];
1211 $arr["type"] = 'wall';
1212 $arr["gravity"] = 0;
1214 $arr["author-name"] = $arr["owner-name"] = $self[0]["name"];
1215 $arr["author-link"] = $arr["owner-link"] = $self[0]["url"];
1216 $arr["author-avatar"] = $arr["owner-avatar"] = $self[0]["thumb"];
1217 $arr["verb"] = ACTIVITY_FRIEND;
1218 $arr["object-type"] = ACTIVITY_OBJ_PERSON;
1220 $A = "[url=".$self[0]["url"]."]".$self[0]["name"]."[/url]";
1221 $B = "[url=".$contact["url"]."]".$contact["name"]."[/url]";
1222 $BPhoto = "[url=".$contact["url"]."][img]".$contact["thumb"]."[/img][/url]";
1223 $arr["body"] = sprintf(t("%1$s is now friends with %2$s"), $A, $B)."\n\n\n".$Bphoto;
1225 $arr["object"] = "<object><type>".ACTIVITY_OBJ_PERSON."</type><title>".$contact["name"]."</title>"
1226 ."<id>".$contact["url"]."/".$contact["name"]."</id>";
1227 $arr["object"] .= "<link>".xmlify('<link rel="alternate" type="text/html" href="'.$contact["url"].'" />'."\n");
1228 $arr["object"] .= xmlify('<link rel="photo" type="image/jpeg" href="'.$contact["thumb"].'" />'."\n");
1229 $arr["object"] .= "</link></object>\n";
1230 $arr["last-child"] = 1;
1232 $arr["allow_cid"] = $user[0]["allow_cid"];
1233 $arr["allow_gid"] = $user[0]["allow_gid"];
1234 $arr["deny_cid"] = $user[0]["deny_cid"];
1235 $arr["deny_gid"] = $user[0]["deny_gid"];
1237 $i = item_store($arr);
1239 proc_run("php", "include/notifier.php", "activity", $i);
1246 private function receive_request($importer, $data) {
1247 $author = unxmlify($data->author);
1248 $recipient = unxmlify($data->recipient);
1250 if (!$author || !$recipient)
1253 $contact = self::get_contact_by_handle($importer["uid"],$author);
1257 // perhaps we were already sharing with this person. Now they're sharing with us.
1258 // That makes us friends.
1260 self::receive_request_make_friend($importer, $contact);
1264 $ret = self::get_person_by_handle($author);
1266 if (!$ret || ($ret["network"] != NETWORK_DIASPORA)) {
1267 logger("Cannot resolve diaspora handle ".$author ." for ".$recipient);
1271 $batch = (($ret["batch"]) ? $ret["batch"] : implode("/", array_slice(explode("/", $ret["url"]), 0, 3))."/receive/public");
1273 $r = q("INSERT INTO `contact` (`uid`, `network`,`addr`,`created`,`url`,`nurl`,`batch`,`name`,`nick`,`photo`,`pubkey`,`notify`,`poll`,`blocked`,`priority`)
1274 VALUES (%d, '%s', '%s', '%s', '%s','%s','%s','%s','%s','%s','%s','%s','%s',%d,%d)",
1275 intval($importer["uid"]),
1276 dbesc($ret["network"]),
1277 dbesc($ret["addr"]),
1280 dbesc(normalise_link($ret["url"])),
1282 dbesc($ret["name"]),
1283 dbesc($ret["nick"]),
1284 dbesc($ret["photo"]),
1285 dbesc($ret["pubkey"]),
1286 dbesc($ret["notify"]),
1287 dbesc($ret["poll"]),
1292 // find the contact record we just created
1294 $contact_record = self::get_contact_by_handle($importer["uid"],$author);
1296 if (!$contact_record) {
1297 logger("unable to locate newly created contact record.");
1301 $g = q("SELECT `def_gid` FROM `user` WHERE `uid` = %d LIMIT 1",
1302 intval($importer["uid"])
1305 if($g && intval($g[0]["def_gid"]))
1306 group_add_member($importer["uid"], "", $contact_record["id"], $g[0]["def_gid"]);
1308 if($importer["page-flags"] == PAGE_NORMAL) {
1310 $hash = random_string().(string)time(); // Generate a confirm_key
1312 $ret = q("INSERT INTO `intro` (`uid`, `contact-id`, `blocked`, `knowyou`, `note`, `hash`, `datetime`)
1313 VALUES (%d, %d, %d, %d, '%s', '%s', '%s')",
1314 intval($importer["uid"]),
1315 intval($contact_record["id"]),
1318 dbesc(t("Sharing notification from Diaspora network")),
1320 dbesc(datetime_convert())
1324 // automatic friend approval
1326 update_contact_avatar($contact_record["photo"],$importer["uid"],$contact_record["id"]);
1328 // technically they are sharing with us (CONTACT_IS_SHARING),
1329 // but if our page-type is PAGE_COMMUNITY or PAGE_SOAPBOX
1330 // we are going to change the relationship and make them a follower.
1332 if($importer["page-flags"] == PAGE_FREELOVE)
1333 $new_relation = CONTACT_IS_FRIEND;
1335 $new_relation = CONTACT_IS_FOLLOWER;
1337 $r = q("UPDATE `contact` SET `rel` = %d,
1345 intval($new_relation),
1346 dbesc(datetime_convert()),
1347 dbesc(datetime_convert()),
1348 intval($contact_record["id"])
1351 $u = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1", intval($importer["uid"]));
1353 $ret = diaspora_share($u[0], $contact_record);
1359 private function get_original_item($guid, $orig_author, $author) {
1361 // Do we already have this item?
1362 $r = q("SELECT `body`, `tag`, `app`, `created`, `object-type`, `uri`, `guid`,
1363 `author-name`, `author-link`, `author-avatar`
1364 FROM `item` WHERE `guid` = '%s' AND `visible` AND NOT `deleted` AND `body` != '' LIMIT 1",
1368 logger("reshared message ".$guid." already exists on system.");
1370 // Maybe it is already a reshared item?
1371 // Then refetch the content, since there can be many side effects with reshared posts from other networks or reshares from reshares
1372 if (api_share_as_retweet($r[0]))
1379 $server = "https://".substr($orig_author, strpos($orig_author, "@") + 1);
1380 logger("1st try: reshared message ".$guid." will be fetched from original server: ".$server);
1381 $item_id = self::store_by_guid($guid, $server);
1384 $server = "https://".substr($author, strpos($author, "@") + 1);
1385 logger("2nd try: reshared message ".$guid." will be fetched from sharer's server: ".$server);
1386 $item = self::store_by_guid($guid, $server);
1389 $server = "http://".substr($orig_author, strpos($orig_author, "@") + 1);
1390 logger("3rd try: reshared message ".$guid." will be fetched from original server: ".$server);
1391 $item = self::store_by_guid($guid, $server);
1394 $server = "http://".substr($author, strpos($author, "@") + 1);
1395 logger("4th try: reshared message ".$guid." will be fetched from sharer's server: ".$server);
1396 $item = self::store_by_guid($guid, $server);
1400 $r = q("SELECT `body`, `tag`, `app`, `created`, `object-type`, `uri`, `guid`,
1401 `author-name`, `author-link`, `author-avatar`
1402 FROM `item` WHERE `id` = %d AND `visible` AND NOT `deleted` AND `body` != '' LIMIT 1",
1413 private function receive_reshare($importer, $data) {
1414 $root_author = notags(unxmlify($data->root_author));
1415 $root_guid = notags(unxmlify($data->root_guid));
1416 $guid = notags(unxmlify($data->guid));
1417 $author = notags(unxmlify($data->author));
1418 $public = notags(unxmlify($data->public));
1419 $created_at = notags(unxmlify($data->created_at));
1421 $contact = self::get_allowed_contact_by_handle($importer, $author, false);
1425 if (self::message_exists($importer["uid"], $guid))
1428 $original_item = self::get_original_item($root_guid, $root_author, $author);
1429 if (!$original_item)
1432 $datarray = array();
1434 $datarray["uid"] = $importer["uid"];
1435 $datarray["contact-id"] = $contact["id"];
1436 $datarray["network"] = NETWORK_DIASPORA;
1438 $datarray["author-name"] = $contact["name"];
1439 $datarray["author-link"] = $contact["url"];
1440 $datarray["author-avatar"] = ((x($contact,"thumb")) ? $contact["thumb"] : $contact["photo"]);
1442 $datarray["owner-name"] = $datarray["author-name"];
1443 $datarray["owner-link"] = $datarray["author-link"];
1444 $datarray["owner-avatar"] = $datarray["author-avatar"];
1446 $datarray["guid"] = $guid;
1447 $datarray["uri"] = $datarray["parent-uri"] = $author.":".$guid;
1449 $datarray["verb"] = ACTIVITY_POST;
1450 $datarray["gravity"] = GRAVITY_PARENT;
1452 $datarray["object"] = json_encode($data);
1454 $prefix = share_header($original_item["author-name"], $original_item["author-link"], $original_item["author-avatar"],
1455 $original_item["guid"], $original_item["created"], $original_item["uri"]);
1456 $datarray["body"] = $prefix.$original_item["body"]."[/share]";
1458 $datarray["tag"] = $original_item["tag"];
1459 $datarray["app"] = $original_item["app"];
1461 $datarray["plink"] = self::plink($author, $guid);
1462 $datarray["private"] = (($public == "false") ? 1 : 0);
1463 $datarray["changed"] = $datarray["created"] = $datarray["edited"] = datetime_convert("UTC", "UTC", $created_at);
1465 $datarray["object-type"] = $original_item["object-type"];
1467 self::fetch_guid($datarray);
1468 $message_id = item_store($datarray);
1469 // print_r($datarray);
1474 private function item_retraction($importer, $contact, $data) {
1475 $target_type = notags(unxmlify($data->target_type));
1476 $target_guid = notags(unxmlify($data->target_guid));
1477 $author = notags(unxmlify($data->author));
1479 $person = self::get_person_by_handle($author);
1480 if (!is_array($person)) {
1481 logger("unable to find author detail for ".$author);
1485 $r = q("SELECT `id`, `parent`, `parent-uri`, `author-link` FROM `item` WHERE `guid` = '%s' AND `uid` = %d AND NOT `file` LIKE '%%[%%' LIMIT 1",
1486 dbesc($target_guid),
1487 intval($importer["uid"])
1492 // Only delete it if the author really fits
1493 if (!link_compare($r[0]["author-link"],$person["url"]))
1496 // Check if the sender is the thread owner
1497 $p = q("SELECT `author-link`, `origin` FROM `item` WHERE `id` = %d",
1498 intval($r[0]["parent"]));
1500 // Only delete it if the parent author really fits
1501 if (!link_compare($p[0]["author-link"], $contact["url"]))
1504 // Currently we don't have a central deletion function that we could use in this case. The function "item_drop" doesn't work for that case
1505 q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s', `body` = '' , `title` = '' WHERE `id` = %d",
1506 dbesc(datetime_convert()),
1507 dbesc(datetime_convert()),
1510 delete_thread($r[0]["id"], $r[0]["parent-uri"]);
1512 // Now check if the retraction needs to be relayed by us
1513 if($p[0]["origin"]) {
1515 // Formerly we stored the signed text, the signature and the author in different fields.
1516 // We now store the raw data so that we are more flexible.
1517 q("INSERT INTO `sign` (`iid`,`signed_text`) VALUES (%d,'%s')",
1518 intval($r[0]["id"]),
1519 dbesc(json_encode($data))
1523 proc_run("php", "include/notifier.php", "drop", $r[0]["id"]);
1527 private function receive_retraction($importer, $sender, $data) {
1528 $target_type = notags(unxmlify($data->target_type));
1530 $contact = self::get_contact_by_handle($importer["uid"], $sender);
1532 logger("cannot find contact for sender: ".$sender." and user ".$importer["uid"]);
1536 switch ($target_type) {
1539 case "Post": // "Post" will be supported in a future version
1541 case "StatusMessage":
1542 return self::item_retraction($importer, $contact, $data);;
1545 contact_remove($contact["id"]);
1549 logger("Unknown target type ".$target_type);
1555 private function receive_status_message($importer, $data) {
1557 $raw_message = unxmlify($data->raw_message);
1558 $guid = notags(unxmlify($data->guid));
1559 $author = notags(unxmlify($data->author));
1560 $public = notags(unxmlify($data->public));
1561 $created_at = notags(unxmlify($data->created_at));
1562 $provider_display_name = notags(unxmlify($data->provider_display_name));
1564 /// @todo enable support for polls
1565 //if ($data->poll) {
1566 // foreach ($data->poll AS $poll)
1570 $contact = self::get_allowed_contact_by_handle($importer, $author, false);
1574 if (self::message_exists($importer["uid"], $guid))
1578 if ($data->location)
1579 foreach ($data->location->children() AS $fieldname => $data)
1580 $address[$fieldname] = notags(unxmlify($data));
1582 $body = diaspora2bb($raw_message);
1584 $datarray = array();
1587 foreach ($data->photo AS $photo)
1588 $body = "[img]".$photo->remote_photo_path.$photo->remote_photo_name."[/img]\n".$body;
1590 $datarray["object-type"] = ACTIVITY_OBJ_PHOTO;
1592 $datarray["object-type"] = ACTIVITY_OBJ_NOTE;
1594 // Add OEmbed and other information to the body
1595 if (!self::is_redmatrix($contact["url"]))
1596 $body = add_page_info_to_body($body, false, true);
1599 $datarray["uid"] = $importer["uid"];
1600 $datarray["contact-id"] = $contact["id"];
1601 $datarray["network"] = NETWORK_DIASPORA;
1603 $datarray["author-name"] = $contact["name"];
1604 $datarray["author-link"] = $contact["url"];
1605 $datarray["author-avatar"] = ((x($contact,"thumb")) ? $contact["thumb"] : $contact["photo"]);
1607 $datarray["owner-name"] = $datarray["author-name"];
1608 $datarray["owner-link"] = $datarray["author-link"];
1609 $datarray["owner-avatar"] = $datarray["author-avatar"];
1611 $datarray["guid"] = $guid;
1612 $datarray["uri"] = $datarray["parent-uri"] = $author.":".$guid;
1614 $datarray["verb"] = ACTIVITY_POST;
1615 $datarray["gravity"] = GRAVITY_PARENT;
1617 $datarray["object"] = json_encode($data);
1619 $datarray["body"] = $body;
1621 if ($provider_display_name != "")
1622 $datarray["app"] = $provider_display_name;
1624 $datarray["plink"] = self::plink($author, $guid);
1625 $datarray["private"] = (($public == "false") ? 1 : 0);
1626 $datarray["changed"] = $datarray["created"] = $datarray["edited"] = datetime_convert("UTC", "UTC", $created_at);
1628 if (isset($address["address"]))
1629 $datarray["location"] = $address["address"];
1631 if (isset($address["lat"]) AND isset($address["lng"]))
1632 $datarray["coord"] = $address["lat"]." ".$address["lng"];
1634 self::fetch_guid($datarray);
1635 $message_id = item_store($datarray);
1636 // print_r($datarray);
1638 logger("Stored item with message id ".$message_id, LOGGER_DEBUG);