http://www.7klian.com

基于脚色的以太坊区块链会见节制

"User can't remove bearers."
* @author Alberto Cuesta Canada
function addRole(string memory _roleDescription, uint256 _admin)
*/


* @notice A role, which will be used to group users.


);
* @param bearers Addresses belonging to this role.
在我的实现中,我按照我们的用例做了一些决定:

* @notice A method to remove a bearer from a role
* @notice Create a new role that has itself as an admin.
/**
public

3. 每个脚色存储用户的地点。


require(

出于安详性和一致性的原因,您可以从脚色中删除承载,但没有要领可以从系统中完全删除脚色。

✓ removeBearer reverts on non authorized users.
/**
public
/**
}

/**
{
2. 智能合约的实施;
* @dev The zero position in the roles array is reserved for
contract RBAC {
);
在以下各节中,我将先容:

) - 1;

* @param _account The account to remove as a bearer.
returns(bool)
emit BearerAdded(msg.sender, role);
view
);
}
* @return The role id.



*/
本文旨在展示如作甚以太坊区块链构建基于脚色的会见节制系统。按照我们的要求从新开始编写RBAC条约,然后从OpenZeppelin中找到了沟通想法的版本,,它具有险些沟通的要领。为了可重用性,我尽大概地重构我的代码以遵循它们的定名法。

✓ addBearer adds a bearer to a role.
}
addRootRole("NO_ROLE");
OpenZeppelin是我在Solidity开拓中利用的金尺度,它有一个roles.sol条约,用于在erc721.sol条约中实现诸如minter和burner等脚色。不幸的是,这些实现不答允在运行时建设新脚色,假如您想利用单独的脚色
节制对每个单独令牌的会见,则需要建设新脚色。

require(
string description;
uint256 admin;
emit BearerAdded(_account, _role);
{
* @param _roleDescription The description of the role created.
假如您是利用OpenZeppelin中的Roles.sol和RBAC.sol条约,则需要留意Roles.sol仅实此刻脚色内生效的操纵,而在脚色外部产生的操纵在RBAC.sol或会见中实现/roles/*Role.sol收缩,包罗在建设脚色时存储脚色的数据布局。


"Account is not bearer of role."
4. 每个脚色城市有一个关联的第二个脚色,这是独一答允添加或删除用户的脚色。

* @notice Implements runtime configurable Role Based Access Control.
returns(uint256)

Contract: RBAC
* @notice Verify whether an account is a bearer of a role
*/
{
* @title RBAC
观念设计

event BearerAdded(address account, uint256 role);
hasRole(_account, _role),
require(_admin <= roles.length, "Admin role doesn't exist.");

3. 答允轻松确定所有现有脚色及其承载。
Role[] public roles;
require(

"Role doesn't exist."
✓ hasRole returns false for non existing bearerships.
2. 脚色可以动态建设。

*/
* @param _account The account to add as a bearer.
*/
return _role < roles.length && roles[_role].bearers[_account];
{
当将供给链设计为有向无环图时,我们意识到需要动态地确定谁可以向图中的每个节点添加信息。从现实世界的角度来看,假如您拥有一家制造工场,您大概但愿装配线上的所有操纵员都可以或许用他们本身的帐户记录他们已经组装了一个零件。

constructor() public {
* msg.sender is added as a bearer.


{
}
return role;
"Account is bearer of role."


* you should pass roles.length as the admin role.
}
✓ removeBearer removes a bearer from a role.


1. 答允在系统运行时建设新脚色。
RBAC
);
*/
* @notice The contract constructor, empty as of now.
}
* @param description A description for the role.
* @notice Retrieve the number of roles in the contract.

* NO_ROLE and doesn't count towards this total.


✓ removeBearer reverts if the bearer doesn't belong to the role.
}

本文描写了一个
基于智能合约脚色的会见节制系统的实现,它具有以部属性:

4. 状态调动法的gas操作;
struct Role {


require(
*/
/**
* @param _admin The role that is allowed to add and remove
public
/**
✓ addRootRole creates a role.

public
function removeBearer(address _account, uint256 _role)
);
本文旨在展示我们如安在以太坊区块链的Solidity中实现基于脚色的会见节制,并教您如何应用在本身的区块链。

function hasRole(address _account, uint256 _role)


· 每个脚色在实例化时吸收我们指定为其打点脚色的另一个脚色的标识符,而且在实例化之后不能修改该脚色。此打点员脚色是独一可觉得此脚色添加和删除承载者的脚色。

function totalRoles()
public

结论
基于脚色的会见节制是软件系统的安详需求,旨在为数百个用户提供会见。固然这种需求凡是在企业软件和操纵系统中实现,但对
以太坊区块链的处理惩罚并不多。

hasRole(msg.sender, roles[_role].admin),

郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。

相关文章阅读