side_menu/lib/Controller/JsController.php

162 lines
5.6 KiB
PHP
Raw Normal View History

2020-04-17 13:57:23 +02:00
<?php
/**
* @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 OCA\SideMenu\Controller;
2020-08-13 11:21:59 +02:00
use OC;
use OC\User\User;
2020-09-22 14:35:09 +02:00
use OCA\SideMenu\AppInfo\Application;
use OCA\SideMenu\Service\ConfigProxy;
use OCA\Theming\ThemingDefaults;
2020-04-17 13:57:23 +02:00
use OCP\AppFramework\Controller;
use OCP\AppFramework\Http\JSONResponse;
2020-08-13 11:21:59 +02:00
use OCP\AppFramework\Http\TemplateResponse;
2020-04-17 13:57:23 +02:00
use OCP\IRequest;
use OCP\IUserSession;
2020-10-15 15:46:59 +02:00
use OCP\L10N\IFactory;
2020-04-17 13:57:23 +02:00
class JsController extends Controller
{
/**
2020-09-22 14:24:53 +02:00
* @var ConfigProxy
*/
2020-04-17 13:57:23 +02:00
protected $config;
/**
* @var User
*/
protected $user;
/**
* @var ThemingDefaults
*/
protected $themingDefaults;
2020-10-15 15:46:59 +02:00
/**
* @var IFactory
*/
protected $l10nFactory;
public function __construct(
string $appName,
IRequest $request,
ConfigProxy $config,
ThemingDefaults $themingDefaults,
IFactory $l10nFactory
) {
2020-04-17 13:57:23 +02:00
parent::__construct($appName, $request);
$this->themingDefaults = $themingDefaults;
$this->user = OC::$server[IUserSession::class]->getUser();
2020-04-17 13:57:23 +02:00
$this->config = $config;
2020-10-15 15:46:59 +02:00
$this->l10nFactory = $l10nFactory;
2020-04-17 13:57:23 +02:00
}
/**
* @NoAdminRequired
* @NoCSRFRequired
* @PublicPage
*/
public function script(): TemplateResponse
{
$response = new TemplateResponse(Application::APP_ID, 'js/script', $this->getConfig(), 'blank');
$response->addHeader('Content-Type', 'text/javascript');
return $response;
}
/**
* @NoAdminRequired
* @NoCSRFRequired
* @PublicPage
*/
public function config(): JSONResponse
{
return new JSONResponse($this->getConfig());
}
protected function getConfig(): array
2020-04-17 13:57:23 +02:00
{
2020-09-22 14:24:53 +02:00
$topMenuApps = $this->config->getAppValueArray('top-menu-apps', '[]');
$targetBlankApps = $this->config->getAppValueArray('target-blank-apps', '[]');
$useAvatar = $this->config->getAppValueBool('use-avatar', '0');
$isForced = $this->config->getAppValueBool('force', '0');
$avatar = null;
2020-10-15 15:46:59 +02:00
$settings = null;
if ($this->user) {
2020-09-22 14:24:53 +02:00
$userTopMenuApps = $this->config->getUserValueArray($this->user, 'top-menu-apps', '[]');
if (!empty($userTopMenuApps) && !$isForced) {
$topMenuApps = $userTopMenuApps;
}
2020-09-22 14:24:53 +02:00
$userTargetBlankMode = $this->config->getUserValueInt($this->user, 'target-blank-mode', '1');
$userTargetBlankApps = $this->config->getUserValueArray($this->user, 'target-blank-apps', '[]');
if (2 === $userTargetBlankMode && !$isForced) {
2020-09-12 16:32:10 +02:00
$targetBlankApps = $userTargetBlankApps;
}
$isAvatarSet = OC::$server->getAvatarManager()->getAvatar($this->user->getUid())->exists();
if ($useAvatar && $isAvatarSet) {
2020-10-15 15:46:59 +02:00
$avatar = OC::$server->getURLGenerator()->linkToRoute('core.avatar.getAvatar', [
'userId' => $this->user->getUid(),
'size' => 128,
'v' => $this->config->getUserValueInt($this->user, 'avatar', 'version', 0),
]);
}
if ($this->config->getAppValueBool('show-settings', '0')) {
$settingsNav = OC::$server->getNavigationManager()->getAll('settings');
if (isset($settingsNav['settings'])) {
$settings = [
'href' => $settingsNav['settings']['href'],
'name' => $settingsNav['settings']['name'],
'avatar' => OC::$server->getURLGenerator()->linkToRoute('core.avatar.getAvatar', [
'userId' => $this->user->getUid(),
'size' => 32,
'v' => $this->config->getUserValueInt($this->user, 'avatar', 'version', 0),
]),
];
}
}
}
return [
2020-09-22 14:24:53 +02:00
'opener-position' => $this->config->getAppValue('opener-position', 'before'),
'opener-hover' => $this->config->getAppValueBool('opener-hover', '0'),
2020-09-23 12:51:55 +02:00
'external-sites-in-top-menu' => $this->config->getAppValueBool('external-sites-in-top-menu', '0'),
2020-09-22 14:24:53 +02:00
'force-light-icon' => $this->config->getAppValueBool('force-light-icon', '0'),
'hide-when-no-apps' => $this->config->getAppValueBool('hide-when-no-apps', '0'),
'loader-enabled' => $this->config->getAppValueBool('loader-enabled', '1'),
'always-displayed' => $this->config->getAppValueBool('always-displayed', '0'),
'big-menu' => $this->config->getAppValueBool('big-menu', '0'),
'big-menu-hidden-apps' => $this->config->getAppValueArray('big-menu-hidden-apps', '[]'),
'avatar' => $avatar,
'top-menu-apps' => $topMenuApps,
2020-09-12 16:32:10 +02:00
'target-blank-apps' => $targetBlankApps,
2020-10-15 15:46:59 +02:00
'settings' => $settings,
'logo' => $this->themingDefaults->getLogo(),
2020-04-17 13:57:23 +02:00
];
}
}