Commit 2ba37acf authored by 秦俊坤's avatar 秦俊坤

鉴权优化

parent e7ce9e08
...@@ -13,30 +13,30 @@ interface AuthenticationServiceInterface ...@@ -13,30 +13,30 @@ interface AuthenticationServiceInterface
/** /**
* 获取对应用户能够看到的菜单 * 获取对应用户能够看到的菜单
* @param string $applicationName * @param string $appName
* @param integer $userId * @param integer $userId
* @return array * @return array
*/ */
public function getMenus($applicationName, $userId): array; public function getMenus($appName, $userId): array;
/** /**
* 获取对应用户的菜单权限 * 获取对应用户的菜单权限
* @param string $applicationName 应用名称 * @param string $appName 应用名称
* @param integer $userId 用户 ID * @param integer $userId 用户 ID
* @return array * @return array
*/ */
public function getButtons($applicationName, $userId):array; public function getButtons($appName, $userId, $frontendPath):array;
/** /**
* 获取对应路由的接口权限结果 * 获取对应路由的接口权限结果
* @param $route string 路由名字 * @param $route string 路由名字
* @param $applicationName string 应用名字 * @param $appName string 应用名字
* @param $method string 请求方法 * @param $method string 请求方法
* @param $userId integer 用户 ID * @param $userId integer 用户 ID
* @return bool * @return bool
*/ */
public function authByRouter($applicationName, $route, $method, $userId): bool; public function authByRouter($appName, $route, $method, $userId): bool;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment