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