Search in sources :

Example 1 with ContractDoesNotExistException

use of com.jd.blockchain.ledger.ContractDoesNotExistException in project jdchain-core by blockchain-jd-com.

the class ContractStateUpdateOperationHandle method doProcess.

@Override
protected void doProcess(ContractStateUpdateOperation op, LedgerTransactionContext transactionContext, TransactionRequestExtension requestContext, LedgerQuery ledger, OperationHandleContext handleContext, EventManager manager) {
    // 权限校验;
    SecurityPolicy securityPolicy = SecurityContext.getContextUsersPolicy();
    securityPolicy.checkEndpointPermission(LedgerPermission.UPDATE_CONTRACT_STATE, MultiIDsPolicy.AT_LEAST_ONE);
    ContractAccount contract = transactionContext.getDataset().getContractAccountSet().getAccount(op.getContractAddress());
    if (null == contract) {
        throw new ContractDoesNotExistException(String.format("Contract doesn't exist! --[Address=%s]", op.getContractAddress()));
    }
    // REVOKE 状态不可再恢复
    if (contract.getState() == AccountState.REVOKE) {
        throw new IllegalAccountStateException(String.format("Can not change contract in REVOKE state! --[Address=%s]", op.getContractAddress()));
    }
    // 操作账本;
    ((ContractAccountSetEditor) (transactionContext.getDataset().getContractAccountSet())).setState(op.getContractAddress(), op.getState());
}
Also used : ContractAccount(com.jd.blockchain.ledger.core.ContractAccount) ContractAccountSetEditor(com.jd.blockchain.ledger.core.ContractAccountSetEditor) SecurityPolicy(com.jd.blockchain.ledger.SecurityPolicy) IllegalAccountStateException(com.jd.blockchain.ledger.IllegalAccountStateException) ContractDoesNotExistException(com.jd.blockchain.ledger.ContractDoesNotExistException)

Example 2 with ContractDoesNotExistException

use of com.jd.blockchain.ledger.ContractDoesNotExistException in project jdchain-core by blockchain-jd-com.

the class AccountPermissionOperationHandle method doProcess.

@Override
protected void doProcess(AccountPermissionSetOperation op, LedgerTransactionContext transactionContext, TransactionRequestExtension requestContext, LedgerQuery ledger, OperationHandleContext handleContext, EventManager manager) {
    PermissionAccount account = null;
    // 查找账户
    switch(op.getAccountType()) {
        case DATA:
            account = transactionContext.getDataset().getDataAccountSet().getAccount(op.getAddress());
            if (null == account) {
                throw new DataAccountDoesNotExistException(String.format("Data account doesn't exist! --[Address=%s]", op.getAddress()));
            }
            break;
        case EVENT:
            account = transactionContext.getEventSet().getEventAccountSet().getAccount(op.getAddress());
            if (null == account) {
                throw new EventAccountDoesNotExistException(String.format("Event account doesn't exist! --[Address=%s]", op.getAddress()));
            }
            break;
        case CONTRACT:
            account = transactionContext.getDataset().getContractAccountSet().getAccount(op.getAddress());
            if (null == account) {
                throw new ContractDoesNotExistException(String.format("Contract doesn't exist! --[Address=%s]", op.getAddress()));
            }
            break;
    }
    if (!StringUtils.isEmpty(op.getRole()) && !transactionContext.getDataset().getAdminDataset().getAdminSettings().getRolePrivileges().contains(op.getRole())) {
        throw new RoleDoesNotExistException(String.format("Role doesn't exist! --[Role=%s]", op.getRole()));
    }
    // 写权限校验
    SecurityPolicy securityPolicy = SecurityContext.getContextUsersPolicy();
    securityPolicy.checkDataOwners(account.getPermission(), MultiIDsPolicy.AT_LEAST_ONE);
    // 更新权限信息
    DataPermission originPermission = account.getPermission();
    AccountModeBits modeBits = op.getMode() > -1 ? new AccountModeBits(op.getAccountType(), op.getMode()) : originPermission.getModeBits();
    String rols = !StringUtils.isEmpty(op.getRole()) ? op.getRole().toUpperCase() : originPermission.getRole();
    account.setPermission(new AccountDataPermission(modeBits, originPermission.getOwners(), rols));
}
Also used : DataAccountDoesNotExistException(com.jd.blockchain.ledger.DataAccountDoesNotExistException) AccountModeBits(com.jd.blockchain.ledger.AccountModeBits) DataPermission(com.jd.blockchain.ledger.DataPermission) AccountDataPermission(com.jd.blockchain.ledger.AccountDataPermission) SecurityPolicy(com.jd.blockchain.ledger.SecurityPolicy) PermissionAccount(com.jd.blockchain.ledger.PermissionAccount) EventAccountDoesNotExistException(com.jd.blockchain.ledger.EventAccountDoesNotExistException) RoleDoesNotExistException(com.jd.blockchain.ledger.RoleDoesNotExistException) ContractDoesNotExistException(com.jd.blockchain.ledger.ContractDoesNotExistException) AccountDataPermission(com.jd.blockchain.ledger.AccountDataPermission)

Aggregations

ContractDoesNotExistException (com.jd.blockchain.ledger.ContractDoesNotExistException)2 SecurityPolicy (com.jd.blockchain.ledger.SecurityPolicy)2 AccountDataPermission (com.jd.blockchain.ledger.AccountDataPermission)1 AccountModeBits (com.jd.blockchain.ledger.AccountModeBits)1 DataAccountDoesNotExistException (com.jd.blockchain.ledger.DataAccountDoesNotExistException)1 DataPermission (com.jd.blockchain.ledger.DataPermission)1 EventAccountDoesNotExistException (com.jd.blockchain.ledger.EventAccountDoesNotExistException)1 IllegalAccountStateException (com.jd.blockchain.ledger.IllegalAccountStateException)1 PermissionAccount (com.jd.blockchain.ledger.PermissionAccount)1 RoleDoesNotExistException (com.jd.blockchain.ledger.RoleDoesNotExistException)1 ContractAccount (com.jd.blockchain.ledger.core.ContractAccount)1 ContractAccountSetEditor (com.jd.blockchain.ledger.core.ContractAccountSetEditor)1