2011-03-16 22:36:59 -04:00
|
|
|
<?php
|
2017-04-30 00:07:00 -04:00
|
|
|
|
|
|
|
use Friendica\App;
|
2018-07-21 08:40:21 -04:00
|
|
|
use Friendica\Database\DBA;
|
2018-06-12 05:05:36 -04:00
|
|
|
use Friendica\Model\Item;
|
2017-04-30 00:07:00 -04:00
|
|
|
|
2017-01-09 07:14:55 -05:00
|
|
|
function share_init(App $a) {
|
2011-03-16 22:36:59 -04:00
|
|
|
$post_id = (($a->argc > 1) ? intval($a->argv[1]) : 0);
|
2018-05-13 08:20:15 -04:00
|
|
|
|
2017-12-20 13:18:25 -05:00
|
|
|
if (!$post_id || !local_user()) {
|
2018-12-26 00:40:12 -05:00
|
|
|
exit();
|
2017-12-20 13:18:25 -05:00
|
|
|
}
|
2011-03-16 22:36:59 -04:00
|
|
|
|
2018-06-12 05:05:36 -04:00
|
|
|
$fields = ['private', 'body', 'author-name', 'author-link', 'author-avatar',
|
|
|
|
'guid', 'created', 'plink', 'title'];
|
2018-06-17 13:05:17 -04:00
|
|
|
$item = Item::selectFirst($fields, ['id' => $post_id]);
|
2018-05-13 08:20:15 -04:00
|
|
|
|
2018-07-21 08:46:04 -04:00
|
|
|
if (!DBA::isResult($item) || $item['private'] == 1) {
|
2018-12-26 00:40:12 -05:00
|
|
|
exit();
|
2017-12-20 13:18:25 -05:00
|
|
|
}
|
2018-05-13 08:20:15 -04:00
|
|
|
|
2018-06-12 05:05:36 -04:00
|
|
|
if (strpos($item['body'], "[/share]") !== false) {
|
|
|
|
$pos = strpos($item['body'], "[share");
|
|
|
|
$o = substr($item['body'], $pos);
|
2012-12-20 18:08:58 -05:00
|
|
|
} else {
|
2018-06-12 05:05:36 -04:00
|
|
|
$o = share_header($item['author-name'], $item['author-link'], $item['author-avatar'], $item['guid'], $item['created'], $item['plink']);
|
2012-12-20 18:08:58 -05:00
|
|
|
|
2018-06-12 05:05:36 -04:00
|
|
|
if ($item['title']) {
|
2019-02-27 20:59:39 -05:00
|
|
|
$o .= '[h3]'.$item['title'].'[/h3]'."\n";
|
2017-01-26 09:23:30 -05:00
|
|
|
}
|
2018-05-13 08:20:15 -04:00
|
|
|
|
2018-06-12 05:05:36 -04:00
|
|
|
$o .= $item['body'];
|
2017-01-26 09:23:30 -05:00
|
|
|
$o .= "[/share]";
|
2012-12-20 18:08:58 -05:00
|
|
|
}
|
2017-02-27 16:26:37 -05:00
|
|
|
|
2012-03-06 18:28:27 -05:00
|
|
|
echo $o;
|
2018-12-26 00:40:12 -05:00
|
|
|
exit();
|
2011-04-10 06:36:12 -04:00
|
|
|
}
|
2015-04-05 14:43:06 -04:00
|
|
|
|
2018-05-13 08:20:15 -04:00
|
|
|
/// @TODO Rewrite to handle over whole record array
|
2015-04-05 14:43:06 -04:00
|
|
|
function share_header($author, $profile, $avatar, $guid, $posted, $link) {
|
2017-01-26 09:23:30 -05:00
|
|
|
$header = "[share author='" . str_replace(["'", "[", "]"], ["'", "[", "]"], $author).
|
|
|
|
"' profile='" . str_replace(["'", "[", "]"], ["'", "[", "]"], $profile).
|
|
|
|
"' avatar='" . str_replace(["'", "[", "]"], ["'", "[", "]"], $avatar);
|
2015-04-05 14:43:06 -04:00
|
|
|
|
2017-12-20 13:18:25 -05:00
|
|
|
if ($guid) {
|
2017-01-26 09:23:30 -05:00
|
|
|
$header .= "' guid='" . str_replace(["'", "[", "]"], ["'", "[", "]"], $guid);
|
2017-12-20 13:18:25 -05:00
|
|
|
}
|
2018-05-13 08:20:15 -04:00
|
|
|
|
2017-12-20 13:18:25 -05:00
|
|
|
if ($posted) {
|
2017-01-26 09:23:30 -05:00
|
|
|
$header .= "' posted='" . str_replace(["'", "[", "]"], ["'", "[", "]"], $posted);
|
2017-12-20 13:18:25 -05:00
|
|
|
}
|
2018-05-13 08:20:15 -04:00
|
|
|
|
2017-01-26 09:23:30 -05:00
|
|
|
$header .= "' link='" . str_replace(["'", "[", "]"], ["'", "[", "]"], $link)."']";
|
2015-04-05 14:43:06 -04:00
|
|
|
|
|
|
|
return $header;
|
|
|
|
}
|