ChainLogic.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <?php
  2. namespace logicmodel;
  3. use datamodel\Goods;
  4. use datamodel\GoodsHash;
  5. use datamodel\Users;
  6. use fast\Http;
  7. use think\Env;
  8. use think\Exception;
  9. use traits\think\Instance;
  10. class ChainLogic
  11. {
  12. use Instance;
  13. protected $host;
  14. protected $api=[
  15. 'register'=>'/register',
  16. 'create_goods'=>'/IssueAddr',
  17. 'transfer'=>'/transferFrom',
  18. ];
  19. protected $mainAccount='';
  20. protected $nftId='';
  21. #https://39.101.175.93:8088/transfer?fromAccountName=?&commodityHash=?&toAccountName=?转移商品,fromAccountName转移人,commodityHash商品交易hash toAccountName被转移人
  22. #https://39.101.175.93:8088/creatGoods?commodityId=? 创建商品返回交易hash ,commodityId为商品
  23. #https://39.101.175.93:8088/register?accountName=?创建用户, accountName 为用户名
  24. public function __construct()
  25. {
  26. $this->host=Env::get('chain.host','http://39.101.175.93:8088');
  27. $this->setMainAccount('ad370ed99b189921e7fe26057c40aab9f4fee8385e47606f50f348b9a5530af0');
  28. }
  29. public function saveUserAddress(Users $users){
  30. $data=$this->request('register',[
  31. 'accountName'=>$users['phone'],
  32. ]);
  33. $users['wallet_address']=$data['userAddressStr'];
  34. $users->save();
  35. }
  36. protected function request($api,$params){
  37. $url=sprintf('%s%s',$this->host,$this->api[$api]);
  38. $info=Http::post($url,$params);
  39. $this->record($api,$params,$info);
  40. $info=json_decode($info,true);
  41. if(empty($info) || empty($info['success']) || !$info['success']){
  42. api_error($info['message']??'请求出错');
  43. }
  44. return $info['result'];
  45. }
  46. public function saveGoodsHash(Goods $goods){
  47. $num=$goods['stock'];
  48. $existsCount=$goods->hash()->count();
  49. if($num>0 && $num-$existsCount>0){
  50. for ($i=0;$i<$num-$existsCount;$i++){
  51. $this->getGoodsHash($goods);
  52. }
  53. }
  54. $goods['hash_num']=$goods->hash()->count();
  55. $goods->save();
  56. }
  57. public function getGoodsHash(Goods $goods){
  58. $hash=$this->request('create_goods',[
  59. 'account'=>$this->getMainAccount(),
  60. 'nftId'=>$goods['id'],
  61. 'tokenUrl'=>cdnurl($goods['image']),
  62. ]);
  63. $hashModel=$goods->hash()->save([
  64. 'hash'=>$hash['txHash'],
  65. 'token_id'=>$hash['tokenId'],
  66. ]);
  67. return $hashModel;
  68. }
  69. public function transfer(Users $fromUser,GoodsHash $goodsHash,Users $toUser){
  70. $this->request('transfer',[
  71. 'from'=>$fromUser['wallet_address'],
  72. 'to' =>$toUser['wallet_address'],
  73. 'tokenId' =>$goodsHash['token_id'],
  74. ]);
  75. }
  76. public function buy(GoodsHash $goodsHash,Users $toUser){
  77. $hash=$this->request('transfer',[
  78. 'from'=>$this->getMainAccount(),
  79. 'to' =>$toUser['wallet_address'],
  80. 'tokenId' =>$goodsHash['token_id'],
  81. ]);
  82. return $hash;
  83. }
  84. protected function record($api,$params,$result){
  85. $dir=sprintf('%s/chainlog',RUNTIME_PATH);
  86. if(!is_dir($dir)){
  87. mkdir($dir,0777,true);
  88. }
  89. file_put_contents($dir."/{$api}.log",date('Y-m-d H:i:s').' '.json_encode([
  90. 'api'=>$api,
  91. 'params'=>$params,
  92. 'result'=>$result
  93. ],JSON_UNESCAPED_UNICODE).PHP_EOL,8);
  94. }
  95. /**
  96. * @param string $mainAccount
  97. */
  98. public function setMainAccount(string $mainAccount)
  99. {
  100. $this->mainAccount = $mainAccount;
  101. return $this;
  102. }
  103. /**
  104. * @return string
  105. */
  106. public function getMainAccount(): string
  107. {
  108. return $this->mainAccount;
  109. }
  110. /**
  111. * @param string $nftId
  112. */
  113. public function setNftId(string $nftId)
  114. {
  115. $this->nftId = $nftId;
  116. return $this;
  117. }
  118. /**
  119. * @return string
  120. */
  121. public function getNftId(): string
  122. {
  123. return $this->nftId;
  124. }
  125. }