4 use Friendica\Database\DBM;
6 function share_init(App $a) {
7 $post_id = (($a->argc > 1) ? intval($a->argv[1]) : 0);
8 if (!$post_id || !local_user()) {
12 $r = q("SELECT item.*, contact.network FROM `item`
13 INNER JOIN `contact` ON `item`.`contact-id` = `contact`.`id`
14 WHERE `item`.`id` = %d LIMIT 1",
17 if (!DBM::is_result($r) || ($r[0]['private'] == 1)) {
20 if (strpos($r[0]['body'], "[/share]") !== false) {
21 $pos = strpos($r[0]['body'], "[share");
22 $o = substr($r[0]['body'], $pos);
24 $o = share_header($r[0]['author-name'], $r[0]['author-link'], $r[0]['author-avatar'], $r[0]['guid'], $r[0]['created'], $r[0]['plink']);
27 $o .= '[b]'.$r[0]['title'].'[/b]'."\n";
36 function share_header($author, $profile, $avatar, $guid, $posted, $link) {
37 $header = "[share author='".str_replace(array("'", "[", "]"), array("'", "[", "]"), $author).
38 "' profile='".str_replace(array("'", "[", "]"), array("'", "[", "]"), $profile).
39 "' avatar='".str_replace(array("'", "[", "]"), array("'", "[", "]"), $avatar);
42 $header .= "' guid='".str_replace(array("'", "[", "]"), array("'", "[", "]"), $guid);
45 $header .= "' posted='".str_replace(array("'", "[", "]"), array("'", "[", "]"), $posted);
47 $header .= "' link='".str_replace(array("'", "[", "]"), array("'", "[", "]"), $link)."']";