2019-05-05 13:15:33 -04:00
|
|
|
<?php
|
|
|
|
|
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;
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
$item = Item::selectFirst(['body'], ['uid' => local_user(), 'id' => $itemId]);
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|