2011-03-17 02:36:59 +00:00
|
|
|
<?php
|
2020-02-09 15:34:23 +00:00
|
|
|
/**
|
2022-01-02 07:27:47 +00:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 15:34:23 +00: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 04:07:00 +00:00
|
|
|
|
|
|
|
use Friendica\App;
|
2022-10-07 21:09:15 +00:00
|
|
|
use Friendica\Content\Text\BBCode;
|
2022-05-18 02:13:54 +00:00
|
|
|
use Friendica\Core\System;
|
2018-07-21 12:40:21 +00:00
|
|
|
use Friendica\Database\DBA;
|
2021-07-25 13:08:22 +00:00
|
|
|
use Friendica\DI;
|
2018-06-12 09:05:36 +00:00
|
|
|
use Friendica\Model\Item;
|
2021-01-16 04:11:28 +00:00
|
|
|
use Friendica\Model\Post;
|
2017-04-30 04:07:00 +00:00
|
|
|
|
2017-01-09 12:14:55 +00:00
|
|
|
function share_init(App $a) {
|
2021-07-25 13:08:22 +00:00
|
|
|
$post_id = ((DI::args()->getArgc() > 1) ? intval(DI::args()->getArgv()[1]) : 0);
|
2018-05-13 12:20:15 +00:00
|
|
|
|
2022-10-20 19:02:49 +00:00
|
|
|
if (!$post_id || !DI::userSession()->getLocalUserId()) {
|
2022-05-18 02:13:54 +00:00
|
|
|
System::exit();
|
2017-12-20 18:18:25 +00:00
|
|
|
}
|
2011-03-17 02:36:59 +00:00
|
|
|
|
2022-10-08 09:36:35 +00:00
|
|
|
$fields = ['private', 'body', 'uri'];
|
2021-01-16 04:11:28 +00:00
|
|
|
$item = Post::selectFirst($fields, ['id' => $post_id]);
|
2018-05-13 12:20:15 +00:00
|
|
|
|
2020-03-02 07:57:23 +00:00
|
|
|
if (!DBA::isResult($item) || $item['private'] == Item::PRIVATE) {
|
2022-05-18 02:13:54 +00:00
|
|
|
System::exit();
|
2017-12-20 18:18:25 +00:00
|
|
|
}
|
2018-05-13 12:20:15 +00:00
|
|
|
|
2022-10-25 06:37:23 +00:00
|
|
|
$shared = Item::getShareArray($item);
|
2022-10-09 21:16:36 +00:00
|
|
|
if (empty($shared['comment']) && (!empty($shared['message_id']) || !empty($shared['link']))) {
|
2022-10-08 09:36:35 +00:00
|
|
|
$content = '[share]' . ($shared['message_id'] ?: $shared['link']) . '[/share]';
|
2022-10-07 21:09:15 +00:00
|
|
|
} else {
|
2022-10-08 09:36:35 +00:00
|
|
|
$content = '[share]' . $item['uri'] . '[/share]';
|
2012-12-20 23:08:58 +00:00
|
|
|
}
|
2022-10-08 09:36:35 +00:00
|
|
|
System::httpExit($content);
|
2011-04-10 10:36:12 +00:00
|
|
|
}
|