]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Profile/Index.php
Apply suggestions from code review
[friendica.git] / src / Module / Profile / Index.php
index bf34b0204d4842980e0269d5709fbe69e1aee250..7a009739e4743b3983203a946be2ed7db416a4f6 100644 (file)
@@ -1,8 +1,39 @@
 <?php
+/**
+ * @copyright Copyright (C) 2010-2023, 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\Profile;
 
+use Friendica\App;
 use Friendica\BaseModule;
+use Friendica\Content\Conversation;
+use Friendica\Core\Config\Capability\IManageConfigValues;
+use Friendica\Core\L10n;
+use Friendica\Core\PConfig\Capability\IManagePersonalConfigValues;
+use Friendica\Core\Session\Capability\IHandleUserSessions;
+use Friendica\Database\Database;
+use Friendica\Module\Response;
+use Friendica\Profile\ProfileField\Repository\ProfileField;
+use Friendica\Util\DateTimeFormat;
+use Friendica\Util\Profiler;
+use Psr\Log\LoggerInterface;
 
 /**
  * Profile index router
@@ -11,17 +42,54 @@ use Friendica\BaseModule;
  * 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
+ * respectively https://domain.tld/profile/nickname/profile and https://domain.tld/profile/nickname/conversations
  */
 class Index extends BaseModule
 {
-       public static function rawContent(array $parameters = [])
+       /** @var Database */
+       private $database;
+       /** @var App */
+       private $app;
+       /** @var IHandleUserSessions */
+       private $session;
+       /** @var IManageConfigValues */
+       private $config;
+       /** @var App\Page */
+       private $page;
+       /** @var ProfileField */
+       private $profileField;
+       /** @var DateTimeFormat */
+       private $dateTimeFormat;
+       /** @var Conversation */
+       private $conversation;
+       /** @var IManagePersonalConfigValues */
+       private $pConfig;
+       /** @var App\Mode */
+       private $mode;
+
+       public function __construct(App\Mode $mode, IManagePersonalConfigValues $pConfig, Conversation $conversation, DateTimeFormat $dateTimeFormat, ProfileField $profileField, App\Page $page, IManageConfigValues $config, IHandleUserSessions $session, App $app, Database $database, L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, array $server, array $parameters = [])
+       {
+               parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
+
+               $this->database       = $database;
+               $this->app            = $app;
+               $this->session        = $session;
+               $this->config         = $config;
+               $this->page           = $page;
+               $this->profileField   = $profileField;
+               $this->dateTimeFormat = $dateTimeFormat;
+               $this->conversation   = $conversation;
+               $this->pConfig        = $pConfig;
+               $this->mode           = $mode;
+       }
+
+       protected function rawContent(array $request = [])
        {
-               Profile::rawContent($parameters);
+               (new Profile($this->profileField, $this->page, $this->config, $this->session, $this->app, $this->database, $this->l10n, $this->baseUrl, $this->args, $this->logger, $this->profiler, $this->response, $this->server, $this->parameters))->rawContent();
        }
 
-       public static function content(array $parameters = [])
+       protected function content(array $request = []): string
        {
-               return Status::content($parameters);
+               return (new Conversations($this->mode, $this->pConfig, $this->conversation, $this->session, $this->config, $this->dateTimeFormat, $this->page, $this->app, $this->l10n, $this->baseUrl, $this->args, $this->logger, $this->profiler, $this->response, $this->server, $this->parameters))->content();
        }
 }