2021-10-02 15:31:27 -04:00
|
|
|
<?php
|
|
|
|
/**
|
2022-01-02 02:27:47 -05:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2021-10-02 15:31:27 -04:00
|
|
|
*
|
|
|
|
* @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\BaseModule;
|
|
|
|
use Friendica\Content\Widget;
|
|
|
|
use Friendica\DI;
|
|
|
|
use Friendica\Model;
|
|
|
|
use Friendica\Model\Contact as ModelContact;
|
|
|
|
use Friendica\Module\Contact;
|
|
|
|
use Friendica\Network\HTTPException\BadRequestException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GUI for media posts of a contact
|
|
|
|
*/
|
|
|
|
class Media extends BaseModule
|
|
|
|
{
|
2021-11-20 09:38:03 -05:00
|
|
|
protected function content(array $request = []): string
|
2021-10-02 15:31:27 -04:00
|
|
|
{
|
2021-11-14 17:19:25 -05:00
|
|
|
$cid = $this->parameters['id'];
|
2021-10-02 15:31:27 -04:00
|
|
|
|
|
|
|
$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'], false, 0, 0, true);
|
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
}
|