]> git.mxchange.org Git - friendica.git/blob - src/Module/Contact/Conversations.php
old boot.php functions replaced in src/module (3)
[friendica.git] / src / Module / Contact / Conversations.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\Conversation;
28 use Friendica\Content\Nav;
29 use Friendica\Content\Widget;
30 use Friendica\Core\L10n;
31 use Friendica\Core\Protocol;
32 use Friendica\Core\Session;
33 use Friendica\Core\Theme;
34 use Friendica\Model;
35 use Friendica\Module\Contact;
36 use Friendica\Module\Response;
37 use Friendica\Module\Security\Login;
38 use Friendica\Network\HTTPException\NotFoundException;
39 use Friendica\Util\Profiler;
40 use Psr\Log\LoggerInterface;
41
42 /**
43  *  Manages and show Contacts and their content
44  */
45 class Conversations extends BaseModule
46 {
47         /**
48          * @var App\Page
49          */
50         private $page;
51         /**
52          * @var Conversation
53          */
54         private $conversation;
55         /**
56          * @var LocalRelationship
57          */
58         private $localRelationship;
59
60         public function __construct(L10n $l10n, LocalRelationship $localRelationship, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, App\Page $page, Conversation $conversation, array $server, array $parameters = [])
61         {
62                 parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
63
64                 $this->page              = $page;
65                 $this->conversation      = $conversation;
66                 $this->localRelationship = $localRelationship;
67         }
68
69         protected function content(array $request = []): string
70         {
71                 if (!Session::getLocalUser()) {
72                         return Login::form($_SERVER['REQUEST_URI']);
73                 }
74
75                 // Backward compatibility: Ensure to use the public contact when the user contact is provided
76                 // Remove by version 2022.03
77                 $data = Model\Contact::getPublicAndUserContactID(intval($this->parameters['id']), Session::getLocalUser());
78                 if (empty($data)) {
79                         throw new NotFoundException($this->t('Contact not found.'));
80                 }
81
82                 $contact = Model\Contact::getById($data['public']);
83                 if (empty($contact)) {
84                         throw new NotFoundException($this->t('Contact not found.'));
85                 }
86
87                 // Don't display contacts that are about to be deleted
88                 if (!empty($contact['deleted']) || !empty($contact['network']) && $contact['network'] == Protocol::PHANTOM) {
89                         throw new NotFoundException($this->t('Contact not found.'));
90                 }
91
92                 $localRelationship = $this->localRelationship->getForUserContact(Session::getLocalUser(), $contact['id']);
93                 if ($localRelationship->rel === Model\Contact::SELF) {
94                         $this->baseUrl->redirect('profile/' . $contact['nick']);
95                 }
96
97                 // Load necessary libraries for the status editor
98                 $this->page->registerFooterScript(Theme::getPathForFile('asset/typeahead.js/dist/typeahead.bundle.js'));
99                 $this->page->registerFooterScript(Theme::getPathForFile('js/friendica-tagsinput/friendica-tagsinput.js'));
100                 $this->page->registerStylesheet(Theme::getPathForFile('js/friendica-tagsinput/friendica-tagsinput.css'));
101                 $this->page->registerStylesheet(Theme::getPathForFile('js/friendica-tagsinput/friendica-tagsinput-typeahead.css'));
102
103                 $this->page['aside'] .= Widget\VCard::getHTML($contact);
104
105                 Nav::setSelected('contact');
106
107                 // We need the editor here to be able to reshare an item.
108                 $o = $this->conversation->statusEditor([], 0, true);
109
110                 $o .= Contact::getTabsHTML($contact, Contact::TAB_CONVERSATIONS);
111                 $o .= Model\Contact::getPostsFromId($contact['id'], true);
112
113                 return $o;
114         }
115 }