4 use Friendica\Database\DBM;
6 function share_init(App $a) {
7 $post_id = (($a->argc > 1) ? intval($a->argv[1]) : 0);
9 if (!$post_id || !local_user()) {
13 $r = q("SELECT item.*, contact.network FROM `item`
14 INNER JOIN `contact` ON `item`.`contact-id` = `contact`.`id`
15 WHERE `item`.`id` = %d LIMIT 1",
19 if (!DBM::is_result($r) || ($r[0]['private'] == 1)) {
23 if (strpos($r[0]['body'], "[/share]") !== false) {
24 $pos = strpos($r[0]['body'], "[share");
25 $o = substr($r[0]['body'], $pos);
27 $o = share_header($r[0]['author-name'], $r[0]['author-link'], $r[0]['author-avatar'], $r[0]['guid'], $r[0]['created'], $r[0]['plink']);
30 $o .= '[b]'.$r[0]['title'].'[/b]'."\n";
41 /// @TODO Rewrite to handle over whole record array
42 function share_header($author, $profile, $avatar, $guid, $posted, $link) {
43 $header = "[share author='" . str_replace(["'", "[", "]"], ["'", "[", "]"], $author).
44 "' profile='" . str_replace(["'", "[", "]"], ["'", "[", "]"], $profile).
45 "' avatar='" . str_replace(["'", "[", "]"], ["'", "[", "]"], $avatar);
48 $header .= "' guid='" . str_replace(["'", "[", "]"], ["'", "[", "]"], $guid);
52 $header .= "' posted='" . str_replace(["'", "[", "]"], ["'", "[", "]"], $posted);
55 $header .= "' link='" . str_replace(["'", "[", "]"], ["'", "[", "]"], $link)."']";