Hyperledger Composer 检查数组

里卡尔多

Account[] family在我的 model.cto 文件中定义了一个数组,我想从我的 logic.js 访问它。特别是,我只想在接收方在发送方的家族数组中时才执行交易。

我的model.cto:

namespace org.digitalpayment

asset Account identified by accountId {
  o String accountId
  --> Customer owner
  o Double balance
}

participant Customer identified by customerId {
  o String customerId
  o String firstname
  o String lastname
  --> Account[] family optional
}

transaction AccountTransfer {
--> Account from
--> Account to
o Double amount
}

我的逻辑.js:

/**
* Account transaction
* @param {org.digitalpayment.AccountTransfer} accountTransfer
* @transaction
*/
async function accountTransfer(accountTransfer) {
    if (accountTransfer.from.balance < accountTransfer.amount) {
        throw new Error("Insufficient funds");
    }

    if (/*TODO check if the family array contains the receiver account*/) {        

        // perform transaction
        accountTransfer.from.balance -= accountTransfer.amount;
        accountTransfer.to.balance += accountTransfer.amount;

        let assetRegistry = await getAssetRegistry('org.digitalpayment.Account');

        await assetRegistry.update(accountTransfer.from);
        await assetRegistry.update(accountTransfer.to);

    } else {
        throw new Error("Receiver is not part of the family");
    }

}
瓦伦·阿加瓦尔

好的,所以基本上您想首先获取Family资产的所有帐户,然后检查Customer参与者是否包含在其中?如果我错了,请纠正我。一组合乎逻辑的步骤将是 -

  1. 检索Account基于tofrom输入
  2. 使用变量Customer为每个检索每个Accountowner
  3. family从每个变量中获取Customer
/**
* Account transaction
* @param {org.digitalpayment.AccountTransfer} accountTransfer
* @transaction
*/
async function accountTransfer(accountTransfer) {
    if (accountTransfer.from.balance < accountTransfer.amount) {
        throw new Error("Insufficient funds");
    };

    var from = accountTransfer.from;
    var to = accountTransfer.to;
    var fromCustomer = from.owner;
    var toCustomer = to.owner;
    var fromCustomerFamily = fromCustomer.family;

    if (fromCustomerFamily && fromCustomerFamily.includes(to)) {        

        // perform transaction
        accountTransfer.from.balance -= accountTransfer.amount;
        accountTransfer.to.balance += accountTransfer.amount;

        let assetRegistry = await getAssetRegistry('org.digitalpayment.Account');

        await assetRegistry.update(accountTransfer.from);
        await assetRegistry.update(accountTransfer.to);

    } else {
        throw new Error("Receiver is not part of the family");
    }

}

由于最近几个Composer版本中的语法更改可能无法正常工作,具体取决于您在项目中使用的版本。如果这不起作用并且您使用的是旧版本,请告诉我,我会相应地更新答案。

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章