2011-03-18 07:30:34 +00:00
|
|
|
<?php
|
2017-12-04 13:33:49 +00:00
|
|
|
/**
|
|
|
|
* @file mod/editpost.php
|
|
|
|
*/
|
2017-04-30 04:07:00 +00:00
|
|
|
use Friendica\App;
|
2017-12-04 14:04:36 +00:00
|
|
|
use Friendica\Content\Feature;
|
2018-01-17 18:42:40 +00:00
|
|
|
use Friendica\Core\Addon;
|
2017-11-07 02:22:52 +00:00
|
|
|
use Friendica\Core\Config;
|
2018-01-21 18:33:59 +00:00
|
|
|
use Friendica\Core\L10n;
|
2017-08-26 06:04:21 +00:00
|
|
|
use Friendica\Core\System;
|
2018-06-18 20:36:34 +00:00
|
|
|
use Friendica\Model\Item;
|
2018-07-21 12:40:21 +00:00
|
|
|
use Friendica\Database\DBA;
|
2017-04-30 04:07:00 +00:00
|
|
|
|
2018-07-24 11:47:25 +00:00
|
|
|
function editpost_content(App $a)
|
|
|
|
{
|
2011-03-18 07:30:34 +00:00
|
|
|
$o = '';
|
|
|
|
|
2018-06-19 17:11:59 +00:00
|
|
|
if (!local_user()) {
|
2018-01-21 18:33:59 +00:00
|
|
|
notice(L10n::t('Permission denied.') . EOL);
|
2011-03-18 07:30:34 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$post_id = (($a->argc > 1) ? intval($a->argv[1]) : 0);
|
2018-09-20 12:41:52 +00:00
|
|
|
$return_url = (($a->argc > 2) ? base64_decode($a->argv[2]) : '');
|
2011-03-18 07:30:34 +00:00
|
|
|
|
2018-06-19 17:11:59 +00:00
|
|
|
if (!$post_id) {
|
2018-01-21 18:33:59 +00:00
|
|
|
notice(L10n::t('Item not found') . EOL);
|
2011-03-18 07:30:34 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-09-19 21:55:29 +00:00
|
|
|
// Fallback to SESSION return_path
|
|
|
|
if (empty($return_url)) {
|
2018-09-20 13:55:24 +00:00
|
|
|
$return_url = $_SESSION['return_url'];
|
2018-09-19 21:55:29 +00:00
|
|
|
}
|
|
|
|
|
2018-06-18 20:36:34 +00:00
|
|
|
$fields = ['allow_cid', 'allow_gid', 'deny_cid', 'deny_gid',
|
2018-07-24 11:47:25 +00:00
|
|
|
'type', 'body', 'title', 'file', 'wall', 'post-type'];
|
|
|
|
|
2018-06-19 17:11:59 +00:00
|
|
|
$item = Item::selectFirstForUser(local_user(), $fields, ['id' => $post_id, 'uid' => local_user()]);
|
2018-07-24 11:47:25 +00:00
|
|
|
|
2018-07-21 12:46:04 +00:00
|
|
|
if (!DBA::isResult($item)) {
|
2018-01-21 18:33:59 +00:00
|
|
|
notice(L10n::t('Item not found') . EOL);
|
2011-03-18 07:30:34 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-02-12 02:25:09 +00:00
|
|
|
$geotag = '';
|
|
|
|
|
2018-06-19 17:11:59 +00:00
|
|
|
$o .= replace_macros(get_markup_template("section_title.tpl"), [
|
2018-01-22 12:29:50 +00:00
|
|
|
'$title' => L10n::t('Edit post')
|
2018-01-15 13:05:12 +00:00
|
|
|
]);
|
2011-03-18 07:30:34 +00:00
|
|
|
|
2011-05-11 11:37:13 +00:00
|
|
|
$tpl = get_markup_template('jot-header.tpl');
|
2018-01-15 13:05:12 +00:00
|
|
|
$a->page['htmlhead'] .= replace_macros($tpl, [
|
2017-08-26 07:32:10 +00:00
|
|
|
'$baseurl' => System::baseUrl(),
|
2018-01-22 12:29:50 +00:00
|
|
|
'$ispublic' => ' ', // L10n::t('Visible to <strong>everybody</strong>'),
|
2011-03-18 07:30:34 +00:00
|
|
|
'$geotag' => $geotag,
|
|
|
|
'$nickname' => $a->user['nickname']
|
2018-01-15 13:05:12 +00:00
|
|
|
]);
|
2011-03-18 07:30:34 +00:00
|
|
|
|
2011-05-11 11:37:13 +00:00
|
|
|
$tpl = get_markup_template("jot.tpl");
|
2015-12-04 18:29:13 +00:00
|
|
|
|
2018-06-19 17:11:59 +00:00
|
|
|
if (strlen($item['allow_cid']) || strlen($item['allow_gid']) || strlen($item['deny_cid']) || strlen($item['deny_gid'])) {
|
2011-03-18 07:30:34 +00:00
|
|
|
$lockstate = 'lock';
|
2018-02-12 21:26:25 +00:00
|
|
|
} else {
|
2011-03-18 07:30:34 +00:00
|
|
|
$lockstate = 'unlock';
|
2018-02-12 21:26:25 +00:00
|
|
|
}
|
2011-03-18 07:30:34 +00:00
|
|
|
|
|
|
|
$jotplugins = '';
|
|
|
|
$jotnets = '';
|
2011-04-18 06:27:11 +00:00
|
|
|
|
2018-07-24 11:47:25 +00:00
|
|
|
$mail_disabled = ((function_exists('imap_open') && !Config::get('system', 'imap_disabled')) ? 0 : 1);
|
2011-04-19 03:20:04 +00:00
|
|
|
|
2011-04-18 06:27:11 +00:00
|
|
|
$mail_enabled = false;
|
|
|
|
$pubmail_enabled = false;
|
|
|
|
|
2018-06-19 17:11:59 +00:00
|
|
|
if (!$mail_disabled) {
|
2011-04-19 03:20:04 +00:00
|
|
|
$r = q("SELECT * FROM `mailacct` WHERE `uid` = %d AND `server` != '' LIMIT 1",
|
|
|
|
intval(local_user())
|
|
|
|
);
|
2018-07-24 11:47:25 +00:00
|
|
|
|
2018-07-21 12:46:04 +00:00
|
|
|
if (DBA::isResult($r)) {
|
2011-04-19 03:20:04 +00:00
|
|
|
$mail_enabled = true;
|
2018-07-24 11:47:25 +00:00
|
|
|
|
2018-06-19 17:11:59 +00:00
|
|
|
if (intval($r[0]['pubmail'])) {
|
2011-04-19 03:20:04 +00:00
|
|
|
$pubmail_enabled = true;
|
2018-06-19 17:11:59 +00:00
|
|
|
}
|
2011-04-19 03:20:04 +00:00
|
|
|
}
|
2011-04-18 06:27:11 +00:00
|
|
|
}
|
|
|
|
|
2018-01-17 18:42:40 +00:00
|
|
|
Addon::callHooks('jot_tool', $jotplugins);
|
|
|
|
//Addon::callHooks('jot_networks', $jotnets);
|
2011-03-18 07:30:34 +00:00
|
|
|
|
2018-06-19 17:11:59 +00:00
|
|
|
$o .= replace_macros($tpl, [
|
2015-12-04 18:29:13 +00:00
|
|
|
'$is_edit' => true,
|
2018-09-19 21:55:29 +00:00
|
|
|
'$return_path' => $return_url,
|
2011-03-18 07:30:34 +00:00
|
|
|
'$action' => 'item',
|
2018-01-22 12:29:50 +00: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 13:52:05 +00:00
|
|
|
'$wall' => $item['wall'],
|
|
|
|
'$posttype' => $item['post-type'],
|
2018-06-19 17:11:59 +00:00
|
|
|
'$content' => undo_post_tagging($item['body']),
|
2011-03-18 07:30:34 +00:00
|
|
|
'$post_id' => $post_id,
|
2017-08-26 07:32:10 +00:00
|
|
|
'$baseurl' => System::baseUrl(),
|
2011-03-18 07:30:34 +00:00
|
|
|
'$defloc' => $a->user['default-location'],
|
|
|
|
'$visitor' => 'none',
|
2011-05-20 08:15:02 +00:00
|
|
|
'$pvisit' => 'none',
|
2018-01-22 12:29:50 +00:00
|
|
|
'$emailcc' => L10n::t('CC: email addresses'),
|
|
|
|
'$public' => L10n::t('Public post'),
|
2011-03-18 07:30:34 +00:00
|
|
|
'$jotnets' => $jotnets,
|
2018-06-19 17:11:59 +00:00
|
|
|
'$title' => htmlspecialchars($item['title']),
|
2018-01-22 12:29:50 +00:00
|
|
|
'$placeholdertitle' => L10n::t('Set title'),
|
2018-06-19 17:11:59 +00:00
|
|
|
'$category' => file_tag_file_to_list($item['file'], 'category'),
|
2018-01-24 21:51:32 +00:00
|
|
|
'$placeholdercategory' => (Feature::isEnabled(local_user(),'categories') ? L10n::t("Categories \x28comma-separated list\x29") : ''),
|
2018-01-22 12:29:50 +00:00
|
|
|
'$emtitle' => L10n::t('Example: bob@example.com, mary@example.com'),
|
2011-03-18 07:30:34 +00:00
|
|
|
'$lockstate' => $lockstate,
|
2015-06-26 13:13:52 +00:00
|
|
|
'$acl' => '', // populate_acl((($group) ? $group_acl : $a->user)),
|
2018-02-13 00:20:16 +00:00
|
|
|
'$bang' => ($lockstate === 'lock' ? '!' : ''),
|
2011-07-20 09:08:42 +00:00
|
|
|
'$profile_uid' => $_SESSION['uid'],
|
2018-01-22 12:29:50 +00:00
|
|
|
'$preview' => L10n::t('Preview'),
|
2011-07-20 09:08:42 +00:00
|
|
|
'$jotplugins' => $jotplugins,
|
2018-01-22 12:29:50 +00:00
|
|
|
'$sourceapp' => L10n::t($a->sourcename),
|
|
|
|
'$cancel' => L10n::t('Cancel'),
|
2016-06-25 10:21:13 +00:00
|
|
|
'$rand_num' => random_digits(12),
|
|
|
|
|
|
|
|
//jot nav tab (used in some themes)
|
2018-01-22 12:29:50 +00:00
|
|
|
'$message' => L10n::t('Message'),
|
|
|
|
'$browser' => L10n::t('Browser'),
|
|
|
|
'$shortpermset' => L10n::t('permissions'),
|
2018-01-15 13:05:12 +00:00
|
|
|
]);
|
2011-03-18 07:30:34 +00:00
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|