12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <?php
- namespace catchAdmin\system\controller;
- use catchAdmin\permissions\model\Permissions;
- use catcher\base\CatchController;
- use catcher\CatchResponse;
- use catcher\CatchAdmin;
- use catcher\library\InstallCatchModule;
- use catcher\library\InstallLocalModule;
- use catcher\Utils;
- use think\response\Json;
- class Module extends CatchController
- {
- /**
- * 模块列表
- *
- * @return Json
- */
- public function index()
- {
- $modules = [];
- foreach(CatchAdmin::getModulesDirectory() as $d) {
- $modules[] = json_decode(file_get_contents($d . 'module.json'), true);
- }
- $hasModules = array_unique(Permissions::whereIn('id', request()->user()->getPermissionsBy())->column('module'));
- $orders = array_column($modules, 'order');
- array_multisort($orders, SORT_DESC, $modules);
- if (!Utils::isSuperAdmin()) {
- foreach ($modules as $k => $module) {
- if (!in_array($module['alias'], $hasModules)) {
- unset($modules[$k]);
- }
- }
- }
- return CatchResponse::success(array_values($modules));
- }
- /**
- * 禁用/启用模块
- *
- * @param string $module
- * @return Json
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\db\exception\DataNotFoundException
- */
- public function disOrEnable(string $module)
- {
- $moduleInfo = CatchAdmin::getModuleInfo(CatchAdmin::directory() . $module);
- $install = new InstallLocalModule($module);
- if (!$moduleInfo['enable']) {
- $install->findModuleInPermissions() ? $install->enableModule() : $install->done();
- } else {
- $install->disableModule();
- }
- return CatchResponse::success();
- }
- /**
- * 缓存
- *
- * @time 2020年09月21日
- * @return Json
- */
- public function cache()
- {
- return CatchResponse::success(CatchAdmin::cacheServices());
- }
- /**
- * 清理缓存
- *
- * @time 2020年09月21日
- * @return Json
- */
- public function clear()
- {
- return !file_exists(CatchAdmin::getCacheServicesFile()) ?
- CatchResponse::fail('模块没有缓存') :
- CatchResponse::success(unlink(CatchAdmin::getCacheServicesFile()));
- }
- }
|