mirror of
https://github.com/friendica/friendica
synced 2025-01-26 16:59:47 +00:00
72 lines
2.2 KiB
PHP
72 lines
2.2 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (C) 2010-2024, 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\Widget;
|
|
use Friendica\Core\L10n;
|
|
use Friendica\Core\Session\Capability\IHandleUserSessions;
|
|
use Friendica\DI;
|
|
use Friendica\Model;
|
|
use Friendica\Model\Contact as ModelContact;
|
|
use Friendica\Module\Contact;
|
|
use Friendica\Module\Response;
|
|
use Friendica\Network\HTTPException\BadRequestException;
|
|
use Friendica\Util\Profiler;
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
/**
|
|
* GUI for media posts of a contact
|
|
*/
|
|
class Media extends BaseModule
|
|
{
|
|
/**
|
|
* @var IHandleUserSessions
|
|
*/
|
|
private $userSession;
|
|
|
|
public function __construct(L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, IHandleUserSessions $userSession, $server, array $parameters = [])
|
|
{
|
|
parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
|
|
|
|
$this->userSession = $userSession;
|
|
}
|
|
|
|
protected function content(array $request = []): string
|
|
{
|
|
$cid = $this->parameters['id'];
|
|
|
|
$contact = Model\Contact::selectFirst([], ['id' => $cid]);
|
|
if (empty($contact)) {
|
|
throw new BadRequestException(DI::l10n()->t('Contact not found.'));
|
|
}
|
|
|
|
DI::page()['aside'] = Widget\VCard::getHTML($contact);
|
|
|
|
$o = Contact::getTabsHTML($contact, Contact::TAB_MEDIA);
|
|
|
|
$o .= ModelContact::getPostsFromUrl($contact['url'], $this->userSession->getLocalUserId(), true);
|
|
|
|
return $o;
|
|
}
|
|
}
|