]> git.mxchange.org Git - friendica.git/blob - src/Module/Admin/Item/Delete.php
Make $_REQUEST processing independent of sub-calls
[friendica.git] / src / Module / Admin / Item / Delete.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
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.
11  *
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.
16  *
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/>.
19  *
20  */
21
22 namespace Friendica\Module\Admin\Item;
23
24 use Friendica\Core\Renderer;
25 use Friendica\DI;
26 use Friendica\Model\Item;
27 use Friendica\Module\BaseAdmin;
28
29 class Delete extends BaseAdmin
30 {
31         protected function post(array $request = [])
32         {
33                 self::checkAdminAccess();
34
35                 if (empty($_POST['page_deleteitem_submit'])) {
36                         return;
37                 }
38
39                 self::checkFormSecurityTokenRedirectOnError('/admin/item/delete', 'admin_deleteitem');
40
41                 if (!empty($_POST['page_deleteitem_submit'])) {
42                         $guid = trim($_POST['deleteitemguid']);
43                         // The GUID should not include a "/", so if there is one, we got an URL
44                         // and the last part of it is most likely the GUID.
45                         if (strpos($guid, '/')) {
46                                 $guid = substr($guid, strrpos($guid, '/') + 1);
47                         }
48                         // Now that we have the GUID, drop those items, which will also delete the
49                         // associated threads.
50                         Item::markForDeletion(['guid' => $guid]);
51                 }
52
53                 info(DI::l10n()->t('Item marked for deletion.'));
54                 DI::baseUrl()->redirect('admin/item/delete');
55         }
56
57         protected function content(array $request = []): string
58         {
59                 parent::content();
60
61                 $t = Renderer::getMarkupTemplate('admin/item/delete.tpl');
62
63                 return Renderer::replaceMacros($t, [
64                         '$title' => DI::l10n()->t('Administration'),
65                         '$page' => DI::l10n()->t('Delete Item'),
66                         '$submit' => DI::l10n()->t('Delete this Item'),
67                         '$intro1' => DI::l10n()->t('On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted.'),
68                         '$intro2' => DI::l10n()->t('You need to know the GUID of the item. You can find it e.g. by looking at the display URL. The last part of http://example.com/display/123456 is the GUID, here 123456.'),
69                         '$deleteitemguid' => ['deleteitemguid', DI::l10n()->t("GUID"), '', DI::l10n()->t("The GUID of the item you want to delete."), DI::l10n()->t('Required'), 'autofocus'],
70                         '$form_security_token' => self::getFormSecurityToken("admin_deleteitem")
71                 ]);
72         }
73 }