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;
|
2017-11-08 03:57:46 +00:00
|
|
|
use Friendica\Database\DBM;
|
2017-04-30 04:07:00 +00:00
|
|
|
|
2017-01-09 12:12:54 +00:00
|
|
|
function editpost_content(App $a) {
|
2011-03-18 07:30:34 +00:00
|
|
|
|
|
|
|
$o = '';
|
|
|
|
|
2016-12-20 10:56:34 +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);
|
|
|
|
|
2016-12-20 10:56:34 +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-06-18 20:36:34 +00:00
|
|
|
$fields = ['allow_cid', 'allow_gid', 'deny_cid', 'deny_gid',
|
|
|
|
'type', 'body', 'title', 'file'];
|
|
|
|
$itm = Item::selectFirstForUser(local_user(), $fields, ['id' => $post_id, 'uid' => local_user()]);
|
2017-11-08 03:57:46 +00:00
|
|
|
if (! DBM::is_result($itm)) {
|
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-01-15 13:05:12 +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
|
|
|
|
2012-07-28 15:57:16 +00:00
|
|
|
$tpl = get_markup_template('jot-end.tpl');
|
2018-01-15 13:05:12 +00:00
|
|
|
$a->page['end'] .= 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>'),
|
2012-07-28 15:57:16 +00:00
|
|
|
'$geotag' => $geotag,
|
|
|
|
'$nickname' => $a->user['nickname']
|
2018-01-15 13:05:12 +00:00
|
|
|
]);
|
2012-07-28 15:57:16 +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-02-12 21:26:25 +00:00
|
|
|
if (strlen($itm['allow_cid']) || strlen($itm['allow_gid']) || strlen($itm['deny_cid']) || strlen($itm['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
|
|
|
|
2017-11-07 02:22:52 +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;
|
|
|
|
|
2017-03-21 16:02: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())
|
|
|
|
);
|
2017-11-08 03:57:46 +00:00
|
|
|
if (DBM::is_result($r)) {
|
2011-04-19 03:20:04 +00:00
|
|
|
$mail_enabled = true;
|
2017-03-21 16:02:59 +00:00
|
|
|
if(intval($r[0]['pubmail']))
|
2011-04-19 03:20:04 +00:00
|
|
|
$pubmail_enabled = true;
|
|
|
|
}
|
2011-04-18 06:27:11 +00:00
|
|
|
}
|
|
|
|
|
2013-01-26 19:52:21 +00:00
|
|
|
// I don't think there's any need for the $jotnets when editing the post,
|
|
|
|
// and including them makes it difficult for the JS-free theme, so let's
|
|
|
|
// disable them
|
2017-03-21 16:02:59 +00:00
|
|
|
/* if($mail_enabled) {
|
2011-04-18 06:27:11 +00:00
|
|
|
$selected = (($pubmail_enabled) ? ' checked="checked" ' : '');
|
2011-09-23 10:12:31 +00:00
|
|
|
$jotnets .= '<div class="profile-jot-net"><input type="checkbox" name="pubmail_enable"' . $selected . ' value="1" /> '
|
2018-01-22 12:29:50 +00:00
|
|
|
. L10n::t("Post to Email") . '</div>';
|
2013-01-26 19:52:21 +00:00
|
|
|
}*/
|
2015-06-03 18:57:30 +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
|
|
|
|
2015-12-04 18:29:13 +00:00
|
|
|
|
2015-06-03 18:57:30 +00:00
|
|
|
//$tpl = replace_macros($tpl,array('$jotplugins' => $jotplugins));
|
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
$o .= replace_macros($tpl,[
|
2015-12-04 18:29:13 +00:00
|
|
|
'$is_edit' => true,
|
2011-03-18 07:30:34 +00:00
|
|
|
'$return_path' => $_SESSION['return_url'],
|
|
|
|
'$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-06-18 20:36:34 +00:00
|
|
|
'$ptyp' => $itm['type'],
|
|
|
|
'$content' => undo_post_tagging($itm['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-18 20:36:34 +00:00
|
|
|
'$title' => htmlspecialchars($itm['title']),
|
2018-01-22 12:29:50 +00:00
|
|
|
'$placeholdertitle' => L10n::t('Set title'),
|
2018-06-18 20:36:34 +00:00
|
|
|
'$category' => file_tag_file_to_list($itm['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;
|
|
|
|
}
|