|
@@ -3,6 +3,7 @@
|
|
|
namespace app\api\controller;
|
|
|
|
|
|
use app\common\controller\Api;
|
|
|
+use app\common\model\UserTraffic;
|
|
|
use fast\Random;
|
|
|
use think\Queue;
|
|
|
|
|
@@ -37,8 +38,14 @@ class Index extends Api
|
|
|
$ret = $this->auth->login($account, $password);
|
|
|
if ($ret) {
|
|
|
$user = \app\common\model\User::where(['username'=>$account])->find();
|
|
|
- if($user->total_traffic < $user->traffic){
|
|
|
- // 流量已用完
|
|
|
+ $nowTime = time();
|
|
|
+ $usable = UserTraffic::where('uid', $user->id)
|
|
|
+ ->where('is_usable', '1')
|
|
|
+ ->where('start_time', '<', $nowTime)
|
|
|
+ ->where('expired_time', '>', $nowTime)
|
|
|
+ ->find();
|
|
|
+
|
|
|
+ if (!$usable) {
|
|
|
return $this->err();
|
|
|
}
|
|
|
|