2019-05-05 13:15:33 -04:00
|
|
|
<?php
|
2020-02-09 09:45:36 -05:00
|
|
|
/**
|
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @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/>.
|
|
|
|
*
|
|
|
|
*/
|
2019-05-05 13:15:33 -04:00
|
|
|
|
2019-05-18 21:02:58 -04:00
|
|
|
namespace Friendica\Module\Debug;
|
2019-05-05 13:15:33 -04:00
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
2019-12-15 16:34:11 -05:00
|
|
|
use Friendica\DI;
|
2019-05-05 13:15:33 -04:00
|
|
|
use Friendica\Model\Item;
|
2021-01-15 23:16:09 -05:00
|
|
|
use Friendica\Model\Post;
|
2019-05-05 13:15:33 -04:00
|
|
|
use Friendica\Network\HTTPException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Print the body of an Item
|
|
|
|
*/
|
|
|
|
class ItemBody extends BaseModule
|
|
|
|
{
|
2019-11-05 16:48:54 -05:00
|
|
|
public static function content(array $parameters = [])
|
2019-05-05 13:15:33 -04:00
|
|
|
{
|
|
|
|
if (!local_user()) {
|
2020-01-18 14:52:34 -05:00
|
|
|
throw new HTTPException\UnauthorizedException(DI::l10n()->t('Access denied.'));
|
2019-05-05 13:15:33 -04:00
|
|
|
}
|
|
|
|
|
2019-12-15 16:34:11 -05:00
|
|
|
$app = DI::app();
|
2019-05-05 13:15:33 -04:00
|
|
|
|
|
|
|
// @TODO: Replace with parameter from router
|
|
|
|
$itemId = (($app->argc > 1) ? intval($app->argv[1]) : 0);
|
|
|
|
|
|
|
|
if (!$itemId) {
|
2020-01-18 14:52:34 -05:00
|
|
|
throw new HTTPException\NotFoundException(DI::l10n()->t('Item not found.'));
|
2019-05-05 13:15:33 -04:00
|
|
|
}
|
|
|
|
|
2021-02-17 13:59:19 -05:00
|
|
|
$item = Post::selectFirst(['body'], ['uid' => local_user(), 'uri-id' => $itemId]);
|
2019-05-05 13:15:33 -04:00
|
|
|
|
|
|
|
if (!empty($item)) {
|
2019-12-15 18:30:39 -05:00
|
|
|
if (DI::mode()->isAjax()) {
|
2019-05-05 13:15:33 -04:00
|
|
|
echo str_replace("\n", '<br />', $item['body']);
|
|
|
|
exit();
|
|
|
|
} else {
|
|
|
|
return str_replace("\n", '<br />', $item['body']);
|
|
|
|
}
|
|
|
|
} else {
|
2020-01-18 14:52:34 -05:00
|
|
|
throw new HTTPException\NotFoundException(DI::l10n()->t('Item not found.'));
|
2019-05-05 13:15:33 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|