Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
meibuyu-rpc
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
without authentication
meibuyu-rpc
Commits
573e6ea6
Commit
573e6ea6
authored
Mar 31, 2022
by
Liu lu
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' of
http://git.huaperfect.com/without_auth/meibuyu-rpc
into develop
parents
0a814099
36001130
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
71 additions
and
0 deletions
+71
-0
SyncMagentoServiceInterface.php
...nterfaces/SyncDataService/SyncMagentoServiceInterface.php
+19
-0
AuthenticationInterface.php
src/Service/Interfaces/User/AuthenticationInterface.php
+41
-0
BaseInfoServiceInterface.php
src/Service/Interfaces/User/BaseInfoServiceInterface.php
+11
-0
No files found.
src/Service/Interfaces/SyncDataService/SyncMagentoServiceInterface.php
0 → 100644
View file @
573e6ea6
<?php
/**
* Created by PhpStorm.
* User: qiudongfang
* Date: ${DATA}
* Time: 下午2:57
*/
namespace
Meibuyu\Rpc\Service\Interfaces\SyncDataService
;
interface
SyncMagentoServiceInterface
{
/**
* @param $platformOrderId 平台单号id
* @param int $pageSize 每页最多展示50条
* @return array
*/
public
function
syncOrders
(
$platformOrderId
,
$pageSize
=
10
)
:
array
;
}
src/Service/Interfaces/User/AuthenticationInterface.php
0 → 100644
View file @
573e6ea6
<?php
/**
* Created by PhpStorm.
* User: qjk
* Date: 2022/03/28
* Time: 15:07
*/
namespace
Meibuyu\Rpc\Service\Interfaces\User
;
interface
AuthenticationInterface
{
/**
* 获取对应用户能够看到的菜单
* @param string $applicationName
* @param integer $userId
* @return array
*/
public
function
getMenus
(
$applicationName
,
$userId
)
:
array
;
/**
* 获取对应用户的菜单权限
* @param string $applicationName 应用名称
* @param integer $userId 用户 ID
* @return array
*/
public
function
getButtons
(
$applicationName
,
$userId
,
$frontendPath
)
:
array
;
/**
* 获取对应路由的接口权限结果
* @param $path string 请求 URL 路径
* @param $method string 路由名字
* @param $applicationName string 应用名字
* @param $userId integer 用户 ID
* @return bool
*/
public
function
authByRouter
(
$applicationName
,
$path
,
$method
,
$userId
)
:
bool
;
}
src/Service/Interfaces/User/BaseInfoServiceInterface.php
View file @
573e6ea6
...
...
@@ -262,4 +262,15 @@ interface BaseInfoServiceInterface
*/
public
function
getRoleById
(
int
$id
,
array
$relations
=
[],
array
$columns
=
[
'*'
]);
/**
* 通过角色标识获取角色信息
* @param string name 角色名称
* @param array $relations 角色的关联信息
* 支持["users", "perms"]
* 分别是 角色下的用户,角色下的权限
* @param array $columns 默认显示所有字段,['id', 'name', 'is_active', 'display_name', 'description']
* @return array|null
*/
public
function
getRoleByName
(
string
$name
,
array
$relations
=
[],
array
$columns
=
[
'*'
]);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment