]> git.mxchange.org Git - friendica.git/blob - src/Module/Moderation/Users/Deleted.php
Don't compute system.update_interval when it's -1 (disabled)
[friendica.git] / src / Module / Moderation / Users / Deleted.php
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
22 namespace Friendica\Module\Moderation\Users;
23
24 use Friendica\Content\Pager;
25 use Friendica\Core\Renderer;
26 use Friendica\Model\User;
27 use Friendica\Module\Moderation\BaseUsers;
28
29 class Deleted extends BaseUsers
30 {
31         protected function post(array $request = [])
32         {
33                 $this->checkModerationAccess();
34
35                 self::checkFormSecurityTokenRedirectOnError('/moderation/users/deleted', 'moderation_users_deleted');
36
37                 // @TODO: Implement user deletion cancellation
38
39                 $this->baseUrl->redirect('moderation/users/deleted');
40         }
41
42         protected function content(array $request = []): string
43         {
44                 parent::content();
45
46                 $pager = new Pager($this->l10n, $this->args->getQueryString(), 100);
47
48                 $valid_orders = [
49                         'name',
50                         'email',
51                         'register_date',
52                         'last-activity',
53                         'last-item',
54                         'page-flags',
55                 ];
56
57                 $order = 'name';
58                 $order_direction = '+';
59                 if (!empty($request['o'])) {
60                         $new_order = $request['o'];
61                         if ($new_order[0] === '-') {
62                                 $order_direction = '-';
63                                 $new_order = substr($new_order, 1);
64                         }
65
66                         if (in_array($new_order, $valid_orders)) {
67                                 $order = $new_order;
68                         }
69                 }
70
71                 $users = User::getList($pager->getStart(), $pager->getItemsPerPage(), 'removed', $order, ($order_direction == '-'));
72
73                 $users = array_map($this->setupUserCallback(), $users);
74
75                 $count = $this->database->count('user', ['account_removed' => true]);
76
77                 $t = Renderer::getMarkupTemplate('moderation/users/deleted.tpl');
78                 return self::getTabsHTML('deleted') . Renderer::replaceMacros($t, [
79                         // strings //
80                         '$title' => $this->t('Moderation'),
81                         '$page'  => $this->t('Users awaiting permanent deletion'),
82
83                         '$th_deleted' => [$this->t('Name'), $this->t('Email'), $this->t('Register date'), $this->t('Last login'), $this->t('Last public item'), $this->t('Permanent deletion')],
84
85                         '$form_security_token' => self::getFormSecurityToken('moderation_users_deleted'),
86
87                         // values //
88                         '$baseurl'      => $this->baseUrl->get(true),
89                         '$query_string' => $this->args->getQueryString(),
90
91                         '$users' => $users,
92                         '$count' => $count,
93                         '$pager' => $pager->renderFull($count),
94                 ]);
95         }
96 }