63 lines
1.2 KiB
Solidity
63 lines
1.2 KiB
Solidity
pragma solidity ^0.4.21;
|
|
|
|
import "./RBAC.sol";
|
|
import "zos-lib/contracts/migrations/Migratable.sol";
|
|
|
|
|
|
/**
|
|
* @title RBACWithAdmin
|
|
* @author Matt Condon (@Shrugs)
|
|
* @dev It's recommended that you define constants in the contract,
|
|
* @dev like ROLE_ADMIN below, to avoid typos.
|
|
*/
|
|
contract RBACWithAdmin is RBAC, Migratable {
|
|
/**
|
|
* A constant role name for indicating admins.
|
|
*/
|
|
string public constant ROLE_ADMIN = "admin";
|
|
|
|
/**
|
|
* @dev modifier to scope access to admins
|
|
* // reverts
|
|
*/
|
|
modifier onlyAdmin()
|
|
{
|
|
checkRole(msg.sender, ROLE_ADMIN);
|
|
_;
|
|
}
|
|
|
|
/**
|
|
* @dev constructor. Sets initialAdmin as admin.
|
|
*/
|
|
function initialize(address initialAdmin)
|
|
isInitializer("RBACWithAdmin", "1.9.0")
|
|
public
|
|
{
|
|
addRole(initialAdmin, ROLE_ADMIN);
|
|
}
|
|
|
|
/**
|
|
* @dev add a role to an address
|
|
* @param addr address
|
|
* @param roleName the name of the role
|
|
*/
|
|
function adminAddRole(address addr, string roleName)
|
|
onlyAdmin
|
|
public
|
|
{
|
|
addRole(addr, roleName);
|
|
}
|
|
|
|
/**
|
|
* @dev remove a role from an address
|
|
* @param addr address
|
|
* @param roleName the name of the role
|
|
*/
|
|
function adminRemoveRole(address addr, string roleName)
|
|
onlyAdmin
|
|
public
|
|
{
|
|
removeRole(addr, roleName);
|
|
}
|
|
}
|