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