2019-10-27 14:08:14 +00:00
|
|
|
<?php
|
2020-02-09 14:45:36 +00:00
|
|
|
/**
|
2021-03-29 06:40:20 +00:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 14:45:36 +00: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/>.
|
|
|
|
*
|
|
|
|
*/
|
2019-10-27 14:08:14 +00:00
|
|
|
|
|
|
|
namespace Friendica\Module\Profile;
|
|
|
|
|
2020-01-26 14:54:21 +00:00
|
|
|
use Friendica\BaseModule;
|
2021-11-19 19:18:48 +00:00
|
|
|
use Friendica\Core\L10n;
|
2020-01-26 14:54:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Profile index router
|
|
|
|
*
|
|
|
|
* The default profile path (https://domain.tld/profile/nickname) has to serve the profile data when queried as an
|
|
|
|
* ActivityPub endpoint, but it should show statuses to web users.
|
|
|
|
*
|
|
|
|
* Both these view have dedicated sub-paths,
|
|
|
|
* respectively https://domain.tld/profile/nickname/profile and https://domain.tld/profile/nickname/status
|
|
|
|
*/
|
|
|
|
class Index extends BaseModule
|
2019-10-27 14:08:14 +00:00
|
|
|
{
|
2021-11-20 14:38:03 +00:00
|
|
|
protected function rawContent(array $request = [])
|
2019-10-27 14:08:14 +00:00
|
|
|
{
|
2021-11-21 19:06:36 +00:00
|
|
|
(new Profile($this->l10n, $this->baseUrl, $this->args, $this->logger, $this->profiler, $this->response, $this->server, $this->parameters))->rawContent();
|
2019-10-27 14:08:14 +00:00
|
|
|
}
|
|
|
|
|
2021-11-20 14:38:03 +00:00
|
|
|
protected function content(array $request = []): string
|
2019-10-27 14:08:14 +00:00
|
|
|
{
|
2021-11-21 19:06:36 +00:00
|
|
|
return (new Status($this->l10n, $this->baseUrl, $this->args, $this->logger, $this->profiler, $this->response, $this->server, $this->parameters))->content();
|
2019-11-08 03:15:57 +00:00
|
|
|
}
|
2019-10-27 14:08:14 +00:00
|
|
|
}
|