|
@@ -5,6 +5,7 @@ namespace app\mobile\logic;
|
|
|
use app\model\AccountModel;
|
|
|
use app\model\AccountTokenModel;
|
|
|
use app\model\CommonModel;
|
|
|
+use app\model\VideoModel;
|
|
|
use think\Exception;
|
|
|
use think\facade\Config;
|
|
|
use think\facade\Db;
|
|
@@ -65,7 +66,7 @@ class AccountLogic extends BaseLogic
|
|
|
}
|
|
|
|
|
|
//登出
|
|
|
- public static function logout(string $token = ''): Json
|
|
|
+ public static function logout(): Json
|
|
|
{
|
|
|
|
|
|
$info = AccountTokenModel::where(['accountid' => self::$aid])->save(['token' => '', 'expiretime' => date('Y-m-d H:i:s')]);
|
|
@@ -87,4 +88,30 @@ class AccountLogic extends BaseLogic
|
|
|
|
|
|
}
|
|
|
|
|
|
+ //视频列表
|
|
|
+ public static function getVideoList(array $data = []): Json
|
|
|
+ {
|
|
|
+ $rs = AccountModel::field('id,video_ids')
|
|
|
+ ->where(['id' => self::$aid, 'is_del' => CommonModel::$del_normal])
|
|
|
+ ->findOrEmpty()
|
|
|
+ ->toArray();
|
|
|
+
|
|
|
+ if (empty($rs)) return json_show(CommonModel::$error_param, '该账户不存在');
|
|
|
+
|
|
|
+ $db = VideoModel::where('is_del', CommonModel::$del_normal)
|
|
|
+ ->whereIn('id', $rs['video_ids']);
|
|
|
+
|
|
|
+ $count = $db->count('id');
|
|
|
+
|
|
|
+ $list = $db
|
|
|
+ ->field('id,video_sn,video_name,video_url,video_img')
|
|
|
+ ->page($data['page'], $data['size'])
|
|
|
+ ->order(['weight' => 'desc', 'id' => 'desc'])
|
|
|
+ ->select()
|
|
|
+ ->toArray();
|
|
|
+
|
|
|
+ return json_show(CommonModel::$success, '获取视频列表成功', ['count' => $count, 'list' => $list]);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
}
|