spreed/lib/Files/TemplateLoader.php
Grigorii K. Shartsev 1bfe691cb0
build(frontend): bundle icons
Signed-off-by: Grigorii K. Shartsev <me@shgk.me>
2025-09-08 12:29:39 +02:00

92 lines
2.3 KiB
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Talk\Files;
use OCA\Files\Event\LoadSidebar;
use OCA\Talk\AppInfo\Application;
use OCA\Talk\Config;
use OCA\Talk\TInitialState;
use OCP\App\IAppManager;
use OCP\AppFramework\Services\IInitialState;
use OCP\EventDispatcher\Event;
use OCP\EventDispatcher\IEventListener;
use OCP\Files\IRootFolder;
use OCP\ICacheFactory;
use OCP\IConfig;
use OCP\IGroupManager;
use OCP\IRequest;
use OCP\IUser;
use OCP\IUserSession;
use OCP\Util;
use Psr\Log\LoggerInterface;
/**
* Helper class to add the Talk UI to the sidebar of the Files app.
*
* @template-implements IEventListener<Event>
*/
class TemplateLoader implements IEventListener {
use TInitialState;
public function __construct(
IInitialState $initialState,
ICacheFactory $memcacheFactory,
Config $talkConfig,
IConfig $serverConfig,
private IAppManager $appManager,
private IRootFolder $rootFolder,
private IUserSession $userSession,
IGroupManager $groupManager,
protected IRequest $request,
LoggerInterface $logger,
) {
$this->initialState = $initialState;
$this->memcacheFactory = $memcacheFactory;
$this->talkConfig = $talkConfig;
$this->serverConfig = $serverConfig;
$this->groupManager = $groupManager;
$this->logger = $logger;
}
/**
* Loads the Talk UI in the sidebar of the Files app.
*
* This method should be called when handling the LoadSidebar event of the
* Files app.
*
* @param Event $event
*/
#[\Override]
public function handle(Event $event): void {
if (!($event instanceof LoadSidebar)) {
return;
}
if ($this->serverConfig->getAppValue('spreed', 'conversations_files', '1') !== '1') {
return;
}
$user = $this->userSession->getUser();
if ($user instanceof IUser && $this->talkConfig->isDisabledForUser($user)) {
return;
}
Util::addStyle(Application::APP_ID, 'talk-icons');
if (!str_starts_with($this->request->getPathInfo(), '/apps/maps')) {
Util::addScript(Application::APP_ID, 'talk-files-sidebar');
Util::addStyle(Application::APP_ID, 'talk-files-sidebar');
}
if ($user instanceof IUser) {
$this->publishInitialStateForUser($user, $this->rootFolder, $this->appManager);
} else {
$this->publishInitialStateForGuest();
}
}
}