123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564 |
- <?php
- namespace app\api\controller;
- use AlibabaCloud\Client\AlibabaCloud;
- use AlibabaCloud\Client\Exception\ClientException;
- use AlibabaCloud\Client\Exception\ServerException;
- use think\cache\driver\Redis;
- use think\Db;
- use think\Exception;
- /**
- * @title 定时任务
- * Class Timedtask
- * @controller Timedtask
- * @group base
- */
- class Timedtask
- {
- /**
- * @title 取消订单定时任务
- * @desc 未支付的自动取消
- * @author Gavin
- * @url /api/Timedtask/cancelGoodsOrder
- * @method GET
- */
- public function cancelGoodsOrder(){
- $CancelTime = getCancelTime();
- $list = Db::name('store_order')->where('status',0)->select();
- foreach ($list as &$v){
- $cancel_time = strtotime($v['create_at'])+($CancelTime*60);
- if ($cancel_time<time()){
- //修改订单状态
- Db::name('store_order')->where('id',$v['id'])->update(['status'=>2,'cancel_at'=>date('Y-m-d H:i:s'),'cancel_state'=>1]);
- //增加数据库库存
- Db::name('store_collection')->where('id',$v['c_id'])->setInc('now_inventory',$v['num']);
- //增加用户抢购卡数量
- Db::name('store_member')->where('id',$v['mid'])->setInc('snap_card');
- //加上库存
- addCollectionInventory($v['c_id'],$v['num']);
- //减少用户购买数量
- DecrByCount($v['mid'],$v['c_id'],$v['num']);
- //加上抢购卡数量
- addMembercard($v['mid']);
- }
- }
- }
- /**
- * 藏品铸造hash 定时任务
- * @url /api/Timedtask/castingHash
- */
- public function castingHash1(){
- set_time_limit(0);
- $redis = new Redis();
- $list = Db::name('store_collection')->where('is_deleted',0)->select();
- $id = 0;
- $set_count = 0;
- foreach ($list as &$v){
- $count = $redis->get('castingHash_'.$v['id']);
- if ($count && $count>0){
- $id = $v['id'];
- $set_count = $count;
- break;
- }
- }
- if ($id){
- $redis = new Redis();
- if ($this->redisNonceSetNx()){
- $nonce = $redis->get('nonce');
- $address = '0xc472ec30ec813784b19872565e045c7153ea3f17';
- $str=$id.rand(100000000,999999999);
- $url2 = "http://192.144.219.204:8083/ddc1155/safeMint?amount=$set_count&ddcURI=$str&nonce=$nonce&to=".$address;
- $res2=curlRequest($url2);
- echo $res2;die;
- $result=json_decode($res2,true);
- if($result['code']){
- }else{
- $data['goods_id']=$id;
- $data['hash']=$res2;
- $data['nonce'] = $nonce;
- $data['ddcURI'] = $str;
- $data['amout']= $set_count;
- if (Db::name('hash2')->insert($data)){
- $redis->set('nonce',$nonce+1);
- $redis->del('noncenx');
- $redis->del('castingHash_'.$id);
- }
- }
- }
- }
- }
- /**
- * 铸造hash判断回执 定时任务
- * @url /api/Timedtask/transactionReceipt
- */
- public function transactionReceipt1(){
- set_time_limit(0);
- Db::name('hash2')->where('success',0)->chunk(50,function ($list){
- $redis = new Redis();
- foreach ($list as &$v){
- $hash_count = $redis->get('hash_'.$v['id']);
- if ($hash_count>=5){
- Db::name('hash2')->where('id',$v['id'])->delete();
- $redis->Incrby('castingHash_'.$v['id'],$v['amout']);
- }else{
- $url = 'http://192.144.219.204:8083/ddc/getTransactionReceipt?hash='.$v['hash'];
- $res=curlRequest($url);
- Db::name('hash2')->where('id',$v['id'])->update(['result'=>$res]);
- $result3=json_decode($res,true);
- if (isset($result3['status']) && $result3['status']=='0x1') {
- $url4='http://192.144.219.204:8083/ddc/createDdcid?hash='.$v['hash'];
- $ddcid=curlRequest($url4);
- $result4=json_decode($ddcid,true);
- if($result4['code']){
- }else{
- $update_data['success'] = 1;
- $update_data['ddcid']=$ddcid;
- Db::name('hash2')->where('id', $v['id'])->update($update_data);
- }
- }else{
- $redis->Incrby('hash_'.$v['id'],1);
- }
- }
- }
- },'id', 'asc');
- }
- /**
- * 发放hash
- * @url /api/Timedtask/sendHash
- */
- public function sendHash1(){
- set_time_limit(0);
- Db::name('store_order_info')
- ->whereNotNull('company_hash')
- ->whereIn('status','1,3')
- ->where('company_hash','neq','')
- ->where('type',2)
- ->where('collectors_hash','eq','')
- ->chunk('20',function ($list){
- $from = '0xc472ec30ec813784b19872565e045c7153ea3f17';
- $redis = new Redis();
- foreach ($list as &$v){
- if ($v['status']==1){
- $mid = $v['mid'];
- }elseif ($v['status']==3){
- $from = Db::name('store_member')->where('id',$v['to_mid'])->value('wallet_address');
- $mid = $v['to_mid'];
- }
- $to = Db::name('store_member')->where('id',$mid)->value('wallet_address');
- if (empty($to) || $to == ''){
- continue;
- }
- // $url2='http://192.144.219.204:8083/ddc/getNonce';
- // $nonce=curlRequest($url2);
- if ($this->redisNonceSetNx()){
- $nonce = $redis->get('nonce');
- $ddcid = $v['ddcid'];
- $url = "http://192.144.219.204:8083/ddc1155/safeTransferFrom?amount=1&ddcId=$ddcid&from=$from&nonce=$nonce&to=$to&ddcid=$ddcid";
- $res=curlRequest($url);
- $result=json_decode($res,true);
- if($result['code']){
- continue;
- }else{
- Db::name('store_order_info')
- ->where('id',$v['id'])
- ->update(['collectors_hash'=>$res,'collectors_hash_time'=>date('Y-m-d H:i:s')]);
- $redis->set('nonce',$nonce+1);
- $redis->del('noncenx');
- }
- }
- //$ddcid = Db::name('hash')->where('hash',$v['company_hash'])->value('ddcid');
- }
- },'id','desc');
- }
- /**
- * 藏品铸造hash 定时任务
- * @url /api/Timedtask/castingHash
- */
- public function castingHash(){
- set_time_limit(0);
- $redis = new Redis();
- $list = Db::name('store_collection')->where('is_deleted',0)->select();
- $id = 0;
- $set_count = 0;
- foreach ($list as &$v){
- // $info = Db::name('hash')->where('goods_id',$v['id'])->where('success',0)->count();
- // if ($info){
- // break;
- // }
- $count = $redis->get('castingHash_'.$v['id']);
- if ($count && $count>0){
- $id = $v['id'];
- $set_count = $count;
- break;
- }
- }
- if ($id){
- $address = '0xc472ec30ec813784b19872565e045c7153ea3f17';
- for ($i=0;$i<$set_count;$i++){
- // $url2='http://192.144.219.204:8083/ddc/getNonce';
- // $nonce=curlRequest($url2);
- if ($this->redisNonceSetNx()){
- $nonce = $redis->get('nonce');
- $str=$id.'-'.rand(100000000,999999999);
- $url='http://192.144.219.204:8083/ddc/createHash?address='.$address.'&ddcURI='.$str.'&nonce='.$nonce;
- $res=curlRequest($url);
- $result=json_decode($res,true);
- if($result['code']){
- continue;
- }else{
- $data['goods_id']=$id;
- $data['hash']=$res;
- $data['nonce'] = $nonce;
- $data['ddcURI'] = $str;
- if (Db::name('hash')->insert($data)){
- $redis->set('nonce',$nonce+1);
- $redis->del('noncenx');
- $redis->Decr('castingHash_'.$id); //减一
- }
- }
- }
- }
- }
- }
- /**
- * 铸造hash判断回执 定时任务
- * @url /api/Timedtask/transactionReceipt
- */
- public function transactionReceipt(){
- set_time_limit(0);
- Db::name('hash')->where('success',0)->where('id','neq','9748')->chunk(50,function ($list){
- $redis = new Redis();
- foreach ($list as &$v){
- echo $v['id']."<br />";
- $url = 'http://192.144.219.204:8083/ddc/getTransactionReceipt?hash='.$v['hash'];
- $res=curlRequest($url);
- Db::name('hash')->where('id',$v['id'])->update(['result'=>$res]);
- $result3=json_decode($res,true);
- //dump($result3);
- if (isset($result3['status']) && $result3['status']=='0x1'){
- $url4='http://192.144.219.204:8083/ddc/createDdcid?hash='.$v['hash'];
- $ddcid=curlRequest($url4);
- echo $ddcid."<br />";
- $result4=json_decode($ddcid,true);
- if($result4['code']){
- }else{
- $update_data['success'] = 1;
- $update_data['ddcid'] = $ddcid;
- if (Db::name('hash')->where('id',$v['id'])->update($update_data)){
- //存入reids list
- $redis_data = ['hash'=>$v['hash'],'create_at'=>date('Y-m-d H:i:s')];
- $redis->rPush('collectionHash_'.$v['goods_id'],json_encode($redis_data));
- }
- }
- }
- }
- },'id', 'asc');
- }
- /**
- * 铸造失败的再次生成hash
- * @url /api/Timedtask/castingHashAgain
- */
- public function castingHashAgain(){
- set_time_limit(0);
- Db::name('hash')
- ->where('success',0)
- ->where('id','neq','9748')
- ->whereNotNull('result')
- ->chunk(50,function ($list){
- $redis = new Redis();
- foreach ($list as &$v){
- $info = json_decode($v['result'],true);
- echo $v['id']."<br />";
- dump($info);
- if ($info['code']=='500'){
- $url = 'http://192.144.219.204:8083/ddc/getTransactionReceipt?hash='.$v['hash'];
- $res=curlRequest($url);
- Db::name('hash')->where('id',$v['id'])->update(['result'=>$res]);
- $result3=json_decode($res,true);
- if (isset($result3['status']) && $result3['status']=='0x1'){
- $update_data['success'] = 1;
- $url4='http://192.144.219.204:8083/ddc/createDdcid?hash='.$v['hash'];
- $ddcid=curlRequest($url4);
- $result4=json_decode($ddcid,true);
- if($result4['code']){
- }else{
- $update_data['ddcid'] = $ddcid;
- }
- if (Db::name('hash')->where('id',$v['id'])->update($update_data)){
- //存入reids list
- $redis_data = ['hash'=>$v['hash'],'create_at'=>date('Y-m-d H:i:s')];
- $redis->rPush('collectionHash_'.$v['goods_id'],json_encode($redis_data));
- }
- }
- }
- }
- },'id', 'asc');
- }
- /**
- * 发放hash
- * @url /api/Timedtask/sendHash
- */
- public function sendHash(){
- set_time_limit(0);
- Db::name('store_order_info')
- ->whereNotNull('company_hash')
- ->whereIn('status','1,3')
- ->where('company_hash','neq','')
- ->where('type',1)
- ->where('collectors_hash','eq','')
- ->chunk('20',function ($list){
- $from = '0xc472ec30ec813784b19872565e045c7153ea3f17';
- $redis = new Redis();
- foreach ($list as &$v){
- if ($v['status']==1){
- $mid = $v['mid'];
- }elseif ($v['status']==3){
- $from = Db::name('store_member')->where('id',$v['to_mid'])->value('wallet_address');
- $mid = $v['to_mid'];
- }
- $to = Db::name('store_member')->where('id',$mid)->value('wallet_address');
- if (empty($to) || $to == ''){
- continue;
- }
- // $url2='http://192.144.219.204:8083/ddc/getNonce';
- // $nonce=curlRequest($url2);
- if ($this->redisNonceSetNx()){
- $nonce = $redis->get('nonce');
- $ddcid = $v['ddcid'];
- $url = "http://192.144.219.204:8083/ddc/transfer?from=$from&to=$to&ddcid=$ddcid&nonce=".$nonce;
- $res=curlRequest($url);
- echo $res.'<br />';
- $result=json_decode($res,true);
- if($result['code']){
- continue;
- }else{
- Db::name('store_order_info')
- ->where('id',$v['id'])
- ->update(['collectors_hash'=>$res,'collectors_hash_time'=>date('Y-m-d H:i:s')]);
- $redis->set('nonce',$nonce+1);
- $redis->del('noncenx');
- }
- }
- //$ddcid = Db::name('hash')->where('hash',$v['company_hash'])->value('ddcid');
- }
- },'id','desc');
- }
- /**
- * 终端账号充值业务费用及能量
- * /api/Timedtask/recharge
- */
- public function recharge(){
- set_time_limit(0);
- Db::name('store_order_info')
- ->whereIn('status','1,3')
- ->whereRaw("is_business=0 or is_gas=0")
- ->field('id,is_gas,is_business,gas,business,mid')
- ->chunk('20',function ($list){
- foreach ($list as &$v){
- $data = [];
- $address = Db::name('store_member')->where('id',$v['mid'])->value('wallet_address');
- // echo $address;die;
- if ($v['is_business']==0){
- $rand = get_order_sn();
- $money = '30';
- $url = "http://192.144.219.204:8083/ddc/rechargeBusiness?money=$money&address=$address&transSn=".$rand;
- $res=curlRequest($url);
- $result = json_decode($res,true);
- echo $address."<br />";
- // dump($result).'<br />';
- if (isset($result['code']) && $result['code']==0){
- $data['is_business'] = 1;
- $data['business'] = $money;
- }
- }
- if ($v['is_gas']==0){
- $rand2 = get_order_sn();
- $money2 = '40';
- $url2 = "http://192.144.219.204:8083/ddc/rechargeGas?money=$money2&address=$address&transSn=".$rand2;
- $res2=curlRequest($url2);
- $result2 = json_decode($res2,true);
- //print_r($result2)."<br />";
- if (isset($result2['code']) && $result2['code']==0){
- $data['is_gas'] = 1;
- $data['gas'] = $money2;
- }
- }
- if ($data){
- Db::name('store_order_info')->where('id',$v['id'])->update($data);
- }
- }
- },'id','asc');
- }
- /**
- * @title 创建链账户
- * @desc 创建链账户
- * @author Gavin
- * @url /api/Timedtask/createAddress
- * @method GET
- */
- public function createAddress(){
- set_time_limit(0);
- $member = Db::name('store_member')
- ->whereNull('wallet_address')
- ->field('id,offline_account,phone,wallet_address')->order('id asc')->limit(30)->select();
- foreach ($member as &$v){
- $offline_account = json_decode(getOfflineAccount(),true);
- $address = $offline_account['address'];
- $phone =$v['phone'];
- $phone .= rand(10000,99999);
- $url = "http://192.144.219.204:8083/ddc/createAddress?name=".$phone."&account=".$address;
- $res=curlRequest($url);
- $laddress = json_decode($res,true);
- //dump($laddress);
- if ($laddress['code']==0){
- $wallet_address = $laddress['data']['opbChainClientAddress'];
- Db::name('store_member')->where('id',$v['id'])->whereNull('wallet_address')->update(['wallet_address'=>$wallet_address]);
- }
- }
- }
- /**
- * 创建ddcid
- * @url /api/Timedtask/ddcid
- */
- public function ddcid()
- {
- set_time_limit(0);
- Db::name('hash')->where('ddcid',NULL)->chunk('30',function ($list){
- foreach($list as $k=>$v){
- $url='http://192.144.219.204:8083/ddc/createDdcid?hash='.$v['hash'];
- $res=curlRequest($url);
- $result=json_decode($res,true);
- if($result['code']){
- continue;
- }else{
- Db::table('hash')->where('id',$v['id'])->update(['ddcid'=>$res]);
- }
- }
- },'id','asc');
- }
- /**
- * 开通官方ddc
- * @url /api/Timedtask/openOfficialDDc
- */
- public function openOfficialDDc(){
- set_time_limit(0);
- Db::name('store_member')
- ->where('is_open_official_DDC',0)
- ->whereNotNull('wallet_address')
- ->field('id,wallet_address,is_open_official_DDC')
- ->chunk(50,function ($list){
- foreach ($list as &$v){
- $url = 'http://192.144.219.204:8083/ddc/status?address='.$v['wallet_address'];
- $res=curlRequest($url);
- $result = json_decode($res,true);
- if (isset($result) && $result['data']['platformSetState']!=2 && $result['data']['opsPlatformState']!=2){
- $url2 = 'http://192.144.219.204:8083/ddc/official?address='.$v['wallet_address'];
- $res2=curlRequest($url2);
- $result2 = json_decode($res2,true);
- if ($result2['code']==0){
- Db::name('store_member')->where('id',$v['id'])->update(['is_open_official_DDC'=>1]);
- }
- }else{
- Db::name('store_member')->where('id',$v['id'])->update(['is_open_official_DDC'=>1]);
- }
- }
- },'id','asc');
- }
- /**
- * redis nonce加锁
- */
- function redisNonceSetNx(){
- $redis = new Redis();
- $key = 'noncenx';
- $exptime = 10;
- $is_lock = $redis->setnx($key,time()+$exptime);
- if ($is_lock){
- return true;
- }else{
- //加锁失败的情况下,判断锁是否已经存在,如果存在切已经过期,删除锁,重新加锁
- $val = $redis->get($key);
- if ($val && $val<time()){
- $redis->del($key);
- }
- return $redis->setnx($key,time()+$exptime);
- }
- }
- }
|