forked from deblan/side_menu
135 lines
4.2 KiB
PHP
135 lines
4.2 KiB
PHP
<?php
|
|
|
|
namespace OCA\SideMenu\Service;
|
|
|
|
use OC\User\User;
|
|
use OCA\SideMenu\AppInfo\Application;
|
|
use OCP\AppFramework\Http\Events\BeforeTemplateRenderedEvent;
|
|
use OCP\AppFramework\Http\TemplateResponse;
|
|
use OCP\EventDispatcher\IEventDispatcher;
|
|
use OCP\INavigationManager;
|
|
use OCP\IUserSession;
|
|
use OCP\L10N\IFactory;
|
|
|
|
/**
|
|
* class AppRepository.
|
|
*
|
|
* @author Simon Vieille <simon@deblan.fr>
|
|
*/
|
|
class AppRepository
|
|
{
|
|
public function __construct(
|
|
protected \OC_App $ocApp,
|
|
protected INavigationManager $navigationManager,
|
|
protected IFactory $l10nFactory,
|
|
protected ConfigProxy $config,
|
|
protected CategoryRepository $categoryRepository,
|
|
protected IEventDispatcher $dispatcher,
|
|
protected IUserSession $userSession,
|
|
) {
|
|
$this->dispatcher->dispatchTyped(new BeforeTemplateRenderedEvent(
|
|
$this->userSession->isLoggedIn(),
|
|
new TemplateResponse(Application::APP_NAME, '')
|
|
));
|
|
}
|
|
|
|
/**
|
|
* Retrieves visibles apps.
|
|
*/
|
|
public function getVisibleApps(): array
|
|
{
|
|
$navigation = $this->navigationManager->getAll();
|
|
$appCategoriesCustom = $this->config->getAppValueArray('apps-categories-custom', '[]');
|
|
$categories = $this->categoryRepository->getOrderedCategories();
|
|
$apps = $this->ocApp->listAllApps();
|
|
$visibleApps = [];
|
|
|
|
foreach ($apps as $app) {
|
|
$id = $app['id'];
|
|
|
|
foreach ([$app['id'], $app['id'].'_index'] as $id) {
|
|
if (isset($navigation[$id])) {
|
|
$app['name'] = $this->getAppName($app);
|
|
$app['href'] = $navigation[$id]['href'];
|
|
$app['icon'] = $navigation[$id]['icon'];
|
|
|
|
$visibleApps[$id] = $app;
|
|
}
|
|
}
|
|
}
|
|
|
|
foreach ($navigation as $app) {
|
|
if ('external_index' === substr($app['id'], 0, 14)) {
|
|
$visibleApps[$app['id']] = [
|
|
'id' => $app['id'],
|
|
'name' => $this->getAppName($app),
|
|
'href' => $app['href'],
|
|
'icon' => $app['icon'],
|
|
'category' => [
|
|
'external_links',
|
|
],
|
|
];
|
|
} elseif ('tables_application' === substr($app['id'], 0, 18)) {
|
|
$visibleApps[$app['id']] = [
|
|
'id' => $app['id'],
|
|
'name' => $this->getAppName($app),
|
|
'href' => $app['href'],
|
|
'icon' => $app['icon'],
|
|
'category' => [],
|
|
];
|
|
} elseif ('files' === $app['id']) {
|
|
$visibleApps[$app['id']] = [
|
|
'id' => $app['id'],
|
|
'name' => $this->getAppName($app),
|
|
'href' => $app['href'],
|
|
'icon' => $app['icon'],
|
|
'category' => [],
|
|
];
|
|
}
|
|
}
|
|
|
|
foreach ($visibleApps as $id => $app) {
|
|
if (isset($appCategoriesCustom[$id], $categories[$appCategoriesCustom[$id]])) {
|
|
$visibleApps[$id]['category'] = [$appCategoriesCustom[$id]];
|
|
}
|
|
}
|
|
|
|
return $visibleApps;
|
|
}
|
|
|
|
public function getAppName($app): string
|
|
{
|
|
return $this->config->getAppValue(
|
|
'app.navigation.name',
|
|
$this->l10nFactory->get($app['id'])->t($app['name']),
|
|
$app['id']
|
|
);
|
|
}
|
|
|
|
public function getOrderedApps(?User $user = null): array
|
|
{
|
|
$apps = $this->getVisibleApps();
|
|
$orders = $this->config->getAppValueArray('apps-order', '[]');
|
|
|
|
if (null !== $user && !$this->config->getAppValueBool('force', '0')) {
|
|
$userOrders = $this->config->getUserValueArray($user, 'apps-order', '[]');
|
|
|
|
if (!empty($userOrders)) {
|
|
$orders = $userOrders;
|
|
}
|
|
}
|
|
|
|
usort($apps, function ($a, $b) use ($orders) {
|
|
$ak = array_keys($orders, $a['id'])[0] ?? null;
|
|
$bk = array_keys($orders, $b['id'])[0] ?? null;
|
|
|
|
if (null === $ak || null === $bk) {
|
|
return ($a['name'] < $b['name']) ? -1 : 1;
|
|
}
|
|
|
|
return $ak < $bk ? -1 : 1;
|
|
});
|
|
|
|
return $apps;
|
|
}
|
|
}
|