]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Contact/Contacts.php
Remove the activity
[friendica.git] / src / Module / Contact / Contacts.php
index 31e81cb83d6e402813bc714d156217f8ebf21abf..0ed91c927232afaeaae6544a281a9e4fa0d83249 100644 (file)
@@ -1,49 +1,92 @@
 <?php
+/**
+ * @copyright Copyright (C) 2010-2022, the Friendica project
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
 
 namespace Friendica\Module\Contact;
 
+use Friendica\App;
 use Friendica\BaseModule;
 use Friendica\Content\Pager;
+use Friendica\Content\Widget;
+use Friendica\Core\L10n;
 use Friendica\Core\Renderer;
-use Friendica\Core\Session;
-use Friendica\DI;
+use Friendica\Core\Session\Capability\IHandleUserSessions;
 use Friendica\Model;
+use Friendica\Model\User;
 use Friendica\Module;
+use Friendica\Module\Response;
 use Friendica\Network\HTTPException;
+use Friendica\Util\Profiler;
+use Psr\Log\LoggerInterface;
 
 class Contacts extends BaseModule
 {
-       public static function content(array $parameters = [])
+       /** @var IHandleUserSessions */
+       private $userSession;
+       /** @var App\Page */
+       private $page;
+
+       public function __construct(App\Page $page, IHandleUserSessions $userSession, L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, array $server, array $parameters = [])
        {
-               $app = DI::app();
+               parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
+
+               $this->userSession = $userSession;
+               $this->page = $page;
+       }
 
-               if (!local_user()) {
+       protected function content(array $request = []): string
+       {
+               if (!$this->userSession->getLocalUserId()) {
                        throw new HTTPException\ForbiddenException();
                }
 
-               $cid = $parameters['id'];
-               $type = $parameters['type'] ?? 'all';
+               $cid = $this->parameters['id'];
+               $type = $this->parameters['type'] ?? 'all';
+               $accounttype = $request['accounttype'] ?? '';
+               $accounttypeid = User::getAccountTypeByString($accounttype);
 
                if (!$cid) {
-                       throw new HTTPException\BadRequestException(DI::l10n()->t('Invalid contact.'));
+                       throw new HTTPException\BadRequestException($this->t('Invalid contact.'));
                }
 
                $contact = Model\Contact::getById($cid, []);
                if (empty($contact)) {
-                       throw new HTTPException\NotFoundException(DI::l10n()->t('Contact not found.'));
+                       throw new HTTPException\NotFoundException($this->t('Contact not found.'));
                }
 
-               $localContactId = Model\Contact::getPublicIdByUserId(local_user());
+               $localContactId = Model\Contact::getPublicIdByUserId($this->userSession->getLocalUserId());
 
-               Model\Profile::load($app, '', $contact);
+               $this->page['aside'] = Widget\VCard::getHTML($contact);
 
                $condition = [
                        'blocked' => false,
-                       'self' => false,
-                       'hidden' => false,
+                       'self'    => false,
+                       'hidden'  => false,
+                       'failed'  => false,
                ];
 
-               $noresult_label = DI::l10n()->t('No known contacts.');
+               if (isset($accounttypeid)) {
+                       $condition['contact-type'] = $accounttypeid;
+               }
+
+               $noresult_label = $this->t('No known contacts.');
 
                switch ($type) {
                        case 'followers':
@@ -56,55 +99,62 @@ class Contacts extends BaseModule
                                $total = Model\Contact\Relation::countMutuals($cid, $condition);
                                break;
                        case 'common':
-                               $condition = [
-                                       'NOT `self` AND NOT `blocked` AND NOT `hidden` AND `id` != ?',
-                                       $localContactId,
-                               ];
                                $total = Model\Contact\Relation::countCommon($localContactId, $cid, $condition);
-                               $noresult_label = DI::l10n()->t('No common contacts.');
+                               $noresult_label = $this->t('No common contacts.');
                                break;
                        default:
                                $total = Model\Contact\Relation::countAll($cid, $condition);
                }
 
-               $pager = new Pager(DI::l10n(), DI::args()->getQueryString());
+               $pager = new Pager($this->l10n, $this->args->getQueryString(), 30);
                $desc = '';
 
                switch ($type) {
                        case 'followers':
                                $friends = Model\Contact\Relation::listFollowers($cid, $condition, $pager->getItemsPerPage(), $pager->getStart());
-                               $title = DI::l10n()->tt('Follower (%s)', 'Followers (%s)', $total);
+                               $title = $this->tt('Follower (%s)', 'Followers (%s)', $total);
                                break;
                        case 'following':
                                $friends = Model\Contact\Relation::listFollows($cid, $condition, $pager->getItemsPerPage(), $pager->getStart());
-                               $title = DI::l10n()->tt('Following (%s)', 'Following (%s)', $total);
+                               $title = $this->tt('Following (%s)', 'Following (%s)', $total);
                                break;
                        case 'mutuals':
                                $friends = Model\Contact\Relation::listMutuals($cid, $condition, $pager->getItemsPerPage(), $pager->getStart());
-                               $title = DI::l10n()->tt('Mutual friend (%s)', 'Mutual friends (%s)', $total);
-                               $desc = DI::l10n()->t(
+                               $title = $this->tt('Mutual friend (%s)', 'Mutual friends (%s)', $total);
+                               $desc = $this->t(
                                        'These contacts both follow and are followed by <strong>%s</strong>.',
                                        htmlentities($contact['name'], ENT_COMPAT, 'UTF-8')
                                );
                                break;
                        case 'common':
                                $friends = Model\Contact\Relation::listCommon($localContactId, $cid, $condition, $pager->getItemsPerPage(), $pager->getStart());
-                               $title = DI::l10n()->tt('Common contact (%s)', 'Common contacts (%s)', $total);
-                               $desc = DI::l10n()->t(
+                               $title = $this->tt('Common contact (%s)', 'Common contacts (%s)', $total);
+                               $desc = $this->t(
                                        'Both <strong>%s</strong> and yourself have publicly interacted with these contacts (follow, comment or likes on public posts).',
                                        htmlentities($contact['name'], ENT_COMPAT, 'UTF-8')
                                );
                                break;
                        default:
                                $friends = Model\Contact\Relation::listAll($cid, $condition, $pager->getItemsPerPage(), $pager->getStart());
-                               $title = DI::l10n()->tt('Contact (%s)', 'Contacts (%s)', $total);
+                               $title = $this->tt('Contact (%s)', 'Contacts (%s)', $total);
                }
 
                $o = Module\Contact::getTabsHTML($contact, Module\Contact::TAB_CONTACTS);
 
                $tabs = self::getContactFilterTabs('contact/' . $cid, $type, true);
 
-               $contacts = array_map([Module\Contact::class, 'getContactTemplateVars'], $friends);
+               // Contact list is obtained from the visited contact, but the contact display is visitor dependent
+               $contacts = array_map(
+                       function ($contact) {
+                               $contact = Model\Contact::selectFirst(
+                                       [],
+                                       ['uri-id' => $contact['uri-id'], 'uid' => [0, $this->userSession->getLocalUserId()]],
+                                       ['order' => ['uid' => 'DESC']]
+                               );
+                               return Module\Contact::getContactTemplateVars($contact);
+                       },
+                       $friends
+               );
 
                $tpl = Renderer::getMarkupTemplate('profile/contacts.tpl');
                $o .= Renderer::replaceMacros($tpl, [
@@ -118,6 +168,8 @@ class Contacts extends BaseModule
                        '$paginate' => $pager->renderFull($total),
                ]);
 
+               $this->page['aside'] .= Widget::accountTypes($_SERVER['REQUEST_URI'], $accounttype);
+
                return $o;
        }
 }