2011-10-30 23:28:07 +00:00
|
|
|
<?php
|
2018-01-21 18:33:59 +00:00
|
|
|
/**
|
|
|
|
* @file mod/viewsrc.php
|
|
|
|
*/
|
2017-04-30 04:07:00 +00:00
|
|
|
use Friendica\App;
|
2018-01-21 18:33:59 +00:00
|
|
|
use Friendica\Core\L10n;
|
2018-07-21 12:40:21 +00:00
|
|
|
use Friendica\Database\DBA;
|
2018-06-18 20:36:34 +00:00
|
|
|
use Friendica\Model\Item;
|
2016-02-07 14:11:34 +00:00
|
|
|
|
2018-06-18 20:36:34 +00:00
|
|
|
function viewsrc_content(App $a)
|
|
|
|
{
|
|
|
|
if (!local_user()) {
|
2018-01-21 18:33:59 +00:00
|
|
|
notice(L10n::t('Access denied.') . EOL);
|
2011-10-30 23:28:07 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-06-18 20:36:34 +00:00
|
|
|
$o = '';
|
2011-10-30 23:28:07 +00:00
|
|
|
$item_id = (($a->argc > 1) ? intval($a->argv[1]) : 0);
|
|
|
|
|
2018-06-18 20:36:34 +00:00
|
|
|
if (!$item_id) {
|
2011-10-30 23:28:07 +00:00
|
|
|
$a->error = 404;
|
2018-01-21 18:33:59 +00:00
|
|
|
notice(L10n::t('Item not found.') . EOL);
|
2011-10-30 23:28:07 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-06-18 20:36:34 +00:00
|
|
|
$item = Item::selectFirst(['body'], ['uid' => local_user(), 'id' => $item_id]);
|
2011-10-30 23:28:07 +00:00
|
|
|
|
2018-07-21 12:46:04 +00:00
|
|
|
if (DBA::isResult($item)) {
|
2018-10-13 16:57:31 +00:00
|
|
|
if ($a->isAjax()) {
|
2018-06-19 17:11:59 +00:00
|
|
|
echo str_replace("\n", '<br />', $item['body']);
|
2012-03-28 09:42:04 +00:00
|
|
|
killme();
|
|
|
|
} else {
|
2018-06-19 17:11:59 +00:00
|
|
|
$o .= str_replace("\n", '<br />', $item['body']);
|
2012-03-28 09:42:04 +00:00
|
|
|
}
|
2018-06-18 20:36:34 +00:00
|
|
|
}
|
2011-10-30 23:28:07 +00:00
|
|
|
return $o;
|
|
|
|
}
|