feat: 添加视频分页/详情接口
This commit is contained in:
@@ -1,12 +1,72 @@
|
||||
<?php
|
||||
declare (strict_types = 1);
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace app\admin\controller\v1;
|
||||
|
||||
use app\admin\model\v1\VideoModel;
|
||||
|
||||
/**
|
||||
* 视频管理控制器
|
||||
*/
|
||||
class Video
|
||||
{
|
||||
|
||||
/**
|
||||
* 视频信息分页数据
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$params = request()->param([
|
||||
'name',
|
||||
'category_id',
|
||||
'page/d' => 1,
|
||||
'size/d' => 10
|
||||
]);
|
||||
|
||||
$videos = VideoModel::field([
|
||||
'id',
|
||||
'image',
|
||||
'name',
|
||||
'category_id',
|
||||
'sort',
|
||||
'recommend',
|
||||
'status',
|
||||
'created_at'
|
||||
])
|
||||
->with(['category' => function ($query) {
|
||||
$query->field(['id', 'name']);
|
||||
}])
|
||||
->withSearch(['name', 'created_at'], [
|
||||
'name' => $params['name'] ?? null,
|
||||
'created_at' => !empty($params['created_at']) ? explode(",", $params['created_at']) : null
|
||||
])
|
||||
->categoryId($params['category_id'] ?? null)
|
||||
->order(['sort' => 'desc', 'id' => 'desc'])
|
||||
->paginate([
|
||||
'list_rows' => $params['size'],
|
||||
'page' => $params['page'],
|
||||
])
|
||||
->hidden(['category', 'category_id']);
|
||||
|
||||
return success('获取成功', $videos);
|
||||
}
|
||||
|
||||
/**
|
||||
* 视频信息详情
|
||||
*/
|
||||
public function read()
|
||||
{
|
||||
$video = VideoModel::withoutField([
|
||||
'created_at',
|
||||
'updated_at',
|
||||
'deleted_at'
|
||||
])
|
||||
->bypk(request()->param('id'))
|
||||
->find();
|
||||
if (empty($video)) {
|
||||
return error('视频不存在');
|
||||
}
|
||||
|
||||
return success('获取成功', $video);
|
||||
}
|
||||
}
|
||||
|
||||
15
app/admin/model/v1/VideoCategoryModel.php
Normal file
15
app/admin/model/v1/VideoCategoryModel.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
declare (strict_types = 1);
|
||||
|
||||
namespace app\admin\model\v1;
|
||||
|
||||
use app\common\model\VideoCategoryBaseModel;
|
||||
|
||||
/**
|
||||
* 视频分类模型
|
||||
* @mixin \think\Model
|
||||
*/
|
||||
class VideoCategoryModel extends VideoCategoryBaseModel
|
||||
{
|
||||
//
|
||||
}
|
||||
52
app/admin/model/v1/VideoModel.php
Normal file
52
app/admin/model/v1/VideoModel.php
Normal file
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
declare (strict_types = 1);
|
||||
|
||||
namespace app\admin\model\v1;
|
||||
|
||||
use app\common\model\VideoBaseModel;
|
||||
|
||||
/**
|
||||
* 视频信息模型
|
||||
* @mixin \think\Model
|
||||
*/
|
||||
class VideoModel extends VideoBaseModel
|
||||
{
|
||||
// 关联分类
|
||||
public function category()
|
||||
{
|
||||
return $this->belongsTo(VideoCategoryModel::class, 'category_id', 'id');
|
||||
}
|
||||
|
||||
// 名称搜索器
|
||||
public function searchNameAttr($query, $value, $data)
|
||||
{
|
||||
if (empty($value)) {
|
||||
return;
|
||||
}
|
||||
$query->where('name', 'like', '%' . $value . '%');
|
||||
}
|
||||
|
||||
// 搜索发布时间
|
||||
public function searchCreatedAtAttr($query, $value, $data)
|
||||
{
|
||||
if (empty($value)) {
|
||||
return;
|
||||
}
|
||||
if (is_array($value)) {
|
||||
if (count($value) == 2) {
|
||||
$query->whereBetweenTime('created_at', $value[0], $value[1]);
|
||||
} else {
|
||||
$query->whereTime('created_at', '>=', $value[0]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 分类查询
|
||||
public function scopeCategoryId($query, $value)
|
||||
{
|
||||
if (empty($value)) {
|
||||
return;
|
||||
}
|
||||
$query->where('category_id', '=', $value);
|
||||
}
|
||||
}
|
||||
@@ -45,6 +45,21 @@ Route::group('v1', function () {
|
||||
Route::group('video', function () {
|
||||
// 视频上传
|
||||
Route::post('/:module/upload', 'Upload/video');
|
||||
|
||||
// 视频信息列表
|
||||
Route::get('index', 'Video/index');
|
||||
|
||||
// 视频信息详情
|
||||
Route::get('read/:id', 'Video/read');
|
||||
|
||||
// 视频信息添加
|
||||
Route::post('save', 'Video/save');
|
||||
|
||||
// 视频信息更新
|
||||
Route::put('update/:id', 'Video/update');
|
||||
|
||||
// 视频信息删除
|
||||
Route::delete('delete/:id', 'Video/delete');
|
||||
});
|
||||
|
||||
// 文章模块
|
||||
|
||||
Reference in New Issue
Block a user