]> git.mxchange.org Git - friendica.git/blob - src/Module/Contact/Posts.php
Removed redundant maximagesize = INF statements
[friendica.git] / src / Module / Contact / Posts.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\Contact;
23
24 use Friendica\App;
25 use Friendica\BaseModule;
26 use Friendica\Contact\LocalRelationship\Repository\LocalRelationship;
27 use Friendica\Content\Nav;
28 use Friendica\Content\Widget;
29 use Friendica\Core\L10n;
30 use Friendica\Core\Protocol;
31 use Friendica\Core\Session\Capability\IHandleUserSessions;
32 use Friendica\Database\DBA;
33 use Friendica\Model;
34 use Friendica\Module\Contact;
35 use Friendica\Module\Response;
36 use Friendica\Module\Security\Login;
37 use Friendica\Network\HTTPException\NotFoundException;
38 use Friendica\Util\Profiler;
39 use Psr\Log\LoggerInterface;
40
41 /**
42  *  Show a contact posts and comments
43  */
44 class Posts extends BaseModule
45 {
46         /**
47          * @var LocalRelationship
48          */
49         private $localRelationship;
50         /**
51          * @var App\Page
52          */
53         private $page;
54         /**
55          * @var IHandleUserSessions
56          */
57         private $userSession;
58
59         public function __construct(L10n $l10n, LocalRelationship $localRelationship, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, App\Page $page, IHandleUserSessions $userSession, $server, array $parameters = [])
60         {
61                 parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
62
63                 $this->localRelationship = $localRelationship;
64                 $this->page              = $page;
65                 $this->userSession       = $userSession;
66         }
67
68         protected function content(array $request = []): string
69         {
70                 if (!$this->userSession->getLocalUserId()) {
71                         return Login::form($_SERVER['REQUEST_URI']);
72                 }
73
74                 // Backward compatibility: Ensure to use the public contact when the user contact is provided
75                 // Remove by version 2022.03
76                 $data = Model\Contact::getPublicAndUserContactID(intval($this->parameters['id']), $this->userSession->getLocalUserId());
77                 if (empty($data)) {
78                         throw new NotFoundException($this->t('Contact not found.'));
79                 }
80
81                 $contact = Model\Contact::getById($data['public']);
82                 if (!DBA::isResult($contact)) {
83                         throw new NotFoundException($this->t('Contact not found.'));
84                 }
85
86                 // Don't display contacts that are about to be deleted
87                 if (DBA::isResult($contact) && (!empty($contact['deleted']) || !empty($contact['network']) && $contact['network'] == Protocol::PHANTOM)) {
88                         throw new NotFoundException($this->t('Contact not found.'));
89                 }
90
91                 $localRelationship = $this->localRelationship->getForUserContact($this->userSession->getLocalUserId(), $contact['id']);
92                 if ($localRelationship->rel === Model\Contact::SELF) {
93                         $this->baseUrl->redirect('profile/' . $contact['nick']);
94                 }
95
96                 $this->page['aside'] .= Widget\VCard::getHTML($contact);
97
98                 Nav::setSelected('contact');
99
100                 $o = Contact::getTabsHTML($contact, Contact::TAB_POSTS);
101
102                 $o .= Model\Contact::getPostsFromId($contact['id']);
103
104                 return $o;
105         }
106 }