Test.php 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. <?php
  2. /*
  3. * Created by PhpStorm.
  4. * User: mashouyi
  5. * Date: 2022-04-29 8:59
  6. */
  7. namespace app\index\controller;
  8. use app\common\library\AliPay;
  9. use think\cache\driver\Redis;
  10. use EasyWeChat\Factory;
  11. use library\Controller;
  12. use think\Db;
  13. class Test extends Controller
  14. {
  15. /*
  16. *
  17. * 创建用户新钱包地址
  18. *
  19. */
  20. public function createAddressAgain(){
  21. set_time_limit(0);
  22. $member = Db::name('store_member_copy')
  23. // ->where('id',100004)
  24. ->where('wallet_address','eq','')
  25. // ->whereNull('wallet_address')
  26. ->field('id,offline_account,phone,wallet_address')
  27. ->limit(30)
  28. ->order('id asc')
  29. ->select();
  30. foreach ($member as &$v){
  31. $offline_account = json_decode(getOfflineAccount(),true);
  32. $address = $offline_account['address'];
  33. $phone =$v['phone'];
  34. $phone .= rand(10000,99999);
  35. $url = "http://192.144.219.204:8083/ddc/createAddress?name=".$phone."&account=".$address;
  36. $res=curlRequest($url);
  37. $laddress = json_decode($res,true);
  38. if ($laddress['code']==0){
  39. $wallet_address = $laddress['data']['opbChainClientAddress'];
  40. Db::name('store_member_copy')
  41. // ->whereNull('wallet_address')
  42. ->where('id',$v['id'])
  43. ->update(['wallet_address'=>$wallet_address,'offline_account'=>json_encode($offline_account,true),['again'=>1]]);
  44. }
  45. }
  46. }
  47. /*
  48. *
  49. * 重新铸造所有商品HASH
  50. *
  51. */
  52. public function castingNewHash(){
  53. set_time_limit(0);
  54. $redis = new Redis();
  55. $list = Db::name('store_order_info_copy')->whereIn('status',[1,3])->group('c_id')->field('c_id,count(distinct id) as count')->select();
  56. $id = 0;
  57. $set_count = 0;
  58. foreach($list as $k => $v) {
  59. $hash_again_count = $redis->get('hash_again_' . $v['c_id']);
  60. if($hash_again_count){
  61. $number = $v['count']+100;
  62. $redis->del('castingHash_' . $v['c_id']);
  63. $redis->Incrby('castingHash_' . $v['c_id'], $number);
  64. $count = $redis->get('castingHash_' . $v['c_id']);
  65. if ($count && $count > 0) {
  66. $id = $v['c_id'];
  67. $set_count = $count;
  68. break;
  69. }
  70. if ($id) {
  71. $redis = new Redis();
  72. $nonce = $redis->get('nonce');
  73. $address = '0xc472ec30ec813784b19872565e045c7153ea3f17';
  74. $str = $id . rand(100000000, 999999999);
  75. $url2 = "http://192.144.219.204:8083/ddc1155/safeMint?amount=$set_count&ddcURI=$str&nonce=$nonce&to=" . $address;
  76. $res2 = curlRequest($url2);
  77. $result = json_decode($res2, true);
  78. if ($result['code']) {
  79. } else {
  80. $data['goods_id'] = $id;
  81. $data['hash'] = $res2;
  82. $data['nonce'] = $nonce;
  83. $data['ddcURI'] = $str;
  84. $data['amout'] = $set_count;
  85. if (Db::name('hash2')->insert($data)) {
  86. $redis->Incrby('hash_again_' . $id, 1);
  87. $redis->set('nonce', $nonce + 1);
  88. $redis->del('noncenx');
  89. $redis->del('castingHash_' . $id);
  90. }
  91. }
  92. }
  93. }
  94. }
  95. }
  96. /*
  97. *
  98. * 修改藏品company_hash和ddcid
  99. *
  100. */
  101. public function getCompanyHash(){
  102. set_time_limit(0);
  103. Db::name('store_order_info_copy')
  104. ->whereIn('status','1,3')
  105. ->where('company_hash','eq','')
  106. ->chunk('20',function ($list){
  107. foreach($list as $k => &$v) {
  108. $hash = Db::name('hash2')->where('goods_id',$v['c_id'])->field('hash,ddcid')->find();
  109. if(!empty($hash)){
  110. Db::name('store_order_info_copy')->where('id',$v['id'])->update(['company_hash'=>$hash['hash'],'ddcid'=>$hash['ddcid']]);
  111. }
  112. }
  113. },'id','desc');
  114. }
  115. /**
  116. * 重新发放藏品hash(默认全部平台发放)
  117. */
  118. public function sendHashAgain(){
  119. set_time_limit(0);
  120. Db::name('store_order_info_copy')
  121. ->whereIn('status','1,3')
  122. ->where('company_hash','neq','')
  123. ->chunk('20',function ($list){
  124. $from = '0xc472ec30ec813784b19872565e045c7153ea3f17';
  125. $sender = '0xc472ec30ec813784b19872565e045c7153ea3f17';
  126. $privateKey = '0x831c68556c2c8aa8c4a5b175d157a6196ecf3384f61bfa05242565b919e3004f';
  127. $redis = new Redis();
  128. foreach ($list as &$v){
  129. if ($v['status']==1){
  130. $mid = $v['mid'];
  131. }elseif ($v['status']==3){
  132. //$from = Db::name('store_member')->where('id',$v['to_mid'])->value('wallet_address');
  133. //获取用户钱包地址、私钥
  134. // $from_mem = Db::name('store_member')->where('id',$v['to_mid'])->field('wallet_address,offline_account')->find();
  135. // $from = $from_mem['wallet_address'];
  136. // $offline_account = json_decode($from_mem['offline_account'],true);
  137. // if(isset($offline_account['privateKey'])){
  138. // $privateKey = $offline_account['privateKey'];
  139. // }else{
  140. // $privateKey = '';
  141. // }
  142. $mid = $v['to_mid'];
  143. }
  144. if (empty($from) || $from == ''){
  145. continue;
  146. }
  147. if (empty($privateKey) || $privateKey == ''){
  148. continue;
  149. }
  150. $to = Db::name('store_member')->where('id',$mid)->value('wallet_address');
  151. if (empty($to) || $to == ''){
  152. continue;
  153. }
  154. if ($this->redisNonceSetNx()){
  155. $nonce = $redis->get('nonce');
  156. $ddcid = $v['ddcid'];
  157. //$url = "http://192.144.219.204:8083/ddc1155/safeTransferFrom?amount=1&ddcId=$ddcid&from=$from&nonce=$nonce&to=$to";
  158. $url = "http://192.144.219.204:8083/ddc1155/safeTransferFrom?sender=$sender&from=$from&to=$to&ddcId=$ddcid&amount=1&nonce=$nonce&privateKey=$privateKey";
  159. $res=curlRequest($url);
  160. echo $res.'<br />';
  161. $result=json_decode($res,true);
  162. if($result['code']){
  163. // $redis->set('nonce',$nonce+1);
  164. // $redis->del('noncenx');
  165. continue;
  166. }else{
  167. Db::name('store_order_info_copy')
  168. ->where('id',$v['id'])
  169. ->update(['collectors_hash2'=>$res,'collectors_hash_time'=>date('Y-m-d H:i:s')]);
  170. $redis->set('nonce',$nonce+1);
  171. $redis->del('noncenx');
  172. }
  173. }else{
  174. echo 2222;
  175. }
  176. }
  177. },'id','desc');
  178. }
  179. }