aboutsummaryrefslogtreecommitdiffstats
path: root/core/Controller/ProfilePageController.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/Controller/ProfilePageController.php')
-rw-r--r--core/Controller/ProfilePageController.php131
1 files changed, 131 insertions, 0 deletions
diff --git a/core/Controller/ProfilePageController.php b/core/Controller/ProfilePageController.php
new file mode 100644
index 00000000000..a7ceb404fbc
--- /dev/null
+++ b/core/Controller/ProfilePageController.php
@@ -0,0 +1,131 @@
+<?php
+
+declare(strict_types=1);
+
+/**
+ * @copyright 2021 Christopher Ng <chrng8@gmail.com>
+ *
+ * @author Christopher Ng <chrng8@gmail.com>
+ *
+ * @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 <http://www.gnu.org/licenses/>.
+ *
+ */
+
+namespace OC\Core\Controller;
+
+use OCP\Accounts\IAccountManager;
+use OCP\AppFramework\Controller;
+use OCP\AppFramework\Http\TemplateResponse;
+use OCP\AppFramework\Services\IInitialState;
+use OCP\IRequest;
+use OCP\IUserManager;
+use OCP\IUserSession;
+use OC\Profile\ProfileManager;
+use OCP\UserStatus\IManager as IUserStatusManager;
+
+class ProfilePageController extends Controller {
+ use \OC\Profile\TProfileHelper;
+
+ /** @var IInitialState */
+ private $initialStateService;
+
+ /** @var IAccountManager */
+ private $accountManager;
+
+ /** @var ProfileManager */
+ private $profileManager;
+
+ /** @var IUserManager */
+ private $userManager;
+
+ /** @var IUserSession */
+ private $userSession;
+
+ /** @var IUserStatusManager */
+ private $userStatusManager;
+
+ public function __construct(
+ $appName,
+ IRequest $request,
+ IInitialState $initialStateService,
+ IAccountManager $accountManager,
+ ProfileManager $profileManager,
+ IUserManager $userManager,
+ IUserSession $userSession,
+ IUserStatusManager $userStatusManager
+ ) {
+ parent::__construct($appName, $request);
+ $this->initialStateService = $initialStateService;
+ $this->accountManager = $accountManager;
+ $this->profileManager = $profileManager;
+ $this->userManager = $userManager;
+ $this->userSession = $userSession;
+ $this->userStatusManager = $userStatusManager;
+ }
+
+ /**
+ * @PublicPage
+ * @NoCSRFRequired
+ * @NoAdminRequired
+ * @NoSubAdminRequired
+ */
+ public function index(string $targetUserId): TemplateResponse {
+ if (!$this->userManager->userExists($targetUserId)) {
+ return new TemplateResponse(
+ 'core',
+ '404-profile',
+ [],
+ TemplateResponse::RENDER_AS_GUEST,
+ );
+ }
+
+ $visitingUser = $this->userSession->getUser();
+ $targetUser = $this->userManager->get($targetUserId);
+ $targetAccount = $this->accountManager->getAccount($targetUser);
+
+ if (!$this->isProfileEnabled($targetAccount)) {
+ return new TemplateResponse(
+ 'core',
+ '404-profile',
+ [],
+ TemplateResponse::RENDER_AS_GUEST,
+ );
+ }
+
+ $userStatuses = $this->userStatusManager->getUserStatuses([$targetUserId]);
+ $status = array_shift($userStatuses);
+ if (!empty($status)) {
+ $this->initialStateService->provideInitialState('status', [
+ 'icon' => $status->getIcon(),
+ 'message' => $status->getMessage(),
+ ]);
+ }
+
+ $this->initialStateService->provideInitialState(
+ 'profileParameters',
+ $this->profileManager->getProfileParams($targetUser, $visitingUser),
+ );
+
+ \OCP\Util::addScript('core', 'dist/profile');
+
+ return new TemplateResponse(
+ 'core',
+ 'profile',
+ [],
+ $this->userSession->isLoggedIn() ? TemplateResponse::RENDER_AS_USER : TemplateResponse::RENDER_AS_PUBLIC,
+ );
+ }
+}