Przeglądaj źródła

签到删掉无用的

lizhen_gitee 1 rok temu
rodzic
commit
d6dcf67af6
2 zmienionych plików z 4 dodań i 126 usunięć
  1. 0 117
      application/api/controller/Usersign.php
  2. 4 9
      application/extra/site.php

+ 0 - 117
application/api/controller/Usersign.php

@@ -117,124 +117,7 @@ class Usersign extends Api
         $this->success('签到成功',$remark);
     }
 
-    //签到,得礼物与随机钻石
-    public function signin_bak(){
-        Db::startTrans();
-        try {
-            $uid = $this->auth->id;
-            //记录日志
-            $data = [
-                'uid' => $uid,
-                'type' => 1,
-                'times' => 1,
-                'goldnum' => 0,
-                'createtime' => time(),
-            ];
-
-            $yesterday_time = strtotime('yesterday'); //昨天0点时间戳
-            $today_time = $yesterday_time + 86400; //今日0点时间戳
-            //修正当前次数
-            $check = Db::name('user_sign')->where('uid',$uid)->order('id desc')->find();
-            if($check){
-                //今天只能签一次
-                if($check['createtime'] >= $today_time){
-                    throw new Exception('今天已经签过了');
-                }
-                if ($check['createtime'] >= $yesterday_time) {
-                    $data['times'] = $check['times'] + 1; //连续签到次数
-                }
-            }
-
-            /*$signin_id = $data['times'] % 7;
-            if ($signin_id == 0) {
-                $signin_id = 7;
-            }
-
-            //匹配对应金币数
-            $list = Db::name('signin')->order('id asc')->column('id,goldnum');
-            $data['goldnum'] = isset($list[$signin_id]) ? $list[$signin_id] : 0 ;
-            Db::startTrans();
-            //记录日志
-            $log_id = Db::name('user_sign')->insertGetId($data);
-            if(!$log_id){
-                Db::rollback();
-                $this->error('签到失败');
-            }*/
 
-            //加经验
-            /*$userWhere['id'] = $uid;
-            $user = model('User')->where($userWhere)->lock(true)->find();
-            $userNewEmpirical = $user['empirical'] + $data['goldnum'];
-            $userUpdate['empirical'] = $userNewEmpirical;
-            // 获取用户当前经验值对应等级
-            $userconfigModel = new \app\common\model\UserLevelConfig();
-            $where = [];
-            $where["empirical"] = ["elt",$userNewEmpirical];
-            $userexplainstart = $userconfigModel->where($where)->order("empirical","desc")->find();
-            if (!empty($userexplainstart)) {
-                if ($userexplainstart['level'] != $user['level']) {
-                    $userUpdate['level'] = $userexplainstart['level'];
-                }
-            }
-            $res = $user->update($userUpdate,$userWhere);
-            if($res === false){
-                Db::rollback();
-                $this->error('经验更新失败');
-            }*/
-            //第七天赠送礼物
-            $gift = [];
-            $sendGift = config('site.sign_gift');
-            $userSignGift = model('UserSignGift')->with(['gift'])->find();
-            if ($data['times'] == 7 && $sendGift == '1' && !empty($userSignGift)) {
-                $giftData = isset($userSignGift['gift']) ? $userSignGift['gift'] : [];
-                if (!empty($giftData)) {
-                    $gift = [
-                        'image' => $giftData['image'],
-                        'num' => $userSignGift['num'],
-                    ];
-                }
-                $giftName = isset($giftData['name']) ? $giftData['name'] : '';
-                $data['goldnum'] = $gift['num'];
-                $data['type'] = 2;
-                $data['remark'] = '签到奖励'.$giftName.$gift['num'];
-            } else {//随机获取钻石
-                $signJewel = config('site.sign_jewel');
-                $signJewelArr = [];
-                if (!empty($signJewel)) {
-                    $signJewelArr = explode('-', $signJewel);
-                }
-                $min = isset($signJewelArr[0]) ? $signJewelArr[0] : 1;
-                $max = isset($signJewelArr[1]) ? $signJewelArr[1] : 1;
-                $gift['num'] = rand($min,$max);
-                if ($gift['num'] < 1) {
-                    throw new Exception('签到功能已被关闭');
-                }
-                $data['goldnum'] = $gift['num'];
-                $data['remark'] = '签到钻石'.$gift['num'];
-                $rs_wallet = model('wallet')->lockChangeAccountRemain($uid,$gift['num'],'+',0,$data['remark'],16,'jewel');
-                if (!$rs_wallet['status']) {
-                    throw new Exception($rs_wallet['msg']);
-                }
-            }
-            //记录日志
-            $log_id = Db::name('user_sign')->insertGetId($data);
-            if(!$log_id){
-                throw new Exception('签到失败');
-            }
-            //系统消息
-            $msg_id = \app\common\model\Message::addMessage($this->auth->id,'签到奖励','签到成功,获得奖励');
-            $signImg = config('site.sign_img');
-            $result = [
-                'image' => isset($gift['image']) ? $gift['image'] : cdnurl($signImg),
-                'goldnum' => isset($gift['num']) ? $gift['num'] : $data['goldnum'],
-            ];
-            Db::commit();
-            $this->success('签到成功', $result);
-        } catch (Exception $e) {
-            Db::rollback();
-            $this->error($e->getMessage());
-        }
-    }
 
     //第七天赠送vip
     //找出最近七天的次数

+ 4 - 9
application/extra/site.php

@@ -23,11 +23,11 @@ return [
         'dictionary' => 'Dictionary',
         'currency' => '货币比例配置',
         'other' => '其他配置',
-        'sign' => '签到配置',
         'invite' => '邀请配置',
         'androidversion' => '安卓版本更新',
         'iosversion' => 'ios版本更新',
         'indexpipei' => '首页匹配',
+        'takecash' => '提现',
     ],
     'mail_type' => '1',
     'mail_smtp_host' => 'smtp.qq.com',
@@ -39,17 +39,11 @@ return [
     'email' => '',
     'mobile' => '',
     'getempirical' => '1',
-    'withdrawRate' => '95',
     'roomLimit' => '10',
     'domain_name' => 'https://kge.huxiukeji.cn',
     'intro_image' => '/uploads/20230703/35b10db56529aa19086eeb3d1d0bb6b0.png',
-    'sign_gift' => '0',
     'money_to_jewel' => '10',
     'invite_money' => '1',
-    'exchange_define' => '1',
-    'withdraw_define' => '1',
-    'sign_img' => '/uploads/20230714/f02676a5491e5a88141ce9a9a8c20a77.png',
-    'sign_jewel' => '0-0',
     'invite_rule' => '邀请规则:'."\r\n"
         .'1、所有用户都可以参加邀请好友活动'."\r\n"
         .'2、通过自己分享的活动页面地址下载注册成功,'."\r\n"
@@ -57,8 +51,6 @@ return [
     'invite_gift' => '175',
     'invite_gift_num' => '0',
     'un_authentication_max' => '100',
-    'wechat_service_fee' => '0.006',
-    'alipay_service_fee' => '0.006',
     'alipay_switch' => '1',
     'wechat_switch' => '0',
     'recharge_switch' => '1',
@@ -97,4 +89,7 @@ return [
         .'好友产生收益后获得其收益额对应的10%金 币奖励',
     'introsite_introrule' => '1、所有用户都可以参加邀请好友活动'."\r\n"
         .'2、通过自己分享的活动页面地址下载注册成功,即发放注册奖励,若好友充值即奖励充值 金额的10%。',
+    'min_withdrawal_money' => '1',
+    'max_withdrawal_money' => '10000',
+    'withdrawal_plat_bili' => '6',
 ];