3 * @copyright Copyright (C) 2010-2022, the Friendica project
5 * @license GNU AGPL version 3 or any later version
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
23 use Friendica\Content\Feature;
24 use Friendica\Core\Hook;
25 use Friendica\Core\Renderer;
26 use Friendica\Database\DBA;
28 use Friendica\Model\Contact;
29 use Friendica\Model\Post;
30 use Friendica\Model\User;
31 use Friendica\Util\Crypto;
33 function editpost_content(App $a)
38 notice(DI::l10n()->t('Permission denied.'));
42 $post_id = ((DI::args()->getArgc() > 1) ? intval(DI::args()->getArgv()[1]) : 0);
45 notice(DI::l10n()->t('Item not found'));
49 $fields = ['allow_cid', 'allow_gid', 'deny_cid', 'deny_gid',
50 'body', 'title', 'uri-id', 'wall', 'post-type', 'guid'];
52 $item = Post::selectFirstForUser(local_user(), $fields, ['id' => $post_id, 'uid' => local_user()]);
54 if (!DBA::isResult($item)) {
55 notice(DI::l10n()->t('Item not found'));
59 $user = User::getById(local_user());
63 $o .= Renderer::replaceMacros(Renderer::getMarkupTemplate("section_title.tpl"), [
64 '$title' => DI::l10n()->t('Edit post')
67 $tpl = Renderer::getMarkupTemplate('jot-header.tpl');
68 DI::page()['htmlhead'] .= Renderer::replaceMacros($tpl, [
69 '$ispublic' => ' ', // DI::l10n()->t('Visible to <strong>everybody</strong>'),
71 '$nickname' => $a->getLoggedInUserNickname(),
72 '$is_mobile' => DI::mode()->isMobile(),
75 if (strlen($item['allow_cid']) || strlen($item['allow_gid']) || strlen($item['deny_cid']) || strlen($item['deny_gid'])) {
78 $lockstate = 'unlock';
84 Hook::callAll('jot_tool', $jotplugins);
86 $tpl = Renderer::getMarkupTemplate("jot.tpl");
87 $o .= Renderer::replaceMacros($tpl, [
89 '$return_path' => '/display/' . $item['guid'],
91 '$share' => DI::l10n()->t('Save'),
92 '$loading' => DI::l10n()->t('Loading...'),
93 '$upload' => DI::l10n()->t('Upload photo'),
94 '$shortupload' => DI::l10n()->t('upload photo'),
95 '$attach' => DI::l10n()->t('Attach file'),
96 '$shortattach' => DI::l10n()->t('attach file'),
97 '$weblink' => DI::l10n()->t('Insert web link'),
98 '$shortweblink' => DI::l10n()->t('web link'),
99 '$video' => DI::l10n()->t('Insert video link'),
100 '$shortvideo' => DI::l10n()->t('video link'),
101 '$audio' => DI::l10n()->t('Insert audio link'),
102 '$shortaudio' => DI::l10n()->t('audio link'),
103 '$setloc' => DI::l10n()->t('Set your location'),
104 '$shortsetloc' => DI::l10n()->t('set location'),
105 '$noloc' => DI::l10n()->t('Clear browser location'),
106 '$shortnoloc' => DI::l10n()->t('clear location'),
107 '$wait' => DI::l10n()->t('Please wait'),
108 '$permset' => DI::l10n()->t('Permission settings'),
109 '$wall' => $item['wall'],
110 '$posttype' => $item['post-type'],
111 '$content' => undo_post_tagging($item['body']),
112 '$post_id' => $post_id,
113 '$defloc' => $user['default-location'],
114 '$visitor' => 'none',
116 '$emailcc' => DI::l10n()->t('CC: email addresses'),
117 '$public' => DI::l10n()->t('Public post'),
118 '$jotnets' => $jotnets,
119 '$title' => $item['title'],
120 '$placeholdertitle' => DI::l10n()->t('Set title'),
121 '$category' => Post\Category::getCSVByURIId($item['uri-id'], local_user(), Post\Category::CATEGORY),
122 '$placeholdercategory' => (Feature::isEnabled(local_user(),'categories') ? DI::l10n()->t("Categories \x28comma-separated list\x29") : ''),
123 '$emtitle' => DI::l10n()->t('Example: bob@example.com, mary@example.com'),
124 '$lockstate' => $lockstate,
125 '$acl' => '', // populate_acl((($group) ? $group_acl : $a->user)),
126 '$bang' => ($lockstate === 'lock' ? '!' : ''),
127 '$profile_uid' => $_SESSION['uid'],
128 '$preview' => DI::l10n()->t('Preview'),
129 '$jotplugins' => $jotplugins,
130 '$cancel' => DI::l10n()->t('Cancel'),
131 '$rand_num' => Crypto::randomDigits(12),
133 // Formatting button labels
134 '$edbold' => DI::l10n()->t('Bold'),
135 '$editalic' => DI::l10n()->t('Italic'),
136 '$eduline' => DI::l10n()->t('Underline'),
137 '$edquote' => DI::l10n()->t('Quote'),
138 '$edcode' => DI::l10n()->t('Code'),
139 '$edurl' => DI::l10n()->t('Link'),
140 '$edattach' => DI::l10n()->t('Link or Media'),
142 //jot nav tab (used in some themes)
143 '$message' => DI::l10n()->t('Message'),
144 '$browser' => DI::l10n()->t('Browser'),
145 '$shortpermset' => DI::l10n()->t('Permissions'),
147 '$compose_link_title' => DI::l10n()->t('Open Compose page'),
153 function undo_post_tagging($s) {
155 $cnt = preg_match_all('/([!#@])\[url=(.*?)\](.*?)\[\/url\]/ism', $s, $matches, PREG_SET_ORDER);
157 foreach ($matches as $mtch) {
158 if (in_array($mtch[1], ['!', '@'])) {
159 $contact = Contact::getByURL($mtch[2], false, ['addr']);
160 $mtch[3] = empty($contact['addr']) ? $mtch[2] : $contact['addr'];
162 $s = str_replace($mtch[0], $mtch[1] . $mtch[3],$s);