import React, { useState, useEffect, memo } from 'react'; import { getUrl2, isDev } from 'educoder' const $ = window.$ let _url_origin = getUrl2() let _path = _isDev ? 'public' : 'build' let uploader function createUploader () { uploader = new AliyunUpload.Vod({ timeout: $('#timeout').val() || 60000, partSize: $('#partSize').val() || 1048576, parallel: $('#parallel').val() || 5, retryCount: $('#retryCount').val() || 3, retryDuration: $('#retryDuration').val() || 2, region: $('#region').val() || 'ap-southeast-1', userId: $('#userId').val() || 1202060945918292, // 1303984639806000, // 添加文件成功 addFileSuccess: function (uploadInfo) { console.log('addFileSuccess') $('#authUpload').attr('disabled', false) $('#resumeUpload').attr('disabled', false) $('#status').text('添加文件成功, 等待上传...') console.log("addFileSuccess: " + uploadInfo.file.name) $('#pauseUpload').attr('disabled', false) uploader.startUpload() }, // 开始上传 onUploadstarted: function (uploadInfo) { // 如果是 UploadAuth 上传方式, 需要调用 uploader.setUploadAuthAndAddress 方法 // 如果是 UploadAuth 上传方式, 需要根据 uploadInfo.videoId是否有值,调用点播的不同接口获取uploadauth和uploadAddress // 如果 uploadInfo.videoId 有值,调用刷新视频上传凭证接口,否则调用创建视频上传凭证接口 // 注意: 这里是测试 demo 所以直接调用了获取 UploadAuth 的测试接口, 用户在使用时需要判断 uploadInfo.videoId 存在与否从而调用 openApi // 如果 uploadInfo.videoId 存在, 调用 刷新视频上传凭证接口(https://help.aliyun.com/document_detail/55408.html) // 如果 uploadInfo.videoId 不存在,调用 获取视频上传地址和凭证接口(https://help.aliyun.com/document_detail/55407.html) if (!uploadInfo.videoId) { var createUrl = 'https://demo-vod.cn-shanghai.aliyuncs.com/voddemo/CreateUploadVideo?Title=testvod1&FileName=aa.mp4&BusinessType=vodai&TerminalType=pc&DeviceModel=iPhone9,2&UUID=59ECA-4193-4695-94DD-7E1247288&AppVersion=1.0.0&VideoId=5bfcc7864fc14b96972842172207c9e6' $.get(createUrl, function (data) { var uploadAuth = data.UploadAuth var uploadAddress = data.UploadAddress var videoId = data.VideoId uploader.setUploadAuthAndAddress(uploadInfo, uploadAuth, uploadAddress,videoId) }, 'json') $('#status').text('文件开始上传...') console.log("onUploadStarted:" + uploadInfo.file.name + ", endpoint:" + uploadInfo.endpoint + ", bucket:" + uploadInfo.bucket + ", object:" + uploadInfo.object) } else { // 如果videoId有值,根据videoId刷新上传凭证 // https://help.aliyun.com/document_detail/55408.html?spm=a2c4g.11186623.6.630.BoYYcY var refreshUrl = 'https://demo-vod.cn-shanghai.aliyuncs.com/voddemo/RefreshUploadVideo?BusinessType=vodai&TerminalType=pc&DeviceModel=iPhone9,2&UUID=59ECA-4193-4695-94DD-7E1247288&AppVersion=1.0.0&Title=haha1&FileName=xxx.mp4&VideoId=' + uploadInfo.videoId $.get(refreshUrl, function (data) { var uploadAuth = data.UploadAuth var uploadAddress = data.UploadAddress var videoId = data.VideoId uploader.setUploadAuthAndAddress(uploadInfo, uploadAuth, uploadAddress,videoId) }, 'json') } }, // 文件上传成功 onUploadSucceed: function (uploadInfo) { console.log("onUploadSucceed: " + uploadInfo.file.name + ", endpoint:" + uploadInfo.endpoint + ", bucket:" + uploadInfo.bucket + ", object:" + uploadInfo.object) $('#status').text('文件上传成功!') }, // 文件上传失败 onUploadFailed: function (uploadInfo, code, message) { console.log("onUploadFailed: file:" + uploadInfo.file.name + ",code:" + code + ", message:" + message) $('#status').text('文件上传失败!') }, // 取消文件上传 onUploadCanceled: function (uploadInfo, code, message) { console.log("Canceled file: " + uploadInfo.file.name + ", code: " + code + ", message:" + message) $('#status').text('文件上传已暂停!') }, // 文件上传进度,单位:字节, 可以在这个函数中拿到上传进度并显示在页面上 onUploadProgress: function (uploadInfo, totalSize, progress) { console.log("onUploadProgress:file:" + uploadInfo.file.name + ", fileSize:" + totalSize + ", percent:" + Math.ceil(progress * 100) + "%") var progressPercent = Math.ceil(progress * 100) $('#auth-progress').text(progressPercent) $('#status').text('文件上传中...') }, // 上传凭证超时 onUploadTokenExpired: function (uploadInfo) { // 上传大文件超时, 如果是上传方式一即根据 UploadAuth 上传时 // 需要根据 uploadInfo.videoId 调用刷新视频上传凭证接口(https://help.aliyun.com/document_detail/55408.html)重新获取 UploadAuth // 然后调用 resumeUploadWithAuth 方法, 这里是测试接口, 所以我直接获取了 UploadAuth $('#status').text('文件上传超时!') let refreshUrl = 'https://demo-vod.cn-shanghai.aliyuncs.com/voddemo/RefreshUploadVideo?BusinessType=vodai&TerminalType=pc&DeviceModel=iPhone9,2&UUID=59ECA-4193-4695-94DD-7E1247288&AppVersion=1.0.0&Title=haha1&FileName=xxx.mp4&VideoId=' + uploadInfo.videoId $.get(refreshUrl, function (data) { var uploadAuth = data.UploadAuth uploader.resumeUploadWithAuth(uploadAuth) console.log('upload expired and resume upload with uploadauth ' + uploadAuth) }, 'json') }, // 全部文件上传结束 onUploadEnd: function (uploadInfo) { $('#status').text('文件上传完毕!') console.log("onUploadEnd: uploaded all the files") } }) return uploader } function AliyunUploaderDemo(props) { useEffect(() => { if (window.AliyunUpload && window.AliyunUpload.Vod) { } else { $.getScript( `${_url_origin}/react/${_path}/js/aliyun-upload/lib/es6-promise.min.js`, (data, textStatus, jqxhr) => { $.getScript( `${_url_origin}/react/${_path}/js/aliyun-upload/lib/aliyun-oss-sdk-5.3.1.min.js`, (data, textStatus, jqxhr) => { $.getScript( `${_url_origin}/react/${_path}/js/aliyun-upload/aliyun-upload-sdk-1.5.0.min.js`, (data, textStatus, jqxhr) => { }); }); }); } $('#fileUpload').on('change', function (e) { var file = e.target.files[0] if (!file) { alert("请先选择需要上传的文件!") return } var Title = file.name var userData = '{"Vod":{}}' if (uploader) { uploader.stopUpload() $('#auth-progress').text('0') $('#status').text("") } if (!uploader) { uploader = createUploader() } // 首先调用 uploader.addFile(event.target.files[i], null, null, null, userData) console.log(uploader) uploader.addFile(file, null, null, null, userData) $('#authUpload').attr('disabled', false) // $('#pauseUpload').attr('disabled', true) // $('#resumeUpload').attr('disabled', true) }) // return () => { // } }, []) let { source, id, className, type } = props; function onStop() { $('#resumeUpload').attr('disabled', false) // $('#pauseUpload').attr('disabled', true) uploader.stopUpload() } function onResume() { // $('#resumeUpload').attr('disabled', true) // $('#pauseUpload').attr('disabled', false) uploader.startUpload() } return(
上传方式一, 使用 UploadAuth 上传: {/* */} 上传进度: 0 %
) } export default AliyunUploaderDemo