| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911 | 
							- <?php
 
- namespace app\api\controller;
 
- use addons\epay\library\Service;
 
- use app\api\controller\Common;
 
- use app\common\model\GiftUserParty;
 
- use app\common\model\UserExchangeLog;
 
- use app\common\model\UserExchsoundLog;
 
- use applebuy\applebuy;
 
- use fast\Random;
 
- use app\common\model\RecharOrder;
 
- use kjpay\kjpay;
 
- use kjwithdraw\kjwithdraw;
 
- use think\Exception;
 
- use think\exception\PDOException;
 
- use think\exception\ValidateException;
 
- use think\Request;
 
- use think\Db;
 
- use app\common\library\Sms as Smslib;
 
- /**
 
-  * 钱包接口
 
-  */
 
- class Money extends Common
 
- {
 
-     protected $noNeedLogin = ['getRecharConfig', 'getRateMoney', 'getExchangeConfig', 'getExchsoundConfig', 'rebateDuty',
 
-         'kjRecharge', 'changeWithDrawStatus','moneyConfig','recharOrderCancel'];
 
-     protected $noNeedRight = '*';
 
-     public function _initialize()
 
-     {
 
-         parent::_initialize();
 
-     }
 
-     /**
 
-      * 获取用户财富信息
 
-      */
 
-     public function getUserMoney()
 
-     {
 
-         $this->success("获取成功!", \app\common\model\User::field("money,rebate_money,score,jewel,sound_coin,hammer")->find($this->auth->id));
 
-     }
 
-     /**
 
-      * 充值
 
-      */
 
-     public function recharge()
 
-     {
 
-         $rechar_id = $this->request->request("rechar_id",0);// 充值金额配置ID
 
-         $type = $this->request->request("type", "wechat");// 充值类型:wechat:微信支付,alipay:支付宝支付
 
-         $method = $this->request->request("method", "miniapp");// 支付方式:app:app支付,miniapp:小程序支付
 
-         $openid = $this->request->request("openid", "");// 非小程序支付无需传值
 
-         $params_from = $this->request->request("params_from",'android');// 平台参数充值平台:1=android,2=ios
 
-         $params_from = $params_from == 'android' ? 1 : 2;
 
-         $amounts = $this->request->request("amounts",0);// 自定义金额
 
-         $jewelRate = config('site.money_to_jewel');
 
-         if (!$rechar_id && empty($amounts)) {
 
-             $this->error(__('Invalid parameters'));
 
-         }
 
-         if (!preg_match("/^-?\d+$/",$amounts)) {
 
-             $this->error('金额必须是整数');
 
-         }
 
-         if ($this->auth->power->recharge == 1) {//禁止充值
 
-             $this->error('禁止充值');
 
-         }
 
-         $user_id = $this->auth->id;
 
-         // 获取充值金额配置信息
 
-         if (!empty($rechar_id)) {
 
-             $recharMode = new \app\common\model\RecharConfig();
 
-             $recharInfo = $recharMode->where(["id" => $rechar_id])->find();
 
-         } else {
 
-             $amountsNew = $amounts * $jewelRate;
 
-             $recharInfo = [
 
-                 'money' => $amounts,
 
-                 'jewel' => $amountsNew,
 
-                 'jewel_full' => $amountsNew,
 
-             ];
 
-         }
 
-         if (!$recharInfo) $this->error("金额配置信息未找到!");
 
-         $out_trade_no = date("YmdHis") . rand(100000, 999999);
 
-         $title = "充值钻石";
 
-         $amount = $recharInfo["money"] / 100;
 
-         if ($this->auth->is_auth != 2) {//实名后允许充值
 
-             //未实名认证最大可充值金额
 
-             $maxMoney = config('site.un_authentication_max');
 
-             $rechargeMoneyWhere['user_id'] = $user_id;
 
-             $rechargeMoneyWhere['status'] = 1;
 
-             $rechargeMoney = model('RecharOrder')->where($rechargeMoneyWhere)->sum('money');
 
-             $userRechargeMoney = !empty($rechargeMoney) ? (int)$rechargeMoney : 0;
 
-             $userMoney = bcadd($amount,$userRechargeMoney);
 
-             if ($userMoney > $maxMoney) {
 
-                 $this->error('请先实名认证');
 
-             }
 
-         }
 
-         if ($params_from == "ios") {
 
-             $jewel = $recharInfo['jewel'];
 
-         } else {
 
-             $jewel = $recharInfo['jewel_full'];
 
-         }
 
-         $notifyurl = request()->root(true) . '/api/notify/' . $type . 'notify';
 
-         $returnurl = request()->root(true) . '/addons/epay/index/' . $type . 'return/out_trade_no/' . $out_trade_no;
 
-         if (!$amount || $amount < 0) {
 
-             $this->error("支付金额必须大于0");
 
-         }
 
-         if (!$type || !in_array($type, ['alipay', 'wechat'])) {
 
-             $this->error("支付类型错误");
 
-         }
 
-         $time = time();
 
-         $money = (float)bcadd($amount, 0, 2);
 
-         // 生成订单
 
-         $epayConfig = get_addon_config('epay');
 
-         if ($type == 'wechat') {
 
-             $payType = 1;
 
-             $businessNo = isset($epayConfig['wechat']['mch_id']) ? $epayConfig['wechat']['mch_id'] : '';
 
-         } elseif ($type == 'alipay') {
 
-             $payType = 2;
 
-             $businessNo = isset($epayConfig['alipay']['app_id']) ? $epayConfig['alipay']['app_id'] : '';
 
-         } else {
 
-             $payType = 3;
 
-             $businessNo = '';
 
-         }
 
-         $recharOrderMode = new \app\common\model\RecharOrder();
 
-         $data["user_id"] = $user_id;
 
-         $data["order_no"] = $out_trade_no;
 
-         $data["money"] = $money;
 
-         $data["jewel"] = $jewel;
 
-         $data["pay_type"] = $payType;//支付渠道:1=微信,2=支付宝,3=衫德
 
-         $data["business_no"] = $businessNo;//商户号
 
-         $data["createtime"] = $time;
 
-         //$orderid = $recharOrderMode->execute("INSERT INTO `hx_rechar_order` (`user_id` , `order_no` , `money` , `jewel` , `createtime`) VALUES ($user_id , $out_trade_no , $money , " . $jewel . " , $time)");
 
-         $orderid = $recharOrderMode->insertGetId($data);
 
-         if (!$orderid) $this->error("订单创建失败!");
 
-         $payTest = config('pay_test');//支付测试:0=正常,1=支付0.01
 
-         if ($payTest == 1) {
 
-             $money = 0.01;
 
-         }
 
-         $params = [
 
-             'type'      => $type,
 
-             'orderid'   => $out_trade_no,
 
-             'title'     => $title,
 
-             'amount'    => $money,
 
-             'method'    => $method,
 
-             'openid'    => $openid,
 
-             'notifyurl' => $notifyurl,
 
-             'returnurl' => $returnurl,
 
-         ];
 
-         $result = Service::submitOrder($params);
 
-         // 首充赠送
 
-         $userInfo = \app\common\model\User::get($user_id);
 
-         if ($userInfo->is_recharge == 0) { // 首充
 
-             Db::startTrans();
 
-             try {
 
-                 // 赠送消息尾灯
 
-                 $res1 = \app\common\model\AttireBack::addToMyBack(15, $user_id);
 
-                 $userInfo->is_recharge = 1;
 
-                 $res2 = $userInfo->save();
 
-                 if ($res1 && $res2) Db::commit();
 
-             } catch (ValidateException $e) {
 
-                 Db::rollback();
 
-                 $this->error($e->getMessage());
 
-             }
 
-         }
 
-         //$this->rebate($user_id, $amount);
 
-         // 查询新人礼包
 
-         //$this->addBagGift($user_id, $amount);
 
-         /*if ($method == "app") {
 
-             $this->success("", json_decode($result, true));
 
-         } else {
 
-             $this->success("", $result);
 
-         }*/
 
-         if($type == 'wechat'){
 
-             $this->success('success',json_decode($result,true));
 
-         }else{
 
-             $this->success('success',$result);
 
-         }
 
-     }
 
-     /**
 
-      * 聚合支付充值
 
-      */
 
-     public function kjRecharge()
 
-     {
 
-         $rechar_id = $this->request->request("rechar_id");// 充值金额配置ID
 
-         $u_id = $this->request->request("u_id");// 用户ID
 
-         $type = $this->request->request("type", "wechat");// 充值类型:wechat:微信支付,alipay:支付宝支付
 
-         $method = $this->request->request("method", "miniapp");// 支付方式:app:app支付,miniapp:小程序支付,public:公众号支付
 
-         $openid = $this->request->request("openid", "");// 非小程序支付无需传值
 
-         $params_from = $this->request->request("params_from");// 平台参数
 
-         $custom_money = $this->request->request("custom_money", 0, "intval");// 自定义充值金额
 
-         if (!$rechar_id && !$custom_money) {
 
-             $this->error(__('Invalid parameters'));
 
-         }
 
-         if ($custom_money > 0) {
 
-             $amount = $custom_money;
 
-             $jewel = $custom_money * 100;
 
-             if ($amount < 10) $this->error('支付金额必须大于10');
 
-             if ($amount > 30000) $this->error('支付金额超出单笔交易限额');
 
-         } else {
 
-             // 获取充值金额配置信息
 
-             $recharMode = new \app\common\model\RecharConfig();
 
-             $recharInfo = $recharMode->where(["id" => $rechar_id])->find();
 
-             if (!$recharInfo) $this->error("金额配置信息未找到!");
 
-             $amount = $recharInfo["money"] / 100;
 
-             if (!$amount || $amount < 0) {
 
-                 $this->error("支付金额必须大于0");
 
-             }
 
-             if ($params_from == "ios") {
 
-                 $jewel = $recharInfo['jewel'];
 
-             } else {
 
-                 $jewel = $recharInfo['jewel_full'];
 
-             }
 
-         }
 
-         $platformArr = ["android" => 1, "ios" => 2, "wxweb" => 3];
 
-         $platform = isset($platformArr[$params_from]) ? $platformArr[$params_from] : 1;
 
-         if ($method == "public") {
 
-             if (!$u_id) $this->error(__('Invalid parameters'));
 
-             $user_id = \app\common\model\User::where(["u_id" => $u_id])->value("id");
 
-         } else {
 
-             $user_id = $this->auth->id;
 
-         }
 
-         if (!$user_id) $this->error("数据缺失,请重新登录!");
 
-         $out_trade_no = date("YmdHis") . rand(100000, 999999);
 
-         $title = "充值钻石";
 
-         $content = "充值钻石";
 
-         $request = Request::instance();
 
-         $user_ip = $request->ip();
 
-         $notifyurl = request()->root(true) . '/api/notify/wechatkjnotify';
 
-         $returnurl = "https://voicew.bansheng-live.com/pages/index/index";
 
-         $time = time();
 
-         $money = (float)bcadd($amount, 0, 2);
 
-         // 生成订单
 
-         $recharOrderMode = new \app\common\model\RecharOrder();
 
-         $orderid = $recharOrderMode->execute("INSERT INTO `hx_rechar_order` (`user_id` , `order_no` , `money` , `platform`, `jewel` , `createtime`) VALUES ($user_id , $out_trade_no , $money , $platform, " . $jewel . " , $time)");
 
-         if (!$orderid) $this->error("订单创建失败!");
 
-         // 获取公共参数
 
-         $config = config("kjPay");
 
-         //商户号
 
-         $merchant_no = $config["merchant_no"];
 
-         //密钥
 
-         $key = $config["key"];
 
-         // 实例化支付类
 
-         $kjpay = new kjpay();
 
-         // 公众号分账参数
 
-         $publicreceivers = [];
 
-         $publicamount = $money - $money * 0.005;
 
-         $publicreceivers[] = [
 
-             "member_id" => $config["receivers_member_id"],
 
-             "amount"    => floor($publicamount * 100) / 100,
 
-         ];
 
-         // app分账参数
 
-         $appreceivers = [];
 
-         $appamount = $money * (1 - 0.006) * 0.3 - $money * 0.002;
 
- //        $appreceivers[] = [
 
- //            "type" => "PERSONAL_OPENID",
 
- //            "account" => "oSepO0jXj8CLlEsb9v4Gw9sbzQqU",
 
- //            "name" => "石国华",
 
- //            "amount" => floor($appamount*100)/100,
 
- //            "description" => "分账",
 
- //        ];
 
-         $appreceivers[] = [
 
-             "type"        => "PERSONAL_OPENID",
 
-             "account"     => "oSepO0nhtkSxiCoAhZFlnydDEzoA",
 
-             "name"        => "石国华",
 
-             "amount"      => floor($appamount * 100) / 100,
 
-             "description" => "分账",
 
-         ];
 
-         //请求的参数(注:不同支付接口请求参数略有不同,具体请参照接口文档)
 
-         $param = array(
 
-             'merchant_no'       => $merchant_no,
 
-             'merchant_order_no' => $out_trade_no,
 
-             //异步通知的地址
 
-             'notify_url'        => $notifyurl,
 
-             'start_time'        => date('YmdHis'),
 
-             'trade_amount'      => $money,
 
-             'goods_name'        => $title,
 
-             'goods_desc'        => $content,
 
-             'user_ip'           => $user_ip,
 
-             'sign_type'         => 1
 
-         );
 
-         if ($method == "public") {
 
-             $param['open_id'] = $openid;
 
-             //同步跳转的地址
 
-             $param['return_url'] = $returnurl;
 
-         }
 
-         if ($method == "public" || $method == "miniapp") {
 
-             $param['receivers'] = json_encode($publicreceivers);
 
-         }
 
-         if ($method == "app") {
 
-             if ($type == "alipay") {
 
- //                $param['receivers'] = json_encode($publicreceivers);
 
-             } else {
 
-                 $param['receivers'] = json_encode($appreceivers);
 
-             }
 
-         }
 
-         //签名
 
-         $sign = $kjpay->local_sign($param, $key);
 
-         $param['sign'] = $sign;
 
-         $typeArr = ["wechat" => "wechar", "alipay" => "alipay"];
 
-         if ($type == "wechat" && $method == "app") {
 
-             $method = "app_wechat";
 
-         } elseif ($type == "alipay" && $method == "app") {
 
-             $method = "app_alipay";
 
-         }
 
-         $res = $kjpay->getdata("http://" . $config["url"] . "/" . $typeArr[$type] . "/" . $config["pay_params"][$method], $param);
 
-         $list = json_decode($res, true);
 
-         if ($list["status"] != 1) $this->error($list['data']['error']);
 
-         //对响应结果进行验签,
 
-         if ($kjpay->local_sign($list['data'], $key) == $list['data']['sign']) {
 
-             $this->success("支付验证通过!", $list["data"]);
 
-         } else {
 
-             $this->error("支付验证失败!");
 
-         }
 
-     }
 
-     /**
 
-      * 聚合支付提现
 
-      */
 
-     public function kjout()
 
-     {
 
-         $this->error(__('功能暂时关闭!'));
 
-         // 接口防并发
 
-         if (!$this->apiLimit(1, 2000)) {
 
-             $this->error(__('Operation frequently'));
 
-         }
 
-         // 获取用户信息
 
-         $user_id = $this->auth->id;
 
-         $money = $this->request->request("money");// 申请提现的金额
 
-         if ($money < 30) {
 
-             $this->error(__('提现金额至少30元'));
 
-         }
 
-         if (bcsub($money, intval($money), 2) > 0) {
 
-             $this->error(__('提现金额必须为整数'));
 
-         }
 
- //        if (!$this->withdrawVerify($user_id)) {
 
- //            $this->error(__('账户验证失败!请联系管理员!'));
 
- //        }
 
-         // 判断当前用户是否实名认证
 
-         $userAuthInfo = \app\common\model\UserAuth::where(["user_id" => $user_id])->find();
 
-         if ($userAuthInfo) {
 
-             if ($userAuthInfo->status == 0) {
 
-                 $this->error("您的实名认证还在这审核中...,请耐心等待!");
 
-             } elseif ($userAuthInfo->status == 2) {
 
-                 $this->error("您的实名认证审核未通过,请重新审核!");
 
-             }
 
-         } else {
 
-             $this->error("请先申请实名认证!");
 
-         }
 
-         // 查询资金余额
 
-         $userModel = new \app\common\model\User();
 
-         $userInfo = $userModel->where('id',$user_id)->lock(true)->find();
 
-         if (bcsub($money, $userInfo["money"], 2) > 0) {
 
-             $this->error("资金余额不足!", [], 100);
 
-         }
 
-         // 增加提现收益记录
 
-         $withdrawRate = (100 - config("site.withdrawRate")) / 100;
 
-         $promoney = bcmul($money, $withdrawRate, 2);
 
-         $redmoney = bcsub($money, $promoney, 2);
 
-         // 查询银行卡信息
 
-         $bankInfo = \app\common\model\UserBank::where(["user_id" => $user_id])->find();
 
-         if (!$bankInfo) $this->error("请先绑定银行卡!");
 
-         $bankno = $bankInfo->bank_no;
 
-         $bankname = $bankInfo->bank_name;
 
-         $username = $bankInfo->realname;
 
-         $mobile = $bankInfo->mobile;
 
-         // 获取公共参数
 
-         $config = config("kjPay");
 
-         //商户号
 
-         $merchant_no = $config["merchant_no"];
 
-         //密钥
 
-         $key = $config["key"];
 
-         $out_trade_no = date("YmdHis") . rand(100000, 999999);
 
-         // 实例化支付类
 
-         $kjwithdraw = new kjwithdraw();
 
-         //请求的参数(注:不同支付接口请求参数略有不同,具体请参照接口文档)
 
-         $param = array(
 
-             'merchant_no'       => $merchant_no, // 商户号
 
-             'merchant_order_no' => $out_trade_no,// 商户订单号
 
-             'payment_days'      => date("Y-m-d", strtotime("-1 day")), // 账期
 
- //            'payment_days'     => "2021-04-19", // 账期
 
-             'pay_channel'       => "ali_wap_pay", // 支付通道
 
-             'trade_amount'      => $redmoney, // 提现金额 单位为元,精确到小数点后两位,取值范围[0.01,100000000]
 
-             'bank_no'           => $bankno, // 银行卡号
 
-             'bank_acct_name'    => $username, // 银行账户名称
 
-             'bank_mobile'       => $mobile, // 银行预留手机号
 
-             'account_attr'      => "0", // 账户类型 0-对私,默认0
 
-             'bank_name'         => $bankname, //银行名称
 
-             'remarks'           => "伴声公众号提现", // 提现备注
 
-             'sign_type'         => 1
 
-         );
 
-         //签名
 
-         $sign = $kjwithdraw->sign($param, $key);
 
-         $param['sign'] = $sign;
 
-         $res = $kjwithdraw->getdata($config["cashOutForSelf"]["url"], $param);
 
- //        $this->error($res);exit;
 
-         $list = json_decode($res, true);
 
-         // 提现申请成功 添加申请记录
 
-         if (isset($list["status"])) {
 
-             if ($list["status"] == 1) {
 
-                 Db::startTrans();
 
-                 try {
 
-                     $withdrawallogModel = new \app\common\model\UserWithdrawalLog();
 
-                     // 减去用户可用资金余额
 
-                     $res1 = $userModel->where(["id" => $user_id])->setDec("money", $money);
 
-                     // 增加用户冻结资金余额
 
-                     $res2 = $userModel->where(["id" => $user_id])->setInc("frozen", $money);
 
-                     // 新增用户提现记录申请
 
-                     $data = [];
 
-                     $data["user_id"] = $user_id;
 
-                     $data["money"] = $money * 100;
 
-                     $data["out_trade_no"] = $out_trade_no;
 
-                     $data["status"] = 0; // 提现状态:-1=审核拒绝,0=待审核,1=审核通过
 
-                     $data["createtime"] = time();
 
-                     $res3 = $withdrawallogModel->insert($data);
 
-                     if ($res1 && $res2 && $res3) {
 
-                         Db::commit();
 
-                         $this->success("提现申请发送成功!");
 
-                     } else {
 
-                         $this->error("操作失败!");
 
-                     }
 
-                 } 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());
 
-                 }
 
-                 $this->success("恭喜,提现成功!请留意预留银行账户资金变动!");
 
-             } else {
 
-                 $this->error("商户账户异常,请联系管理员!");
 
-             }
 
-         } else {
 
-             $this->error("提现失败,请联系客服处理!");
 
-         }
 
-     }
 
-     /**
 
-      * 获取用户比例提现金额
 
-      */
 
-     public function getRateMoney()
 
-     {
 
-         $money = $this->request->request("money");// 申请提现的金额
 
-         if ($money <= 0) {
 
-             $this->error(__('提现金额不合法'));
 
-         }
 
-         // 增加提现收益记录
 
-         $money = bcsub($money, 0, 2);
 
-         $rate = 100 - config("site.withdrawRate");
 
-         $withdrawRate = $rate / 100;
 
-         $promoney = bcmul($money, $withdrawRate, 2);
 
-         $redmoney = bcsub($money, $promoney, 2);
 
-         $res = [];
 
-         $res["rate"] = $rate . "%";
 
-         $res["money"] = $money;
 
-         $res["promoney"] = $promoney;
 
-         $res["redmoney"] = $redmoney;
 
-         $this->success("获取成功!", $res);
 
-     }
 
-     public function aa()
 
-     {
 
-         $this->addBagGift(86, 100);
 
-     }
 
-     /**
 
-      * 更新新人礼包
 
-      */
 
-     private function addBagGift($user_id, $amount)
 
-     {
 
-         if (!$user_id || !$amount) return false;
 
-         // 先看该用户是否有新人礼包特权
 
-         $have = \app\common\model\NewBagHave::where(["user_id" => $user_id])->find();
 
- //        print_r($have);exit;
 
-         if ($have && time() - $have->createtime <= 7 * 86400) {
 
-             $where = [];
 
-             $where["value"] = ["elt", $amount];
 
-             $bagInfo = \app\common\model\NewBag::where($where)->order("value", "desc")->select();
 
-             if (!$bagInfo) return false;
 
-             $res1 = false;
 
-             foreach ($bagInfo as $k => $v) {
 
-                 // 查询完成情况
 
-                 $bagfinish = \app\common\model\NewBagFinish::where(["user_id" => $user_id, "bag_id" => $v["id"]])->find();
 
-                 if (!$bagfinish || $bagfinish->status <= 0) {
 
-                     if ($bagfinish) {
 
-                         $bagfinish->status = 1;
 
-                         $bagfinish->updatetime = time();
 
-                         $res1 = $bagfinish->save();
 
-                     } else {
 
-                         $res1 = \app\common\model\NewBagFinish::insert(["user_id" => $user_id, "bag_id" => $v["id"], "status" => 1, "updatetime" => time()]);
 
-                     }
 
-                     break;
 
-                 }
 
-             }
 
-             return $res1;
 
-         }
 
-     }
 
-     /**
 
-      * 更新提现状态 定时任务
 
-      */
 
-     public function changeWithDrawStatus()
 
-     {
 
-         // 获取公共参数
 
-         $config = config("kjPay");
 
-         //商户号
 
-         $merchant_no = $config["merchant_no"];
 
-         //密钥
 
-         $key = $config["key"];
 
-         // 查询 有哪些 提现未审核的提现记录
 
-         $log = \app\common\model\UserWithdrawalLog::where(["status" => 0])->order("doit", "asc")->find();
 
-         if (!$log) exit;
 
-         $log->doit = $log->doit + 1;
 
-         $log->save();
 
-         // 实例化支付类
 
-         $kjwithdraw = new kjwithdraw();
 
-         //请求的参数(注:不同支付接口请求参数略有不同,具体请参照接口文档)
 
-         $param = array(
 
-             'merchant_no'       => $merchant_no, // 商户号
 
-             'merchant_order_no' => $log->out_trade_no,// 商户订单号
 
-             'sign_type'         => 1
 
-         );
 
-         $money = $log->money / 100;
 
-         // 增加提现收益记录
 
-         $withdrawRate = (100 - config("site.withdrawRate")) / 100;
 
-         $promoney = bcmul($money, $withdrawRate, 2) - 1;
 
- //        $redmoney = bcsub($money,$promoney,2);
 
-         // 查询资金余额
 
-         $userModel = new \app\common\model\User();
 
-         $userInfo = $userModel->get($log->user_id);
 
-         if ($money > $userInfo["frozen"]) {
 
-             exit;
 
-         }
 
-         //签名
 
-         $sign = $kjwithdraw->sign($param, $key);
 
-         $param['sign'] = $sign;
 
-         $res = $kjwithdraw->getdata($config["cashOutForSelf"]["check_url"], $param);
 
-         $list = json_decode($res, true);
 
-         // 查询成功
 
-         if (isset($list["status"])) {
 
-             if ($list["status"] == 1) {
 
-                 Db::startTrans();
 
-                 try {
 
-                     $userModel = new \app\common\model\User();
 
-                     $userInfo = $userModel->where(["id" => $log->user_id])->find();
 
-                     if ($list["data"]["status"] == 4) {// 更新状态为审核通过
 
-                         // 减去用户冻结资金余额
 
-                         $res1 = (new \app\common\model\User())->execute("update hx_user set frozen = frozen - $money where id = " . $log->user_id);
 
-                         $time = time();
 
-                         $res2 = (new \app\common\model\UserWithdrawalProfitLog())->execute("INSERT INTO `hx_user_withdrawal_profit_log`(`u_id`, `nickname`, `plat_value`, `createtime`) VALUES ($userInfo->u_id, '$userInfo->nickname', $promoney, $time)");
 
-                         // 更改用户提现记录状态
 
-                         $res3 = \app\common\model\UserWithdrawalLog::update(["status" => 1, "updatetime" => time()], ["out_trade_no" => $log->out_trade_no]);
 
-                         if ($res1 && $res2 && $res3) {
 
-                             Smslib::send($userInfo->mobile, $money, "drowsuccess");
 
-                             Db::commit();
 
-                         }
 
-                     } elseif ($list["data"]["status"] == 5) {  // 更新状态为审核拒绝
 
-                         // 增加用户资金余额
 
-                         $res1 = (new \app\common\model\User())->execute("update hx_user set money = money + $money where id = " . $log->user_id);
 
-                         // 减去用户冻结资金余额
 
-                         $res2 = (new \app\common\model\User())->execute("update hx_user set frozen = frozen - $money where id = " . $log->user_id);
 
-                         // 更改用户提现记录状态
 
-                         $res3 = \app\common\model\UserWithdrawalLog::update(["status" => -1, "updatetime" => time()], ["out_trade_no" => $log->out_trade_no]);
 
-                         if ($res1 && $res2 && $res3) {
 
-                             Smslib::send($userInfo->mobile, $money, "drowFalse");
 
-                             Db::commit();
 
-                         }
 
-                     }
 
-                 } catch (ValidateException $e) {
 
-                     Db::rollback();
 
-                 }
 
-             }
 
-         }
 
-     }
 
-     /**
 
-      * 充值返利 定时任务
 
-      */
 
-     public function rebateDuty()
 
-     {
 
-         // 获取本周所有充值记录
 
-         // 上个周一
 
-         $preweek = $this->firstOfWeek(date("Y-m-d H:i:s",bcsub(time(),604800)));
 
-         $weekstart = strtotime($preweek." 00:00:00"); // 上周一时间
 
-         $weekend = bcadd($weekstart,604800); // 上周天时间
 
-         $where = [];
 
-         $where["createtime"] = ["between", "$weekstart,$weekend"];
 
-         $where["status"] = 1;
 
-         $rechargeOrder = \app\common\model\RecharOrder::field("id,sum(money) as money,user_id")->where($where)->group("user_id")->select();
 
-         $usercharge = [];
 
-         // 获取上级用户的所有下级用户
 
-         $preuser = [];
 
-         if ($rechargeOrder) foreach ($rechargeOrder as $k => $v) {
 
-             // 上级用户
 
-             $pre_userid = \app\common\model\User::where(["id"=>$v["user_id"]])->value("pre_userid");
 
-             if($pre_userid > 0) {
 
-                 // 所有下级用户
 
-                 $userids = \app\common\model\User::where(["pre_userid"=>$pre_userid])->column("id");
 
-                 $where = [];
 
-                 $where["createtime"] = ["between", "$weekstart,$weekend"];
 
-                 $where["status"] = 1;
 
-                 $where["user_id"] = ["in",$userids];
 
-                 $preuser[$v["user_id"]] = \app\common\model\RecharOrder::where($where)->sum("money");
 
-             }
 
-         }
 
-         if ($rechargeOrder) foreach ($rechargeOrder as $k => $v) {
 
-             $user_id = $v["user_id"];
 
-             $money = isset($preuser[$v["user_id"]])?$preuser[$v["user_id"]]:0;
 
-             // 获取配置信息
 
-             $config = \app\common\model\RebateConfig::where(["recharge" => ["lt", $money]])->order("recharge", "desc")->select();
 
-             if (!$config) continue;
 
-             $config = $config[0];
 
-             // 找到当前用户的上级和上上级
 
-             $userInfo = \app\common\model\User::where(["id" => $user_id])->find();
 
-             if ($userInfo->pre_userid > 0) {
 
-                 $usercharge[1][$user_id] = $config["preget"];
 
-                 $preUserInfo = \app\common\model\User::where(["id" => $userInfo->pre_userid])->find();// 上一级用户
 
-                 if ($preUserInfo->pre_userid > 0) {
 
-                     $usercharge[2][$user_id] = $config["prepreget"];
 
-                 }
 
-             }
 
-         }
 
-         // 获取返利列表信息
 
-         $where = [];
 
-         $where["createtime"] = ["between", "$weekstart,$weekend"];
 
-         $where["is_rebate"] = 0;
 
-         $RebateLog = \app\common\model\RebateLog::where($where)->select();
 
-         $week = intval(date('W', time()));
 
-         $year = intval(date('Y', time()));
 
-         $time = $year . $week;
 
-         $rank = time() . rand(1000, 999);
 
-         if ($RebateLog && $usercharge) foreach ($RebateLog as $k => $v) {
 
-             if (isset($usercharge[$v["rebate_type"]][$v["by_user_id"]]) && $usercharge[$v["rebate_type"]][$v["by_user_id"]] > 0) {
 
-                 $rate = bcdiv($usercharge[$v["rebate_type"]][$v["by_user_id"]], 1000, 5);
 
-                 $rebatemoney = $v["money"] * $rate;
 
-                 (new \app\common\model\RebateLog)->execute("update hx_rebate_log set rebate_rate = $rate,is_rebate = 1, rebate_money = $rebatemoney where id = " . $v['id']);
 
-                 $uInfo = \app\common\model\User::where(["id" => $v["user_id"], "finish_rebate" => $time])->find();
 
-                 if ($uInfo) {
 
-                     if ($rank == $uInfo->finish_rank) {
 
-                         (new \app\common\model\User)->execute("update hx_user set rebate_money = rebate_money + $rebatemoney,rebatecount = rebatecount + $rebatemoney,finish_rebate = $time, finish_rank = $rank where id = " . $v["user_id"]);
 
-                     }
 
-                 } else {
 
-                     (new \app\common\model\User)->execute("update hx_user set rebate_money = rebate_money + $rebatemoney,rebatecount = rebatecount + $rebatemoney,finish_rebate = $time, finish_rank = $rank where id = " . $v["user_id"]);
 
-                 }
 
-             }
 
-         }
 
-     }
 
-     /**
 
-      * 充值返利
 
-      */
 
-     private function rebate($user_id, $money)
 
-     {
 
- //        // 获取配置信息
 
- //        $config = \app\common\model\RebateConfig::where(["recharge"=>$money])->find();
 
- //        if(!$config) return true;
 
-         // 找到当前用户的上级和上上级
 
-         $userInfo = \app\common\model\User::get($user_id);
 
-         if ($userInfo->pre_userid > 0) {
 
-             $preUserInfo = \app\common\model\User::where(["id" => $userInfo->pre_userid])->find();// 上一级用户
 
-             $this->addRebateMoney($preUserInfo->id, $user_id, $money, 1);
 
-             if ($preUserInfo->pre_userid > 0) {
 
-                 $this->addRebateMoney($preUserInfo->pre_userid, $user_id, $money, 2);
 
-             } else {
 
-                 return true;
 
-             }
 
-         } else {
 
-             return true;
 
-         }
 
-     }
 
-     /**
 
-      * 添加返利金额
 
-      */
 
-     private function addRebateMoney($preUserId, $user_id, $money, $type)
 
-     {
 
-         if ($money <= 0) return false;
 
-         Db::startTrans();
 
-         try {
 
-             // 添加返利记录表
 
-             $data = [];
 
-             $data["user_id"] = $user_id;
 
-             $data["by_user_id"] = $preUserId;
 
-             $data["money"] = $money;
 
-             $data["rebate_money"] = 0.00;
 
-             $data["rebate_type"] = $type;
 
-             $data["createtime"] = time();
 
-             $res1 = \app\common\model\RebateLog::insertGetId($data);
 
- //            $res2 = (new \app\common\model\RebateLog)->execute("update hx_rebate_log set rebate_money = $rebatemoney where id = $res1");
 
-             if ($res1) {
 
-                 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());
 
-         }
 
-     }
 
-     /**
 
-      * 声币兑换钻石
 
-      */
 
-     public function exchangeSoundcoin()
 
-     {
 
-         // 接口防并发
 
-         if (!$this->apiLimit(1, 1000)) {
 
-             $this->error(__('Operation frequently'));
 
-         }
 
-         $exchange_id = $this->request->request("exchsound_id");// 兑换声币配置ID
 
-         $sound_coin = $this->request->request("sound_coin");// 输入具体声币数量
 
-         if (!$sound_coin && !$exchange_id) {
 
-             $this->error(__('Invalid parameters'));
 
-         }
 
-         if ($sound_coin > 0) {
 
-             $scoin = $sound_coin;
 
-             // 获取配置信息
 
-             $conf = 100;//config("site.soundcoinTojewel");
 
-             $exchangeMoney = round($sound_coin * ($conf / 100));
 
-             if ($exchangeMoney < 1) $this->error(__('声币兑换数量太小啦!'));
 
-         } else {
 
-             // 获取兑换配置信息
 
-             $exchangeModel = new \app\common\model\ExchsoundConfig();
 
-             $exchangeInfo = $exchangeModel->get($exchange_id);
 
-             if (!$exchangeInfo) $this->error("配置信息未找到");
 
-             $exchangeMoney = $exchangeInfo["jewel"];
 
-             $scoin = $exchangeInfo["sound_coin"];
 
-         }
 
-         Db::startTrans();
 
-         try {
 
-             // 查询声币余额
 
-             $userModel = new \app\common\model\User();
 
-             $userInfo = $userModel->lock('lock in share mode')->find($this->auth->id);
 
-             if ($scoin > $userInfo["sound_coin"]) {
 
-                 $this->error("声币余额不足!", [], 100);
 
-             }
 
-             $soundlogModel = new \app\common\model\UserSoundcoinLog();
 
-             $jewellogModel = new \app\common\model\UserJewelLog();
 
-             $exchexsoundlogModel = new \app\common\model\UserExchsoundLog();
 
-             $detail = "声币兑换钻石";
 
-             // 添加钻石流水记录
 
-             $res1 = $jewellogModel->addUserJewelLog($this->auth->id, $exchangeMoney, "+", $userInfo["jewel"], $detail, 4);
 
-             // 添加兑换记录
 
-             $res2 = $exchexsoundlogModel->addExchsoundLog($this->auth->id, $scoin, $exchangeMoney);
 
-             // 添加声币流水记录
 
-             $res3 = $soundlogModel->addUserSoundcoinLog($this->auth->id, $scoin, "-", $userInfo["sound_coin"], $detail, 2, $res2);
 
-             // 减去用户声币余额
 
-             $res4 = $userModel->where(["id" => $this->auth->id])->setDec("sound_coin", $scoin);
 
-             // 增加用户钻石余额
 
-             $res5 = $userModel->where(["id" => $this->auth->id])->setInc("jewel", $exchangeMoney);
 
-             if ($res1 && $res2 && $res3 && $res4 && $res5) {
 
-                 Db::commit();
 
-                 $this->success("兑换成功!");
 
-             } else {
 
-                 $this->error("操作失败!");
 
-             }
 
-         } 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());
 
-         }
 
-     }
 
-     /**
 
-      * 声币兑换余额
 
-      */
 
-     public function exchange()
 
-     {
 
-         $this->error('接口作废');
 
-         exit;//作废
 
-         // 接口防并发
 
-         if (!$this->apiLimit(1, 1000)) {
 
-             $this->error(__('Operation frequently'));
 
-         }
 
-         $exchange_id = $this->request->request("exchange_id");// 兑换声币配置ID
 
-         $sound_coin = $this->request->request("sound_coin");// 输入具体声币数量
 
-         if (!$sound_coin && !$exchange_id) {
 
-             $this->error(__('Invalid parameters'));
 
-         }
 
-         if ($sound_coin > 0) {
 
-             $scoin = $sound_coin;
 
-             // 获取配置信息
 
-             $conf = 100;//config("site.soundcoinTomoney");
 
-             $exchangeMoney = round(($sound_coin * ($conf / 100)) / 100, 2);
 
-             if ($exchangeMoney < 0.01) $this->error(__('声币兑换数量太小啦!'));
 
-         } else {
 
-             // 获取兑换配置信息
 
-             $exchangeModel = new \app\common\model\ExchangeConfig();
 
-             $exchangeInfo = $exchangeModel->get($exchange_id);
 
-             if (!$exchangeInfo) $this->error("配置信息未找到");
 
-             $exchangeMoney = $exchangeInfo["money"] / 100;
 
-             $scoin = $exchangeInfo["sound_coin"];
 
-         }
 
-         Db::startTrans();
 
-         try {
 
-             // 查询声币余额
 
-             $userModel = new \app\common\model\User();
 
-             $userInfo = $userModel->lock('lock in share mode')->find($this->auth->id);
 
-             if ($scoin > $userInfo["sound_coin"]) {
 
-                 $this->error("声币余额不足!", [], 100);
 
-             }
 
-             $moneylogModel = new \app\common\model\UserMoneyLog();
 
-             $soundlogModel = new \app\common\model\UserSoundcoinLog();
 
-             $exchangelogModel = new \app\common\model\UserExchangeLog();
 
-             $detail = "声币兑换余额";
 
-             // 添加资金流水记录
 
-             $res1 = $moneylogModel->addRecord($this->auth->id, $exchangeMoney, "+", $userInfo["money"], $detail);
 
-             // 添加兑换记录
 
-             $res2 = $exchangelogModel->addExchangeLog($this->auth->id, $scoin, $exchangeMoney);
 
-             // 添加声币流水记录
 
-             $res3 = $soundlogModel->addUserSoundcoinLog($this->auth->id, $scoin, "-", $userInfo["sound_coin"], $detail, 3, $res2);
 
-             // 减去用户声币余额
 
-             $res4 = $userModel->where(["id" => $this->auth->id])->setDec("sound_coin", $scoin);
 
-             // 增加用户资金余额
 
-             $res5 = $userModel->where(["id" => $this->auth->id])->setInc("money", $exchangeMoney);
 
-             if ($res1 && $res2 && $res3 && $res4 && $res5) {
 
-                 Db::commit();
 
-                 $this->success("兑换成功!");
 
-             } else {
 
-                 $this->error("操作失败!");
 
-             }
 
-         } 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());
 
-         }
 
-     }
 
-     /**
 
-      * 余额兑换钻石
 
-      */
 
-     public function jewelExchange()
 
-     {
 
-         Db::startTrans();
 
-         try {
 
-             // 接口防并发
 
-             if (!$this->apiLimit(1, 1000)) {
 
-                 throw new Exception(__('Operation frequently'));
 
-             }
 
-             $exchange_id = $this->request->request("exchange_id");// 兑换声币配置ID
 
-             $money = $this->request->request("money");// 输入具体声币数量
 
-             if (!$money && !$exchange_id) {
 
-                 throw new Exception(__('Invalid parameters'));
 
-             }
 
-             if ($money && $money < 1) {
 
-                 throw new Exception('兑换金额异常');
 
-             }
 
-             if ($money > 0) {
 
-                 $exchangeMoney = $money;
 
-                 // 获取配置信息
 
-                 $conf = config("site.money_to_jewel");
 
-                 $scoin = $money * $conf;
 
-             } else {
 
-                 // 获取兑换配置信息
 
-                 $exchangeModel = new \app\common\model\ExchmoneyConfig();
 
-                 $exchangeInfo = $exchangeModel->get($exchange_id);
 
-                 if (!$exchangeInfo) throw new Exception("配置信息未找到");
 
-                 $exchangeMoney = $exchangeInfo["money"] / 100;
 
-                 $scoin = $exchangeInfo["jewel"];
 
-             }
 
-             $userId = $this->auth->id;
 
-             // 查询余额
 
-             $userModel = new \app\common\model\User();
 
-             $userInfo = $userModel->lock('lock in share mode')->find($userId);
 
-             if ($exchangeMoney > $userInfo["money"]) {
 
-                 throw new Exception("余额不足!");
 
-             }
 
-             $moneylogModel = new \app\common\model\UserMoneyLog();
 
-             $jewellogModel = new \app\common\model\UserJewelLog();
 
-             $exchangelogModel = new \app\common\model\UserExchangeLog();
 
-             $detail = "余额兑换钻石";
 
-             // 添加资金流水记录
 
-             $res1 = $moneylogModel->addRecord($userId, $exchangeMoney, "-", $userInfo["money"], $detail,14);
 
-             // 添加兑换记录
 
-             $res2 = $exchangelogModel->addExchangeLog($userId, $scoin, $exchangeMoney);
 
-             // 添加钻石流水记录
 
-             $res3 = $jewellogModel->addUserJewelLog($userId, $scoin, "+", $userInfo["jewel"], $detail, 14);
 
-             // 减去用户余额
 
-             $res4 = $userModel->where(["id" => $userId])->setDec("money", $exchangeMoney);
 
-             // 增加用户钻石余额
 
-             $res5 = $userModel->where(["id" => $userId])->setInc("jewel", $scoin);
 
-             if ($res1 && $res2 && $res3 && $res4 && $res5) {
 
-                 Db::commit();
 
-                 $this->success("兑换成功!");
 
-             } else {
 
-                 $this->error("操作失败!");
 
-             }
 
-         } 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());
 
-         }
 
-     }
 
- //    /**
 
- //     * 兑换
 
- //     */
 
- //    public function exchange() {
 
- //        $exchange_id = $this->request->request("exchange_id");// 兑换钻石配置ID
 
- //        if(!$exchange_id) {
 
- //            $this->error(__('Invalid parameters'));
 
- //        }
 
- //
 
- //        // 获取兑换配置信息
 
- //        $exchangeModel = new \app\common\model\ExchangeConfig();
 
- //        $exchangeInfo = $exchangeModel->get($exchange_id);
 
- //        if(!$exchangeInfo) $this->error("配置信息未找到");
 
- //        $exchangeMoney = $exchangeInfo["money"]/100;
 
- //        // 查询钻石余额
 
- //        $userModel = new \app\common\model\User();
 
- //        $userInfo = $userModel->get($this->auth->id);
 
- //        if($exchangeInfo["jewel"] > $userInfo["jewel"]) {
 
- //            $this->error("钻石余额不足!",[],100);
 
- //        }
 
- //
 
- //        Db::startTrans();
 
- //        try{
 
- //            $moneylogModel = new \app\common\model\UserMoneyLog();
 
- //            $jewellogModel = new \app\common\model\UserJewelLog();
 
- //            $exchangelogModel = new \app\common\model\UserExchangeLog();
 
- //            $detail = "兑换";
 
- //            // 添加资金流水记录
 
- //            $res1 = $moneylogModel->addRecord($this->auth->id,$exchangeMoney,"-",$userInfo["money"],$detail);
 
- //            // 添加钻石流水记录
 
- //            $res2 = $jewellogModel->addUserJewelLog($this->auth->id,$exchangeMoney,"+",$userInfo["money"],$detail);
 
- //            // 添加兑换记录
 
- //            $res3 = $exchangelogModel->addExchangeLog($this->auth->id,$exchangeInfo["jewel"],$exchangeMoney);
 
- //            // 减去用户钻石余额
 
- //            $res4 = $userModel->where(["id"=>$this->auth->id])->setDec("jewel",$exchangeInfo["jewel"]);
 
- //            // 增加用户资金余额
 
- //            $res5 = $userModel->where(["id"=>$this->auth->id])->setInc("money",$exchangeMoney);
 
- //            if($res1 && $res2 && $res3 && $res4  && $res5) {
 
- //                Db::commit();
 
- //                $this->success("兑换成功!");
 
- //            } else {
 
- //                $this->error("操作失败!");
 
- //            }
 
- //        }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());
 
- //        }
 
- //    }
 
-     /**
 
-      * 提现
 
-      */
 
-     public function withdrow()
 
-     {
 
-         $money = $this->request->request("money");// 申请提现的金额
 
-         if ($money <= 0) {
 
-             $this->error(__('提现金额不合法'));
 
-         }
 
-         // 判断当前用户是否实名认证
 
-         $userAuthInfo = \app\common\model\UserAuth::where(["user_id" => $this->auth->id])->find();
 
-         if ($userAuthInfo) {
 
-             if ($userAuthInfo->status == 0) {
 
-                 $this->error("您的实名认证还在这审核中...,请耐心等待!");
 
-             } elseif ($userAuthInfo->status == 2) {
 
-                 $this->error("您的实名认证审核未通过,请重新审核!");
 
-             }
 
-         } else {
 
-             $this->error("请先申请实名认证!");
 
-         }
 
-         // 查询资金余额
 
-         $userModel = new \app\common\model\User();
 
-         $userInfo = $userModel->get($this->auth->id);
 
-         if ($money > $userInfo["money"]) {
 
-             $this->error("资金余额不足!", [], 100);
 
-         }
 
-         Db::startTrans();
 
-         try {
 
-             $withdrawallogModel = new \app\common\model\UserWithdrawalLog();
 
-             // 减去用户可用资金余额
 
-             $res1 = $userModel->where(["id" => $this->auth->id])->setDec("money", $money);
 
-             // 增加用户冻结资金余额
 
-             $res2 = $userModel->where(["id" => $this->auth->id])->setInc("frozen", $money);
 
-             // 新增用户提现记录申请
 
-             $data = [];
 
-             $data["user_id"] = $this->auth->id;
 
-             $data["money"] = $money * 100;
 
-             $data["status"] = 0; // 提现状态:-1=审核拒绝,0=待审核,1=审核通过
 
-             $data["createtime"] = time();
 
-             $res3 = $withdrawallogModel->insert($data);
 
-             if ($res1 && $res2 && $res3) {
 
-                 Db::commit();
 
-                 $this->success("提现申请发送成功!");
 
-             } else {
 
-                 $this->error("操作失败!");
 
-             }
 
-         } 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());
 
-         }
 
-     }
 
-     /**
 
-      * 获取充值金额配置信息
 
-      */
 
-     public function getRecharConfig()
 
-     {
 
-         $params_from = $this->request->request("params_from",'');// 平台参数
 
-         $where = [];
 
-         if($params_from == 'ios'){
 
-             //$where['money'] = ['<=', 3000];
 
-         }
 
-         $list = \app\common\model\RecharConfig::where($where)->order("weight", "asc")->select();
 
-         if (!$list) $this->error("配置信息为空!");
 
-         foreach ($list as $k => $v) {
 
-             $money = $v["money"] / 100;
 
-             $list[$k]["money"] = $money;
 
-             $list[$k]["desId"] = "banshengvoice" . $money;
 
-             if ($params_from != "ios") $list[$k]["jewel"] = $v["jewel_full"];
 
-             $list[$k]['ratio'] = $list[$k]["jewel"] / $money;
 
-             unset($list[$k]["jewel_full"]);
 
-         }
 
-         $this->success("获取成功!", $list);
 
-     }
 
-     /**
 
-      * 获取声币兑换余额配置信息
 
-      */
 
-     public function getExchangeConfig()
 
-     {
 
-         $list = \app\common\model\ExchangeConfig::field("id,sound_coin,money,updatetime,createtime")->select();
 
-         if (!$list) $this->error("配置信息为空!");
 
-         foreach ($list as $k => $v) $list[$k]["money"] = $v["money"] / 100;
 
-         $this->success("获取成功!", $list);
 
-     }
 
-     /**
 
-      * 获取钻石兑换余额配置信息
 
-      */
 
-     public function getExchmoneyConfig()
 
-     {
 
-         $list = \app\common\model\ExchmoneyConfig::field("id,jewel,money")->select();
 
-         if (!$list) $this->error("配置信息为空!");
 
-         foreach ($list as $k => $v) {
 
-             $list[$k]["id"] = (int)$v["id"];
 
-             $list[$k]["jewel"] = (int)$v["jewel"];
 
-             $list[$k]["money"] = $v["money"] / 100;
 
-         }
 
-         //设置是否使用自定义
 
-         $rechargeDefine = config('site.exchange_define');
 
-         if ($rechargeDefine == 1) {
 
-             $fieldArr = [[
 
-                 'id' => -1,
 
-                 'jewel' => 0,
 
-                 'money' => 0.00,
 
-             ],];
 
-             $list = array_merge($list,$fieldArr);
 
-         }
 
-         $this->success("获取成功!", $list);
 
-     }
 
-     /**
 
-      * 获取声币兑换钻石配置信息
 
-      */
 
-     public function getExchsoundConfig()
 
-     {
 
-         $list = \app\common\model\ExchsoundConfig::field("id,sound_coin,jewel,updatetime,createtime")->select();
 
-         if (!$list) $this->error("配置信息为空!");
 
-         $this->success("获取成功!", $list);
 
-     }
 
-     /**
 
-      * 获取用户充值记录
 
-      */
 
-     public function rechargeRecord()
 
-     {
 
-         $page = $this->request->request('page', 1); // 分页
 
-         $pageNum = $this->request->request('pageNum', 10); // 分页
 
-         // 分页搜索构建
 
-         $pageStart = ($page - 1) * $pageNum;
 
-         $res = \app\common\model\UserRechargeLog::where(["user_id" => $this->auth->id])->limit($pageStart, $pageNum)->order("createtime", "desc")->select();
 
-         if ($res): foreach ($res as $k => &$v) $v["createtime"] = date("Y-m-d H:i:s", $v["createtime"]);endif;
 
-         $this->success("获取成功!", $res);
 
-     }
 
-     /**
 
-      * 获取用户兑换记录
 
-      */
 
-     public function exchangeRecord()
 
-     {
 
-         $page = $this->request->request('page', 1); // 分页
 
-         $pageNum = $this->request->request('pageNum', 10); // 分页
 
-         // 分页搜索构建
 
-         $pageStart = ($page - 1) * $pageNum;
 
-         $res = \app\common\model\UserExchangeLog::field("*,sound_coin as jewel")->where(["user_id" => $this->auth->id])->limit($pageStart, $pageNum)->order("createtime", "desc")->select();
 
-         if ($res): foreach ($res as $k => &$v) $v["createtime"] = date("Y-m-d H:i:s", $v["createtime"]);endif;
 
-         $this->success("获取成功!", $res);
 
-     }
 
-     /**
 
-      * 获取用户声币兑换钻石记录
 
-      */
 
-     public function exchsoundRecord()
 
-     {
 
-         $page = $this->request->request('page', 1); // 分页
 
-         $pageNum = $this->request->request('pageNum', 10); // 分页
 
-         // 分页搜索构建
 
-         $pageStart = ($page - 1) * $pageNum;
 
-         $res = \app\common\model\UserExchsoundLog::where(["user_id" => $this->auth->id])->limit($pageStart, $pageNum)->order("createtime", "desc")->select();
 
-         if ($res): foreach ($res as $k => &$v) $v["createtime"] = date("Y-m-d H:i:s", $v["createtime"]);endif;
 
-         $this->success("获取成功!", $res);
 
-     }
 
-     /**
 
-      * 获取用户提现记录
 
-      */
 
-     public function withdrowRecord()
 
-     {
 
-         $page = $this->request->request('page', 1); // 分页
 
-         $pageNum = $this->request->request('pageNum', 10); // 分页
 
-         // 分页搜索构建
 
-         $pageStart = ($page - 1) * $pageNum;
 
-         $res = \app\common\model\UserWithdrawalLog::where(["user_id" => $this->auth->id])->limit($pageStart, $pageNum)->order("createtime", "desc")->select();
 
-         if ($res) {
 
-             $statusTxt = array("-1" => "审核拒绝", "0" => "待审核", "1" => "审核通过");
 
-             foreach ($res as $k => &$v) {
 
-                 $v["status"] = $statusTxt[$v["status"]];
 
-                 $v["money"] = $v["money"] > 0 ? $v["money"] / 100 : 0;
 
-                 $v["createtime"] = date("Y-m-d H:i:s", $v["createtime"]);
 
-             }
 
-         }
 
-         $this->success("获取成功!", $res);
 
-     }
 
-     /**
 
-      * 获取返利列表
 
-      */
 
-     public function getRebateList()
 
-     {
 
-         $pretype = $this->request->request('pretype', 0); // 下属类型:1=直属,2=下属
 
-         if (!in_array($pretype, [0, 1, 2])) $this->error("参数错误!");
 
-         $page = $this->request->request('page', 1); // 分页
 
-         $pageNum = $this->request->request('pageNum', 10); // 分页
 
-         // 分页搜索构建
 
-         $pageStart = ($page - 1) * $pageNum;
 
-         $where = [];
 
-         $where["a.user_id"] = $this->auth->id;
 
-         $pretype && $where["a.rebate_type"] = $pretype;
 
-         $where["a.is_rebate"] = 1;
 
-         $list = \app\common\model\RebateLog::alias("a")
 
-             ->field("a.*,u.nickname")
 
-             ->join("hx_user u", "u.id = a.by_user_id")
 
-             ->limit($pageStart, $pageNum)
 
-             ->order("createtime", "desc")
 
-             ->where($where)->select();
 
-         if ($list) foreach ($list as $k => &$v) {
 
-             $v["createtime"] = date("Y-m-d H:i:s", $v["createtime"]);
 
-             $v["nickname"] = mb_substr($v["nickname"], 0, 1, "utf-8") . "***";
 
-         }
 
-         $this->success("获取成功!", $list);
 
-     }
 
-     /**
 
-      * 获取剩余返利总额
 
-      */
 
-     public function getRebateMoney()
 
-     {
 
-         $this->success("获取成功!", \app\common\model\User::where(["id" => $this->auth->id])->value("rebate_money"));
 
-     }
 
-     /**
 
-      * 获取返利统计
 
-      */
 
-     public function getRebateCount()
 
-     {
 
-         // 直属推荐收益
 
-         $where = [];
 
-         $where["user_id"] = $this->auth->id;
 
-         $where["rebate_type"] = 1;
 
-         $preRebate = \app\common\model\RebateLog::where($where)->sum("rebate_money");
 
-         // 下属推荐收益
 
-         $where = [];
 
-         $where["user_id"] = $this->auth->id;
 
-         $where["rebate_type"] = 2;
 
-         $prepreRebate = \app\common\model\RebateLog::where($where)->sum("rebate_money");
 
-         // 上周收益总计
 
-         $preweek = $this->firstOfWeek(date("Y-m-d H:i:s",bcsub(time(),604800)));
 
-         $starttime = strtotime($preweek." 00:00:00"); // 上周一时间
 
-         $endtime = bcadd($starttime,604800); // 上周天时间
 
-         $where = [];
 
-         $where["user_id"] = $this->auth->id;
 
-         $where["createtime"] = ["between", "$starttime,$endtime"];
 
-         $weekRebate = \app\common\model\RebateLog::where($where)->sum("rebate_money");
 
-         // 历史收益总计
 
-         $where = [];
 
-         $where["user_id"] = $this->auth->id;
 
-         $where["createtime"] = ["lt", $starttime];
 
-         $allRebate = \app\common\model\RebateLog::where($where)->sum("rebate_money");
 
-         $res = [];
 
-         $res["preRebate"] = number_format($preRebate, 2);
 
-         $res["prepreRebate"] = number_format($prepreRebate, 2);
 
-         $res["weekRebate"] = number_format($weekRebate, 2);
 
-         $res["allRebate"] = number_format($allRebate, 2);
 
-         $this->success("获取成功!", $res);
 
-     }
 
-     /**
 
-      * 返利提现
 
-      */
 
-     public function rebateWithdraw()
 
-     {
 
-         $money = $this->request->request('money'); // 提现金额
 
-         if (!$money) $this->error("参数缺失!");
 
-         if ($money > 50000) $this->error("单笔上限50000元哦,超过50000元请联系客服处理!");
 
-         if ($money % 10 > 0) $this->error("提现金额必须为10的倍数!");
 
-         $user_id = $this->auth->id;
 
-         // 获取用户返利金额
 
-         $rebateMoney = \app\common\model\User::where(['id' => $user_id])->value("rebate_money");
 
-         if ($rebateMoney <= 100) $this->error("返利金额需要大于100元才能提现哦!");
 
-         $rdsMoney = bcsub($rebateMoney, $money);
 
-         if ($rdsMoney < 0) {
 
-             $this->error("余额不足,不能提现!", null, 100);
 
-         }
 
-         // 可以提现
 
-         Db::startTrans();
 
-         try {
 
-             $data = [];
 
-             $data["user_id"] = $user_id;
 
-             $data["money"] = $money;
 
-             $data["before"] = $rebateMoney;
 
-             $data["after"] = $rdsMoney;
 
-             $data["status"] = 1;
 
-             $data["createtime"] = time();
 
-             $res1 = \app\common\model\RebateWithdraw::insert($data);
 
-             $res2 = \app\common\model\User::update(["rebate_money" => $rdsMoney], ["id" => $user_id]);
 
-             if ($res1 && $res2) {
 
-                 Db::commit();
 
-                 $this->success("提现成功!");
 
-             } else {
 
-                 $this->error("网络繁忙,请稍后重试!");
 
-             }
 
-         } 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());
 
-         }
 
-     }
 
-     /**
 
-      * 提现余额记录验证
 
-      */
 
-     public function withdrawVerify($user_id)
 
-     {
 
-         if (!$user_id) return false;
 
-         // 统计用户所有兑换记录和提现记录 是否与余额匹配
 
-         $moneylog = \app\common\model\UserMoneyLog::where(["user_id" => $user_id, "mode" => "+"])->sum('value');
 
-         $withdraw = \app\common\model\UserWithdrawalLog::where(["user_id" => $user_id, "status" => ["in", [0, 1]]])->sum("money");
 
-         $withdraw = bcdiv($withdraw, 100,2);
 
-         $sum = bcsub($moneylog, $withdraw,2);
 
-         $usermoney = \app\common\model\User::where(["id" => $user_id])->value("money");
 
-         if ($usermoney == $sum) {
 
-             return true;
 
-         } else {
 
-             return false;
 
-         }
 
-     }
 
-     /**
 
-      * 获取声币记录
 
-      */
 
-     public function getMySoundCoinRecord()
 
-     {
 
-         $type = $this->request->request('type', 1); // 类型
 
-         $page = $this->request->request('page', 1); // 分页
 
-         $pageNum = $this->request->request('pageNum', 10); // 分页
 
-         // 分页搜索构建
 
-         $pageStart = ($page - 1) * $pageNum;
 
-         $where = [];
 
-         $where["user_id"] = $this->auth->id;
 
-         $where["obj_id"] = ['>', 0];
 
-         if ($type == 1) { //收益记录
 
-             $where["type"] = 1;
 
-         } else {// 提现记录,后台调整划到提现记录
 
-             $where["type"] = ['in', '2,3,10000'];
 
-         }
 
-         $res = \app\common\model\UserSoundcoinLog::field('id,type,obj_id,value,mode,detail,createtime')->where($where)->limit($pageStart, $pageNum)->order("createtime", "desc")->select();
 
-         if ($res) {
 
-             foreach ($res as $k => &$v) {
 
-                 $subject = $v['detail'];
 
-                 if ($v['type'] == 1) {
 
-                     // 查询礼物赠送记录
 
-                     $giftInfo = GiftUserParty::alias('a')->join('user u', 'a.user_id = u.id')->where('a.id', $v['obj_id'])->field('user_id,nickname,gift_id,gift_name,number')->find();
 
-                     $subject = $giftInfo['nickname'] . '送你';
 
-                     $subject_notes = "{$giftInfo['gift_name']} * {$giftInfo['number']}";
 
-                 } elseif ($v['type'] == 2) {
 
-                     // 查询礼物赠送记录
 
-                     $jewel = UserExchsoundLog::where('id', $v['obj_id'])->value('jewel');
 
-                     $subject_notes = "已兑换{$jewel}砖石";
 
-                 } elseif ($v['type'] == 3) {
 
-                     // 查询礼物赠送记录
 
-                     $money = UserExchangeLog::where('id', $v['obj_id'])->value('money');
 
-                     $subject_notes = "已兑换{$money}余额";
 
-                 } elseif ($v['type'] == 5 || $v['type'] == 10000) {
 
-                     $modeText = $v['mode'] == '+' ? '调增' : '调减';
 
-                     $subject_notes = "已{$modeText}{$v['value']}声币";
 
-                 }
 
-                 $v['subject'] = $subject;
 
-                 $v['subject_notes'] = $subject_notes;
 
-                 $v["createtime"] = date("m月d日 H时i分", $v["createtime"]);
 
-             }
 
-         }
 
-         $this->success("获取成功!", $res);
 
-     }
 
-     /**
 
-      * 获取收益
 
-      * @return void
 
-      */
 
-     public function getMySoundCoinRecordNew()
 
-     {
 
-         try {
 
-             $userId = $this->auth->id;
 
-             $field = 'id,type,detail,mode,value,createtime';
 
-             $where['user_id'] = $userId;
 
-             $where['mode'] = '+';
 
-             //$where['type'] = [101,102,103,105,106];//101=>'获赠礼物',102=>'房间礼物抽成',103=>'邀请推广',105=>'申请提现驳回',106=>'接单收益',
 
-             $result = model('UserMoneyLog')->field($field)->where($where)->autopage()->order('createtime desc')->select();
 
-             if (!empty($result)) {
 
-                 $logType = config('wallet.logtype');
 
-                 foreach ($result as $key => &$value) {
 
-                     $value['type_text'] = isset($logType[$value['type']]) ? $logType[$value['type']] : '';
 
-                     $value['createtime'] = !empty($value['createtime']) ? date('Y-m-d H:i',$value['createtime']) : '';
 
-                 }
 
-             }
 
-             $this->success('获取成功',$result);
 
-         } catch (Exception $e) {
 
-             $this->error($e->getMessage());
 
-         }
 
-     }
 
-     /**
 
-      * 内购参数验证
 
-      */
 
-     public function applebuy()
 
-     {
 
-         $receiptdata = $this->request->request('receiptdata'); // 验证参数
 
-         $rechar_id = $this->request->request("rechar_id");// 充值金额配置ID
 
-         if (!$receiptdata || !$rechar_id) $this->error("参数缺失!");
 
-         // 获取密钥配置
 
-         $configInfo = config("applebuy_url");
 
-         $applebuy = new applebuy($configInfo);
 
-         $ret = $applebuy->toSendVeify($receiptdata);
 
-         if (!$ret || !isset($ret["status"])) $this->error("网络请求失败,请稍后重试!");
 
-         if ($ret["status"] != 0) $this->error("支付验证失败!");
 
- //        print_r($ret);exit;
 
-         $user_id = $this->auth->id;
 
-         // 获取充值金额配置信息
 
-         $recharMode = new \app\common\model\RecharConfig();
 
-         $recharInfo = $recharMode->where(["id" => $rechar_id])->find();
 
-         if (!$recharInfo) $this->error("金额配置信息未找到!");
 
-         $amount = $recharInfo["money"] / 100;
 
-         $retkey = end($ret["receipt"]["in_app"]);
 
-         if ($retkey["product_id"] != "banshengvoice" . $amount) $this->error("支付验证失败!");
 
-         if (!$amount || $amount < 0) {
 
-             $this->error("支付金额必须大于0");
 
-         }
 
-         if($amount > 30){
 
-             $this->error("充值维护中");
 
-         }
 
-         $time = time();
 
-         $money = (float)bcadd($amount, 0, 2);
 
-         $recharOrderMode = new \app\common\model\RecharOrder();
 
-         $resrepeatid = $retkey["transaction_id"];
 
-         // 查询订单是否重复
 
-         $repeatOrderId = $recharOrderMode->where(["transaction_id" => $resrepeatid])->value("id");
 
-         if ($repeatOrderId > 0) $this->error("请勿重复操作!");
 
-         // 生成订单
 
-         $out_trade_no = date("YmdHis") . rand(100000, 999999);
 
-         $orderid = $recharOrderMode->execute("INSERT INTO `hx_rechar_order` (`user_id` , `order_no` , `money` , `jewel` , `transaction_id`, `createtime`) VALUES ($user_id , $out_trade_no , $money , " . $recharInfo['jewel'] . ", $resrepeatid, $time)");
 
-         if (!$orderid) $this->error("订单创建失败!");
 
-         // 添加充值记录等
 
-         $dores = $this->applePayNotify($out_trade_no, $money);
 
-         if (!$dores) $this->error("状态更新失败,请联系客服!");
 
-         // 首充赠送
 
-         $userInfo = \app\common\model\User::get($user_id);
 
-         if ($userInfo->is_recharge == 0) { // 首充
 
-             Db::startTrans();
 
-             try {
 
-                 // 赠送消息尾灯
 
-                 $res1 = \app\common\model\AttireBack::addToMyBack(15, $user_id);
 
-                 $userInfo->is_recharge = 1;
 
-                 $res2 = $userInfo->save();
 
-                 if ($res1 && $res2) Db::commit();
 
-             } catch (ValidateException $e) {
 
-                 Db::rollback();
 
-                 $this->error($e->getMessage());
 
-             }
 
-         }
 
-         //$this->rebate($user_id, $amount);
 
-         // +EXP
 
-         \app\common\model\TaskLog::tofinish($user_id, "5EMwg7la", 1);
 
-         // 查询今日充值记录
 
-         $today = strtotime(date("Y-m-d 00:00:00"));
 
-         $rechargeMoney = \app\common\model\RecharOrder::where(["user_id" => $user_id, "createtime" => ["gt", $today]])->sum("money");
 
-         if ($rechargeMoney >= 100) {
 
-             // +EXP
 
-             \app\common\model\TaskLog::tofinish($user_id, "DaCVgOLu", 1);
 
-         }
 
-         // 查询新人礼包
 
-         //$this->addBagGift($user_id, $amount);
 
-         $this->success("购买成功!");
 
-     }
 
-     /**
 
-      * 内购逻辑
 
-      */
 
-     private function applePayNotify($out_trade_no, $payamount)
 
-     {
 
-         Db::startTrans();
 
-         try {
 
-             $orderModel = new \app\common\model\RecharOrder();
 
-             $userModel = new \app\common\model\User();
 
-             $jewellogModel = new \app\common\model\UserJewelLog();
 
-             $rechargelogModel = new \app\common\model\UserRechargeLog();
 
-             $orderInfo = $orderModel->where(["order_no" => $out_trade_no])->find();
 
-             $userInfo = $userModel->where(["id" => $orderInfo["user_id"]])->find();
 
-             // 修改订单状态
 
-             $res1 = $orderModel->update(["status" => 1, 'platform' => 2], ["order_no" => $out_trade_no]);
 
-             // 修改用户钻石余额
 
-             $res2 = $userModel->where(["id" => $orderInfo["user_id"]])->setInc("jewel", $orderInfo["jewel"]);
 
-             // 添加钻石流水记录
 
-             $detail = "充值";
 
-             $res3 = $jewellogModel->addUserJewelLog($userInfo["id"], $orderInfo["jewel"], "+", $userInfo["jewel"], $detail, 1);
 
-             $rechargeCount = $rechargelogModel->where('user_id',$orderInfo["user_id"])->count();
 
-             $isFirstRecharge = $rechargeCount > 0 ? 0 : 1;
 
-             // 添加充值记录
 
-             $res4 = $rechargelogModel->addRecord($userInfo["id"], $orderInfo["jewel"], $payamount, bcadd($userInfo["jewel"], $orderInfo["jewel"], 2), $userInfo["money"], 2, 4, $isFirstRecharge, $userInfo["pre_userid"]);
 
-             if ($res1 && $res2 && $res3 && $res4) {
 
-                 // 添加统计
 
-                 $time = time();
 
-                 (new \app\common\model\User)->execute("update hx_user set chargecount = chargecount + $payamount,chargetime = $time where id = " . $userInfo["id"]);
 
-                 Db::commit();
 
-                 return true;
 
-             }
 
-         } catch (ValidateException $e) {
 
-             Db::rollback();
 
-             return false;
 
-         } catch (PDOException $e) {
 
-             Db::rollback();
 
-             return false;
 
-         } catch (Exception $e) {
 
-             Db::rollback();
 
-             return false;
 
-         }
 
-     }
 
-     /**
 
-      * 获取我的推荐列表
 
-      */
 
-     public function getMyUsers() {
 
-         $thispage = $this->request->request('thispage',1); // 当前页
 
-         $pageNum = $this->request->request('pageNum', 10); // 分页
 
-         $page = [];
 
-         $page["page"] = $thispage;
 
-         $page["list_rows"] = $pageNum;
 
-         $user_id = $this->auth->id;
 
-         $userList = \app\common\model\User::field("id,nickname,u_id,bindtime")->where(["pre_userid"=>$user_id])->paginate($page);
 
-         if($userList) foreach($userList as $k => $v) $userList[$k]["bindtime"] = date("Y-m-d H:i:s",$v["bindtime"]);
 
-         $this->success("获取成功!",$userList);
 
-     }
 
-     /**
 
-      * 获取下级/下下级充值记录
 
-      */
 
-     public function getRechargeLog() {
 
-         $user_type = $this->request->request('user_type'); // 类型:1=直属,2=下属
 
-         $thispage = $this->request->request('thispage',1); // 当前页
 
-         $user_id = $this->auth->id;
 
-         $users = \app\common\model\User::where(["pre_userid"=>$user_id])->column("id");
 
-         if(!$users) $this->success("获取成功!",$users);
 
-         $ids = $users;
 
-         // 下下级
 
-         if($user_type == 2) {
 
-             $usersusers = [];
 
-             foreach($users as $v) {
 
-                 $user_id = $v;
 
-                 $userspre = \app\common\model\User::where(["pre_userid"=>$user_id])->column("id");
 
-                 if(!$userspre) continue;
 
-                 foreach($userspre as $n) {
 
-                     $usersusers[] = $n;
 
-                 }
 
-             }
 
-             $ids = $usersusers;
 
-         }
 
-         // 上个周一
 
-         $preweek = $this->firstOfWeek(date("Y-m-d H:i:s",bcsub(time(),604800)));
 
-         $starttime = strtotime($preweek." 00:00:00"); // 上周时间
 
-         $page = [];
 
-         $page["page"] = $thispage;
 
-         $page["list_rows"] = 10;
 
-         $where = [];
 
-         $where["a.user_id"] = ["in",$ids];
 
-         $where["a.createtime"] = ["gt",$starttime];
 
-         // 获取充值记录
 
-         $rechargeList = \app\common\model\UserRechargeLog::alias("a")
 
-             ->field("a.id,a.user_id,u.nickname,u.bindtime,a.createtime,a.money")
 
-             ->join("hx_user u","u.id = a.user_id")
 
-             ->where($where)
 
-             ->order("a.createtime","desc")
 
-             ->paginate($page);
 
-         if($rechargeList) foreach($rechargeList as $k => $v) {
 
-             if($v["createtime"] < $v["bindtime"]) {
 
-                 unset($rechargeList[$k]);
 
-                 continue;
 
-             }
 
-             $rechargeList[$k]["createtime"] = date("Y-m-d H:i:s",$v["createtime"]);
 
-             $rechargeList[$k]["nickname"] = mb_substr($v["nickname"], 0, 1, "utf-8") . "***";
 
-         }
 
-         $this->success("获取成功!",$rechargeList);
 
-     }
 
-     /**
 
-      * 获取上周收益
 
-      */
 
-     public function getLastweekProfit() {
 
-         $user_id = $this->auth->id;
 
-         $result = [];
 
-         // 上个周一
 
-         $preweek = $this->firstOfWeek(date("Y-m-d H:i:s",bcsub(time(),604800)));
 
-         $starttime = strtotime($preweek." 00:00:00"); // 上周一时间
 
-         $endtime = bcadd($starttime,604800); // 上周天时间
 
-         // 直属收益
 
-         $where = [];
 
-         $where["user_id"] = $user_id;
 
-         $where["is_rebate"] = 1;
 
-         $where["rebate_type"] = 1;
 
-         $where["createtime"] = ["between",[$starttime,$endtime]];
 
-         $rebate_rate = \app\common\model\RebateLog::where($where)->value("rebate_rate");
 
-         $rebate_rate = bcmul($rebate_rate,100,2);
 
-         $result["pre"]["money"] = \app\common\model\RebateLog::where($where)->sum("money");
 
-         $result["pre"]["rate"] = (float)$rebate_rate;
 
-         $result["pre"]["rebate_money"] = \app\common\model\RebateLog::where($where)->sum("rebate_money");
 
-         // 下属收益
 
-         $where = [];
 
-         $where["user_id"] = $user_id;
 
-         $where["is_rebate"] = 1;
 
-         $where["rebate_type"] = 2;
 
-         $where["createtime"] = ["between",[$starttime,$endtime]];
 
-         $rebate_rate = \app\common\model\RebateLog::where($where)->value("rebate_rate");
 
-         $rebate_rate = bcmul($rebate_rate,100,2);
 
-         $result["prepre"]["money"] = \app\common\model\RebateLog::where($where)->sum("money");
 
-         $result["prepre"]["rate"] = (float)$rebate_rate;
 
-         $result["prepre"]["rebate_money"] = \app\common\model\RebateLog::where($where)->sum("rebate_money");
 
-         // 上周收益总计
 
-         $result['weekRebate'] = (float)bcadd($result["pre"]["rebate_money"],$result["prepre"]["rebate_money"],2);
 
-         $this->success("获取成功!",$result);
 
-     }
 
-     ////////////////////////////////////
 
-     /**
 
-      * 消息-聊天-更多-转账-钻石
 
-      */
 
-     public function givejeweltouser(){
 
-         $money = intval(input('money',0));
 
-         $user_id = input('user_id',0);
 
-         $pay_password = input('paypassword','');
 
-         //验证用户权限是否能转账
 
-         if($this->auth->power->transfer == 1){
 
-             $this->error('您已经被限制消费-转账');
 
-         }
 
-         //不允许给自己转账
 
-         if ($user_id == $this->auth->id) {
 
-             $this->error('不允许给自己转账');
 
-         }
 
-         //验证被转账用户存在
 
-         $check = Db::name('user')->where('id',$user_id)->find();
 
-         if(empty($check)){
 
-             $this->error('不存在的用户');
 
-         }
 
-         //验证操作密码
 
-         if(!$this->auth->pay_password){
 
-             $this->error('请先设置支付密码');
 
-         }
 
-         if ($this->auth->pay_password != $this->getEncryptPassword($pay_password, $this->auth->pay_salt)) {
 
-             $this->error('支付密码有误');
 
-         }
 
-         Db::startTrans();
 
-         //减少和增加余额
 
-         $rs_wallet = model('wallet')->lockChangeAccountRemain($this->auth->id,$money,'-',0,'私聊转账给:'.$check['nickname'],11,'jewel');
 
-         if($rs_wallet['status'] === false){
 
-             Db::rollback();
 
-             $this->error($rs_wallet['msg']);
 
-         }
 
-         $rs_wallet = model('wallet')->lockChangeAccountRemain($user_id,$money,'+',0,$this->auth->nickname.':私聊到账',12,'jewel');
 
-         if($rs_wallet['status'] === false){
 
-             Db::rollback();
 
-             $this->error($rs_wallet['msg']);
 
-         }
 
-         Db::commit();
 
-         $this->success('转账成功');
 
-     }
 
-     /**
 
-      * 获取密码加密后的字符串
 
-      * @param string $password 密码
 
-      * @param string $salt 密码盐
 
-      * @return string
 
-      */
 
-     private function getEncryptPassword($password, $salt = '')
 
-     {
 
-         return md5(md5($password) . $salt);
 
-     }
 
-     /**
 
-      * 提现测试
 
-      * @return void
 
-      */
 
-     public function transfer()
 
-     {
 
-         try {
 
-             $type = 'alipay';
 
-             $out_trade_no = 'withdraw_order_001';
 
-             $title = 'test_withdraw';
 
-             $money = 0.01;
 
-             $method = 'transfer';
 
-             $notifyurl = request()->root(true) . '/api/notify/' . $type . 'notify';
 
-             $returnurl = request()->root(true) . '/addons/epay/index/' . $type . 'return/out_trade_no/' . $out_trade_no;
 
-             $params = [
 
-                 'type'      => $type,
 
-                 'orderid'   => $out_trade_no,
 
-                 'title'     => $title,
 
-                 'amount'    => $money,
 
-                 'method'    => $method,
 
-                 'notifyurl' => $notifyurl,
 
-                 'returnurl' => $returnurl,
 
-             ];
 
-             $result = Service::submitOrder($params);
 
-             echo '<pre>';var_dump($result);exit;
 
-             $this->success('操作成功',$result);
 
-         } catch (Exception $e) {
 
-             $this->error($e->getMessage());
 
-         }
 
-     }
 
-     //提现转账(新版2020-01-01)
 
-     public function withdrawTransfer() {
 
-         $info = [
 
-             'money' => 0.10,
 
-             'alipay_account' => '13651955934',
 
-             'name' => '张效彬',
 
-         ];
 
-         $data['out_biz_no'] = getMillisecond() . mt_rand(1, 1000); //商户订单号
 
-         $data['trans_amount'] = $info['money']; //订单总金额,单位为元,精确到小数点后两位
 
-         $data['product_code'] = 'TRANS_ACCOUNT_NO_PWD';//业务产品码,收发现金红包固定为:STD_RED_PACKET;单笔无密转账到支付宝账户固定为:TRANS_ACCOUNT_NO_PWD;单笔无密转账到银行卡固定为:TRANS_BANKCARD_NO_PWD
 
-         $data['biz_scene'] = 'DIRECT_TRANSFER'; //描述特定的业务场景,可传的参数如下:PERSONAL_COLLECTION:C2C现金红包-领红包;DIRECT_TRANSFER:B2C现金红包、单笔无密转账到支付宝/银行卡
 
-         $data['order_title'] = 'GG语音提现'; //转账业务的标题,用于在支付宝用户的账单里显示
 
-         $data['payee_info']['identity'] = $info['alipay_account'];//收款方支付宝id或支付宝账户
 
-         /*if ($info['alipay_type'] == 1) { //支付宝账户
 
-             $data['payee_info']['identity_type'] = 'ALIPAY_LOGON_ID';
 
-             //收款支付宝账号真实姓名, 不为空时支付宝会验证
 
-             $data['payee_info']['name'] = $info['name'];
 
-         } else { //支付宝id
 
-             $data['payee_info']['identity_type'] = 'ALIPAY_USER_ID';
 
-             $data['payee_info']['name'] = '';
 
-         }*/
 
-         //支付宝id
 
-         $data['payee_info']['identity_type'] = 'ALIPAY_LOGON_ID';
 
-         $data['payee_info']['name'] = $info['name'];
 
-         //转账备注(支持200个英文/100个汉字)。当付款方为企业账户,且转账金额达到(大于等于)50000元,remark不能为空。收款方可见,会展示在收款用户的收支详情中。
 
-         $data['remark'] = 'GG语音提现';
 
-         require_once("../extend/AliPay/AliPay.php");
 
-         $alipay =new \AliPay();
 
-         $result =$alipay->AliPayWithdraw($data);
 
-         return $result;
 
-     }
 
-     /**
 
-      * 获取余额相关比例
 
-      * @return void
 
-      */
 
-     public function moneyConfig()
 
-     {
 
-         try {
 
-             $field = 'name,title,value';
 
-             $where['name'] = ['in', ['money_to_jewel','withdrawRate','sign_gift']];
 
-             $intField = ['money_to_jewel','withdrawRate','sign_gift'];
 
-             $config = Db::name('config')->field($field)->where($where)->select();
 
-             $result = [];
 
-             if (!empty($config)) {
 
-                 foreach ($config as $key => $value) {
 
-                     if (in_array($value['name'],$intField)) {
 
-                         $value['value'] = (int)$value['value'];
 
-                     }
 
-                     $result[$value['name']] = $value;
 
-                 }
 
-             }
 
-             $this->success('获取成功',$result);
 
-         } catch (Exception $e) {
 
-             $this->error($e->getMessage());
 
-         }
 
-     }
 
-     /**
 
-      * 支付超时关闭
 
-      * @return void
 
-      */
 
-     public function recharOrderCancel()
 
-     {
 
-         try {
 
-             $maxTime = 1;
 
-             $createTimeEnd = time() - (60 * $maxTime);
 
-             $where['createtime'] = ['elt',$createTimeEnd];
 
-             $where['status'] = 0;
 
-             $recharOrder = model('RecharOrder')->where($where)->count();
 
-             $recharOrderRes = 0;
 
-             if (!empty($recharOrder)) {
 
-                 $recharOrderRes = model('RecharOrder')->where($where)->update(['status' => -1]);
 
-             }
 
-             $this->success('操作成功',$recharOrderRes);
 
-         } catch (Exception $e) {
 
-             $this->error($e->getMessage());
 
-         }
 
-     }
 
- }
 
 
  |