/src/Module/Admin/Item/Delete.php

https://github.com/friendica/friendica · PHP · 73 lines · 40 code · 10 blank · 23 comment · 3 complexity · aad35f9b1f85a37842afab36cfca2ca7 MD5 · raw file

  1. <?php
  2. /**
  3. * @copyright Copyright (C) 2010-2022, 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. namespace Friendica\Module\Admin\Item;
  22. use Friendica\Core\Renderer;
  23. use Friendica\DI;
  24. use Friendica\Model\Item;
  25. use Friendica\Module\BaseAdmin;
  26. class Delete extends BaseAdmin
  27. {
  28. protected function post(array $request = [])
  29. {
  30. self::checkAdminAccess();
  31. if (empty($_POST['page_deleteitem_submit'])) {
  32. return;
  33. }
  34. self::checkFormSecurityTokenRedirectOnError('/admin/item/delete', 'admin_deleteitem');
  35. if (!empty($_POST['page_deleteitem_submit'])) {
  36. $guid = trim($_POST['deleteitemguid']);
  37. // The GUID should not include a "/", so if there is one, we got an URL
  38. // and the last part of it is most likely the GUID.
  39. if (strpos($guid, '/')) {
  40. $guid = substr($guid, strrpos($guid, '/') + 1);
  41. }
  42. // Now that we have the GUID, drop those items, which will also delete the
  43. // associated threads.
  44. Item::markForDeletion(['guid' => $guid]);
  45. }
  46. info(DI::l10n()->t('Item marked for deletion.'));
  47. DI::baseUrl()->redirect('admin/item/delete');
  48. }
  49. protected function content(array $request = []): string
  50. {
  51. parent::content();
  52. $t = Renderer::getMarkupTemplate('admin/item/delete.tpl');
  53. return Renderer::replaceMacros($t, [
  54. '$title' => DI::l10n()->t('Administration'),
  55. '$page' => DI::l10n()->t('Delete Item'),
  56. '$submit' => DI::l10n()->t('Delete this Item'),
  57. '$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.'),
  58. '$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.'),
  59. '$deleteitemguid' => ['deleteitemguid', DI::l10n()->t("GUID"), '', DI::l10n()->t("The GUID of the item you want to delete."), DI::l10n()->t('Required'), 'autofocus'],
  60. '$form_security_token' => self::getFormSecurityToken("admin_deleteitem")
  61. ]);
  62. }
  63. }