forked from iod/ControlProxy
add access control example
This commit is contained in:
parent
b635aeab77
commit
5b0f97eedc
17
README.md
17
README.md
@ -1,2 +1,19 @@
|
|||||||
# 初始化配置说明
|
# 初始化配置说明
|
||||||
1. clone之后使用`git submodule update --init `初始化子仓库。
|
1. clone之后使用`git submodule update --init `初始化子仓库。
|
||||||
|
|
||||||
|
# 测试环境搭建说明
|
||||||
|
测试环境中有一个bdtest/Repository(tcp://127.0.0.1:21035),和一个标识解析系统(tcp://127.0.0.1:21041)
|
||||||
|
## Repo测试
|
||||||
|
进行Repo测试时,需要先在`http://127.0.0.1:21030/DOIP/GlobalRouter/assets/#/Suffix/suffixManage`中登录,
|
||||||
|
key填:` { "publicKey": "04180354fdb6507f8ab98ccfbe165ce11da74ba733f81af86ad6d32216b32cf4f797c559d50ceeefbf4c760c3483840471c67471b90acdffb388cd7d496d9a1610",
|
||||||
|
"privateKey": "1d4196947f59532db6f8f4055e58474a48db8f30b476ae3edc66406464521b3b"}`,由于该repo需要支持从本地的客户端发起调用,
|
||||||
|
因此Address建议填`tcp://127.0.0.1:port`。注意IP与Registry填写的IP的不同。
|
||||||
|
添加一个`Repository2`,其中address填写的port范围建议在18034-18039之内。
|
||||||
|
|
||||||
|
## Registry测试
|
||||||
|
进行Registry测试时,需要先在`http://127.0.0.1:21030/DOIP/GlobalRouter/assets/#/Suffix/suffixManage` 之中
|
||||||
|
创建一个`Registry2`的标识。
|
||||||
|
key填:` { "publicKey": "04180354fdb6507f8ab98ccfbe165ce11da74ba733f81af86ad6d32216b32cf4f797c559d50ceeefbf4c760c3483840471c67471b90acdffb388cd7d496d9a1610",
|
||||||
|
"privateKey": "1d4196947f59532db6f8f4055e58474a48db8f30b476ae3edc66406464521b3b"}`
|
||||||
|
由于Registry2需要支持从docker的repo去调用DOIP.publish,因此address填写:`tcp://host.docker.internal:port`,port的范围
|
||||||
|
建议18034-18039之内。
|
@ -1,14 +1,56 @@
|
|||||||
|
//访问控制规则:
|
||||||
|
//针对如果是DOIP请求的调用
|
||||||
|
//仅包括Repo.doipRetrive
|
||||||
|
//Registry的publish/subscribe不做访问控制
|
||||||
|
//如果是HTTP请求的调用
|
||||||
|
//管理员具有所有权限
|
||||||
|
//一些”写入接口“添加权限检查
|
||||||
module DOAuth {
|
module DOAuth {
|
||||||
|
function initDOAuth(req, createParam, doipFunctions) {
|
||||||
|
Global.owner = req;
|
||||||
|
Global.doipFunctions = doipFunctions;
|
||||||
|
Global.accessInfo = RocksDBUtil.loadDB("accessControl", "false");
|
||||||
|
}
|
||||||
|
function isOwner(req) {
|
||||||
|
return req == Global.owner;
|
||||||
|
}
|
||||||
|
function doipAccessCheck(argPack) {
|
||||||
|
print("in doipAcceccCheck, requester:" + argPack.requester);
|
||||||
|
var stored = Global.accessInfo.get(argPack.arg.header.identifier);
|
||||||
|
return stored == argPack.requester;
|
||||||
|
}
|
||||||
|
function checkByManager(action) {
|
||||||
|
return Global.doipFunctions.indexOf(action) == - 1;
|
||||||
|
}
|
||||||
|
|
||||||
@Description("针对某一DO,添加用户的访问权限")
|
@Description("针对某一DO,添加用户的访问权限")
|
||||||
@ArgSchema({
|
@ArgSchema({
|
||||||
"doId" : "string", "publicKey" : "string"
|
"doId" : "string", "publicKey" : "string"
|
||||||
})
|
})
|
||||||
export function addAuthedUser(arg) {
|
export function addAuthedUser(arg) {
|
||||||
|
//把requester和 arg.doId放到accessInfo里即可。
|
||||||
|
Global.accessInfo.put(arg.doId, arg.publicKey);
|
||||||
return {
|
return {
|
||||||
"code" : 0
|
"code" : 0
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function acceptJudgementInternal(argPack) {
|
||||||
|
if (checkByManager(argPack.action)){
|
||||||
|
return isOwner(argPack.requester);
|
||||||
|
} else {
|
||||||
|
return doipAccessCheck(argPack);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function acceptJudgement(argPack) {
|
||||||
|
if (! acceptJudgementInternal(argPack)){
|
||||||
|
print("acceptJudgement, requester:" + argPack.requester + "false!!");
|
||||||
|
YancloudUtil.exceptionReturn({
|
||||||
|
"code" : 401, "msg" : "no permission: " + argPack.action
|
||||||
|
});
|
||||||
|
} else print("acceptJudgement, requester:" + argPack.requester + "true!!");
|
||||||
|
}
|
||||||
|
|
||||||
@Description("针对某一DO,删除用户的访问权限")
|
@Description("针对某一DO,删除用户的访问权限")
|
||||||
@ArgSchema({
|
@ArgSchema({
|
||||||
"doId" : "string", "publicKey" : "string"
|
"doId" : "string", "publicKey" : "string"
|
||||||
@ -39,5 +81,4 @@ module DOAuth {
|
|||||||
"code" : 0
|
"code" : 0
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -3,6 +3,6 @@ REPO_PASSWORD=527e259ef952a450d157fdb51ac4915154cea317
|
|||||||
REPO_HOST=https://gitea.internetapi.cn/
|
REPO_HOST=https://gitea.internetapi.cn/
|
||||||
YPKPackerVersion=0.6.5
|
YPKPackerVersion=0.6.5
|
||||||
DeployToolVersion=0.7.4
|
DeployToolVersion=0.7.4
|
||||||
CPVersion=1.9.9
|
CPVersion=1.9.95
|
||||||
AuditToolVersion=1.4.0
|
AuditToolVersion=1.4.0
|
||||||
DOIPVersion=1.5.0
|
DOIPVersion=1.5.0
|
Loading…
Reference in New Issue
Block a user