* @author Julius Härtl * * @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 . * */ namespace OCA\UserStatus\Listener; use OC\Profile\ProfileManager; use OCA\UserStatus\AppInfo\Application; use OCA\UserStatus\Service\JSDataService; use OCP\AppFramework\Http\Events\BeforeTemplateRenderedEvent; use OCP\AppFramework\Http\TemplateResponse; use OCP\EventDispatcher\Event; use OCP\EventDispatcher\IEventListener; use OCP\IInitialStateService; use OCP\IUserSession; /** @template-implements IEventListener */ class BeforeTemplateRenderedListener implements IEventListener { /** @var ProfileManager */ private $profileManager; /** @var IUserSession */ private $userSession; /** @var IInitialStateService */ private $initialState; /** @var JSDataService */ private $jsDataService; /** * BeforeTemplateRenderedListener constructor. * * @param ProfileManager $profileManager * @param IUserSession $userSession * @param IInitialStateService $initialState * @param JSDataService $jsDataService */ public function __construct( ProfileManager $profileManager, IUserSession $userSession, IInitialStateService $initialState, JSDataService $jsDataService ) { $this->profileManager = $profileManager; $this->userSession = $userSession; $this->initialState = $initialState; $this->jsDataService = $jsDataService; } /** * @inheritDoc */ public function handle(Event $event): void { $user = $this->userSession->getUser(); if ($user === null) { return; } if (!($event instanceof BeforeTemplateRenderedEvent)) { // Unrelated return; } if (!$event->isLoggedIn() || $event->getResponse()->getRenderAs() !== TemplateResponse::RENDER_AS_USER) { return; } $this->initialState->provideLazyInitialState(Application::APP_ID, 'status', function () { return $this->jsDataService; }); $this->initialState->provideLazyInitialState(Application::APP_ID, 'profileEnabled', function () use ($user) { return ['profileEnabled' => $this->profileManager->isProfileEnabled($user)]; }); \OCP\Util::addScript('user_status', 'menu'); \OCP\Util::addStyle('user_status', 'user-status-menu'); } }