| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063 |
- <?php
- namespace App\Services;
- use App\Models\Cao;
- use App\Models\CaoHistory;
- use App\Models\PcIssue;
- use App\Models\Prediction;
- use App\Services\BaseService;
- use App\Models\Issue;
- use App\Models\Config;
- use Illuminate\Support\Facades\DB;
- use Illuminate\Support\Collection;
- use Illuminate\Support\Facades\Cache;
- use Illuminate\Support\Facades\Log;
- use App\Services\GameplayRuleService;
- use App\Constants\GameplayRuleEnum;
- use App\Http\Controllers\admin\Lottery;
- use App\Services\KeyboardService;
- use App\Services\LotteryImageService;
- use Telegram\Bot\FileUpload\InputFile;
- use App\Jobs\SendTelegramMessageJob;
- use App\Jobs\SendTelegramGroupMessageJob;
- /**
- * 投注
- */
- class IssueService extends BaseService
- {
- /**
- * @description: 模型
- * @return {string}
- */
- public static function model(): string
- {
- return Issue::class;
- }
- /**
- * @description: 枚举
- * @return {*}
- */
- public static function enum(): string
- {
- return '';
- }
- /**
- * @description: 获取查询条件
- * @param {array} $search 查询内容
- * @return {array}
- */
- public static function getWhere(array $search = []): array
- {
- $where = [];
- if (isset($search['issue_no']) && !empty($search['issue_no'])) {
- $where[] = ['issue_no', '=', $search['issue_no']];
- }
- if (isset($search['id']) && !empty($search['id'])) {
- $where[] = ['id', '=', $search['id']];
- }
- if (isset($search['status']) && !empty($search['status'])) {
- $where[] = ['status', '=', $search['status']];
- }
- if (isset($search['abnormal']) && !empty($search['abnormal'])) {
- $where[] = ['end_time', '<', date('Y-m-d H:i:s', time() - 1800)];
- $where[] = ['status', '!=', self::model()::STATUS_DRAW];
- }
- return $where;
- }
- /**
- * @description: 查询单条数据
- * @param array $search
- * @return \App\Models\Coin|null
- */
- public static function findOne(array $search): ?Issue
- {
- return self::model()::where(self::getWhere($search))->first();
- }
- /**
- * @description: 查询所有数据
- * @param array $search
- * @return \Illuminate\Database\Eloquent\Collection
- */
- public static function findAll(array $search = [])
- {
- return self::model()::where(self::getWhere($search))->get();
- }
- /**
- * @description: 分页查询
- * @param array $search
- * @return \Illuminate\Contracts\Pagination\LengthAwarePaginator
- */
- public static function paginate(array $search = [])
- {
- $limit = isset($search['limit']) ? $search['limit'] : 15;
- $paginator = self::model()::where(self::getWhere($search))->orderBy('issue_no', 'desc')->paginate($limit);
- return ['total' => $paginator->total(), 'data' => $paginator->items()];
- }
- /**
- * @description:
- * @param {*} $params
- * @return {*}
- */
- public static function submit($params = [])
- {
- $result = false;
- $msg['code'] = self::NOT;
- $msg['msg'] = '';
- // 2. 判断是否是更新
- if (!empty($params['id'])) {
- // 更新
- $info = self::findOne(['id' => $params['id']]);
- if (!$info) {
- $msg['msg'] = '期号不存在!';
- } else {
- $result = $info->update($params);
- $id = $params['id'];
- }
- } else {
- // 创建
- $result = $info = self::model()::create($params);
- $id = $result->id;
- }
- if ($result) {
- $msg['code'] = self::YES;
- $msg['msg'] = '设置成功';
- $msg['key'] = $id;
- } else {
- $msg['msg'] = empty($msg['msg']) ? '操作失败' : $msg['msg'];
- }
- return $msg;
- }
- /**
- * @description: 开始下注
- * @param {*} $id
- * @return {*}
- */
- public static function betting($id)
- {
- $info = self::findOne(['id' => $id]);
- if (!$info) {
- return ['code' => self::NOT, 'msg' => '期号不存在'];
- }
- if (!in_array($info->status, [self::model()::STATUS_DRAFT, self::model()::STATUS_BETTING])) {
- return ['code' => self::NOT, 'msg' => '期号状态不正确'];
- }
- $info->status = self::model()::STATUS_BETTING;
- $info->save();
- $pc28Switch = Config::where('field', 'pc28_switch')->first()->val;
- $replyInfo = KeyboardService::findOne(['button' => '玩法规则']);
- if ($replyInfo) {
- $text = $replyInfo->reply;
- $buttons = json_decode($replyInfo->buttons, true);
- $image = $replyInfo->image;
- if ($image) {
- $image = url($image);
- }
- if (empty($buttons)) {
- $buttons = self::getOperateButton();
- }
- if ($pc28Switch == 0) self::asyncBettingGroupNotice($text, $buttons, $image);
- }
- $replyInfo = KeyboardService::findOne(['button' => '开始下注']);
- if ($replyInfo) {
- $text = $replyInfo->reply;
- $buttons = json_decode($replyInfo->buttons, true);
- $image = $replyInfo->image;
- if ($image) {
- $image = url($image);
- }
- if ($pc28Switch == 0) self::asyncBettingGroupNotice($text, $buttons, $image);
- }
- return ['code' => self::YES, 'msg' => '开始下注'];
- }
- /**
- * @description: 封盘
- * @param {*} $id
- * @return {*}
- */
- public static function closeBetting($id)
- {
- $info = self::findOne(['id' => $id]);
- if (!$info) {
- return ['code' => self::NOT, 'msg' => '期号不存在'];
- }
- if ($info->status != self::model()::STATUS_BETTING) {
- return ['code' => self::NOT, 'msg' => '期号状态不正确'];
- }
- $info->status = self::model()::STATUS_CLOSE;
- $info->save();
- $replyInfo = KeyboardService::findOne(['button' => '停止下注']);
- if ($replyInfo) {
- $text = $replyInfo->reply;
- $buttons = json_decode($replyInfo->buttons, true);
- $image = $replyInfo->image;
- if ($image) {
- $image = url($image);
- }
- // self::bettingGroupNotice($text, $buttons, $image);
- self::asyncBettingGroupNotice($text, $buttons, $image);
- }
- // 投注情况通知
- BetService::statNotice($info->issue_no);
- $replyInfo = KeyboardService::findOne(['button' => '封盘开奖']);
- if ($replyInfo) {
- $text = $replyInfo->reply;
- $buttons = json_decode($replyInfo->buttons, true);
- $image = $replyInfo->image;
- if ($image) {
- $image = url($image);
- }
- // self::bettingGroupNotice($text, $buttons, $image);
- self::asyncBettingGroupNotice($text, $buttons, $image);
- }
- return ['code' => self::YES, 'msg' => '封盘成功'];
- }
- /**
- * @description: 开奖失败
- * @param {*} $id
- * @return {*}
- */
- public static function lotteryDrawFail($id)
- {
- $result = false;
- $msg['code'] = self::NOT;
- $msg['msg'] = '';
- DB::beginTransaction();
- try {
- // 更新
- $info = self::findOne(['id' => $id]);
- if (!$info) {
- $msg['msg'] = '期号不存在!';
- } else {
- $params['status'] = self::model()::STATUS_FAIL;
- $result = $info->update($params);
- BetService::betFail($info->issue_no);
- }
- DB::commit();
- return ['code' => self::YES, 'msg' => '投注已退回'];
- } catch (\Exception $e) {
- DB::rollBack();
- return ['code' => self::NOT, 'msg' => '投注退回失败'];
- }
- if ($result) {
- $msg['code'] = self::YES;
- $msg['msg'] = '设置成功';
- } else {
- $msg['msg'] = empty($msg['msg']) ? '操作失败' : $msg['msg'];
- }
- return $msg;
- }
- /**
- * @description: 开奖
- * @param {*} $id
- * @param {*} $winning_numbers 开奖号码
- * @param {*} $combo 开奖组合
- * @param {*} $recordImage 开奖图片
- * @return {*}
- */
- public static function lotteryDraw($id, $winning_numbers, $combo, $recordImage)
- {
- $info = self::findOne(['id' => $id]);
- if (!$info) {
- return ['code' => self::NOT, 'msg' => '期号不存在'];
- }
- if ($info->status == self::model()::STATUS_DRAW) {
- return ['code' => self::NOT, 'msg' => '期号状态不正确'];
- }
- $winArr = array_map('intval', explode(',', $winning_numbers));
- // 计算中奖
- $awards = self::award(explode(',', $winning_numbers));
- DB::beginTransaction();
- try {
- $info->status = self::model()::STATUS_DRAW;
- $info->winning_numbers = $winning_numbers;
- $info->combo = $combo;
- $info->image = $recordImage;
- $info->save();
- $size = in_array("大", $awards);
- $size = $size ? "大" : "小";
- $oddOrEven = in_array("双", $awards);
- $oddOrEven = $oddOrEven ? "双" : "单";
- Prediction::result($info->issue_no, $size, $oddOrEven, $info->winning_numbers);
- Cao::updateData($awards);
- CaoHistory::updateData($awards);
- $replyInfo = KeyboardService::findOne(['button' => '本期开奖']);
- if ($replyInfo) {
- $text = $replyInfo->reply;
- $text .= "\n";
- $text .= $info->issue_no . ": " . implode('+', explode(',', $winning_numbers)) . "=" . array_sum($winArr) . " " . $combo;
- $buttons = json_decode($replyInfo->buttons, true);
- $image = $replyInfo->image;
- if ($image) {
- $image = url($image);
- }
- if (empty($buttons)) {
- $serviceAccount = Config::where('field', 'service_account')->first()->val;
- $buttons[] = [['text' => lang('✅唯一财务'), 'callback_data' => "", 'url' => "https://t.me/{$serviceAccount}"]];
- }
- // self::bettingGroupNotice($text, $buttons, $image, true);
- SendTelegramGroupMessageJob::dispatch($text, $buttons, $image, true);
- }
- $recordImage = self::lotteryImage($info->issue_no);
- if ($recordImage) {
- // self::bettingGroupNotice('', [], url($recordImage));
- SendTelegramGroupMessageJob::dispatch('', [], url($recordImage), false);
- }
- BetService::betSettled($info->issue_no, $awards);
- DB::commit();
- return ['code' => self::YES, 'msg' => '开奖成功'];
- } catch (\Exception $e) {
- DB::rollBack();
- Log::error('开奖失败: ' . $e->getMessage() . $winning_numbers);
- return ['code' => self::NOT, 'msg' => '开奖失败'];
- }
- }
- // 虚拟开奖
- public static function fakeLotteryDraw($issue_no, $awards)
- {
- $fake_bet_list = Cache::get('fake_bet_' . $issue_no, []);
- $text = "";
- foreach ($fake_bet_list as $k => $v) {
- $lastStr = self::getLastChar($v['first_name'], 1);
- if (in_array($v['keywords'], $awards)) {
- $amount = (float)$v['amount'];
- $odds = (float)$v['odds'];
- $profit = $amount * $odds;
- if ($profit > 880000) {
- $profit = 880000; // 单注最高奖金880000
- }
- $item['profit'] = $profit;
- $yl = $profit - $amount;
- if ($k + 1 <= 30) {
- $text .= "私聊下注 【******" . $lastStr . "】 {$yl}\n";
- }
- } else {
- if ($k + 1 <= 30) {
- $text .= "私聊下注 【******" . $lastStr . "】 -{$v['amount']}\n";
- }
- }
- }
- return $text;
- }
- /**
- * @description: 获取中奖的奖项
- * @param {*} $winning_numbers
- * @return {*}
- */
- public static function award($winning_numbers)
- {
- $result = [];
- // 组合
- $sum = array_sum($winning_numbers);
- $section = self::getSection($sum); // 总和段位
- $result[] = $section;
- $sumOddEven = self::calculateOddEven($sum); // 总和单双
- $result[] = $sumOddEven;
- $sumSize = self::calculateSumSize($sum); // 总和大小
- $result[] = $sumSize;
- $sumExtremeSize = self::calculateSumExtremeSize($sum); // 总和极值
- if ($sumExtremeSize) {
- $result[] = $sumExtremeSize;
- }
- $sumCao = $sum . '操'; // 总和数字
- $result[] = $sumCao;
- $sumCombo = $sumSize . $sumOddEven; // 总和大小单双组合
- $result[] = $sumCombo;
- $sumBaoZi = self::isBaoZi($winning_numbers[0], $winning_numbers[1], $winning_numbers[2]); // 豹子
- if ($sumBaoZi) {
- $result[] = $sumBaoZi;
- }
- $sumPair = self::isPair($winning_numbers[0], $winning_numbers[1], $winning_numbers[2]); // 对子
- if ($sumPair) {
- $result[] = $sumPair;
- }
- $sumStraight = self::isStraight($winning_numbers[0], $winning_numbers[1], $winning_numbers[2]); // 顺子
- if ($sumStraight) {
- $result[] = $sumStraight;
- }
- $tail = self::getLastDigit($sum); // 总和尾数
- $result[] = $tail . '尾'; // 尾数
- $tailOddEven = self::calculateOddEven($tail); // 尾数单双
- $result[] = '尾' . $tailOddEven;
- $tailSize = self::calculateOneSize($tail); // 尾数大小
- $result[] = '尾' . $tailSize;
- $tailCombo = '尾' . $tailSize . $tailOddEven; // 尾数大小单双组合
- $result[] = $tailCombo;
- $numA = $winning_numbers[0]; // A球
- $result[] = $numA . 'A';
- $numAOddEven = self::calculateOddEven($numA); // A球单双
- $result[] = 'A' . $numAOddEven;
- $numASize = self::calculateOneSize($numA); // A球大小
- $result[] = 'A' . $numASize;
- $result[] = 'A' . $numASize . $numAOddEven; // A球大小单双组合
- $numB = $winning_numbers[1]; // B球
- $result[] = $numB . 'B';
- $numBOddEven = self::calculateOddEven($numB); // B球
- $result[] = 'B' . $numBOddEven;
- $numBSize = self::calculateOneSize($numB); // B球大小
- $result[] = 'B' . $numBSize;
- $result[] = 'B' . $numBSize . $numBOddEven; // B球大小单双组合
- $numC = $winning_numbers[2];
- $result[] = $numC . 'C';
- $numCOddEven = self::calculateOddEven($numC); // C球单双
- $result[] = 'C' . $numCOddEven;
- $numCSize = self::calculateOneSize($numC); // C球大小
- $result[] = 'C' . $numCSize;
- $result[] = 'C' . $numCSize . $numCOddEven; // C球大小单双组合
- return $result;
- }
- /**
- * @description: 算单双
- * @param {*} $number
- * @return {*}
- */
- public static function calculateOddEven($number)
- {
- if ($number & 1) {
- return GameplayRuleEnum::SINGLE;
- } else {
- return GameplayRuleEnum::DOUBLE;
- }
- }
- /**
- * @description: 总和大小
- * @param {*} $number
- * @return {*}
- */
- public static function calculateSumSize($number)
- {
- if ($number >= GameplayRuleEnum::SUM_BIG) {
- return GameplayRuleEnum::BIG;
- }
- if ($number <= GameplayRuleEnum::SUM_SMALL) {
- return GameplayRuleEnum::SMALL;
- }
- }
- /**
- * @description: 总和极值
- * @param {*} $number
- * @return {*}
- */
- public static function calculateSumExtremeSize($number)
- {
- $result = '';
- if ($number >= GameplayRuleEnum::SUM_EXTREME_BIG) {
- $result = GameplayRuleEnum::EXTREME_BIG;
- }
- if ($number <= GameplayRuleEnum::SUM_EXTREME_SMALL) {
- $result = GameplayRuleEnum::EXTREME_SMALL;
- }
- return $result;
- }
- /**
- * @description: 豹子
- * @param {int} $a
- * @param {int} $b
- * @param {int} $c
- * @return {*}
- */
- public static function isBaoZi(int $a, int $b, int $c)
- {
- $result = '';
- if ($a === $b && $b === $c) {
- $result = GameplayRuleEnum::BAO_ZI;
- }
- return $result;
- }
- /**
- * @description: 对子
- * @param {int} $a
- * @param {int} $b
- * @param {int} $c
- * @return {*}
- */
- public static function isPair($a, $b, $c)
- {
- $result = '';
- // 确保输入都是个位数
- if (!is_numeric($a) || !is_numeric($b) || !is_numeric($c) ||
- $a < 0 || $a > 9 || $b < 0 || $b > 9 || $c < 0 || $c > 9) {
- return ''; // 或者抛出异常
- }
- if (($a == $b && $a != $c) ||
- ($a == $c && $a != $b) ||
- ($b == $c && $b != $a)) {
- $result = GameplayRuleEnum::PAIRS;
- }
- // 判断是否为对子情况
- return $result;
- }
- /**
- * @description: 顺子
- * @param {int} $a
- * @param {int} $b
- * @param {int} $c
- * @return {*}
- */
- public static function isStraight($a, $b, $c)
- {
- $result = '';
- // 确保输入都是个位数(0-9)
- if (!is_numeric($a) || !is_numeric($b) || !is_numeric($c) ||
- $a < 0 || $a > 9 || $b < 0 || $b > 9 || $c < 0 || $c > 9) {
- return '';
- }
- // 去重(顺子必须三个不同数字)
- if ($a == $b || $a == $c || $b == $c) {
- return '';
- }
- // 检查是否是完全升序或完全降序的连续数字
- $numbers = [$a, $b, $c];
- sort($numbers); // 排序后检查是否是 x, x+1, x+2
- list($x, $y, $z) = $numbers;
- // 情况1:升序连续(1,2,3)
- $isAscending = ($x + 1 == $y) && ($y + 1 == $z);
- // 情况2:降序连续(3,2,1)
- $isDescending = ($z + 1 == $y) && ($y + 1 == $x);
- if ($isAscending || $isDescending) {
- $result = GameplayRuleEnum::STRAIGHT;
- }
- return $result;
- }
- /**
- * 获取数字的尾数
- * @param int $number 输入数字
- * @return int 尾数
- */
- public static function getLastDigit($number)
- {
- // 确保输入是整数
- $number = (int)$number;
- // 取绝对值,处理负数情况
- $number = abs($number);
- // 取模10得到尾数
- return $number % 10;
- }
- /**
- * @description: 尾大小
- * @param {*} $number
- * @return {*}
- */
- public static function calculateOneSize($number)
- {
- if ($number >= GameplayRuleEnum::ONE_BIG) {
- return GameplayRuleEnum::BIG;
- }
- if ($number <= GameplayRuleEnum::ONE_SMALL) {
- return GameplayRuleEnum::SMALL;
- }
- }
- /**
- * @description: 获取段位
- * @param {*} $number
- * @return {*}
- */
- public static function getSection($number)
- {
- $result = '';
- if ($number >= GameplayRuleEnum::SECTION_1[0] && $number <= GameplayRuleEnum::SECTION_1[1]) {
- $result = GameplayRuleEnum::ONE;
- } elseif ($number >= GameplayRuleEnum::SECTION_2[0] && $number <= GameplayRuleEnum::SECTION_2[1]) {
- $result = GameplayRuleEnum::TWO;
- } elseif ($number >= GameplayRuleEnum::SECTION_3[0] && $number <= GameplayRuleEnum::SECTION_3[1]) {
- $result = GameplayRuleEnum::THREE;
- } elseif ($number >= GameplayRuleEnum::SECTION_4[0] && $number <= GameplayRuleEnum::SECTION_4[1]) {
- $result = GameplayRuleEnum::FOUR;
- }
- return $result; // 不在任何段中
- }
- /**
- * @description: 近期开奖记录
- * @return {*}
- */
- public static function currentLotteryResults($memberId)
- {
- // $result = self::model()::where('status', self::model()::STATUS_DRAW)->orderBy('id','desc')->take(16)->get();
- // $text = "📅 近期开奖记录\n";
- // $text .= "====================\n";
- // if($result){
- // foreach($result as $k => $v){
- // $winArr = explode(',',$v->winning_numbers);
- // // 组合
- // $sum = array_sum($winArr);
- // $combo = [];
- // $sumOddEven = self::calculateOddEven($sum); // 总和单双
- // $sumSize = self::calculateSumSize($sum); // 总和大小
- // $sumExtremeSize = self::calculateSumExtremeSize($sum); // 总和极值
- // if(empty($sumExtremeSize)){
- // $sumExtremeSize = "-";
- // }
- // $tail = self::getLastDigit($sum); // 总和尾数
- // if($tail == 0){
- // $tail = '-'; // 尾数
- // }else{
- // $tail = '尾'.$tail; // 尾数
- // }
- // $text .= "回合:{$v->issue_no}期 \n";
- // $text .= "结果:".implode('+',explode(',',$v->winning_numbers))."=".array_sum(explode(',',$v->winning_numbers))." \n";
- // $text .= "组合:{$sumSize} {$sumOddEven} \n";
- // $text .= "极值:{$sumExtremeSize} \n";
- // $text .= "尾数:{$tail} \n";
- // $text .= "---------------------------\n";
- // }
- // self::telegram()->sendMessage([
- // 'chat_id' => $memberId,
- // 'text' => $text,
- // ]);
- // }else{
- // self::telegram()->sendMessage([
- // 'chat_id' => $memberId,
- // 'text' => "暂无开奖记录",
- // ]);
- // }
- $result = self::model()::where('status', self::model()::STATUS_DRAW)->orderBy('id', 'desc')->first();
- if ($result) {
- if ($result->image) {
- // self::telegram()->sendPhoto([
- // 'chat_id' => $memberId,
- // 'photo' => InputFile::create(url($result->image)),
- // ]);
- return [
- 'chat_id' => $memberId,
- 'photo' => InputFile::create(url($result->image)),
- ];
- } else {
- // if($result->combo){
- // self::telegram()->sendMessage([
- // 'chat_id' => $memberId,
- // 'text' => "",
- // ]);
- // }else{
- // self::telegram()->sendMessage([
- // 'chat_id' => $memberId,
- // 'text' => lang("暂无开奖记录"),
- // ]);
- // }
- return
- [
- 'chat_id' => $memberId,
- 'text' => lang("暂无开奖记录"),
- ];
- }
- }
- }
- // 获取最新的开奖数据
- public static function getLatestIssue()
- {
- $url = "https://ydpc28.co/api/pc28/list";
- $result = file_get_contents($url);
- $result = json_decode($result, true);
- if ($result['errorCode'] != 0) {
- return ['code' => self::NOT, 'msg' => '获取最新期号失败'];
- }
- $nextDrawInfo = $result['data']['nextDrawInfo'];
- $startTime = $nextDrawInfo['currentBJTime'];
- // if($nextDrawInfo['nextDrawTime'] >= date('H:i:s')) {
- // $endTime = date('Y-m-d').' '.$nextDrawInfo['nextDrawTime']; // 下一期的截止时间
- // }else{
- // $endTime = date('Y-m-d',strtotime('+1 day')).' '.$nextDrawInfo['nextDrawTime']; // 下一期的截止时间
- // }
- $endTime = date('Y-m-d H:i:s', strtotime($startTime) + 210);
- $new = true;
- $list = $result['data']['list'];
- $listKey = [];
- foreach ($list as $k => $v) {
- $listKey[$v['lotNumber']] = $v;
- }
- $oldList = self::findAll(['status' => self::model()::STATUS_CLOSE]); // 获取所有封盘的期号
- foreach ($oldList as $k => $v) {
- if (isset($listKey[$v->issue_no])) {
- $issue = $listKey[$v->issue_no];
- $winning_numbers = implode(',', str_split((string)$issue['openCode']));
- $winArr = array_map('intval', explode(',', $winning_numbers));
- // 组合
- $sum = array_sum($winArr);
- $combo = [];
- $sumSize = self::calculateSumSize($sum); // 总和大小
- $combo[] = $sumSize;
- $sumOddEven = self::calculateOddEven($sum); // 总和单双
- $combo[] = $sumOddEven;
- $sumExtremeSize = self::calculateSumExtremeSize($sum); // 总和极值
- if ($sumExtremeSize) {
- $combo[] = $sumExtremeSize;
- }
- $sumBaoZi = self::isBaoZi($winArr[0], $winArr[1], $winArr[2]); // 豹子
- if ($sumBaoZi) {
- $combo[] = $sumBaoZi;
- }
- $sumPair = self::isPair($winArr[0], $winArr[1], $winArr[2]); // 对子
- if ($sumPair) {
- $combo[] = $sumPair;
- }
- $sumStraight = self::isStraight($winArr[0], $winArr[1], $winArr[2]); // 顺子
- if ($sumStraight) {
- $combo[] = $sumStraight;
- }
- $tail = self::getLastDigit($sum); // 总和尾数
- if ($tail == 0 || $tail == 9) {
- } else {
- $combo[] = '尾' . $tail; // 尾数
- }
- $key = 'lottery_numbers_' . $v->issue_no;
- $combo = implode(' ', $combo);
- if (Cache::add($key, $winning_numbers, 100)) {
- self::lotteryDraw($v->id, $winning_numbers, $combo, '');
- $new = false;
- }
- // Log::error('开奖缓存: ' .$key);
- // Log::error('开奖缓存结果: ' .($new ? '新开奖' : '已开奖') );
- }
- }
- // sleep(5); // 等待开奖完成
- if ($new) {
- $latestIssue = $list[0]; // 最后开奖
- $new_issue_no = $latestIssue['lotNumber'] + 1; // 新期号
- $newInfo = self::findOne(['issue_no' => $new_issue_no]); // 找新的期号
- // 不存在
- if (!$newInfo) {
- $res = self::submit([
- 'issue_no' => $new_issue_no,
- 'status' => self::model()::STATUS_DRAFT,
- 'start_time' => $startTime,
- 'end_time' => $endTime,
- ]);
- Prediction::prediction($new_issue_no);
- $id = $res['key'] ?? 0;
- if ($id) {
- self::betting($id); // 开始下注
- }
- Cache::set('new_issue_no', $new_issue_no, 10); // 缓存
- }
- }
- return $result;
- }
- // 获取最新的开奖数据
- public static function getLatestIssue2()
- {
- $url = "https://ydpc28.co/api/pc28/list";
- $result = file_get_contents($url);
- $result = json_decode($result, true);
- if ($result['errorCode'] != 0) {
- return ['code' => self::NOT, 'msg' => '获取最新期号失败'];
- }
- $nextDrawInfo = $result['data']['nextDrawInfo'];
- $startTime = $nextDrawInfo['currentBJTime'];
- // if($nextDrawInfo['nextDrawTime'] >= date('H:i:s')) {
- // $endTime = date('Y-m-d').' '.$nextDrawInfo['nextDrawTime']; // 下一期的截止时间
- // }else{
- // $endTime = date('Y-m-d',strtotime('+1 day')).' '.$nextDrawInfo['nextDrawTime']; // 下一期的截止时间
- // }
- $endTime = date('Y-m-d H:i:s', strtotime($startTime) + 210);
- $new = true;
- $list = $result['data']['list'];
- $listKey = [];
- foreach ($list as $k => $v) {
- $listKey[$v['lotNumber']] = $v;
- }
- $oldList = self::findAll(['status' => self::model()::STATUS_CLOSE]); // 获取所有封盘的期号
- foreach ($oldList as $k => $v) {
- if (isset($listKey[$v->issue_no])) {
- $issue = $listKey[$v->issue_no];
- $winning_numbers = implode(',', str_split((string)$issue['openCode']));
- $winArr = array_map('intval', explode(',', $winning_numbers));
- // 组合
- $sum = array_sum($winArr);
- $combo = [];
- $sumOddEven = self::calculateOddEven($sum); // 总和单双
- $combo[] = $sumOddEven;
- $sumSize = self::calculateSumSize($sum); // 总和大小
- $combo[] = $sumSize;
- $sumExtremeSize = self::calculateSumExtremeSize($sum); // 总和极值
- if ($sumExtremeSize) {
- $combo[] = $sumExtremeSize;
- }
- $sumBaoZi = self::isBaoZi($winArr[0], $winArr[1], $winArr[2]); // 豹子
- if ($sumBaoZi) {
- $combo[] = $sumBaoZi;
- }
- $sumPair = self::isPair($winArr[0], $winArr[1], $winArr[2]); // 对子
- if ($sumPair) {
- $combo[] = $sumPair;
- }
- $sumStraight = self::isStraight($winArr[0], $winArr[1], $winArr[2]); // 顺子
- if ($sumStraight) {
- $combo[] = $sumStraight;
- }
- $tail = self::getLastDigit($sum); // 总和尾数
- if ($tail == 0 || $tail == 9) {
- } else {
- $combo[] = '尾' . $tail; // 尾数
- }
- $combo = implode(' ', $combo);
- self::lotteryDraw($v->id, $winning_numbers, $combo, '');
- }
- }
- return $result;
- }
- // 封盘倒数
- public static function syncCountdownIssue()
- {
- $pc28Switch = Config::where('field', 'pc28_switch')->first()->val;
- if ($pc28Switch == 1) {
- $info = PcIssue::where('status', PcIssue::STATUS_BETTING)->orderBy('end_time')->first();
- } else {
- $info = self::model()::where('status', self::model()::STATUS_BETTING)->orderBy('end_time', 'asc')->first();
- }
- if ($info) {
- $now_date = date('Y-m-d H:i:s', time() + 60); // 提前60秒
- if ($info['end_time'] < $now_date) {
- $replyInfo = KeyboardService::findOne(['button' => '封盘倒数']);
- if ($replyInfo) {
- $text = $replyInfo->reply;
- $buttons = json_decode($replyInfo->buttons, true);
- $image = $replyInfo->image;
- if ($image) {
- $image = url($image);
- }
- if (Cache::has('issue_countdown_' . $info->issue_no)) {
- } else {
- self::asyncBettingGroupNotice($text, $buttons, $image);
- Cache::put('issue_countdown_' . $info->issue_no, true, 60); // 缓存50秒,防止多次发送
- }
- }
- }
- }
- }
- // 停止下注
- public static function syncCloseIssue()
- {
- $now_date = date('Y-m-d H:i:s', time() + 30); // 提前30秒
- $list = self::findAll(['status' => self::model()::STATUS_BETTING]);
- foreach ($list as $k => $v) {
- if ($v['end_time'] < $now_date) {
- self::closeBetting($v->id);
- }
- }
- }
- // 生成开奖图片
- public static function lotteryImage($issue_no)
- {
- $list = self::model()::where('issue_no', '<=', $issue_no)->where(self::getWhere(['status' => self::model()::STATUS_DRAW]))->orderBy('issue_no', 'desc')->take(20)->get();
- $records = $list->toArray();
- foreach ($records as $k => $v) {
- $winning_numbers = explode(',', $v['winning_numbers']);
- $v['winning_numbers'] = $winning_numbers;
- // 组合
- $sum = array_sum($winning_numbers);
- $v['sum'] = $sum;
- $sumOddEven = self::calculateOddEven($sum); // 总和单双
- $sumSize = self::calculateSumSize($sum); // 总和大小
- $v['combo'] = $sumSize . ' ' . $sumOddEven;
- $sumExtremeSize = self::calculateSumExtremeSize($sum); // 总和极值
- if (!$sumExtremeSize) {
- $sumExtremeSize = '-';
- }
- $v['extreme'] = $sumExtremeSize;
- $tail = self::getLastDigit($sum); // 总和尾数
- if ($tail === 0 || $tail === 9) {
- $tailStr = '-';
- } else {
- $tailStr = '尾' . $tail;
- }
- $v['tail'] = $tailStr;
- $records[$k] = $v;
- }
- $service = new LotteryImageService();
- $url = $service->generate($records);
- self::model()::where('issue_no', $issue_no)->update(['image' => $url]);
- return $url;
- }
- // 发送开奖图片
- public static function sendLotteryImage($chatId, $issueNo)
- {
- $recordImage = self::lotteryImage($issueNo);
- self::sendMessage($chatId, '', [], url($recordImage));
- // dispatch(new SendTelegramMessageJob('', [], url($recordImage)));
- }
- }
|