| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342 |
- <?php
- namespace App\Services;
- use App\dao\Estatisticas\RechargeWithDraw;
- use App\Facade\TableName;
- use App\Game\GlobalUserInfo;
- use App\Game\Services\AgentService;
- use App\Http\Controllers\Api\AgentController;
- use App\Http\helper\Helper;
- use App\Http\helper\HttpCurl;
- use App\Http\helper\NumConfig;
- use App\Jobs\AfEvent;
- use App\Models\AgentUser;
- use App\Models\RecordScoreInfo;
- use App\Models\RecordUserDataStatistics;
- use App\Util;
- use Illuminate\Support\Facades\DB;
- use Illuminate\Support\Facades\Log;
- use Illuminate\Support\Facades\Redis;
- class OrderServices
- {
- public $FirstCharge = 30;
- public $FirstChargeGive = 20;
- public $FirstGiftID = 201;
- private $first_pay = null;
- public function __construct()
- {
- $first_pay = DB::table('agent.dbo.recharge_gear')->where('first_pay', 1)->first();
- $this->first_pay = $first_pay;
- $this->FirstCharge = (int)$first_pay->favorable_price;
- $this->FirstChargeGive = (int)$first_pay->give;
- $this->FirstGiftID = (int)$first_pay->gift_id;
- }
- /**
- * 获取支付金额
- * @param int $GiftsID 礼包ID
- * @param int $user_id 用户ID
- * @param int $payAmt 支付金额(元)
- * @return array|void [$give, $favorable_price, $Recharge, $czReason, $cjReason] 赠送金额,赠送金额+充值金额,充值金额,充值原因,彩金原因
- */
- public function getPayInfo($GiftsID, $user_id, $payAmt)
- {
- $give = $czReason = $cjReason = $Recharge = $favorable_price = $second_give = 0;
- // 判断是不是首冲礼包
- if (!empty($GiftsID)) {
- if ($GiftsID == 301) { // 礼包--首冲
- $GiftsData = [
- 'UserID' => $user_id,
- 'GiftsID' => $GiftsID,
- 'BuyCount' => 1,
- 'LastBuyDate' => date('Y-m-d H:i:s')
- ];
- // 卖出去数量 +1
- DB::connection('write')->table('QPAccountsDB.dbo.FirstRechargeGifts')->where('GiftsID', $GiftsID)->increment('TotalCount');
- $userGifts = DB::connection('write')->table('QPAccountsDB.dbo.UserFirstRechargeGifts')->where('UserID', $user_id)->where('GiftsID', $GiftsID)->first();
- if ($userGifts) {
- DB::connection('write')->table('QPAccountsDB.dbo.UserFirstRechargeGifts')->where('UserID', $user_id)->where('GiftsID', $GiftsID)->increment('BuyCount');
- } else {
- DB::connection('write')->table('QPAccountsDB.dbo.UserFirstRechargeGifts')->insert($GiftsData);
- }
- // 给服务端更新首冲状态
- DB::connection('write')->table('QPAccountsDB.dbo.UserTabData')
- ->where('UserID', $user_id)
- ->update(['RechargeGiftTime' => date('Y-m-d H:i:s')]);
- $Gifts = DB::connection('write')->table('QPAccountsDB.dbo.FirstRechargeGifts')->where('GiftsID', $GiftsID)->first();
- $favorable_price = $Gifts->AllScore;
- $give = $Gifts->ExtraScore;
- $Recharge = $Gifts->Price;
- $czReason = 50;
- $cjReason = 51;
- }else if ($GiftsID > 400) {
- $Status = 1;
- $recharge_gear = DB::connection('write')->table('agent.dbo.recharge_gear')->where('first_pay', 0)->where('status', $Status)->where('money', $payAmt)->select('favorable_price', 'give')->first();
- if(!$recharge_gear){
- $Recharge=$payAmt;
- $give=0;
- }else{
- $Recharge = $recharge_gear->favorable_price;
- $give = $recharge_gear->give;
- }
- $favorable_price = $Recharge + $give;
- $czReason = 1;
- $cjReason = 45;
- }
- } else { // 普通订单
- $Status = 1;
- $recharge_gear = DB::connection('write')->table('agent.dbo.recharge_gear')->where('first_pay', 0)->where('status', $Status)->where('money', $payAmt)->select('favorable_price', 'give')->first();
- if(!$recharge_gear){
- $Recharge=$payAmt;
- $give=0;
- }else{
- $Recharge = $recharge_gear->favorable_price;
- $give = $recharge_gear->give;
- }
- $favorable_price = $Recharge + $give;
- $czReason = 1;
- $cjReason = 45;
- }
- return [$give, $favorable_price, $Recharge, $czReason, $cjReason, $second_give];
- }
- /**
- * 添加玩家充值记录
- * @param $user_id
- * @param $payAmt
- * @param $favorable_price
- * @param $order_sn
- * @param $GiftsID
- * @param $Recharge
- * @param $czReason
- * @param $give
- * @param $cjReason
- * @param $AdId
- * @param $eventType
- */
- public function addRecord($user_id, $payAmt, $favorable_price, $order_sn, $GiftsID, $Recharge, $czReason, $give, $cjReason, $AdId, $eventType)
- {
- if ($payAmt > 0) {
- // 增加玩家充值金额
- $query = DB::connection('write')->table('QPAccountsDB.dbo.YN_VIPAccount')
- ->where('UserID', $user_id)
- ->value('Recharge');
- if ($query) {
- DB::connection('write')->table('QPAccountsDB.dbo.YN_VIPAccount')
- ->where('UserID', $user_id)
- ->increment('Recharge', $payAmt);
- } else {
- DB::connection('write')->table('QPAccountsDB.dbo.YN_VIPAccount')
- ->where('UserID', $user_id)
- ->insert(['Recharge' => $payAmt, 'UserID' => $user_id]);
- /* TODO
- * 金币银币切换 GameScoreInfo 将score的数据复制到 InsureScore 把Score 字段置0 把 ScoreChange字段设置成1
- * 清理用户的数据
- * GameScoreInfo的MaxScore MaxWinscore清0
- * RecordUserTotalStatistics 表 数据清0
- * RecordUserDataStatisticsNew 表数据 清0
- * RecordUserGameCount 关于用户的数据删除
- *
- */
- }
- }
- if ($Recharge > 0) {
- // 添加日志记录表
- StoredProcedure::addPlatformData($user_id, 3, $Recharge * NumConfig::NUM_VALUE);
- // 增加用户金币变化记录
- $AfterScore = RecordScoreInfo::addScore($user_id, ($Recharge * NumConfig::NUM_VALUE), $czReason); #充值
- if ($AfterScore) {
- RecordScoreInfo::addScore($user_id, ($give * NumConfig::NUM_VALUE), $cjReason, $AfterScore); #赠送彩金
- }
- }
- $favorable_price = $favorable_price * NumConfig::NUM_VALUE;
- $firstScore = DB::connection('write')->table('QPTreasureDB.dbo.GameScoreInfo')->where('UserID', $user_id)->value('Score');
- $Score = $favorable_price + $firstScore;
- if ($payAmt > 0) {
- try {
- $userInfo = DB::table(TableName::QPAccountsDB() . 'AccountsInfo')
- ->where('UserID', $user_id)
- ->first();
- $channelConfig = DB::table('QPPlatformDB.dbo.ChannelPackageName')->where('Channel', $userInfo->Channel)->first();
- // Util::WriteLog('xxxxx', [$userInfo->Channel, $channelConfig, $query, $firstScore, $channelConfig->Rate > 0 && $channelConfig->ContrlScore > 0, $channelConfig->MinScore * NumConfig::NUM_VALUE > $firstScore]);
- if ($channelConfig && !$query && false) {
- if ($channelConfig->Rate > 0 && $channelConfig->ContrlScore > 0) {
- if ($channelConfig->MinScore * NumConfig::NUM_VALUE >= $firstScore) {
- $openGames = config('games.openKGame');
- $query = DB::table('QPTreasureDB.dbo.UserScoreControl')->where('UserID', $user_id)->first();
- if (!$query) {
- $build_sql = DB::connection('write')->table('QPTreasureDB.dbo.UserScoreControl');
- //Util::WriteLog('control_old_user',$list);
- $data = [
- 'ControlScore' => (int)($channelConfig->ContrlScore * NumConfig::NUM_VALUE),
- 'EffectiveScore' => 0,
- 'ControlKindID' => -1,
- 'Remarks' => '',
- 'InsertDate' => date('Y-m-d H:i:s'),
- 'ControlRadian' => 0
- ];
- $build_sql->updateOrInsert(['UserID' => $user_id], $data);
- foreach ($openGames as $GameID) {
- $KindData = [
- 'UserID' => $user_id,
- 'KindID' => $GameID,
- 'ControlRadian' => $channelConfig->Rate,
- 'ControlDate' => date('Y-m-d H:i:s')
- ];
- DB::connection('write')->table('QPTreasureDB.dbo.UserControlKind')->updateOrInsert(['UserID' => $user_id, 'KindID' => $GameID], $KindData);
- }
- }
- }
- }
- }
- } catch (\Exception $exception) {
- }
- // 记录订单变化后金币
- DB::connection('write')->table('agent.dbo.order')
- ->where('order_sn', $order_sn)
- ->update(['after_amount' => $Score]);
- // 增加用户充值变化值
- RecordUserDataStatistics::updateOrAdd($user_id, 0, $payAmt);
- }
- // 不是周卡的时候执行
- if ($GiftsID < 100 || $GiftsID >= 200) {
- // 增加用户金币
- DB::connection('write')->table('QPTreasureDB.dbo.GameScoreInfo')->where('UserID', $user_id)->increment('Score', $favorable_price);
- }
- // 充值推广佣金
- // (new AgentUser())->reward($user_id, $payAmt, $order_sn);
- //
- // 周卡 -- 执行存储过程
- if (isset($GiftsID) && $GiftsID > 100 && $GiftsID < 200) {
- $CardID = (int)$GiftsID - 100;
- StoredProcedure::BuyMonthCard($user_id, $CardID, $order_sn);
- // 开始执行时间
- $startTime = Helper::millisecond();
- Log::info('GSP_GP_BuyMonthCard 执行时间:' . ((Helper::millisecond() - $startTime) / 1000));
- }
- //设置第二天要领取
- if (isset($GiftsID) && $GiftsID >= 200 && $GiftsID < 300 ) {
- $first = DB::table('agent.dbo.recharge_gear')->where('gift_id', $GiftsID)->select('gift_id', 'money', 'give', 'favorable_price', 'second_give')->first();
- if ($first && $first->second_give > 0) {
- $fpkey = 'Firstpay_' . $user_id;
- $data = (array)$first;
- $data['buytime'] = time();
- $data['czReason'] = $czReason;
- $data['cjReason'] = $cjReason;
- Redis::set($fpkey, json_encode($data));
- DB::table(TableName::agent() . 'guide_payment')->updateOrInsert([
- 'UserID' => $user_id,
- 'GiftID' => $GiftsID,
- 'CreateTime' => now()
- ], ['UserID' => $user_id]);
- }
- }
- //设置第二天要领取
- if (!empty($GiftsID) && $GiftsID >= 300 && $GiftsID < 400 ) {
- Redis::del('repay_temp_'.$user_id);
- }
- // 数据统计后台 -- 充值记录添加
- (new RechargeWithDraw())->recharge($user_id, $payAmt);
- // (new RechargeWithDraw())->recharge($user_id, $Recharge);
- if ($AdId && $payAmt) AfEvent::dispatch([$user_id, $payAmt, $AdId, $eventType]);
- try {
- //新邀请
- (new AgentController())->processDeposit($user_id, $payAmt,$order_sn);
- // AgentService::recordPerformance($user_id, $payAmt * NumConfig::NUM_VALUE);
- } catch (\Exception $exception) {
- Util::WriteLog("AgentService", $exception->getTraceAsString());
- }
- return [$Score];
- }
- /**
- * 执行存储过程
- * @param $user_id
- * @param $payAmt
- * @param $favorable_price
- * @param $Score
- * @param $GiftsID
- */
- public function storedProcedure($user_id, $payAmt, $favorable_price, $Score, $GiftsID)
- {
- // 开始执行时间
- $startTime = Helper::millisecond();
- // 执行存储过程 -- 防刷机制
- StoredProcedure::SetUserTabType($user_id);
- Log::info('GSP_GP_SetUserTabType12 执行时间:' . ((Helper::millisecond() - $startTime) / 1000));
- # 单控标签 -- 执行存储过程
- StoredProcedure::user_label($user_id, 1, $payAmt);
- Log::info('CheckAccountsLabel 执行时间:' . ((Helper::millisecond() - $startTime) / 1000));
- // 服务器通知
- // $url = config('transfer.stock')['url'] . 'notifyPay';
- // Log::info('中转服参数 ' . json_encode([
- // 'userid' => $user_id, 'getScore' => $favorable_price, 'score' => $Score,
- // 'giftsid' => empty($GiftsID) ? 0 : $GiftsID,
- // 'url' => $url
- // ]));
- // $res = (new HttpCurl())->service($url, ['userid' => $user_id, 'getScore' => $favorable_price, 'score' => $Score, 'giftsid' => empty($GiftsID) ? 0 : $GiftsID]);
- //
- // Log::info('中转服 执行时间:' . ((Helper::millisecond() - $startTime) / 1000), [
- // 'res' => $res,
- // ]);
- // AF 事件
- // (new AppflyerEvent())->event($user_id, '', 'af_purchase_new', $payAmt);
- // Log::info('AF 执行时间:' . ((Helper::millisecond() - $startTime) / 1000));
- }
- }
|