123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420 |
- <?php
- namespace app\index\controller;
- use think\Controller;
- use app\common\library\Tlssigapiv2;
- use think\Db;
- class Plantask extends Controller
- {
- //关于本文件里的计划任务
- //只有 public 方法,auto_开头的才是计划任务,其他private 方法都是工具方法
- ////////////////////////////////////////下面都是计划任务方法///////////////////////////////////////////////////////////////
- //主动拉取im群组内 聊天记录
- public function auto_imgroup(){
- $im_config = config('tencent_im');
- $sdkappid = $im_config['sdkappid'];
- $sdkappkey = $im_config['key'];
- $identifier= $im_config['identifier'];
- $usersig = $this->usersig($sdkappid,$sdkappkey,$identifier);
- $random = rand(10000000,99999999);
- $url = 'https://console.tim.qq.com/v4/open_msg_svc/get_history?sdkappid='.$sdkappid.'&identifier=administrator&usersig='.$usersig.'&random='.$random.'&contenttype=json';
- $data = [
- 'ChatType' => 'Group',
- 'MsgTime' => date('YmdH',strtotime('-3 Hours')),
- ];
- $tasklog = [
- 'type' => $data['ChatType'] == 'C2C' ? 1 : 2,
- 'datehour' => $data['MsgTime'],
- 'createtime' => time(),
- 'status' => 0,
- ];
- dump($data);
- $jsonStr = json_encode($data);
- $header = array(
- 'Content-Type: application/json; charset=utf-8',
- 'Content-Length: ' . strlen($jsonStr)
- );
- $rs = curl_post($url,$jsonStr,$header);
- $rs = json_decode($rs,true);
- dump($rs);
- if(is_array($rs) && isset($rs['ErrorCode']) && $rs['ErrorCode'] == 0){
- $tasklog['status'] = 1;
- //正常的,可以下载了
- if(isset($rs['File']) && !empty($rs['File'])){
- foreach($rs['File'] as $key => $val){
- echo $val['URL'];
- //下载
- $gz_path = $this->downloadfile($val['URL'],$data['ChatType'],$data['MsgTime'].'_'.$data['ChatType'].'.json.gz');
- dump($gz_path);
- //解压
- $json_path = $this->jieyagz($gz_path);
- dump($json_path);
- //分析
- $content = $this->readjson_group($json_path);
- dump(count($content));
- //入库
- if(!empty($content)){
- Db::name('imlog_group')->insertAll($content);
- }
- }
- }
- }
- Db::name('imlog_tasklog')->insertGetId($tasklog);
- echo '结束';
- exit;
- }
- //主动拉取im用户私聊 聊天记录
- public function auto_imc2c(){
- $im_config = config('tencent_im');
- $sdkappid = $im_config['sdkappid'];
- $sdkappkey = $im_config['key'];
- $identifier= $im_config['identifier'];
- $usersig = $this->usersig($sdkappid,$sdkappkey,$identifier);
- $random = rand(10000000,99999999);
- $url = 'https://console.tim.qq.com/v4/open_msg_svc/get_history?sdkappid='.$sdkappid.'&identifier=administrator&usersig='.$usersig.'&random='.$random.'&contenttype=json';
- $data = [
- 'ChatType' => 'C2C',
- 'MsgTime' => date('YmdH',strtotime('-3 Hours')),
- ];
- $tasklog = [
- 'type' => $data['ChatType'] == 'C2C' ? 1 : 2,
- 'datehour' => $data['MsgTime'],
- 'createtime' => time(),
- 'status' => 0,
- ];
- dump($data);
- $jsonStr = json_encode($data);
- $header = array(
- 'Content-Type: application/json; charset=utf-8',
- 'Content-Length: ' . strlen($jsonStr)
- );
- $rs = curl_post($url,$jsonStr,$header);
- $rs = json_decode($rs,true);
- dump($rs);
- if(is_array($rs) && isset($rs['ErrorCode']) && $rs['ErrorCode'] == 0){
- $tasklog['status'] = 1;
- //正常的,可以下载了
- if(isset($rs['File']) && !empty($rs['File'])){
- foreach($rs['File'] as $key => $val){
- //下载
- $gz_path = $this->downloadfile($val['URL'],$data['ChatType'],$data['MsgTime'].'_'.$data['ChatType'].'.json.gz');
- dump($gz_path);
- //解压
- $json_path = $this->jieyagz($gz_path);
- dump($json_path);
- //分析
- $content = $this->readjson($json_path);
- dump(count($content));
- //入库
- if(!empty($content)){
- Db::name('imlog_c2c')->insertAll($content);
- }
- }
- }
- }
- Db::name('imlog_tasklog')->insertGetId($tasklog);
- echo '结束';
- exit;
- }
- //送礼物(api/party/giveGiftToYou)拆分出来的异步用户升级方法,
- public function auto_user_level_up(){
- Db::startTrans();
- $tasklist = Db::name('gift_user_party')->where('task_status',0)->limit(20)->lock(true)->select();
- if(empty($tasklist)){
- Db::rollback();
- echo 'empty';
- exit;
- }
- try {
- $money_to_jewel = config('site.money_to_jewel') ?: 10; //余额兑换钻石
- $getempirical_conf = config("site.getempirical");
- foreach($tasklist as $key => $giftuserparty){
- echo $giftuserparty['id'].'<br>';
- $giftValue = $giftuserparty['value'];
- $hotValue = $giftValue;
- //用户信息
- $authuser_info = Db::name('user')->field('nickname')->where('id',$giftuserparty['user_id'])->find();
- $touserInfo = Db::name('user')->field('nickname')->where('id',$giftuserparty['user_to_id'])->find();
- $party_id = $giftuserparty['party_id'];
- //添加获赠用户余额
- $user_id = $giftuserparty['user_to_id'];
- if($giftuserparty['getvalue'] > 0){
- $getMoney = bcdiv($giftuserparty['getvalue'],$money_to_jewel,2);
- if($getMoney > 0){
- $rs_wallet = model('wallet')->lockChangeAccountRemain($user_id,$getMoney,'+',0,"{$authuser_info['nickname']}送你{$giftuserparty['gift_name']}x{$giftuserparty['number']}",101,'money');
- if($rs_wallet['status'] == false){
- $this->error($rs_wallet['msg']);
- Db::rollback();
- }
- }
- }
- $partyInfo = \app\common\model\Party::field("id,room_type,party_name,party_hot,user_id,platRate,guilderRate")->where(["id"=>$giftuserparty['party_id']])->find();
- //增加房主抽成
- if ($partyInfo && $giftuserparty['guildervalue'] > 0) {
- $guilderMoney = bcdiv($giftuserparty['guildervalue'],$money_to_jewel,2);
- if($guilderMoney > 0){
- $rs_wallet = model('wallet')->lockChangeAccountRemain($partyInfo->user_id,$guilderMoney,'+',0,"{$authuser_info['nickname']}送礼物{$giftuserparty['gift_name']}x{$giftuserparty['number']}给{$touserInfo['nickname']},房间礼物抽成",102,'money');
- if($rs_wallet['status'] == false){
- $this->error($rs_wallet['msg']);
- Db::rollback();
- }
- }
- }
- // 如果是主播,则添加魅力值记录做榜单统计
- if($partyInfo['room_type'] == 2) {
- $data = [];
- $data["user_id"] = $giftuserparty['user_to_id'];
- $data["party_id"] = $party_id;
- $data["charm"] = $hotValue;
- $data["createtime"] = time();
- \app\common\model\UserCharmRank::insert($data);
- }
- //用户经验升级
- $getempirical = $getempirical_conf * $hotValue;
- // 获取用户贵族信息
- $noble = \app\common\model\User::getUserNoble($giftuserparty['user_id']);
- if(isset($noble["noble_on"]) && $noble["noble_on"] == 1) {
- $getempirical = $getempirical + $getempirical * ($noble["explain"]/100);
- }
- // 增加用户经验值
- $res = \app\common\model\User::addEmpirical($giftuserparty['user_id'],$getempirical);
- /*if ($res){
- $this->auth->level = $res->level;
- }*/
- //增加被送礼物用户的魅力等级
- $res_charm = \app\common\model\User::add_charm_level($giftuserparty['user_to_id'],$giftValue);
- // +exp
- \app\common\model\TaskLog::tofinish($giftuserparty['user_id'],"OBHqCX4g",$giftuserparty['number']);
- // +message
- \app\common\model\Message::addMessage($giftuserparty['user_to_id'],"礼物通知","收到 ".$authuser_info['nickname']." 赠送的".$giftuserparty['gift_name']." x".$giftuserparty['number']." 价值 ".$giftValue ." 钻石");
- //增加送礼用户的财富等级
- $res_wealth = \app\common\model\User::add_wealth_level($giftuserparty['user_id'],$giftValue);
- $rs_up = Db::name('gift_user_party')->where('id',$giftuserparty['id'])->update(['task_status'=>1]);
- if($rs_up === false){
- Db::rollback();
- echo '更新错误'.$giftuserparty['id'];
- exit;
- }
- }
- Db::commit();
- } catch (ValidateException $e) {
- Db::rollback();
- $this->error($e->getMessage());
- } catch (PDOException $e) {
- Db::rollback();
- $this->error($e->getMessage());
- } catch (Exception $e) {
- Db::rollback();
- $this->error($e->getMessage());
- }
- }
- /////////////////////////////////////////下面都是工具方法////////////////////////////////////////////////
- //下载远程文件 到指定目录
- private function downloadfile($file_url, $path = '', $save_file_name = '')
- {
- $basepath = '/uploaded/';
- if ($path) {
- $basepath = $basepath . $path . '/';
- }
- $basepath = $basepath . date('Ymd');
- $dir_path = ROOT_PATH . '/public' . $basepath;
- if (!is_dir($dir_path)) {
- mkdir($dir_path, 0777, true);
- }
- $file = file_get_contents($file_url);
- //传入保存文件的名称
- $filename = $save_file_name ?: pathinfo($file_url, PATHINFO_BASENAME);
- $resource = fopen($dir_path. '/'. $filename, 'w');
- fwrite($resource, $file);
- fclose($resource);
- return $dir_path . '/' . $filename;
- }
- //解压
- private function jieyagz($gz_path = ''){
- $json_path = substr($gz_path,0,-3);
- if ($zp = gzopen($gz_path, 'r')) { // 打开压缩文件
- if ($fp = fopen($json_path, 'w')) { // 打开目标文件
- while (!gzeof($zp)) {
- fwrite($fp, gzread($zp, 1024 * 512)); // 逐块读取和解压缩后写入
- }
- fclose($fp);
- }
- gzclose($zp);
- }
- return $json_path;
- }
- //读取json并分析,c2c
- private function readjson($json_path = ''){
- $newMsgList = [];
- $json_content = file_get_contents($json_path);
- $json_content = json_decode($json_content,true);
- if(!empty($json_content) && is_array($json_content) && isset($json_content['MsgList'])){
- $MsgList = $json_content['MsgList'];
- if(!empty($MsgList)){
- foreach($MsgList as $key => $val)
- {
- $newone = [
- 'ClientIP' => isset($val['ClientIP']) ? $val['ClientIP'] : '',
- 'CloudCustomData' => isset($val['CloudCustomData']) ? $val['CloudCustomData'] : '',
- 'From_Account' => isset($val['From_Account']) ? intval($val['From_Account']) : 0,
- //'MsgBody' => isset($val['MsgBody']) ? json_encode($val['MsgBody']) : '',
- 'MsgFromPlatform' => isset($val['MsgFromPlatform']) ? $val['MsgFromPlatform'] : '',
- 'MsgRandom' => isset($val['MsgRandom']) ? $val['MsgRandom'] : '',
- 'MsgSeq' => isset($val['MsgSeq']) ? $val['MsgSeq'] : '',
- 'MsgTimestamp' => isset($val['MsgTimestamp']) ? $val['MsgTimestamp'] : '',
- 'To_Account' => isset($val['To_Account']) ? intval($val['To_Account']) : 0,
- ];
- //解析数据类型
- if(isset($val['MsgBody'][0]['MsgType'])){
- $newone['MsgType'] = $val['MsgBody'][0]['MsgType'];
- //文本
- if($val['MsgBody'][0]['MsgType'] == 'TIMTextElem'){
- $newone['MsgInfo'] = '';
- if(isset($val['MsgBody'][0]['MsgContent']['Text'])){
- $newone['MsgInfo'] = $val['MsgBody'][0]['MsgContent']['Text'];
- }
- }
- //图片
- if($val['MsgBody'][0]['MsgType'] == 'TIMImageElem'){
- $newone['MsgInfo'] = '';
- if(isset($val['MsgBody'][0]['MsgContent']['ImageInfoArray'][0]['URL'])){
- $newone['MsgInfo'] = $val['MsgBody'][0]['MsgContent']['ImageInfoArray'][0]['URL'];
- }
- }
- //声音
- if($val['MsgBody'][0]['MsgType'] == 'TIMSoundElem'){
- $newone['MsgInfo'] = '';
- if(isset($val['MsgBody'][0]['MsgContent']['Url'])){
- $newone['MsgInfo'] = $val['MsgBody'][0]['MsgContent']['Url'];
- }
- }
- //视频
- if($val['MsgBody'][0]['MsgType'] == 'TIMVideoFileElem'){
- $newone['MsgInfo'] = '';
- if(isset($val['MsgBody'][0]['MsgContent']['VideoUrl'])){
- $newone['MsgInfo'] = $val['MsgBody'][0]['MsgContent']['VideoUrl'];
- }
- }
- //其他
- continue;
- }else{
- continue;
- }
- $newMsgList[] = $newone;
- }
- }
- }
- return $newMsgList;
- }
- //读取json并分析,group
- private function readjson_group($json_path = ''){
- $newMsgList = [];
- $json_content = file_get_contents($json_path);
- $json_content = json_decode($json_content,true);
- if(!empty($json_content) && is_array($json_content) && isset($json_content['MsgList'])){
- $MsgList = $json_content['MsgList'];
- if(!empty($MsgList)){
- foreach($MsgList as $key => $val)
- {
- $newone = [
- //'key' => $key,辅助查找
- 'ClientIP' => isset($val['ClientIP']) ? $val['ClientIP'] : '',
- 'From_Account' => isset($val['From_Account']) ? intval($val['From_Account']) : 0,
- 'GroupId' => isset($val['GroupId']) ? intval($val['GroupId']) : 0,
- //'MsgBody' => isset($val['MsgBody']) ? json_encode($val['MsgBody']) : '',
- 'MsgFromPlatform' => isset($val['MsgFromPlatform']) ? $val['MsgFromPlatform'] : '',
- 'MsgSeq' => isset($val['MsgSeq']) ? $val['MsgSeq'] : '',
- 'MsgTimestamp' => isset($val['MsgTimestamp']) ? $val['MsgTimestamp'] : '',
- ];
- //解析数据类型
- if(isset($val['MsgBody'][0]['MsgType'])){
- $newone['MsgType'] = $val['MsgBody'][0]['MsgType'];
- //文本
- if($val['MsgBody'][0]['MsgType'] == 'TIMTextElem'){
- $newone['MsgInfo'] = '';
- if(isset($val['MsgBody'][0]['MsgContent']['Text'])){
- //继续解析
- $text = json_decode($val['MsgBody'][0]['MsgContent']['Text'],true);
- if(isset($text['type']) && $text['type'] == 1){
- //TYPE_NORMAL =1;//普通消息
- $newone['MsgInfo'] = isset($text['content']) ? $text['content'] : '';
- $newMsgList[] = $newone;
- }
- //其他$text['type']的值都是房间内的,礼物的,表情等,不需要记录
- }
- }
- //房间内的不需要显示的内容
- if($val['MsgBody'][0]['MsgType'] == 'TIMCustomElem'){
- }
- }
- //大循环结束
- }
- }
- }
- return $newMsgList;
- }
- //请求im的签名
- private function usersig($sdkappid,$key,$identifier){
- $api = new TLSSigAPIv2($sdkappid,$key );
- $sig = $api->genUserSig($identifier);
- return $sig;
- }
- }
|