3 * @file include/dfrn.php
4 * @brief The implementation of the dfrn protocol
6 * https://github.com/friendica/friendica/wiki/Protocol
9 require_once('include/items.php');
10 require_once('include/Contact.php');
11 require_once('include/ostatus.php');
14 * @brief This class contain functions to create and send DFRN XML files
20 * @brief Generates the atom entries for delivery.php
22 * This function is used whenever content is transmitted via DFRN.
24 * @param array $items Item elements
25 * @param array $owner Owner record
27 * @return string DFRN entries
29 function entries($items,$owner) {
31 $doc = new DOMDocument('1.0', 'utf-8');
32 $doc->formatOutput = true;
34 $root = self::add_header($doc, $owner, "dfrn:owner", "", false);
37 return trim($doc->saveXML());
39 foreach($items as $item) {
40 $entry = self::entry($doc, "text", $item, $owner, $item["entry:comment-allow"], $item["entry:cid"]);
41 $root->appendChild($entry);
44 return(trim($doc->saveXML()));
48 * @brief Generate an atom feed for the given user
50 * This function is called when another server is pulling data from the user feed.
52 * @param string $dfrn_id DFRN ID from the requesting party
53 * @param string $owner_nick Owner nick name
54 * @param string $last_update Date of the last update
55 * @param int $direction Can be -1, 0 or 1.
57 * @return string DFRN feed entries
59 function feed($dfrn_id, $owner_nick, $last_update, $direction = 0) {
63 $sitefeed = ((strlen($owner_nick)) ? false : true); // not yet implemented, need to rewrite huge chunks of following logic
64 $public_feed = (($dfrn_id) ? false : true);
65 $starred = false; // not yet implemented, possible security issues
68 if($public_feed && $a->argc > 2) {
69 for($x = 2; $x < $a->argc; $x++) {
70 if($a->argv[$x] == 'converse')
72 if($a->argv[$x] == 'starred')
74 if($a->argv[$x] === 'category' && $a->argc > ($x + 1) && strlen($a->argv[$x+1]))
75 $category = $a->argv[$x+1];
81 // default permissions - anonymous user
83 $sql_extra = " AND `item`.`allow_cid` = '' AND `item`.`allow_gid` = '' AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = '' ";
85 $r = q("SELECT `contact`.*, `user`.`uid` AS `user_uid`, `user`.`nickname`, `user`.`timezone`, `user`.`page-flags`
86 FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid`
87 WHERE `contact`.`self` = 1 AND `user`.`nickname` = '%s' LIMIT 1",
95 $owner_id = $owner['user_uid'];
96 $owner_nick = $owner['nickname'];
106 $sql_extra = sprintf(" AND `issued-id` = '%s' ", dbesc($dfrn_id));
110 $sql_extra = sprintf(" AND `issued-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
111 $my_id = '1:' . $dfrn_id;
114 $sql_extra = sprintf(" AND `dfrn-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
115 $my_id = '0:' . $dfrn_id;
122 $r = q("SELECT * FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `contact`.`uid` = %d $sql_extra LIMIT 1",
130 require_once('include/security.php');
131 $groups = init_groups_visitor($contact['id']);
134 for($x = 0; $x < count($groups); $x ++)
135 $groups[$x] = '<' . intval($groups[$x]) . '>' ;
136 $gs = implode('|', $groups);
138 $gs = '<<>>' ; // Impossible to match
140 $sql_extra = sprintf("
141 AND ( `allow_cid` = '' OR `allow_cid` REGEXP '<%d>' )
142 AND ( `deny_cid` = '' OR NOT `deny_cid` REGEXP '<%d>' )
143 AND ( `allow_gid` = '' OR `allow_gid` REGEXP '%s' )
144 AND ( `deny_gid` = '' OR NOT `deny_gid` REGEXP '%s')
146 intval($contact['id']),
147 intval($contact['id']),
158 $date_field = "`changed`";
159 $sql_order = "`item`.`parent` ".$sort.", `item`.`created` ASC";
161 if(! strlen($last_update))
162 $last_update = 'now -30 days';
164 if(isset($category)) {
165 $sql_post_table = sprintf("INNER JOIN (SELECT `oid` FROM `term` WHERE `term` = '%s' AND `otype` = %d AND `type` = %d AND `uid` = %d ORDER BY `tid` DESC) AS `term` ON `item`.`id` = `term`.`oid` ",
166 dbesc(protect_sprintf($category)), intval(TERM_OBJ_POST), intval(TERM_CATEGORY), intval($owner_id));
167 //$sql_extra .= file_tag_file_query('item',$category,'category');
172 $sql_extra .= " AND `contact`.`self` = 1 ";
175 $check_date = datetime_convert('UTC','UTC',$last_update,'Y-m-d H:i:s');
177 // AND ( `item`.`edited` > '%s' OR `item`.`changed` > '%s' )
178 // dbesc($check_date),
180 $r = q("SELECT STRAIGHT_JOIN `item`.*, `item`.`id` AS `item_id`,
181 `contact`.`name`, `contact`.`network`, `contact`.`photo`, `contact`.`url`,
182 `contact`.`name-date`, `contact`.`uri-date`, `contact`.`avatar-date`,
183 `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
184 `contact`.`id` AS `contact-id`, `contact`.`uid` AS `contact-uid`,
185 `sign`.`signed_text`, `sign`.`signature`, `sign`.`signer`
186 FROM `item` $sql_post_table
187 INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
188 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
189 LEFT JOIN `sign` ON `sign`.`iid` = `item`.`id`
190 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 and `item`.`moderated` = 0 AND `item`.`parent` != 0
191 AND ((`item`.`wall` = 1) $visibility) AND `item`.$date_field > '%s'
193 ORDER BY $sql_order LIMIT 0, 300",
199 // Will check further below if this actually returned results.
200 // We will provide an empty feed if that is the case.
204 $doc = new DOMDocument('1.0', 'utf-8');
205 $doc->formatOutput = true;
207 $alternatelink = $owner['url'];
210 $alternatelink .= "/category/".$category;
213 $author = "dfrn:owner";
217 $root = self::add_header($doc, $owner, $author, $alternatelink, true);
219 // This hook can't work anymore
220 // call_hooks('atom_feed', $atom);
222 if(! count($items)) {
223 $atom = trim($doc->saveXML());
225 call_hooks('atom_feed_end', $atom);
230 foreach($items as $item) {
232 // prevent private email from leaking.
233 if($item['network'] === NETWORK_MAIL)
236 // public feeds get html, our own nodes use bbcode
240 // catch any email that's in a public conversation and make sure it doesn't leak
246 $entry = self::entry($doc, $type, $item, $owner, true);
247 $root->appendChild($entry);
251 $atom = trim($doc->saveXML());
253 call_hooks('atom_feed_end', $atom);
259 * @brief Create XML text for DFRN mails
261 * @param array $item message elements
262 * @param array $owner Owner record
264 * @return string DFRN mail
266 function mail($item, $owner) {
267 $doc = new DOMDocument('1.0', 'utf-8');
268 $doc->formatOutput = true;
270 $root = self::add_header($doc, $owner, "dfrn:owner", "", false);
272 $mail = $doc->createElement("dfrn:mail");
273 $sender = $doc->createElement("dfrn:sender");
275 xml_add_element($doc, $sender, "dfrn:name", $owner['name']);
276 xml_add_element($doc, $sender, "dfrn:uri", $owner['url']);
277 xml_add_element($doc, $sender, "dfrn:avatar", $owner['thumb']);
279 $mail->appendChild($sender);
281 xml_add_element($doc, $mail, "dfrn:id", $item['uri']);
282 xml_add_element($doc, $mail, "dfrn:in-reply-to", $item['parent-uri']);
283 xml_add_element($doc, $mail, "dfrn:sentdate", datetime_convert('UTC', 'UTC', $item['created'] . '+00:00' , ATOM_TIME));
284 xml_add_element($doc, $mail, "dfrn:subject", $item['title']);
285 xml_add_element($doc, $mail, "dfrn:content", $item['body']);
287 $root->appendChild($mail);
289 return(trim($doc->saveXML()));
293 * @brief Create XML text for DFRN friend suggestions
295 * @param array $item suggestion elements
296 * @param array $owner Owner record
298 * @return string DFRN suggestions
300 function fsuggest($item, $owner) {
301 $doc = new DOMDocument('1.0', 'utf-8');
302 $doc->formatOutput = true;
304 $root = self::add_header($doc, $owner, "dfrn:owner", "", false);
306 $suggest = $doc->createElement("dfrn:suggest");
308 xml_add_element($doc, $suggest, "dfrn:url", $item['url']);
309 xml_add_element($doc, $suggest, "dfrn:name", $item['name']);
310 xml_add_element($doc, $suggest, "dfrn:photo", $item['photo']);
311 xml_add_element($doc, $suggest, "dfrn:request", $item['request']);
312 xml_add_element($doc, $suggest, "dfrn:note", $item['note']);
314 $root->appendChild($suggest);
316 return(trim($doc->saveXML()));
320 * @brief Create XML text for DFRN relocations
322 * @param array $owner Owner record
323 * @param int $uid User ID
325 * @return string DFRN relocations
327 function relocate($owner, $uid) {
329 /* get site pubkey. this could be a new installation with no site keys*/
330 $pubkey = get_config('system','site_pubkey');
332 $res = new_keypair(1024);
333 set_config('system','site_prvkey', $res['prvkey']);
334 set_config('system','site_pubkey', $res['pubkey']);
337 $rp = q("SELECT `resource-id` , `scale`, type FROM `photo`
338 WHERE `profile` = 1 AND `uid` = %d ORDER BY scale;", $uid);
340 $ext = Photo::supportedTypes();
343 $photos[$p['scale']] = app::get_baseurl().'/photo/'.$p['resource-id'].'-'.$p['scale'].'.'.$ext[$p['type']];
347 $doc = new DOMDocument('1.0', 'utf-8');
348 $doc->formatOutput = true;
350 $root = self::add_header($doc, $owner, "dfrn:owner", "", false);
352 $relocate = $doc->createElement("dfrn:relocate");
354 xml_add_element($doc, $relocate, "dfrn:url", $owner['url']);
355 xml_add_element($doc, $relocate, "dfrn:name", $owner['name']);
356 xml_add_element($doc, $relocate, "dfrn:photo", $photos[4]);
357 xml_add_element($doc, $relocate, "dfrn:thumb", $photos[5]);
358 xml_add_element($doc, $relocate, "dfrn:micro", $photos[6]);
359 xml_add_element($doc, $relocate, "dfrn:request", $owner['request']);
360 xml_add_element($doc, $relocate, "dfrn:confirm", $owner['confirm']);
361 xml_add_element($doc, $relocate, "dfrn:notify", $owner['notify']);
362 xml_add_element($doc, $relocate, "dfrn:poll", $owner['poll']);
363 xml_add_element($doc, $relocate, "dfrn:sitepubkey", get_config('system','site_pubkey'));
365 $root->appendChild($relocate);
367 return(trim($doc->saveXML()));
371 * @brief Adds the header elements for the DFRN protocol
373 * @param object $doc XML document
374 * @param array $owner Owner record
375 * @param string $authorelement Element name for the author
376 * @param string $alternatelink link to profile or category
377 * @param bool $public Is it a header for public posts?
379 * @return object XML root object
381 private function add_header($doc, $owner, $authorelement, $alternatelink = "", $public = false) {
383 if ($alternatelink == "")
384 $alternatelink = $owner['url'];
386 $root = $doc->createElementNS(NS_ATOM, 'feed');
387 $doc->appendChild($root);
389 $root->setAttribute("xmlns:thr", NS_THR);
390 $root->setAttribute("xmlns:at", "http://purl.org/atompub/tombstones/1.0");
391 $root->setAttribute("xmlns:media", NS_MEDIA);
392 $root->setAttribute("xmlns:dfrn", "http://purl.org/macgirvin/dfrn/1.0");
393 $root->setAttribute("xmlns:activity", NS_ACTIVITY);
394 $root->setAttribute("xmlns:georss", NS_GEORSS);
395 $root->setAttribute("xmlns:poco", NS_POCO);
396 $root->setAttribute("xmlns:ostatus", NS_OSTATUS);
397 $root->setAttribute("xmlns:statusnet", NS_STATUSNET);
399 //xml_add_element($doc, $root, "id", app::get_baseurl()."/profile/".$owner["nick"]);
400 xml_add_element($doc, $root, "id", app::get_baseurl()."/profile/".$owner["nick"]);
401 xml_add_element($doc, $root, "title", $owner["name"]);
403 $attributes = array("uri" => "https://friendi.ca", "version" => FRIENDICA_VERSION."-".DB_UPDATE_VERSION);
404 xml_add_element($doc, $root, "generator", FRIENDICA_PLATFORM, $attributes);
406 $attributes = array("rel" => "license", "href" => "http://creativecommons.org/licenses/by/3.0/");
407 xml_add_element($doc, $root, "link", "", $attributes);
409 $attributes = array("rel" => "alternate", "type" => "text/html", "href" => $alternatelink);
410 xml_add_element($doc, $root, "link", "", $attributes);
412 ostatus_hublinks($doc, $root);
415 $attributes = array("rel" => "salmon", "href" => app::get_baseurl()."/salmon/".$owner["nick"]);
416 xml_add_element($doc, $root, "link", "", $attributes);
418 $attributes = array("rel" => "http://salmon-protocol.org/ns/salmon-replies", "href" => app::get_baseurl()."/salmon/".$owner["nick"]);
419 xml_add_element($doc, $root, "link", "", $attributes);
421 $attributes = array("rel" => "http://salmon-protocol.org/ns/salmon-mention", "href" => app::get_baseurl()."/salmon/".$owner["nick"]);
422 xml_add_element($doc, $root, "link", "", $attributes);
425 if ($owner['page-flags'] == PAGE_COMMUNITY)
426 xml_add_element($doc, $root, "dfrn:community", 1);
428 xml_add_element($doc, $root, "updated", datetime_convert("UTC", "UTC", "now", ATOM_TIME));
430 $author = self::add_author($doc, $owner, $authorelement, $public);
431 $root->appendChild($author);
437 * @brief Adds the author element in the header for the DFRN protocol
439 * @param object $doc XML document
440 * @param array $owner Owner record
441 * @param string $authorelement Element name for the author
443 * @return object XML author object
445 private function add_author($doc, $owner, $authorelement, $public) {
447 $author = $doc->createElement($authorelement);
449 $namdate = datetime_convert('UTC', 'UTC', $owner['name-date'].'+00:00' , ATOM_TIME);
450 $uridate = datetime_convert('UTC', 'UTC', $owner['uri-date'].'+00:00', ATOM_TIME);
451 $picdate = datetime_convert('UTC', 'UTC', $owner['avatar-date'].'+00:00', ATOM_TIME);
453 $attributes = array("dfrn:updated" => $namdate);
454 xml_add_element($doc, $author, "name", $owner["name"], $attributes);
456 $attributes = array("dfrn:updated" => $namdate);
457 xml_add_element($doc, $author, "uri", app::get_baseurl().'/profile/'.$owner["nickname"], $attributes);
459 $attributes = array("dfrn:updated" => $namdate);
460 xml_add_element($doc, $author, "dfrn:handle", $owner["addr"], $attributes);
462 $attributes = array("rel" => "photo", "type" => "image/jpeg", "dfrn:updated" => $picdate,
463 "media:width" => 175, "media:height" => 175, "href" => $owner['photo']);
464 xml_add_element($doc, $author, "link", "", $attributes);
466 $attributes = array("rel" => "avatar", "type" => "image/jpeg", "dfrn:updated" => $picdate,
467 "media:width" => 175, "media:height" => 175, "href" => $owner['photo']);
468 xml_add_element($doc, $author, "link", "", $attributes);
470 $birthday = feed_birthday($owner['user_uid'], $owner['timezone']);
473 xml_add_element($doc, $author, "dfrn:birthday", $birthday);
475 // The following fields will only be generated if this isn't for a public feed
479 // Only show contact details when we are allowed to
480 $r = q("SELECT `profile`.`about`, `profile`.`name`, `profile`.`homepage`, `user`.`nickname`, `user`.`timezone`,
481 `profile`.`locality`, `profile`.`region`, `profile`.`country-name`, `profile`.`pub_keywords`, `profile`.`dob`
483 INNER JOIN `user` ON `user`.`uid` = `profile`.`uid`
484 WHERE `profile`.`is-default` AND NOT `user`.`hidewall` AND `user`.`uid` = %d",
485 intval($owner['user_uid']));
488 xml_add_element($doc, $author, "poco:displayName", $profile["name"]);
489 xml_add_element($doc, $author, "poco:updated", $namdate);
491 if (trim($profile["dob"]) != "0000-00-00")
492 xml_add_element($doc, $author, "poco:birthday", "0000-".date("m-d", strtotime($profile["dob"])));
494 xml_add_element($doc, $author, "poco:note", $profile["about"]);
495 xml_add_element($doc, $author, "poco:preferredUsername", $profile["nickname"]);
497 $savetz = date_default_timezone_get();
498 date_default_timezone_set($profile["timezone"]);
499 xml_add_element($doc, $author, "poco:utcOffset", date("P"));
500 date_default_timezone_set($savetz);
502 if (trim($profile["homepage"]) != "") {
503 $urls = $doc->createElement("poco:urls");
504 xml_add_element($doc, $urls, "poco:type", "homepage");
505 xml_add_element($doc, $urls, "poco:value", $profile["homepage"]);
506 xml_add_element($doc, $urls, "poco:primary", "true");
507 $author->appendChild($urls);
510 if (trim($profile["pub_keywords"]) != "") {
511 $keywords = explode(",", $profile["pub_keywords"]);
513 foreach ($keywords AS $keyword)
514 xml_add_element($doc, $author, "poco:tags", trim($keyword));
518 /// @todo When we are having the XMPP address in the profile we should propagate it here
520 if (trim($xmpp) != "") {
521 $ims = $doc->createElement("poco:ims");
522 xml_add_element($doc, $ims, "poco:type", "xmpp");
523 xml_add_element($doc, $ims, "poco:value", $xmpp);
524 xml_add_element($doc, $ims, "poco:primary", "true");
525 $author->appendChild($ims);
528 if (trim($profile["locality"].$profile["region"].$profile["country-name"]) != "") {
529 $element = $doc->createElement("poco:address");
531 xml_add_element($doc, $element, "poco:formatted", formatted_location($profile));
533 if (trim($profile["locality"]) != "")
534 xml_add_element($doc, $element, "poco:locality", $profile["locality"]);
536 if (trim($profile["region"]) != "")
537 xml_add_element($doc, $element, "poco:region", $profile["region"]);
539 if (trim($profile["country-name"]) != "")
540 xml_add_element($doc, $element, "poco:country", $profile["country-name"]);
542 $author->appendChild($element);
550 * @brief Adds the author elements in the "entry" elements of the DFRN protocol
552 * @param object $doc XML document
553 * @param string $element Element name for the author
554 * @param string $contact_url Link of the contact
555 * @param array $items Item elements
557 * @return object XML author object
559 private function add_entry_author($doc, $element, $contact_url, $item) {
561 $contact = get_contact_details_by_url($contact_url, $item["uid"]);
563 $author = $doc->createElement($element);
564 xml_add_element($doc, $author, "name", $contact["name"]);
565 xml_add_element($doc, $author, "uri", $contact["url"]);
566 xml_add_element($doc, $author, "dfrn:handle", $contact["addr"]);
569 /// - Check real image type and image size
570 /// - Check which of these boths elements we should use
573 "type" => "image/jpeg",
575 "media:height" => 80,
576 "href" => $contact["photo"]);
577 xml_add_element($doc, $author, "link", "", $attributes);
581 "type" => "image/jpeg",
583 "media:height" => 80,
584 "href" => $contact["photo"]);
585 xml_add_element($doc, $author, "link", "", $attributes);
591 * @brief Adds the activity elements
593 * @param object $doc XML document
594 * @param string $element Element name for the activity
595 * @param string $activity activity value
597 * @return object XML activity object
599 private function create_activity($doc, $element, $activity) {
602 $entry = $doc->createElement($element);
604 $r = parse_xml_string($activity, false);
608 xml_add_element($doc, $entry, "activity:object-type", $r->type);
610 xml_add_element($doc, $entry, "id", $r->id);
612 xml_add_element($doc, $entry, "title", $r->title);
614 if(substr($r->link,0,1) === '<') {
615 if(strstr($r->link,'&') && (! strstr($r->link,'&')))
616 $r->link = str_replace('&','&', $r->link);
618 $r->link = preg_replace('/\<link(.*?)\"\>/','<link$1"/>',$r->link);
620 $data = parse_xml_string($r->link, false);
621 foreach ($data->attributes() AS $parameter => $value)
622 $attributes[$parameter] = $value;
624 $attributes = array("rel" => "alternate", "type" => "text/html", "href" => $r->link);
626 xml_add_element($doc, $entry, "link", "", $attributes);
629 xml_add_element($doc, $entry, "content", bbcode($r->content), array("type" => "html"));
638 * @brief Adds the elements for attachments
640 * @param object $doc XML document
641 * @param object $root XML root
642 * @param array $item Item element
644 * @return object XML attachment object
646 private function get_attachment($doc, $root, $item) {
647 $arr = explode('[/attach],',$item['attach']);
649 foreach($arr as $r) {
651 $cnt = preg_match('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"|',$r,$matches);
653 $attributes = array("rel" => "enclosure",
654 "href" => $matches[1],
655 "type" => $matches[3]);
657 if(intval($matches[2]))
658 $attributes["length"] = intval($matches[2]);
660 if(trim($matches[4]) != "")
661 $attributes["title"] = trim($matches[4]);
663 xml_add_element($doc, $root, "link", "", $attributes);
670 * @brief Adds the "entry" elements for the DFRN protocol
672 * @param object $doc XML document
673 * @param string $type "text" or "html"
674 * @param array $item Item element
675 * @param array $owner Owner record
676 * @param bool $comment Trigger the sending of the "comment" element
677 * @param int $cid Contact ID of the recipient
679 * @return object XML entry object
681 private function entry($doc, $type, $item, $owner, $comment = false, $cid = 0) {
683 $mentioned = array();
688 if($item['deleted']) {
689 $attributes = array("ref" => $item['uri'], "when" => datetime_convert('UTC','UTC',$item['edited'] . '+00:00',ATOM_TIME));
690 return xml_create_element($doc, "at:deleted-entry", "", $attributes);
693 $entry = $doc->createElement("entry");
695 if($item['allow_cid'] || $item['allow_gid'] || $item['deny_cid'] || $item['deny_gid'])
696 $body = fix_private_photos($item['body'],$owner['uid'],$item,$cid);
698 $body = $item['body'];
700 if ($type == 'html') {
703 if ($item['title'] != "")
704 $htmlbody = "[b]".$item['title']."[/b]\n\n".$htmlbody;
706 $htmlbody = bbcode($htmlbody, false, false, 7);
709 $author = self::add_entry_author($doc, "author", $item["author-link"], $item);
710 $entry->appendChild($author);
712 $dfrnowner = self::add_entry_author($doc, "dfrn:owner", $item["owner-link"], $item);
713 $entry->appendChild($dfrnowner);
715 if(($item['parent'] != $item['id']) || ($item['parent-uri'] !== $item['uri']) || (($item['thr-parent'] !== '') && ($item['thr-parent'] !== $item['uri']))) {
716 $parent = q("SELECT `guid` FROM `item` WHERE `id` = %d", intval($item["parent"]));
717 $parent_item = (($item['thr-parent']) ? $item['thr-parent'] : $item['parent-uri']);
718 $attributes = array("ref" => $parent_item, "type" => "text/html",
719 "href" => app::get_baseurl().'/display/'.$parent[0]['guid'],
720 "dfrn:diaspora_guid" => $parent[0]['guid']);
721 xml_add_element($doc, $entry, "thr:in-reply-to", "", $attributes);
724 xml_add_element($doc, $entry, "id", $item["uri"]);
725 xml_add_element($doc, $entry, "title", $item["title"]);
727 xml_add_element($doc, $entry, "published", datetime_convert("UTC","UTC",$item["created"]."+00:00",ATOM_TIME));
728 xml_add_element($doc, $entry, "updated", datetime_convert("UTC","UTC",$item["edited"]."+00:00",ATOM_TIME));
730 xml_add_element($doc, $entry, "dfrn:env", base64url_encode($body, true));
731 xml_add_element($doc, $entry, "content", (($type === 'html') ? $htmlbody : $body), array("type" => $type));
733 xml_add_element($doc, $entry, "link", "", array("rel" => "alternate", "type" => "text/html",
734 "href" => app::get_baseurl()."/display/".$item["guid"]));
736 // "comment-allow" is some old fashioned stuff for old Friendica versions.
737 // It is included in the rewritten code for completeness
739 xml_add_element($doc, $entry, "dfrn:comment-allow", intval($item['last-child']));
741 if($item['location'])
742 xml_add_element($doc, $entry, "dfrn:location", $item['location']);
745 xml_add_element($doc, $entry, "georss:point", $item['coord']);
747 if(($item['private']) || strlen($item['allow_cid']) || strlen($item['allow_gid']) || strlen($item['deny_cid']) || strlen($item['deny_gid']))
748 xml_add_element($doc, $entry, "dfrn:private", (($item['private']) ? $item['private'] : 1));
751 xml_add_element($doc, $entry, "dfrn:extid", $item['extid']);
753 if($item['bookmark'])
754 xml_add_element($doc, $entry, "dfrn:bookmark", "true");
757 xml_add_element($doc, $entry, "statusnet:notice_info", "", array("local_id" => $item['id'], "source" => $item['app']));
759 xml_add_element($doc, $entry, "dfrn:diaspora_guid", $item["guid"]);
761 // The signed text contains the content in Markdown, the sender handle and the signatur for the content
762 // It is needed for relayed comments to Diaspora.
763 if($item['signed_text']) {
764 $sign = base64_encode(json_encode(array('signed_text' => $item['signed_text'],'signature' => $item['signature'],'signer' => $item['signer'])));
765 xml_add_element($doc, $entry, "dfrn:diaspora_signature", $sign);
768 xml_add_element($doc, $entry, "activity:verb", construct_verb($item));
770 if ($item['object-type'] != "")
771 xml_add_element($doc, $entry, "activity:object-type", $item['object-type']);
772 elseif ($item['id'] == $item['parent'])
773 xml_add_element($doc, $entry, "activity:object-type", ACTIVITY_OBJ_NOTE);
775 xml_add_element($doc, $entry, "activity:object-type", ACTIVITY_OBJ_COMMENT);
777 $actobj = self::create_activity($doc, "activity:object", $item['object']);
779 $entry->appendChild($actobj);
781 $actarg = self::create_activity($doc, "activity:target", $item['target']);
783 $entry->appendChild($actarg);
785 $tags = item_getfeedtags($item);
789 if (($type != 'html') OR ($t[0] != "@"))
790 xml_add_element($doc, $entry, "category", "", array("scheme" => "X-DFRN:".$t[0].":".$t[1], "term" => $t[2]));
796 $mentioned[$t[1]] = $t[1];
798 foreach ($mentioned AS $mention) {
799 $r = q("SELECT `forum`, `prv` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s'",
800 intval($owner["uid"]),
801 dbesc(normalise_link($mention)));
802 if ($r[0]["forum"] OR $r[0]["prv"])
803 xml_add_element($doc, $entry, "link", "", array("rel" => "mentioned",
804 "ostatus:object-type" => ACTIVITY_OBJ_GROUP,
805 "href" => $mention));
807 xml_add_element($doc, $entry, "link", "", array("rel" => "mentioned",
808 "ostatus:object-type" => ACTIVITY_OBJ_PERSON,
809 "href" => $mention));
812 self::get_attachment($doc, $entry, $item);
818 * @brief Delivers the atom content to the contacts
820 * @param array $owner Owner record
821 * @param array $contactr Contact record of the receiver
822 * @param string $atom Content that will be transmitted
823 * @param bool $dissolve (to be documented)
825 * @return int Deliver status. -1 means an error.
827 function deliver($owner,$contact,$atom, $dissolve = false) {
831 $idtosend = $orig_id = (($contact['dfrn-id']) ? $contact['dfrn-id'] : $contact['issued-id']);
833 if($contact['duplex'] && $contact['dfrn-id'])
834 $idtosend = '0:' . $orig_id;
835 if($contact['duplex'] && $contact['issued-id'])
836 $idtosend = '1:' . $orig_id;
839 $rino = get_config('system','rino_encrypt');
840 $rino = intval($rino);
841 // use RINO1 if mcrypt isn't installed and RINO2 was selected
842 if ($rino==2 and !function_exists('mcrypt_create_iv')) $rino=1;
844 logger("Local rino version: ". $rino, LOGGER_DEBUG);
846 $ssl_val = intval(get_config('system','ssl_policy'));
850 case SSL_POLICY_FULL:
851 $ssl_policy = 'full';
853 case SSL_POLICY_SELFSIGN:
854 $ssl_policy = 'self';
856 case SSL_POLICY_NONE:
858 $ssl_policy = 'none';
862 $url = $contact['notify'] . '&dfrn_id=' . $idtosend . '&dfrn_version=' . DFRN_PROTOCOL_VERSION . (($rino) ? '&rino='.$rino : '');
864 logger('dfrn_deliver: ' . $url);
866 $xml = fetch_url($url);
868 $curl_stat = $a->get_curl_code();
870 return(-1); // timed out
872 logger('dfrn_deliver: ' . $xml, LOGGER_DATA);
877 if(strpos($xml,'<?xml') === false) {
878 logger('dfrn_deliver: no valid XML returned');
879 logger('dfrn_deliver: returned XML: ' . $xml, LOGGER_DATA);
883 $res = parse_xml_string($xml);
885 if((intval($res->status) != 0) || (! strlen($res->challenge)) || (! strlen($res->dfrn_id)))
886 return (($res->status) ? $res->status : 3);
889 $sent_dfrn_id = hex2bin((string) $res->dfrn_id);
890 $challenge = hex2bin((string) $res->challenge);
891 $perm = (($res->perm) ? $res->perm : null);
892 $dfrn_version = (float) (($res->dfrn_version) ? $res->dfrn_version : 2.0);
893 $rino_remote_version = intval($res->rino);
894 $page = (($owner['page-flags'] == PAGE_COMMUNITY) ? 1 : 0);
896 logger("Remote rino version: ".$rino_remote_version." for ".$contact["url"], LOGGER_DEBUG);
898 if($owner['page-flags'] == PAGE_PRVGROUP)
904 if((($perm == 'rw') && (! intval($contact['writable'])))
905 || (($perm == 'r') && (intval($contact['writable'])))) {
906 q("update contact set writable = %d where id = %d",
907 intval(($perm == 'rw') ? 1 : 0),
908 intval($contact['id'])
910 $contact['writable'] = (string) 1 - intval($contact['writable']);
914 if(($contact['duplex'] && strlen($contact['pubkey']))
915 || ($owner['page-flags'] == PAGE_COMMUNITY && strlen($contact['pubkey']))
916 || ($contact['rel'] == CONTACT_IS_SHARING && strlen($contact['pubkey']))) {
917 openssl_public_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['pubkey']);
918 openssl_public_decrypt($challenge,$postvars['challenge'],$contact['pubkey']);
920 openssl_private_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['prvkey']);
921 openssl_private_decrypt($challenge,$postvars['challenge'],$contact['prvkey']);
924 $final_dfrn_id = substr($final_dfrn_id, 0, strpos($final_dfrn_id, '.'));
926 if(strpos($final_dfrn_id,':') == 1)
927 $final_dfrn_id = substr($final_dfrn_id,2);
929 if($final_dfrn_id != $orig_id) {
930 logger('dfrn_deliver: wrong dfrn_id.');
931 // did not decode properly - cannot trust this site
935 $postvars['dfrn_id'] = $idtosend;
936 $postvars['dfrn_version'] = DFRN_PROTOCOL_VERSION;
938 $postvars['dissolve'] = '1';
941 if((($contact['rel']) && ($contact['rel'] != CONTACT_IS_SHARING) && (! $contact['blocked'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) {
942 $postvars['data'] = $atom;
943 $postvars['perm'] = 'rw';
945 $postvars['data'] = str_replace('<dfrn:comment-allow>1','<dfrn:comment-allow>0',$atom);
946 $postvars['perm'] = 'r';
949 $postvars['ssl_policy'] = $ssl_policy;
952 $postvars['page'] = $page;
955 if($rino>0 && $rino_remote_version>0 && (! $dissolve)) {
956 logger('rino version: '. $rino_remote_version);
958 switch($rino_remote_version) {
960 // Deprecated rino version!
961 $key = substr(random_string(),0,16);
962 $data = aes_encrypt($postvars['data'],$key);
965 // RINO 2 based on php-encryption
967 $key = Crypto::createNewRandomKey();
968 } catch (CryptoTestFailed $ex) {
969 logger('Cannot safely create a key');
971 } catch (CannotPerformOperation $ex) {
972 logger('Cannot safely create a key');
976 $data = Crypto::encrypt($postvars['data'], $key);
977 } catch (CryptoTestFailed $ex) {
978 logger('Cannot safely perform encryption');
980 } catch (CannotPerformOperation $ex) {
981 logger('Cannot safely perform encryption');
986 logger("rino: invalid requested verision '$rino_remote_version'");
990 $postvars['rino'] = $rino_remote_version;
991 $postvars['data'] = bin2hex($data);
993 #logger('rino: sent key = ' . $key, LOGGER_DEBUG);
996 if($dfrn_version >= 2.1) {
997 if(($contact['duplex'] && strlen($contact['pubkey']))
998 || ($owner['page-flags'] == PAGE_COMMUNITY && strlen($contact['pubkey']))
999 || ($contact['rel'] == CONTACT_IS_SHARING && strlen($contact['pubkey'])))
1001 openssl_public_encrypt($key,$postvars['key'],$contact['pubkey']);
1003 openssl_private_encrypt($key,$postvars['key'],$contact['prvkey']);
1006 if(($contact['duplex'] && strlen($contact['prvkey'])) || ($owner['page-flags'] == PAGE_COMMUNITY))
1007 openssl_private_encrypt($key,$postvars['key'],$contact['prvkey']);
1009 openssl_public_encrypt($key,$postvars['key'],$contact['pubkey']);
1013 logger('md5 rawkey ' . md5($postvars['key']));
1015 $postvars['key'] = bin2hex($postvars['key']);
1019 logger('dfrn_deliver: ' . "SENDING: " . print_r($postvars,true), LOGGER_DATA);
1021 $xml = post_url($contact['notify'],$postvars);
1023 logger('dfrn_deliver: ' . "RECEIVED: " . $xml, LOGGER_DATA);
1025 $curl_stat = $a->get_curl_code();
1026 if((! $curl_stat) || (! strlen($xml)))
1027 return(-1); // timed out
1029 if(($curl_stat == 503) && (stristr($a->get_curl_headers(),'retry-after')))
1032 if(strpos($xml,'<?xml') === false) {
1033 logger('dfrn_deliver: phase 2: no valid XML returned');
1034 logger('dfrn_deliver: phase 2: returned XML: ' . $xml, LOGGER_DATA);
1038 if($contact['term-date'] != '0000-00-00 00:00:00') {
1039 logger("dfrn_deliver: $url back from the dead - removing mark for death");
1040 require_once('include/Contact.php');
1041 unmark_for_death($contact);
1044 $res = parse_xml_string($xml);
1046 return $res->status;