]> git.mxchange.org Git - friendica.git/blob - src/Module/Admin/Blocklist/Contact.php
Merge pull request #8033 from annando/contact-logging
[friendica.git] / src / Module / Admin / Blocklist / Contact.php
1 <?php
2
3 namespace Friendica\Module\Admin\Blocklist;
4
5 use Friendica\Content\Pager;
6 use Friendica\Core\L10n;
7 use Friendica\Core\Renderer;
8 use Friendica\Database\DBA;
9 use Friendica\DI;
10 use Friendica\Module\BaseAdminModule;
11 use Friendica\Model;
12
13 class Contact extends BaseAdminModule
14 {
15         public static function post(array $parameters = [])
16         {
17                 parent::post($parameters);
18
19                 $contact_url  = $_POST['contact_url'] ?? '';
20                 $block_reason = $_POST['contact_block_reason'] ?? '';
21                 $contacts     = $_POST['contacts'] ?? [];
22
23                 parent::checkFormSecurityTokenRedirectOnError('/admin/blocklist/contact', 'admin_contactblock');
24
25                 if (!empty($_POST['page_contactblock_block'])) {
26                         $contact_id = Model\Contact::getIdForURL($contact_url);
27                         if ($contact_id) {
28                                 Model\Contact::block($contact_id, $block_reason);
29                                 notice(L10n::t('The contact has been blocked from the node'));
30                         } else {
31                                 notice(L10n::t('Could not find any contact entry for this URL (%s)', $contact_url));
32                         }
33                 }
34
35                 if (!empty($_POST['page_contactblock_unblock'])) {
36                         foreach ($contacts as $uid) {
37                                 Model\Contact::unblock($uid);
38                         }
39                         notice(L10n::tt('%s contact unblocked', '%s contacts unblocked', count($contacts)));
40                 }
41
42                 DI::baseUrl()->redirect('admin/blocklist/contact');
43         }
44
45         public static function content(array $parameters = [])
46         {
47                 parent::content($parameters);
48
49                 $condition = ['uid' => 0, 'blocked' => true];
50
51                 $total = DBA::count('contact', $condition);
52
53                 $pager = new Pager(DI::args()->getQueryString(), 30);
54
55                 $contacts = Model\Contact::selectToArray([], $condition, ['limit' => [$pager->getStart(), $pager->getItemsPerPage()]]);
56
57                 $t = Renderer::getMarkupTemplate('admin/blocklist/contact.tpl');
58                 $o = Renderer::replaceMacros($t, [
59                         // strings //
60                         '$title'       => L10n::t('Administration'),
61                         '$page'        => L10n::t('Remote Contact Blocklist'),
62                         '$description' => L10n::t('This page allows you to prevent any message from a remote contact to reach your node.'),
63                         '$submit'      => L10n::t('Block Remote Contact'),
64                         '$select_all'  => L10n::t('select all'),
65                         '$select_none' => L10n::t('select none'),
66                         '$block'       => L10n::t('Block'),
67                         '$unblock'     => L10n::t('Unblock'),
68                         '$no_data'     => L10n::t('No remote contact is blocked from this node.'),
69
70                         '$h_contacts'  => L10n::t('Blocked Remote Contacts'),
71                         '$h_newblock'  => L10n::t('Block New Remote Contact'),
72                         '$th_contacts' => [L10n::t('Photo'), L10n::t('Name'), L10n::t('Reason')],
73
74                         '$form_security_token' => parent::getFormSecurityToken('admin_contactblock'),
75
76                         // values //
77                         '$baseurl'    => DI::baseUrl()->get(true),
78
79                         '$contacts'   => $contacts,
80                         '$total_contacts' => L10n::tt('%s total blocked contact', '%s total blocked contacts', $total),
81                         '$paginate'   => $pager->renderFull($total),
82                         '$contacturl' => ['contact_url', L10n::t('Profile URL'), '', L10n::t('URL of the remote contact to block.')],
83                         '$contact_block_reason' => ['contact_block_reason', L10n::t('Block Reason')],
84                 ]);
85                 return $o;
86         }
87 }