@Log ( title = "上传学习视频信息" , businessType = BusinessType . INSERT ) @PostMapping ( "/uploadVideo" ) public AjaxResult add ( HttpServletRequest request) { return toAjax ( videoInfoService. insertVideoInfo ( request) ) ; } @Override public int insertVideoInfo ( HttpServletRequest request) { MultipartFile videoFile = ( ( MultipartHttpServletRequest ) request) . getFile ( "file" ) ; VideoInfo sysVideoInfo = new VideoInfo ( ) ; if ( ( videoFile != null ) && ( ! videoFile. isEmpty ( ) ) ) { String projectPath = RuoYiConfig . getUploadPath ( ) ; String oriFileName = videoFile. getOriginalFilename ( ) ; String suffix = FilenameUtils . getExtension ( oriFileName) ; long size = videoFile. getSize ( ) / 1024 ; String deviceNumber = "learning" ; sysVideoInfo. setDeviceNumber ( deviceNumber) ; String folderPath = projectPath + File . separator + "videoInfo/info" + File . separator + deviceNumber + File . separator; String filePath = folderPath + oriFileName; File file1 = new File ( folderPath) ; if ( ! file1. exists ( ) ) { file1. mkdirs ( ) ; } File dest = new File ( filePath) ; if ( dest. exists ( ) ) { return 2 ; } try { videoFile. transferTo ( dest) ; sysVideoInfo. setFileMd5 ( Md5Util . getFileMD5 ( dest) ) ; } catch ( IOException e) { e. printStackTrace ( ) ; } sysVideoInfo. setId ( GUIDCreater . getGUID ( ) ) ; sysVideoInfo. setFileName ( oriFileName) ; sysVideoInfo. setFilePath ( filePath) ; String downloadPath = "videoInfo/info/download/" + deviceNumber + "/" + oriFileName. substring ( 0 , oriFileName. lastIndexOf ( "." ) ) + "/" + suffix; sysVideoInfo. setDownloadPath ( downloadPath) ; sysVideoInfo. setFileSize ( String . valueOf ( size) ) ; } else { return 0 ; } return videoInfoMapper. insertVideoInfo ( sysVideoInfo) ; } @GetMapping ( "/download/{device_number}/{file_name}/{file_suffix}" ) public void downloadProgramFile ( @PathVariable ( "device_number" ) String deviceNumber, @PathVariable ( "file_name" ) String fileName, @PathVariable ( "file_suffix" ) String fileSuffix, HttpServletRequest request, HttpServletResponse response) throws IOException , ServletException { fileName += "." + fileSuffix; String localPath = RuoYiConfig . getProfile ( ) ; String fileRealPath = localPath + File . separator + "upload" + File . separator + "/videoInfo/info" + File . separator + deviceNumber + File . separator + fileName; File file = new File ( fileRealPath) ; if ( ! file. exists ( ) ) { response. sendError ( 404 , "视频文件不存在,下载失败" ) ; return ; } Path filePath = Paths . get ( fileRealPath) ; String mimeType = Files . probeContentType ( filePath) ; response. setContentType ( mimeType) ; request. setAttribute ( NonStaticResourceHttpRequestHandler . ATTR_FILE , filePath) ; nonStaticResourceHttpRequestHandler. handleRequest ( request, response) ; }
package com. ruoyi. image ;
import org. springframework. core. io. FileSystemResource ;
import org. springframework. core. io. Resource ;
import org. springframework. stereotype. Component ;
import org. springframework. web. servlet. resource. ResourceHttpRequestHandler ;
import javax. servlet. http. HttpServletRequest ;
import java. nio. file. Path ; @Component
public class NonStaticResourceHttpRequestHandler extends ResourceHttpRequestHandler { public final static String ATTR_FILE = "NON-STATIC-FILE" ; @Override protected Resource getResource ( HttpServletRequest request) { final Path filePath = ( Path ) request. getAttribute ( ATTR_FILE ) ; return new FileSystemResource ( filePath. toString ( ) ) ; } } -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -
前端记录
< template> < div class = "app-container" > < el- form : model= "queryParams" ref= "queryForm" : inline= "true" v- show= "showSearch" label- width= "68px" > < el- form- item label= "视频名称" prop= "fileName" > < el- inputv- model= "queryParams.fileName" placeholder= "请输入视频名称" clearablesize= "small" @keyup.enter.native = "handleQuery" / > < / el- form- item> < el- form- item> < el- button type= "primary" icon= "el-icon-search" size= "mini" @click = "handleQuery" > 搜索< / el- button> < el- button icon= "el-icon-refresh" size= "mini" @click = "resetQuery" > 重置< / el- button> < / el- form- item> < / el- form> < el- row : gutter= "10" class = "mb8" > < el- col : span= "1.5" > < el- buttontype= "primary" plainicon= "el-icon-plus" size= "mini" @click = "handleImport" > 上传< / el- button> < / el- col> < el- col : span= "1.5" > < el- buttontype= "danger" plainicon= "el-icon-delete" size= "mini" : disabled= "multiple" @click = "handleDelete" v- hasPermi= "['videoInfo:info:remove']" > 删除< / el- button> < / el- col> < right- toolbar : showSearch. sync= "showSearch" @queryTable = "getList" > < / right- toolbar> < / el- row> < div ref= "tableDom" > < el- table v- loading= "loading" : data= "infoList" @selection - change= "handleSelectionChange" > < el- table- column type= "selection" width= "55" align= "center" / > < el- table- column label= "视频文件名称" align= "center" prop= "fileName" / > < el- table- column label= "视频文件存储路径" align= "center" prop= "filePath" / > < el- table- column label= "视频文件大小" align= "center" prop= "fileSize" / > < el- table- column label= "视频文件上传时间" align= "center" prop= "uploadDate" width= "180" > < template slot- scope= "scope" > < span> { { parseTime ( scope. row. uploadDate, '{ y} - { m} - { d} ') } } < / span> < / template> < / el- table- column> < el- table- column label= "下载路径" align= "center" prop= "downloadPath" / > < el- table- column label= "视频预览" align= "center" > < template slot- scope= "scope" > < el- buttontype= "primary" size= "small" @click = "handlePlay(scope.row)" > 预览< / el- button> < / template> < / el- table- column> < el- table- column label= "操作" align= "center" class - name= "small-padding fixed-width" > < template slot- scope= "scope" > < el- buttonsize= "mini" type= "text" icon= "el-icon-delete" @click = "handleDelete(scope.row)" v- hasPermi= "['videoInfo:info:remove']" > 删除< / el- button> < / template> < / el- table- column> < / el- table> < / div> < paginationv- show= "total>0" : total= "total" : page. sync= "queryParams.pageNum" : limit. sync= "queryParams.pageSize" @pagination = "getList" / > < el- dialog title= "视频预览" : visible. sync= "open" > < video- playerclass = "video-player vjs-custom-skin" ref= "videoPlayer" : playsinline= "true" : options= "playerOptions" > < / video- player> < / el- dialog> < uploadVideoDialog@handleSaveSuccess = "getList" ref= "uploadVideoDialogRef" > < / uploadVideoDialog> < / div>
< / template> < script>
import { listInfo, getInfo, delInfo, addInfo, updateInfo } from "@/api/videoInfo/info" ;
import uploadVideoDialog from "./uploadVideoDialog" ;
export default { components: { uploadVideoDialog} , name: "Info" , data ( ) { return { loading: true , ids: [ ] , single: true , multiple: true , showSearch: true , total: 0 , infoList: [ ] , title: "" , open : false , queryParams: { pageNum: 1 , pageSize: 10 , fileName: null , } , open : false , form: { } , playerOptions: { } , removeParams: { filePaths: [ ] , ids: [ ] , } , videoId: "" , tableHeight: "" , form: { } , rules: { } } ; } , created ( ) { this . getList ( ) ; } , mounted ( ) { var _this = this ; this . resizeTable ( ) ; window. onresize = function ( ) { _this. resizeTable ( ) ; } ; } , destroyed ( ) { window. onresize = null ; } , methods: { getList ( ) { this . loading = true ; listInfo ( this . queryParams) . then ( response = > { this . infoList = response. rows; this . total = response. total; this . loading = false ; } ) ; } , cancel ( ) { this . open = false ; this . reset ( ) ; } , reset ( ) { this . form = { id: null , videoType: null , fileName: null , filePath: null , fileSize: null , uploadDate: null , delFlag: null , fileMd5: null , deviceNumber: null , nickName: null , jobNumber: null , userId: null , downloadPath: null } ; this . resetForm ( "form" ) ; } , handleQuery ( ) { this . queryParams. pageNum = 1 ; this . getList ( ) ; } , resetQuery ( ) { this . resetForm ( "queryForm" ) ; this . handleQuery ( ) ; } , handleSelectionChange ( selection) { this . ids = selection. map ( item = > item. id) this . single = selection. length!= = 1 this . multiple = ! selection. length} , handlePlay ( row) { console. log ( "row" ) ; console. log ( row) ; const name = row. fileName. substring ( 0 , row. fileName. lastIndexOf ( "." ) ) ; const downloadPath = row. downloadPath; console. log ( downloadPath) ; this . open = true ; console. log ( process. env. VUE_APP_BASE_API + "/" + downloadPath) ; this . playerOptions = { playbackRates: [ 0.75 , 1.0 , 1.25 , 1.5 , 2.0 ] , autoplay: false , muted: false , loop: false , preload: "auto" , language: "zh-CN" , aspectRatio: "16:9" , fluid: true , flash: { hls: { withCreadentials: false } } , html5: { hls: { withCreadentials: false } } , sources: [ { type: "video/mp4" , src: process. env. VUE_APP_BASE_API + "/" + downloadPath, } , ] , width: "100%" , notSupportedMessage: "此视频暂无法播放..." , controlBar: { timeDivider: true , durationDisplay: true , remainingTimeDisplay: false , fullscreenToggle: true , } , } ; } , handleImport ( ) { this . $refs. uploadVideoDialogRef. open ( ) ; } , returnTableHeight ( ref, bottomOffset) { let height = null ; height = window. innerHeight - ref. getBoundingClientRect ( ) . top - bottomOffset; return height; } , resizeTable ( ) { this . $nextTick ( ( ) = > { this . tableHeight = this . returnTableHeight ( this . $refs. tableDom, 100 ) ; } , 0 ) ; } , submitForm ( ) { this . $refs[ "form" ] . validate ( valid = > { if ( valid) { if ( this . form. id != null ) { updateInfo ( this . form) . then ( response = > { this . $modal. msgSuccess ( "修改成功" ) ; this . open = false ; this . getList ( ) ; } ) ; } else { addInfo ( this . form) . then ( response = > { this . $modal. msgSuccess ( "新增成功" ) ; this . open = false ; this . getList ( ) ; } ) ; } } } ) ; } , handleDelete ( row) { const ids = row. id || this . ids; this . $modal. confirm ( '是否确认删除学习视频信息编号为"' + ids + '" 的数据项?') . then ( function ( ) { return delInfo ( ids) ; } ) . then ( ( ) = > { this . getList ( ) ; this . $modal. msgSuccess ( "删除成功" ) ; } ) . catch ( ( ) = > { } ) ; } , }
} ;
< / script> 上传文件的弹窗
< template> < div class = "app-container" > < el- dialog: title= "setLightTitle" : visible. sync= "visible" : close- on- click- modal= "false" width= "25%" > < el- formref= "appForm" style= "margin-bottom: -30px" : model= "appData" : rules= "rules" size= "small" label- width= "100px" > < div style= "margin: 0 auto; text-align: center" > < el- uploadaction= "#" ref= "upload" : show- file- list= "true" : auto- upload= "false" : multiple= "false" : on- change= "uploadFile" : limit= "1" dragaccept= ".mp4" > < i class = "el-icon-upload" > < / i> < div class = "el-upload__text" > 将文件拖到此处,或< em> 点击上传< / em> < / div> < div class = "el-upload__tip text-center" slot= "tip" > < span> 仅允许mp4文件。< / span> < / div> < / el- upload> < / div> < / el- form> < span slot= "footer" class = "dialog-footer" > < el- button @click = "visible = false" type= "primary" size= "small" > 取 消< / el- button> < el- buttontype= "primary" size= "small" @click = "handleUpload" : loading= "loading" > 确 定< / el- button> < / span> < / el- dialog> < / div>
< / template> < script>
import { addInfo } from "@/api/videoInfo/info" ; export default { name: "upload-file-dialog" , data ( ) { return { file: null , formData: null , updateVersion: null , updateSupport: null , appData: { handwareid: null , updateVersion: null , updateSupport: null , } , loading: false , visible: false , setLightTitle: "上传视频" , acceptFile: ".mp4" , rules: { updateVersion: [ { required: true , message: "请xx" , trigger: "blur" } , ] , } , } ; } , methods: { dialogClose ( ) { this . visible = false ; } , open ( ) { this . file = null ; this . formData = null ; this . visible = true ; this . updateVersion = null ; this . updateSupport = false ; this . $refs. upload? . clearFiles ( ) ; } , uploadFile ( item) { this . file = item. raw; this . formData = new FormData ( ) ; this . formData. append ( "file" , this . file) ; } , handleUpload ( ) { if ( this . file == null ) { this . $message ( "请先选择文件!" ) ; return ; } let vm = this ; this . $refs. appForm. validate ( ( valid) = > { if ( valid) { vm. loading = true ; addInfo ( vm. formData) . then ( ( response) = > { vm. loading = false ; this . $refs. upload. clearFiles ( ) ; if ( response. code == = 200 ) { vm. visible = false ; vm. $emit ( "handleSaveSuccess" ) ; vm. $message ( "上传成功!" ) ; } } ) . catch ( function ( error) { vm. loading = false ; setTimeout ( ( ) = > { vm. $message ( "上传失败!" + error) ; } , 150 ) ; } ) ; } } ) ; } , } ,
} ;
< / script> < style scoped>
/ deep/ . el- upload { width: 70 % ; height: 100 % ;
}
/ deep/ . el- upload . el- upload- dragger { width: 100 % ; height: 100 % ;
}
< / style>