2011-03-17 03:36:59 +01:00
|
|
|
<?php
|
2020-02-09 16:34:23 +01:00
|
|
|
/**
|
2021-03-29 08:40:20 +02:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 16:34:23 +01:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2017-04-30 06:07:00 +02:00
|
|
|
|
|
|
|
use Friendica\App;
|
2020-06-18 14:53:57 +02:00
|
|
|
use Friendica\Content\Text\BBCode;
|
2018-07-21 14:40:21 +02:00
|
|
|
use Friendica\Database\DBA;
|
2018-06-12 11:05:36 +02:00
|
|
|
use Friendica\Model\Item;
|
2021-01-16 05:11:28 +01:00
|
|
|
use Friendica\Model\Post;
|
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'];
|
2021-01-16 05:11:28 +01:00
|
|
|
$item = Post::selectFirst($fields, ['id' => $post_id]);
|
2018-05-13 14:20:15 +02:00
|
|
|
|
2020-03-02 08:57:23 +01:00
|
|
|
if (!DBA::isResult($item) || $item['private'] == Item::PRIVATE) {
|
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 {
|
2020-06-21 15:42:37 +02:00
|
|
|
$o = BBCode::getShareOpeningTag($item['author-name'], $item['author-link'], $item['author-avatar'], $item['plink'], $item['created'], $item['guid']);
|
2012-12-21 00:08:58 +01:00
|
|
|
|
2018-06-12 11:05:36 +02:00
|
|
|
if ($item['title']) {
|
2019-02-28 02:59:39 +01:00
|
|
|
$o .= '[h3]'.$item['title'].'[/h3]'."\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
|
|
|
}
|