doTask.js 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610
  1. // pages/doTask/doTask.js
  2. import VODUpload from '../../utils/aliyun-upload-sdk-1.0.1.min'
  3. const app = getApp()
  4. const util = require("../../utils/util")
  5. const urlDef = require("../../utils/urls")
  6. const recordManager = wx.getRecorderManager() //录音对象
  7. const audioContext = wx.createInnerAudioContext() //音频播放对象
  8. var uploader = null //阿里云视频上传对象
  9. const urls = urlDef.urls;
  10. Page({
  11. /**
  12. * 页面的初始数据
  13. */
  14. data: {
  15. homeworkId: null,
  16. talkFlag: false,
  17. closeName: '开始录音',
  18. videoList: [],
  19. videoFlag: 0,
  20. imgList: [],
  21. audioList: [],
  22. audioPause: false,
  23. content: '',
  24. delItems: []
  25. },
  26. getRecord: function () {
  27. const that = this
  28. if(that.data.audioList.length>=6){
  29. wx.showToast({
  30. title: '最多上传6段录音',
  31. icon: 'none'
  32. })
  33. return
  34. }
  35. if (that.data.talkFlag) {
  36. recordManager.stop()
  37. recordManager.onStop((res) => { //监听录音停止的事件
  38. console.log("监听录音停止事件", res)
  39. if (res.duration < 1000) {
  40. wx.showToast({
  41. title: '录音时间太短',
  42. icon: 'none'
  43. })
  44. return;
  45. } else {
  46. console.log(res)
  47. var tempFilePath = res.tempFilePath; // 文件临时路径
  48. console.log("文件临时路径", tempFilePath)
  49. wx.uploadFile({
  50. filePath: tempFilePath,
  51. name: 'name',
  52. url: urls.file_upload,
  53. header: util.getHeaders(),
  54. success(res) {
  55. wx.showToast({
  56. title: '上传成功',
  57. })
  58. const rs = JSON.parse(JSON.parse(JSON.stringify(res.data)))
  59. const list = [{ url: rs.data[0].url }]
  60. that.setData({
  61. audioList: that.data.audioList.concat(list)
  62. })
  63. },
  64. fail(res) {
  65. wx.showToast({
  66. title: '上传失败',
  67. icon: 'none'
  68. })
  69. },
  70. complete(res) {
  71. wx.hideLoading({
  72. success: (res) => { },
  73. })
  74. }
  75. })
  76. }
  77. });
  78. that.setData({
  79. talkFlag: false,
  80. closeName: '开始录音'
  81. })
  82. } else {
  83. wx.getSetting({
  84. success(res) {
  85. if (!res.authSetting['scope.record']) {
  86. wx.authorize({
  87. scope: 'scope.record',
  88. success() {
  89. // 用户已经同意小程序使用录音功能,后续调用 wx.startRecord 接口不会弹窗询问
  90. const options = {}
  91. recordManager.start(options)
  92. },
  93. fail() {
  94. wx.openSetting({
  95. withSubscriptions: true,
  96. })
  97. }
  98. })
  99. } else {
  100. that.setData({
  101. talkFlag: true,
  102. closeName: '正在录音,再次点击结束录音'
  103. })
  104. const options = {}
  105. recordManager.start(options)
  106. }
  107. }
  108. })
  109. }
  110. },
  111. showAudio: function (e) {
  112. const index = e.currentTarget.dataset.index
  113. if (this.data.curAudioIndex != index) {
  114. this.setData({
  115. curAudioIndex: index,
  116. })
  117. audioContext.src = this.data.audioList[index].url
  118. audioContext.play()
  119. audioContext.onEnded((res) => {
  120. this.setData({
  121. curAudioIndex: '-1',
  122. })
  123. })
  124. } else {
  125. if (this.data.audioPause) {
  126. audioContext.play()
  127. this.setData({
  128. audioPause: false
  129. })
  130. } else {
  131. audioContext.pause()
  132. this.setData({
  133. audioPause: true
  134. })
  135. }
  136. }
  137. },
  138. delAudio: function (e) {
  139. const index = e.currentTarget.dataset.index
  140. // this.data.audioList.splice(index, 1);
  141. // this.setData({
  142. // audioList: this.data.audioList
  143. // })
  144. let records = this.data.audioList;
  145. let record = records[index];
  146. record.delete = 1
  147. this.setData({
  148. audioList: records
  149. })
  150. },
  151. uploadTap: function () {
  152. const that = this
  153. if(that.data.imgList.length>=6){
  154. wx.showToast({
  155. title: '最多上传6张图片',
  156. icon: 'none'
  157. })
  158. return
  159. }
  160. wx.chooseImage({
  161. count: 6,
  162. sourceType: ['album', 'camera'],
  163. success(res) {
  164. wx.showLoading({
  165. title: '上传中...',
  166. })
  167. for (var i in res.tempFilePaths) {
  168. wx.uploadFile({
  169. filePath: res.tempFilePaths[i],
  170. name: 'name',
  171. url: urls.file_upload,
  172. header: util.getHeaders(),
  173. success(res) {
  174. wx.showToast({
  175. title: '上传成功',
  176. })
  177. const rs = JSON.parse(JSON.parse(JSON.stringify(res.data)))
  178. const list = [{ url: rs.data[0].url }]
  179. that.setData({
  180. imgList: that.data.imgList.concat(list)
  181. })
  182. },
  183. fail(res) {
  184. wx.showToast({
  185. title: '上传失败',
  186. icon: none
  187. })
  188. },
  189. complete(res) {
  190. wx.hideLoading({
  191. success: (res) => { },
  192. })
  193. }
  194. })
  195. }
  196. }
  197. })
  198. },
  199. showImg: function (e) {
  200. const index = e.currentTarget.dataset.index
  201. let images = this.data.imgList;
  202. let imgs = []
  203. images.map(i => {
  204. imgs.push(i.url)
  205. })
  206. wx.previewImage({
  207. current: images[index].url,
  208. urls: imgs,
  209. })
  210. },
  211. delImg: function (e) {
  212. const index = e.currentTarget.dataset.index
  213. // this.data.imgList.splice(index, 1);
  214. let images = this.data.imgList;
  215. let image = images[index]
  216. image.delete = 1
  217. this.setData({
  218. imgList: images
  219. })
  220. },
  221. upLoadVideo: function () {
  222. const that = this
  223. if(that.data.videoList.length>=6){
  224. wx.showToast({
  225. title: '最多上传6部视频',
  226. icon: 'none'
  227. })
  228. return
  229. }
  230. wx.chooseVideo({
  231. camera: ['album'],
  232. success(res) {
  233. var file = {
  234. url: res.tempFilePath,
  235. coverUrl: res.thumbTempFilePath
  236. };
  237. var userData = '{"Vod":{}}';
  238. const urls = urlDef.urls;
  239. let createUrl = urls.video_create_upload + '?title=' + res.tempFilePath + '&fileName=' + res.tempFilePath;
  240. console.log('createUploadVideo ... ');
  241. util.apiPost(createUrl).then((rs) => {
  242. let d = JSON.parse(rs.data);
  243. // console.log('createUploadVideo ' + JSON.stringify(d));
  244. that.setData({
  245. uploadAuth: d.UploadAuth,
  246. uploadAddress: d.UploadAddress,
  247. videoId: d.VideoId,
  248. })
  249. uploader.addFile(file, null, null, null, userData)
  250. uploader.startUpload();
  251. // uploader.setUploadAuthAndAddress(uploadInfo, uploadAuth, uploadAddress, videoId);
  252. }, e => {
  253. console.log('createUploadVideo error ' + JSON.stringify(e));
  254. });
  255. }
  256. })
  257. },
  258. showVideo: function (e) {
  259. const index = e.currentTarget.dataset.index
  260. const curVideo = this.data.videoList[index].playUrl
  261. this.setData({
  262. curVideo
  263. })
  264. this.videoContext.requestFullScreen({ // 设置全屏时视频的方向,不指定则根据宽高比自动判断。
  265. direction: 90 // 屏幕逆时针90度
  266. });
  267. },
  268. // 监听视频是否为全屏,否则直接关闭
  269. bindfullscreenchange: function () {
  270. if (this.data.videoFlag == 0) {
  271. this.setData({
  272. videoFlag: 1
  273. })
  274. } else {
  275. this.setData({
  276. videoFlag: 0,
  277. curVideo: ""
  278. })
  279. }
  280. },
  281. delVideo: function (e) {
  282. const index = e.currentTarget.dataset.index
  283. // this.data.videoList.splice(index, 1);
  284. // this.setData({
  285. // videoList: this.data.videoList
  286. // })
  287. let videos = this.data.videoList;
  288. let video = videos[index]
  289. video.delete = 1
  290. this.setData({
  291. videoList: videos
  292. })
  293. },
  294. /**
  295. * 生命周期函数--监听页面加载
  296. */
  297. onLoad: function (options) {
  298. let urls = urlDef.urls;
  299. let stu = wx.getStorageSync('student')
  300. let homeworkId = options.homeworkId;
  301. let studentId = stu.studentId;
  302. this.setData({ homeworkId: homeworkId })
  303. let params = { 'q.homeworkId': homeworkId, 'q.studentId': studentId }
  304. util.apiPost(urls.homework_receive, params).then(rs => {
  305. });
  306. util.apiPost(urls.my_homework, params).then(rs => {
  307. if (rs.length > 0) {
  308. let entity = rs[0]
  309. let contents;
  310. try {
  311. contents = JSON.parse(entity.content);
  312. } catch (e) {
  313. contents = {};
  314. console.error(e);
  315. }
  316. this.setData({ content: contents.content })
  317. let images = contents.images == null ? [] : contents.images;
  318. images.forEach(r => {
  319. r.url = urls.oss_file + 'image/' + r.url
  320. });
  321. let records = contents.records == null ? [] : contents.records;
  322. records.forEach(r => {
  323. r.url = urls.oss_file + 'file/' + r.url
  324. });
  325. let videos = contents.videos == null ? [] : contents.videos;
  326. this.setData({
  327. imgList: images,
  328. audioList: records,
  329. videoList: videos
  330. });
  331. videos.forEach(r => {
  332. util.apiPost(urls.video_loadInfo + r.url).then(rs => {
  333. r.imgUrl = rs.img
  334. r.playUrl = rs.url
  335. this.reloadVideos(r)
  336. });
  337. });
  338. }
  339. });
  340. this.videoContext = wx.createVideoContext('play-video'); // 创建 video 上下文 VideoContext 对象。
  341. const that = this
  342. const createUpLoad = new VODUpload({
  343. //阿里账号ID,必须有值
  344. userId: "WaWQOn6gXod13WLEp8cr4ljUdvcbXJ",
  345. //网络原因失败时,重新上传次数,默认为3
  346. retryCount: 3,
  347. //网络原因失败时,重新上传间隔时间,默认为2秒
  348. retryDuration: 2,
  349. //开始上传
  350. 'onUploadstarted': function (uploadInfo) {
  351. wx.showLoading({
  352. title: '上传中...',
  353. mask: true
  354. })
  355. // console.log("onUploadStarted:" + uploadInfo.file.name + ", endpoint:" + uploadInfo.endpoint + ", bucket:" + uploadInfo.bucket + ", object:" + uploadInfo.object)
  356. //上传方式1,需要根据uploadInfo.videoId是否有值,调用点播的不同接口获取uploadauth和uploadAddress,如果videoId有值,调用刷新视频上传凭证接口,否则调用创建视频上传凭证接口
  357. if (uploadInfo.videoId) {
  358. //如果uploadInfo.videoId存在,调用刷新视频上传凭证接口
  359. } else {
  360. //如果uploadInfo.videoId不存在,调用获取视频上传地址和凭证接口
  361. }
  362. //从点播服务获取的uploadAuth、uploadAddress和videoId,设置SDK
  363. // console.log(that.data)
  364. uploader.setUploadAuthAndAddress(uploadInfo, that.data.uploadAuth, that.data.uploadAddress, that.data.videoId);
  365. },
  366. //文件上传成功
  367. 'onUploadSucceed': function (uploadInfo) {
  368. console.log("上传成功:" + JSON.stringify(uploadInfo))
  369. let vid = uploadInfo.videoId
  370. let stu = wx.getStorageSync('student')
  371. var video = { name: vid, videoId: vid, orgId: stu.orgId, size: uploadInfo.fileSize, title: '', content: '' };
  372. // 保存一个 video
  373. let urls = urlDef.urls
  374. util.apiPost(urls.video_save, video, 'application/json').then((rs) => {
  375. var json = {
  376. url: uploadInfo.videoId,
  377. playUrl: uploadInfo.url,
  378. imgUrl: uploadInfo.coverUrl
  379. }
  380. console.log('视频上传成功' + JSON.stringify(json))
  381. var list = [json]
  382. that.setData({
  383. videoList: that.data.videoList.concat(list)
  384. })
  385. wx.showToast({
  386. title: '上传成功',
  387. })
  388. })
  389. // console.log("onUploadSucceed: " + uploadInfo.file.name + ", endpoint:" + uploadInfo.endpoint + ", bucket:" + uploadInfo.bucket + ", object:" + uploadInfo.object);
  390. },
  391. //文件上传失败
  392. 'onUploadFailed': function (uploadInfo, code, message) {
  393. // console.log("onUploadFailed: file:" + uploadInfo.file.name + ",code:" + code + ", message:" + message);
  394. wx.showToast({
  395. title: '上传失败',
  396. })
  397. },
  398. //文件上传进度,单位:字节
  399. 'onUploadProgress': function (uploadInfo, totalSize, loadedPercent) {
  400. // console.log("onUploadProgress:file:" + uploadInfo.file.name + ", fileSize:" + totalSize + ", percent:" + Math.ceil(loadedPercent * 100) + "%");
  401. },
  402. //上传凭证超时
  403. 'onUploadTokenExpired': function (uploadInfo) {
  404. wx.showToast({
  405. title: '上传超时',
  406. })
  407. console.log("onUploadTokenExpired");
  408. //实现时,根据uploadInfo.videoId调用刷新视频上传凭证接口重新获取UploadAuth
  409. //从点播服务刷新的uploadAuth,设置到SDK里
  410. uploader.resumeUploadWithAuth(uploadAuth);
  411. },
  412. //全部文件上传结束
  413. 'onUploadEnd': function (uploadInfo) {
  414. console.log("onUploadEnd: uploaded all the files");
  415. }
  416. });
  417. uploader = createUpLoad
  418. },
  419. /**
  420. * 生命周期函数--监听页面初次渲染完成
  421. */
  422. onReady: function () {
  423. },
  424. /**
  425. * 生命周期函数--监听页面显示
  426. */
  427. onShow: function () {
  428. },
  429. /**
  430. * 生命周期函数--监听页面隐藏
  431. */
  432. onHide: function () {
  433. },
  434. /**
  435. * 生命周期函数--监听页面卸载
  436. */
  437. onUnload: function () {
  438. audioContext.stop()
  439. },
  440. /**
  441. * 页面相关事件处理函数--监听用户下拉动作
  442. */
  443. onPullDownRefresh: function () {
  444. },
  445. /**
  446. * 页面上拉触底事件的处理函数
  447. */
  448. onReachBottom: function () {
  449. },
  450. /**
  451. * 用户点击右上角分享
  452. */
  453. onShareAppMessage: function () {
  454. },
  455. doConfirmComplete: function () {
  456. console.log('homeworkId ' + this.data.homeworkId)
  457. let contents = {};
  458. let dlist = [];
  459. let images = [];
  460. if (this.data.imgList.length > 0) {
  461. this.data.imgList.forEach(r => {
  462. let fid = r.url.substring(r.url.lastIndexOf('/') + 1)
  463. if (r.delete == 1) {
  464. dlist.push({ id: fid, type: 'image' })
  465. } else {
  466. images.push({ url: fid })
  467. }
  468. });
  469. }
  470. let records = [];
  471. if (this.data.audioList.length > 0) {
  472. this.data.audioList.forEach(r => {
  473. let fid = r.url.substring(r.url.lastIndexOf('/') + 1)
  474. if (r.delete == 1) {
  475. dlist.push({ id: fid, type: 'record' })
  476. } else {
  477. records.push({ url: fid })
  478. }
  479. });
  480. }
  481. let videos = [];
  482. if (this.data.videoList.length > 0) {
  483. this.data.videoList.forEach(r => {
  484. if (r.delete == 1) {
  485. dlist.push({ id: r.url, type: 'video' })
  486. } else {
  487. videos.push({ url: r.url })
  488. }
  489. });
  490. }
  491. this.setData({ delItems: dlist })
  492. contents.images = images;
  493. contents.videos = videos;
  494. contents.records = records;
  495. contents.content = this.data.content;
  496. let stu = wx.getStorageSync('student')
  497. let data = {
  498. 'q.content': JSON.stringify(contents),
  499. 'q.status': 1,
  500. 'q.studentId': stu.studentId,
  501. 'q.homeworkId': this.data.homeworkId
  502. }
  503. util.apiPost(urls.complete_homework, data).then(rs => {
  504. const msgParams = { 'homeworkId': this.data.homeworkId, 'studentId': stu.studentId };
  505. util.apiPost(urls.homework_complete_send_message, msgParams).then((rs) => {
  506. console.log('发送通知 ' + JSON.stringify(rs));
  507. });
  508. wx.showToast({
  509. title: '已完成作业'
  510. })
  511. setTimeout(() => {
  512. wx.navigateBack({
  513. delta: 2, // 返回上一级页面。
  514. success: function () {
  515. console.log('成功!')
  516. }
  517. })
  518. }, 1000)
  519. // 删除文件
  520. if (this.data.delItems.length > 0) {
  521. // 视频的删除跟文件的删除不一样
  522. let delFiles = [];
  523. let delVideos = [];
  524. this.data.delItems.forEach(r => {
  525. if (r.type === 'video') {
  526. delVideos.push(r.id);
  527. } else {
  528. delFiles.push(r.id);
  529. }
  530. });
  531. if (delFiles.length > 0) {
  532. const params = { 'keys': delFiles };
  533. util.apiPost(urls.file_delete, params).then((rs) => {
  534. console.log('删除文件 ... ' + JSON.stringify(params));
  535. });
  536. }
  537. if (delVideos.length > 0) {
  538. const params = { 'ids[]': delVideos }
  539. util.apiPost(urls.video_delete, params).then((rs) => {
  540. console.log('删除视频 ... ' + JSON.stringify(params));
  541. });
  542. }
  543. }
  544. })
  545. },
  546. reloadVideos: function (v) {
  547. let videos = this.data.videoList
  548. videos.map(o => {
  549. if (o.url == v.url) {
  550. o = v;
  551. }
  552. })
  553. this.setData({ videoList: videos })
  554. },
  555. doInput: function (e) {
  556. this.setData({ content: e.detail.value })
  557. }
  558. })