2019-05-05 13:15:33 -04:00
|
|
|
<?php
|
2020-02-09 09:45:36 -05:00
|
|
|
/**
|
2021-03-29 02:40:20 -04:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 09:45:36 -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/>.
|
|
|
|
*
|
|
|
|
*/
|
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;
|
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
|
|
|
|
{
|
2021-11-20 09:38:03 -05:00
|
|
|
protected function content(array $request = []): string
|
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
|
|
|
}
|
|
|
|
|
2021-11-14 17:19:25 -05:00
|
|
|
if (empty($this->parameters['item'])) {
|
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-11-14 17:19:25 -05:00
|
|
|
$itemId = intval($this->parameters['item']);
|
2021-07-25 11:23:37 -04:00
|
|
|
|
|
|
|
$item = Post::selectFirst(['body'], ['uid' => [0, 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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|