基于新的云端录像实现页面功能

This commit is contained in:
648540858 2023-10-17 17:55:40 +08:00
parent 5a75381a00
commit 92a25393f3
8 changed files with 257 additions and 182 deletions

View File

@ -291,7 +291,7 @@ public class ZLMHttpHookListener {
} }
// 如果是录像下载就设置视频间隔十秒 // 如果是录像下载就设置视频间隔十秒
if (ssrcTransactionForAll.get(0).getType() == InviteSessionType.DOWNLOAD) { if (ssrcTransactionForAll.get(0).getType() == InviteSessionType.DOWNLOAD) {
result.setMp4_max_second(10); result.setMp4_max_second(30);
result.setEnable_mp4(true); result.setEnable_mp4(true);
} }
} }

View File

@ -18,7 +18,7 @@ public interface ICloudRecordService {
/** /**
* 分页回去云端录像列表 * 分页回去云端录像列表
*/ */
PageInfo<CloudRecordItem> getList(int page, int count, String app, String stream, String startTime, String endTime, List<MediaServerItem> mediaServerItems); PageInfo<CloudRecordItem> getList(int page, int count, String query, String app, String stream, String startTime, String endTime, List<MediaServerItem> mediaServerItems);
/** /**
* 根据hook消息增加一条记录 * 根据hook消息增加一条记录

View File

@ -50,7 +50,7 @@ public class CloudRecordServiceImpl implements ICloudRecordService {
private VideoStreamSessionManager streamSession; private VideoStreamSessionManager streamSession;
@Override @Override
public PageInfo<CloudRecordItem> getList(int page, int count, String app, String stream, String startTime, String endTime, List<MediaServerItem> mediaServerItems) { public PageInfo<CloudRecordItem> getList(int page, int count, String query, String app, String stream, String startTime, String endTime, List<MediaServerItem> mediaServerItems) {
// 开始时间和结束时间在数据库中都是以秒为单位的 // 开始时间和结束时间在数据库中都是以秒为单位的
Long startTimeStamp = null; Long startTimeStamp = null;
Long endTimeStamp = null; Long endTimeStamp = null;
@ -69,7 +69,7 @@ public class CloudRecordServiceImpl implements ICloudRecordService {
} }
PageHelper.startPage(page, count); PageHelper.startPage(page, count);
List<CloudRecordItem> all = cloudRecordServiceMapper.getList(app, stream, startTimeStamp, endTimeStamp, List<CloudRecordItem> all = cloudRecordServiceMapper.getList(query, app, stream, startTimeStamp, endTimeStamp,
null, mediaServerItems); null, mediaServerItems);
return new PageInfo<>(all); return new PageInfo<>(all);
} }
@ -85,7 +85,7 @@ public class CloudRecordServiceImpl implements ICloudRecordService {
} }
long startTimeStamp = startDate.atStartOfDay().toInstant(ZoneOffset.ofHours(8)).getEpochSecond(); long startTimeStamp = startDate.atStartOfDay().toInstant(ZoneOffset.ofHours(8)).getEpochSecond();
long endTimeStamp = endDate.atStartOfDay().toInstant(ZoneOffset.ofHours(8)).getEpochSecond(); long endTimeStamp = endDate.atStartOfDay().toInstant(ZoneOffset.ofHours(8)).getEpochSecond();
List<CloudRecordItem> cloudRecordItemList = cloudRecordServiceMapper.getList(app, stream, startTimeStamp, List<CloudRecordItem> cloudRecordItemList = cloudRecordServiceMapper.getList(null, app, stream, startTimeStamp,
endTimeStamp, null, mediaServerItems); endTimeStamp, null, mediaServerItems);
if (cloudRecordItemList.isEmpty()) { if (cloudRecordItemList.isEmpty()) {
return new ArrayList<>(); return new ArrayList<>();

View File

@ -765,7 +765,7 @@ public class PlayServiceImpl implements IPlayService {
} }
// 为了支持多个数据库这里不能使用求和函数来直接获取总数了 // 为了支持多个数据库这里不能使用求和函数来直接获取总数了
List<CloudRecordItem> cloudRecordItemList = cloudRecordServiceMapper.getList("rtp", inviteInfo.getStream(), null, null, ssrcTransaction.getCallId(), null); List<CloudRecordItem> cloudRecordItemList = cloudRecordServiceMapper.getList(null, "rtp", inviteInfo.getStream(), null, null, ssrcTransaction.getCallId(), null);
if (cloudRecordItemList.isEmpty()) { if (cloudRecordItemList.isEmpty()) {
logger.warn("[获取下载进度],未找到下载视频信息"); logger.warn("[获取下载进度],未找到下载视频信息");

View File

@ -44,6 +44,7 @@ public interface CloudRecordServiceMapper {
"select * " + "select * " +
" from wvp_cloud_record " + " from wvp_cloud_record " +
" where 0 = 0" + " where 0 = 0" +
" <if test='query != null'> AND (app LIKE concat('%',#{query},'%') OR stream LIKE concat('%',#{query},'%') )</if> " +
" <if test= 'app != null '> and app=#{app}</if>" + " <if test= 'app != null '> and app=#{app}</if>" +
" <if test= 'stream != null '> and stream=#{stream}</if>" + " <if test= 'stream != null '> and stream=#{stream}</if>" +
" <if test= 'startTimeStamp != null '> and end_time &gt;= #{startTimeStamp}</if>" + " <if test= 'startTimeStamp != null '> and end_time &gt;= #{startTimeStamp}</if>" +
@ -52,8 +53,10 @@ public interface CloudRecordServiceMapper {
" <if test= 'mediaServerItemList != null ' > and media_server_id in " + " <if test= 'mediaServerItemList != null ' > and media_server_id in " +
" <foreach collection='mediaServerItemList' item='item' open='(' separator=',' close=')' > #{item.id}</foreach>" + " <foreach collection='mediaServerItemList' item='item' open='(' separator=',' close=')' > #{item.id}</foreach>" +
" </if>" + " </if>" +
" order by start_time DESC" +
" </script>") " </script>")
List<CloudRecordItem> getList(@Param("app") String app, @Param("stream") String stream, List<CloudRecordItem> getList(@Param("query") String query, @Param("app") String app, @Param("stream") String stream,
@Param("startTimeStamp")Long startTimeStamp, @Param("endTimeStamp")Long endTimeStamp, @Param("startTimeStamp")Long startTimeStamp, @Param("endTimeStamp")Long endTimeStamp,
@Param("callId")String callId, List<MediaServerItem> mediaServerItemList); @Param("callId")String callId, List<MediaServerItem> mediaServerItemList);

View File

@ -105,20 +105,22 @@ public class CloudRecordController {
@ResponseBody @ResponseBody
@GetMapping("/list") @GetMapping("/list")
@Operation(summary = "分页查询云端录像") @Operation(summary = "分页查询云端录像")
@Parameter(name = "app", description = "应用名", required = true) @Parameter(name = "query", description = "检索内容", required = false)
@Parameter(name = "stream", description = "流ID", required = true) @Parameter(name = "app", description = "应用名", required = false)
@Parameter(name = "stream", description = "流ID", required = false)
@Parameter(name = "page", description = "当前页", required = false) @Parameter(name = "page", description = "当前页", required = false)
@Parameter(name = "count", description = "每页查询数量", required = false) @Parameter(name = "count", description = "每页查询数量", required = false)
@Parameter(name = "startTime", description = "开始时间(yyyy-MM-dd HH:mm:ss)", required = true) @Parameter(name = "startTime", description = "开始时间(yyyy-MM-dd HH:mm:ss)", required = false)
@Parameter(name = "endTime", description = "结束时间(yyyy-MM-dd HH:mm:ss)", required = true) @Parameter(name = "endTime", description = "结束时间(yyyy-MM-dd HH:mm:ss)", required = false)
@Parameter(name = "mediaServerId", description = "流媒体ID置空则查询全部流媒体", required = false) @Parameter(name = "mediaServerId", description = "流媒体ID置空则查询全部流媒体", required = false)
public PageInfo<CloudRecordItem> openRtpServer( public PageInfo<CloudRecordItem> openRtpServer(
@RequestParam String app, @RequestParam(required = false) String query,
@RequestParam String stream, @RequestParam(required = false) String app,
@RequestParam(required = false) String stream,
@RequestParam int page, @RequestParam int page,
@RequestParam int count, @RequestParam int count,
@RequestParam String startTime, @RequestParam(required = false) String startTime,
@RequestParam String endTime, @RequestParam(required = false) String endTime,
@RequestParam(required = false) String mediaServerId @RequestParam(required = false) String mediaServerId
) { ) {
@ -139,7 +141,22 @@ public class CloudRecordController {
if (mediaServerItems.isEmpty()) { if (mediaServerItems.isEmpty()) {
throw new ControllerException(ErrorCode.ERROR100.getCode(), "当前无流媒体"); throw new ControllerException(ErrorCode.ERROR100.getCode(), "当前无流媒体");
} }
return cloudRecordService.getList(page, count, app, stream, startTime, endTime, mediaServerItems); if (query != null && ObjectUtils.isEmpty(query.trim())) {
query = null;
}
if (app != null && ObjectUtils.isEmpty(app.trim())) {
app = null;
}
if (stream != null && ObjectUtils.isEmpty(stream.trim())) {
stream = null;
}
if (startTime != null && ObjectUtils.isEmpty(startTime.trim())) {
startTime = null;
}
if (endTime != null && ObjectUtils.isEmpty(endTime.trim())) {
endTime = null;
}
return cloudRecordService.getList(page, count, query, app, stream, startTime, endTime, mediaServerItems);
} }
@ResponseBody @ResponseBody

View File

@ -1,5 +1,5 @@
<template> <template>
<div id="app" style="width: 100%"> <div id="app" style="width: 100%">
<div class="page-header"> <div class="page-header">
<div class="page-title"> <div class="page-title">
<el-page-header v-if="recordDetail" @back="backToList" content="云端录像"></el-page-header> <el-page-header v-if="recordDetail" @back="backToList" content="云端录像"></el-page-header>
@ -7,44 +7,82 @@
</div> </div>
<div class="page-header-btn"> <div class="page-header-btn">
搜索:
<el-input @input="search" style="margin-right: 1rem; width: auto;" size="mini" placeholder="关键字"
prefix-icon="el-icon-search" v-model="search" clearable></el-input>
开始时间:
<el-date-picker
v-model="startTime"
type="datetime"
placeholder="选择日期时间">
</el-date-picker>
结束时间:
<el-date-picker
v-model="endTime"
type="datetime"
placeholder="选择日期时间">
</el-date-picker>
节点选择: 节点选择:
<el-select size="mini" @change="chooseMediaChange" style="width: 16rem; margin-right: 1rem;" v-model="mediaServerId" placeholder="请选择" :disabled="recordDetail"> <el-select size="mini" @change="chooseMediaChange" style="width: 16rem; margin-right: 1rem;"
v-model="mediaServerId" placeholder="请选择" :disabled="recordDetail">
<el-option <el-option
v-for="item in mediaServerList" v-for="item in mediaServerList"
:key="item.id" :key="item.id"
:label="item.id" :label="item.id"
:value="item.id"> :value="item.id">
</el-option> </el-option>
</el-select> </el-select>
<el-button v-if="!recordDetail" icon="el-icon-refresh-right" circle size="mini" :loading="loading" @click="getRecordList()"></el-button> <el-button size="mini" icon="el-icon-delete" type="danger" @click="deleteRecord()">批量删除</el-button>
<el-button v-if="!recordDetail" icon="el-icon-refresh-right" circle size="mini" :loading="loading"
@click="getRecordList()"></el-button>
</div> </div>
</div> </div>
<div v-if="!recordDetail"> <div v-if="!recordDetail">
<!--设备列表--> <!--设备列表-->
<el-table :data="recordList" style="width: 100%" :height="winHeight"> <el-table :data="recordList" style="width: 100%" :height="winHeight">
<el-table-column prop="app" label="应用名" > <el-table-column prop="app" label="应用名">
</el-table-column> </el-table-column>
<el-table-column prop="stream" label="流ID" > <el-table-column prop="stream" label="流ID" width="380">
</el-table-column> </el-table-column>
<el-table-column prop="time" label="时间" > <el-table-column label="开始时间">
</el-table-column>
<el-table-column label="操作" width="360" fixed="right">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button size="medium" icon="el-icon-folder-opened" type="text" @click="showRecordDetail(scope.row)">查看</el-button> {{formatTimeStamp(scope.row.startTime)}}
<!-- <el-button size="mini" icon="el-icon-delete" type="danger" @click="deleteRecord(scope.row)">删除</el-button>--> </template>
</el-table-column>
<el-table-column label="结束时间">
<template slot-scope="scope">
{{formatTimeStamp(scope.row.endTime)}}
</template>
</el-table-column>
<el-table-column label="时长">
<template slot-scope="scope">
<el-tag>{{formatTime(scope.row.timeLen)}}</el-tag>
</template>
</el-table-column>
<el-table-column prop="fileName" label="文件名称">
</el-table-column>
<el-table-column prop="mediaServerId" label="流媒体">
</el-table-column>
<el-table-column label="操作" width="200" fixed="right">
<template slot-scope="scope">
<el-button size="medium" icon="el-icon-video-play" type="text" @click="showRecordDetail(scope.row)">播放
</el-button>
<el-button size="medium" icon="el-icon-delete" type="text" style="color: #f56c6c"
@click="deleteRecord(scope.row)">删除
</el-button>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<el-pagination <el-pagination
style="float: right" style="float: right"
@size-change="handleSizeChange" @size-change="handleSizeChange"
@current-change="currentChange" @current-change="currentChange"
:current-page="currentPage" :current-page="currentPage"
:page-size="count" :page-size="count"
:page-sizes="[15, 25, 35, 50]" :page-sizes="[15, 25, 35, 50]"
layout="total, sizes, prev, pager, next" layout="total, sizes, prev, pager, next"
:total="total"> :total="total">
</el-pagination> </el-pagination>
</div> </div>
@ -52,156 +90,173 @@
</template> </template>
<script> <script>
import uiHeader from '../layout/UiHeader.vue' import uiHeader from '../layout/UiHeader.vue'
import MediaServer from './service/MediaServer' import MediaServer from './service/MediaServer'
export default { import moment from 'moment'
name: 'app',
components: {
uiHeader
},
data() {
return {
mediaServerList: [], //
mediaServerId: null, //
mediaServerPath: null, //
recordList: [], //
chooseRecord: null, //
updateLooper: 0, // export default {
winHeight: window.innerHeight - 250, name: 'app',
currentPage:1, components: {
count:15, uiHeader
total:0, },
loading: false, data() {
mediaServerObj : new MediaServer(), return {
recordDetail: false search: '',
startTime: '',
endTime: '',
mediaServerList: [], //
mediaServerId: null, //
mediaServerPath: null, //
recordList: [], //
chooseRecord: null, //
}; updateLooper: 0, //
}, winHeight: window.innerHeight - 250,
computed: { currentPage: 1,
count: 15,
total: 0,
loading: false,
mediaServerObj: new MediaServer(),
recordDetail: false
}, };
mounted() { },
this.initData(); computed: {},
}, mounted() {
destroyed() { this.initData();
// this.$destroy('videojs'); },
}, destroyed() {
methods: { // this.$destroy('videojs');
initData: function() { },
// methods: {
this.getMediaServerList(); initData: function () {
// this.getRecordList(); //
}, this.getMediaServerList();
currentChange: function(val){ // this.getRecordList();
this.currentPage = val; },
this.getRecordList(); currentChange: function (val) {
}, this.currentPage = val;
handleSizeChange: function(val){ this.getRecordList();
this.count = val; },
this.getRecordList(); handleSizeChange: function (val) {
}, this.count = val;
getMediaServerList: function (){ this.getRecordList();
let that = this; },
that.mediaServerObj.getOnlineMediaServerList((data)=>{ getMediaServerList: function () {
that.mediaServerList = data.data; let that = this;
if (that.mediaServerList.length > 0) { that.mediaServerObj.getOnlineMediaServerList((data) => {
that.mediaServerId = that.mediaServerList[0].id that.mediaServerList = data.data;
that.setMediaServerPath(that.mediaServerId); if (that.mediaServerList.length > 0) {
that.getRecordList(); that.mediaServerId = that.mediaServerList[0].id
} that.setMediaServerPath(that.mediaServerId);
}) that.getRecordList();
},
setMediaServerPath: function (serverId) {
let that = this;
let i;
for (i = 0; i < that.mediaServerList.length; i++) {
if (serverId === that.mediaServerList[i].id) {
break;
}
} }
let port = that.mediaServerList[i].httpPort; })
if (location.protocol === "https:" && that.mediaServerList[i].httpSSlPort) { },
port = that.mediaServerList[i].httpSSlPort setMediaServerPath: function (serverId) {
let that = this;
let i;
for (i = 0; i < that.mediaServerList.length; i++) {
if (serverId === that.mediaServerList[i].id) {
break;
} }
that.mediaServerPath = location.protocol + "//" + that.mediaServerList[i].streamIp + ":" + port }
console.log(that.mediaServerPath) let port = that.mediaServerList[i].httpPort;
}, if (location.protocol === "https:" && that.mediaServerList[i].httpSSlPort) {
getRecordList: function (){ port = that.mediaServerList[i].httpSSlPort
let that = this; }
this.$axios({ that.mediaServerPath = location.protocol + "//" + that.mediaServerList[i].streamIp + ":" + port
method: 'get', console.log(that.mediaServerPath)
url:`/record_proxy/${that.mediaServerId}/api/record/list`, },
params: { getRecordList: function () {
page: that.currentPage, this.$axios({
count: that.count method: 'get',
} url: `/api/cloud/record/list`,
}).then(function (res) { params: {
console.log(res) app: '',
if (res.data.code === 0) { stream: '',
that.total = res.data.data.total; query: this.search,
that.recordList = res.data.data.list; startTime: this.startTime,
} endTime: this.endTime,
that.loading = false; mediaServerId: this.mediaServerId,
}).catch(function (error) { page: this.currentPage,
console.log(error); count: this.count
that.loading = false; }
}); }).then((res) => {
}, console.log(res)
backToList(){ if (res.data.code === 0) {
this.recordDetail= false; this.total = res.data.data.total;
}, this.recordList = res.data.data.list;
chooseMediaChange(val){ }
console.log(val) this.loading = false;
this.total = 0; }).catch((error) => {
this.recordList = []; console.log(error);
this.setMediaServerPath(val); this.loading = false;
this.getRecordList(); });
}, },
showRecordDetail(row){ backToList() {
this.recordDetail = true; this.recordDetail = false;
this.chooseRecord = row; },
// chooseMediaChange(val) {
// this.$axios({ console.log(val)
// method: 'delete', this.total = 0;
// url:`/record_proxy/api/record/delete`, this.recordList = [];
// params: { this.setMediaServerPath(val);
// page: this.currentPage, this.getRecordList();
// count: this.count },
// } showRecordDetail(row) {
// }).then((res) => { this.recordDetail = true;
// console.log(res) this.chooseRecord = row;
// this.total = res.data.data.total; //
// this.recordList = res.data.data.list; // this.$axios({
// }).catch(function (error) { // method: 'delete',
// console.log(error); // url:`/record_proxy/api/record/delete`,
// }); // params: {
this.$router.push(`/cloudRecordDetail/${row.app}/${row.stream}`) // page: this.currentPage,
}, // count: this.count
deleteRecord(){ // }
// TODO // }).then((res) => {
let that = this; // console.log(res)
this.$axios({ // this.total = res.data.data.total;
method: 'delete', // this.recordList = res.data.data.list;
url:`/record_proxy/api/record/delete`, // }).catch(function (error) {
params: { // console.log(error);
page: that.currentPage, // });
count: that.count this.$router.push(`/cloudRecordDetail/${row.app}/${row.stream}`)
} },
}).then(function (res) { deleteRecord() {
console.log(res) // TODO
if (res.data.code === 0) { let that = this;
that.total = res.data.data.total; this.$axios({
that.recordList = res.data.data.list; method: 'delete',
} url: `/record_proxy/api/record/delete`,
}).catch(function (error) { params: {
console.log(error); page: that.currentPage,
}); count: that.count
}, }
}).then(function (res) {
console.log(res)
if (res.data.code === 0) {
that.total = res.data.data.total;
that.recordList = res.data.data.list;
}
}).catch(function (error) {
console.log(error);
});
},
formatTime(time) {
const h = parseInt(time / 3600)
const minute = parseInt(time / 60 % 60)
const second = Math.ceil(time % 60)
return (h > 0 ? h + `小时` : '') + (minute > 0 ? minute + '分' : '') + second + '秒'
},
formatTimeStamp(time) {
return moment.unix(time).format('yyyy-MM-DD HH:mm:ss')
}
} }
}; };
</script> </script>
<style> <style>

View File

@ -27,7 +27,7 @@ export default {
}, },
data() { data() {
return { return {
title: "四倍速下载中...", title: "下载中...",
deviceId: "", deviceId: "",
channelId: "", channelId: "",
app: "", app: "",