OperateChainAccount.java 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. package com.alipay.openchain.flow;
  2. import com.alibaba.fastjson.JSON;
  3. import com.alibaba.fastjson.JSONObject;
  4. import com.alipay.mychain.sdk.domain.account.Account;
  5. import com.alipay.openchain.entity.User;
  6. import com.antfinancial.mychain.baas.tool.restclient.RestClient;
  7. import com.antfinancial.mychain.baas.tool.restclient.RestClientProperties;
  8. import com.antfinancial.mychain.baas.tool.restclient.model.AccountRequest;
  9. import com.antfinancial.mychain.baas.tool.restclient.model.CallRestBizParam;
  10. import com.antfinancial.mychain.baas.tool.restclient.model.Method;
  11. import com.antfinancial.mychain.baas.tool.restclient.response.BaseResp;
  12. import org.springframework.beans.factory.annotation.Autowired;
  13. import org.springframework.stereotype.Service;
  14. import java.util.UUID;
  15. /**
  16. * block chain account operations
  17. */
  18. @Service
  19. public class OperateChainAccount {
  20. @Autowired
  21. private RestClient restClient;
  22. @Autowired
  23. private RestClientProperties restClientProperties;
  24. // public void runFlow () throws Exception {
  25. // createChainAccount();
  26. // queryChainAccount();
  27. // }
  28. /**
  29. * 创建KMS托管密钥的区块链账户
  30. */
  31. public User createChainAccount(String accountName, String newKmsId) throws Exception {
  32. User user = new User();
  33. CallRestBizParam param = CallRestBizParam.builder().
  34. // 创建账户方法名称,固定值
  35. method(Method.TENANTCREATEACCUNT).
  36. // 本次交易请求ID
  37. orderId(UUID.randomUUID().toString()).
  38. // 执行创建账户交易的已有区块链账户
  39. account(restClientProperties.getAccount()).
  40. // 执行创建账户交易的已有区块链账户KMS密钥ID
  41. mykmsKeyId(restClientProperties.getKmsId()).
  42. // 新建区块链账户 不可重复 包括失败的账户名也不可使用
  43. newAccountId(accountName).
  44. // 新建区块链账户KMS密钥ID 可重复
  45. newAccountKmsId(newKmsId).
  46. // 确保设置的Gas参数足够大,且执行创建的账户中有足够Gas,并且账户燃料要大于参数数值
  47. gas(100000L).
  48. build();
  49. BaseResp resp = restClient.chainCallForBiz(param);
  50. if(resp.isSuccess()) {
  51. System.out.println("创建账户成功,密钥:" + resp.toString());
  52. user.setCode( "200" );
  53. user.setUserMYStr( resp.getData() );
  54. user.setMsg( "创建账户成功,密钥:" + resp.getData() );
  55. //查询 账户信息id
  56. AccountRequest request = restClient.createQueryAccountForBiz( accountName );
  57. BaseResp resps = restClient.chainCall(
  58. null,
  59. JSON.toJSONString(request),
  60. Method.QUERYACCOUNT);
  61. if(resps.isSuccess()) {
  62. JSONObject jsonObject = JSONObject.parseObject(resps.getData());
  63. Account account = new Account();
  64. account.fromJson(jsonObject);
  65. System.out.println("查询账户成功, 账户信息: ID " + account.getIdentity() + ", 余额 " + account.getBalance());
  66. user.setId(account.getIdentity().hexStrValue() );
  67. user.setBalance( account.getBalance() );
  68. } else {
  69. System.err.println("查询账户失败: " + resps.getCode() + ", " + resps.getData());
  70. user.setId("查询账户失败: " + resps.getCode() + ", " + resps.getData());
  71. }
  72. return user;
  73. //-----end--
  74. } else {
  75. System.err.println("创建账户失败: " + resp.getCode() + ", " + resp.getData());
  76. user.setCode( resp.getCode() );
  77. user.setUserMYStr( resp.getData() );
  78. user.setMsg( "创建账户失败: " + resp.getCode() + ", " + resp.getData() );
  79. return user;
  80. }
  81. }
  82. /**
  83. * 查询指定名称的区块链账户
  84. */
  85. public User queryChainAccount(String accountName) throws Exception {
  86. AccountRequest request = restClient.createQueryAccountForBiz( accountName );
  87. User user = new User();
  88. BaseResp resp = restClient.chainCall(
  89. null,
  90. JSON.toJSONString(request),
  91. Method.QUERYACCOUNT);
  92. System.out.println("response: " + JSON.toJSONString(resp));
  93. if(resp.isSuccess()) {
  94. JSONObject jsonObject = JSONObject.parseObject(resp.getData());
  95. Account account = new Account();
  96. account.fromJson(jsonObject);
  97. user.setId( account.getIdentity().hexStrValue() );
  98. user.setBalance( account.getBalance() );
  99. user.setMsg(JSON.toJSONString(resp) );
  100. user.setCode( "200" );
  101. System.out.println("查询账户成功, 账户信息: ID " + account.getIdentity() + ", 余额 " + account.getBalance());
  102. } else {
  103. user.setCode( resp.getCode() );
  104. user.setMsg( "查询账户失败: " + resp.getCode() + ", " + resp.getData() );
  105. System.err.println("查询账户失败: " + resp.getCode() + ", " + resp.getData());
  106. }
  107. return user;
  108. }
  109. }