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