2011-03-18 08:30:34 +01:00
|
|
|
<?php
|
2017-12-04 14:33:49 +01:00
|
|
|
/**
|
|
|
|
* @file mod/editpost.php
|
|
|
|
*/
|
2019-01-07 07:23:49 +01:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2017-12-04 15:04:36 +01:00
|
|
|
use Friendica\Content\Feature;
|
2018-12-25 17:37:32 +01:00
|
|
|
use Friendica\Core\Hook;
|
2018-01-21 19:33:59 +01:00
|
|
|
use Friendica\Core\L10n;
|
2018-10-31 15:35:50 +01:00
|
|
|
use Friendica\Core\Renderer;
|
2017-08-26 08:04:21 +02:00
|
|
|
use Friendica\Core\System;
|
2018-10-31 18:42:38 +01:00
|
|
|
use Friendica\Model\FileTag;
|
2018-06-18 22:36:34 +02:00
|
|
|
use Friendica\Model\Item;
|
2018-07-21 14:40:21 +02:00
|
|
|
use Friendica\Database\DBA;
|
2018-11-05 09:37:03 +01:00
|
|
|
use Friendica\Util\Crypto;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2018-07-24 13:47:25 +02:00
|
|
|
function editpost_content(App $a)
|
|
|
|
{
|
2011-03-18 08:30:34 +01:00
|
|
|
$o = '';
|
|
|
|
|
2018-06-19 19:11:59 +02:00
|
|
|
if (!local_user()) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Permission denied.') . EOL);
|
2011-03-18 08:30:34 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$post_id = (($a->argc > 1) ? intval($a->argv[1]) : 0);
|
|
|
|
|
2018-06-19 19:11:59 +02:00
|
|
|
if (!$post_id) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Item not found') . EOL);
|
2011-03-18 08:30:34 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-06-18 22:36:34 +02:00
|
|
|
$fields = ['allow_cid', 'allow_gid', 'deny_cid', 'deny_gid',
|
2018-10-16 19:14:55 +02:00
|
|
|
'type', 'body', 'title', 'file', 'wall', 'post-type', 'guid'];
|
2018-07-24 13:47:25 +02:00
|
|
|
|
2018-06-19 19:11:59 +02:00
|
|
|
$item = Item::selectFirstForUser(local_user(), $fields, ['id' => $post_id, 'uid' => local_user()]);
|
2018-07-24 13:47:25 +02:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($item)) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Item not found') . EOL);
|
2011-03-18 08:30:34 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-02-12 03:25:09 +01:00
|
|
|
$geotag = '';
|
|
|
|
|
2018-10-31 15:44:06 +01:00
|
|
|
$o .= Renderer::replaceMacros(Renderer::getMarkupTemplate("section_title.tpl"), [
|
2018-01-22 13:29:50 +01:00
|
|
|
'$title' => L10n::t('Edit post')
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2011-03-18 08:30:34 +01:00
|
|
|
|
2018-10-31 15:44:06 +01:00
|
|
|
$tpl = Renderer::getMarkupTemplate('jot-header.tpl');
|
2018-10-31 15:35:50 +01:00
|
|
|
$a->page['htmlhead'] .= Renderer::replaceMacros($tpl, [
|
2017-08-26 09:32:10 +02:00
|
|
|
'$baseurl' => System::baseUrl(),
|
2018-01-22 13:29:50 +01:00
|
|
|
'$ispublic' => ' ', // L10n::t('Visible to <strong>everybody</strong>'),
|
2011-03-18 08:30:34 +01:00
|
|
|
'$geotag' => $geotag,
|
|
|
|
'$nickname' => $a->user['nickname']
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2011-03-18 08:30:34 +01:00
|
|
|
|
2018-06-19 19:11:59 +02:00
|
|
|
if (strlen($item['allow_cid']) || strlen($item['allow_gid']) || strlen($item['deny_cid']) || strlen($item['deny_gid'])) {
|
2011-03-18 08:30:34 +01:00
|
|
|
$lockstate = 'lock';
|
2018-02-12 22:26:25 +01:00
|
|
|
} else {
|
2011-03-18 08:30:34 +01:00
|
|
|
$lockstate = 'unlock';
|
2018-02-12 22:26:25 +01:00
|
|
|
}
|
2011-03-18 08:30:34 +01:00
|
|
|
|
|
|
|
$jotplugins = '';
|
|
|
|
$jotnets = '';
|
2011-04-18 08:27:11 +02:00
|
|
|
|
2018-12-25 17:37:32 +01:00
|
|
|
Hook::callAll('jot_tool', $jotplugins);
|
2011-03-18 08:30:34 +01:00
|
|
|
|
2018-12-25 17:37:32 +01:00
|
|
|
$tpl = Renderer::getMarkupTemplate("jot.tpl");
|
2018-10-31 15:35:50 +01:00
|
|
|
$o .= Renderer::replaceMacros($tpl, [
|
2015-12-04 19:29:13 +01:00
|
|
|
'$is_edit' => true,
|
2018-10-16 19:14:55 +02:00
|
|
|
'$return_path' => '/display/' . $item['guid'],
|
2011-03-18 08:30:34 +01:00
|
|
|
'$action' => 'item',
|
2018-01-22 13:29:50 +01:00
|
|
|
'$share' => L10n::t('Save'),
|
|
|
|
'$upload' => L10n::t('Upload photo'),
|
|
|
|
'$shortupload' => L10n::t('upload photo'),
|
|
|
|
'$attach' => L10n::t('Attach file'),
|
|
|
|
'$shortattach' => L10n::t('attach file'),
|
|
|
|
'$weblink' => L10n::t('Insert web link'),
|
|
|
|
'$shortweblink' => L10n::t('web link'),
|
|
|
|
'$video' => L10n::t('Insert video link'),
|
|
|
|
'$shortvideo' => L10n::t('video link'),
|
|
|
|
'$audio' => L10n::t('Insert audio link'),
|
|
|
|
'$shortaudio' => L10n::t('audio link'),
|
|
|
|
'$setloc' => L10n::t('Set your location'),
|
|
|
|
'$shortsetloc' => L10n::t('set location'),
|
|
|
|
'$noloc' => L10n::t('Clear browser location'),
|
|
|
|
'$shortnoloc' => L10n::t('clear location'),
|
|
|
|
'$wait' => L10n::t('Please wait'),
|
|
|
|
'$permset' => L10n::t('Permission settings'),
|
2018-07-19 15:52:05 +02:00
|
|
|
'$wall' => $item['wall'],
|
|
|
|
'$posttype' => $item['post-type'],
|
2018-06-19 19:11:59 +02:00
|
|
|
'$content' => undo_post_tagging($item['body']),
|
2011-03-18 08:30:34 +01:00
|
|
|
'$post_id' => $post_id,
|
2017-08-26 09:32:10 +02:00
|
|
|
'$baseurl' => System::baseUrl(),
|
2011-03-18 08:30:34 +01:00
|
|
|
'$defloc' => $a->user['default-location'],
|
|
|
|
'$visitor' => 'none',
|
2011-05-20 10:15:02 +02:00
|
|
|
'$pvisit' => 'none',
|
2018-01-22 13:29:50 +01:00
|
|
|
'$emailcc' => L10n::t('CC: email addresses'),
|
|
|
|
'$public' => L10n::t('Public post'),
|
2011-03-18 08:30:34 +01:00
|
|
|
'$jotnets' => $jotnets,
|
2018-12-25 17:37:32 +01:00
|
|
|
'$title' => $item['title'],
|
2018-01-22 13:29:50 +01:00
|
|
|
'$placeholdertitle' => L10n::t('Set title'),
|
2018-10-30 19:51:45 +01:00
|
|
|
'$category' => FileTag::fileToList($item['file'], 'category'),
|
2018-01-24 22:51:32 +01:00
|
|
|
'$placeholdercategory' => (Feature::isEnabled(local_user(),'categories') ? L10n::t("Categories \x28comma-separated list\x29") : ''),
|
2018-01-22 13:29:50 +01:00
|
|
|
'$emtitle' => L10n::t('Example: bob@example.com, mary@example.com'),
|
2011-03-18 08:30:34 +01:00
|
|
|
'$lockstate' => $lockstate,
|
2015-06-26 15:13:52 +02:00
|
|
|
'$acl' => '', // populate_acl((($group) ? $group_acl : $a->user)),
|
2018-02-13 01:20:16 +01:00
|
|
|
'$bang' => ($lockstate === 'lock' ? '!' : ''),
|
2011-07-20 11:08:42 +02:00
|
|
|
'$profile_uid' => $_SESSION['uid'],
|
2018-01-22 13:29:50 +01:00
|
|
|
'$preview' => L10n::t('Preview'),
|
2011-07-20 11:08:42 +02:00
|
|
|
'$jotplugins' => $jotplugins,
|
2018-01-22 13:29:50 +01:00
|
|
|
'$sourceapp' => L10n::t($a->sourcename),
|
|
|
|
'$cancel' => L10n::t('Cancel'),
|
2018-11-05 09:37:03 +01:00
|
|
|
'$rand_num' => Crypto::randomDigits(12),
|
2016-06-25 12:21:13 +02:00
|
|
|
|
|
|
|
//jot nav tab (used in some themes)
|
2018-01-22 13:29:50 +01:00
|
|
|
'$message' => L10n::t('Message'),
|
|
|
|
'$browser' => L10n::t('Browser'),
|
|
|
|
'$shortpermset' => L10n::t('permissions'),
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2011-03-18 08:30:34 +01:00
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|