2021-11-08 11:24:39 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (C) 2010-2021, 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\Contact\LocalRelationship\Repository\LocalRelationship;
|
|
|
|
use Friendica\Content\Conversation;
|
|
|
|
use Friendica\Content\Nav;
|
|
|
|
use Friendica\Content\Widget;
|
|
|
|
use Friendica\Core\L10n;
|
|
|
|
use Friendica\Core\Protocol;
|
|
|
|
use Friendica\Core\Theme;
|
|
|
|
use Friendica\Model;
|
|
|
|
use Friendica\Module\Contact;
|
2021-11-27 12:19:26 +00:00
|
|
|
use Friendica\Module\Response;
|
2021-11-08 11:24:39 +00:00
|
|
|
use Friendica\Module\Security\Login;
|
|
|
|
use Friendica\Network\HTTPException\NotFoundException;
|
2021-11-27 12:19:26 +00:00
|
|
|
use Friendica\Util\Profiler;
|
|
|
|
use Psr\Log\LoggerInterface;
|
2021-11-08 11:24:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Manages and show Contacts and their content
|
|
|
|
*/
|
|
|
|
class Conversations extends BaseModule
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var App\Page
|
|
|
|
*/
|
|
|
|
private $page;
|
|
|
|
/**
|
|
|
|
* @var Conversation
|
|
|
|
*/
|
|
|
|
private $conversation;
|
|
|
|
/**
|
|
|
|
* @var LocalRelationship
|
|
|
|
*/
|
|
|
|
private $localRelationship;
|
|
|
|
|
2021-11-27 12:19:26 +00:00
|
|
|
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 = [])
|
2021-11-08 11:24:39 +00:00
|
|
|
{
|
2021-11-27 12:19:26 +00:00
|
|
|
parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
|
2021-11-08 11:24:39 +00:00
|
|
|
|
|
|
|
$this->page = $page;
|
|
|
|
$this->conversation = $conversation;
|
|
|
|
$this->localRelationship = $localRelationship;
|
|
|
|
}
|
|
|
|
|
2021-11-27 12:19:26 +00:00
|
|
|
protected function content(array $request = []): string
|
2021-11-08 11:24:39 +00:00
|
|
|
{
|
|
|
|
if (!local_user()) {
|
|
|
|
return Login::form($_SERVER['REQUEST_URI']);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Backward compatibility: Ensure to use the public contact when the user contact is provided
|
|
|
|
// Remove by version 2022.03
|
|
|
|
$data = Model\Contact::getPublicAndUserContactID(intval($this->parameters['id']), local_user());
|
|
|
|
if (empty($data)) {
|
|
|
|
throw new NotFoundException($this->t('Contact not found.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$contact = Model\Contact::getById($data['public']);
|
|
|
|
if (empty($contact)) {
|
|
|
|
throw new NotFoundException($this->t('Contact not found.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Don't display contacts that are about to be deleted
|
|
|
|
if (!empty($contact['deleted']) || !empty($contact['network']) && $contact['network'] == Protocol::PHANTOM) {
|
|
|
|
throw new NotFoundException($this->t('Contact not found.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$localRelationship = $this->localRelationship->getForUserContact(local_user(), $contact['id']);
|
|
|
|
if ($localRelationship->rel === Model\Contact::SELF) {
|
|
|
|
$this->baseUrl->redirect('profile/' . $contact['nick']);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Load necessary libraries for the status editor
|
|
|
|
$this->page->registerFooterScript(Theme::getPathForFile('asset/typeahead.js/dist/typeahead.bundle.js'));
|
|
|
|
$this->page->registerFooterScript(Theme::getPathForFile('js/friendica-tagsinput/friendica-tagsinput.js'));
|
|
|
|
$this->page->registerStylesheet(Theme::getPathForFile('js/friendica-tagsinput/friendica-tagsinput.css'));
|
|
|
|
$this->page->registerStylesheet(Theme::getPathForFile('js/friendica-tagsinput/friendica-tagsinput-typeahead.css'));
|
|
|
|
|
|
|
|
$this->page['aside'] .= Widget\VCard::getHTML($contact);
|
|
|
|
|
|
|
|
Nav::setSelected('contact');
|
|
|
|
|
|
|
|
// We need the editor here to be able to reshare an item.
|
|
|
|
$o = $this->conversation->statusEditor([], 0, true);
|
|
|
|
|
|
|
|
$o .= Contact::getTabsHTML($contact, Contact::TAB_CONVERSATIONS);
|
|
|
|
$o .= Model\Contact::getPostsFromId($contact['id'], true);
|
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
}
|