video.js 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796
  1. /**
  2. * Created by JetBrains PhpStorm.
  3. * User: taoqili
  4. * Date: 12-2-20
  5. * Time: 上午11:19
  6. * To change this template use File | Settings | File Templates.
  7. */
  8. (function(){
  9. var video = {},
  10. uploadVideoList = [],
  11. isModifyUploadVideo = false,
  12. uploadFile;
  13. window.onload = function(){
  14. $focus($G("videoUrl"));
  15. initTabs();
  16. initVideo();
  17. initUpload();
  18. };
  19. /* 初始化tab标签 */
  20. function initTabs(){
  21. var tabs = $G('tabHeads').children;
  22. for (var i = 0; i < tabs.length; i++) {
  23. domUtils.on(tabs[i], "click", function (e) {
  24. var j, bodyId, target = e.target || e.srcElement;
  25. for (j = 0; j < tabs.length; j++) {
  26. bodyId = tabs[j].getAttribute('data-content-id');
  27. if(tabs[j] == target){
  28. domUtils.addClass(tabs[j], 'focus');
  29. domUtils.addClass($G(bodyId), 'focus');
  30. }else {
  31. domUtils.removeClasses(tabs[j], 'focus');
  32. domUtils.removeClasses($G(bodyId), 'focus');
  33. }
  34. }
  35. });
  36. }
  37. }
  38. function initVideo(){
  39. createAlignButton( ["videoFloat", "upload_alignment"] );
  40. addUrlChangeListener($G("videoUrl"));
  41. addOkListener();
  42. //编辑视频时初始化相关信息
  43. (function(){
  44. var img = editor.selection.getRange().getClosedNode(),url;
  45. if(img && img.className){
  46. var hasFakedClass = (img.className == "edui-faked-video"),
  47. hasUploadClass = img.className.indexOf("edui-upload-video")!=-1;
  48. if(hasFakedClass || hasUploadClass) {
  49. $G("videoUrl").value = url = img.getAttribute("_url");
  50. $G("videoWidth").value = img.width;
  51. $G("videoHeight").value = img.height;
  52. var align = domUtils.getComputedStyle(img,"float"),
  53. parentAlign = domUtils.getComputedStyle(img.parentNode,"text-align");
  54. updateAlignButton(parentAlign==="center"?"center":align);
  55. }
  56. if(hasUploadClass) {
  57. isModifyUploadVideo = true;
  58. }
  59. }
  60. createPreviewVideo(url);
  61. })();
  62. }
  63. /**
  64. * 监听确认和取消两个按钮事件,用户执行插入或者清空正在播放的视频实例操作
  65. */
  66. function addOkListener(){
  67. dialog.onok = function(){
  68. $G("preview").innerHTML = "";
  69. var currentTab = findFocus("tabHeads","tabSrc");
  70. switch(currentTab){
  71. case "video":
  72. return insertSingle();
  73. break;
  74. case "videoSearch":
  75. return insertSearch("searchList");
  76. break;
  77. case "upload":
  78. return insertUpload();
  79. break;
  80. }
  81. };
  82. dialog.oncancel = function(){
  83. $G("preview").innerHTML = "";
  84. };
  85. }
  86. /**
  87. * 依据传入的align值更新按钮信息
  88. * @param align
  89. */
  90. function updateAlignButton( align ) {
  91. var aligns = $G( "videoFloat" ).children;
  92. for ( var i = 0, ci; ci = aligns[i++]; ) {
  93. if ( ci.getAttribute( "name" ) == align ) {
  94. if ( ci.className !="focus" ) {
  95. ci.className = "focus";
  96. }
  97. } else {
  98. if ( ci.className =="focus" ) {
  99. ci.className = "";
  100. }
  101. }
  102. }
  103. }
  104. /**
  105. * 将单个视频信息插入编辑器中
  106. */
  107. function insertSingle(){
  108. var width = $G("videoWidth"),
  109. height = $G("videoHeight"),
  110. url=$G('videoUrl').value,
  111. align = findFocus("videoFloat","name");
  112. if(!url) return false;
  113. if ( !checkNum( [width, height] ) ) return false;
  114. editor.execCommand('insertvideo', {
  115. url: convert_url(url),
  116. width: width.value,
  117. height: height.value,
  118. align: align
  119. }, isModifyUploadVideo ? 'upload':null);
  120. }
  121. /**
  122. * 将元素id下的所有代表视频的图片插入编辑器中
  123. * @param id
  124. */
  125. function insertSearch(id){
  126. var imgs = domUtils.getElementsByTagName($G(id),"img"),
  127. videoObjs=[];
  128. for(var i=0,img; img=imgs[i++];){
  129. if(img.getAttribute("selected")){
  130. videoObjs.push({
  131. url:img.getAttribute("ue_video_url"),
  132. width:420,
  133. height:280,
  134. align:"none"
  135. });
  136. }
  137. }
  138. editor.execCommand('insertvideo',videoObjs);
  139. }
  140. /**
  141. * 找到id下具有focus类的节点并返回该节点下的某个属性
  142. * @param id
  143. * @param returnProperty
  144. */
  145. function findFocus( id, returnProperty ) {
  146. var tabs = $G( id ).children,
  147. property;
  148. for ( var i = 0, ci; ci = tabs[i++]; ) {
  149. if ( ci.className=="focus" ) {
  150. property = ci.getAttribute( returnProperty );
  151. break;
  152. }
  153. }
  154. return property;
  155. }
  156. function convert_url(url){
  157. if ( !url ) return '';
  158. url = utils.trim(url)
  159. .replace(/v\.youku\.com\/v_show\/id_([\w\-=]+)\.html/i, 'player.youku.com/player.php/sid/$1/v.swf')
  160. .replace(/(www\.)?youtube\.com\/watch\?v=([\w\-]+)/i, "www.youtube.com/v/$2")
  161. .replace(/youtu.be\/(\w+)$/i, "www.youtube.com/v/$1")
  162. .replace(/v\.ku6\.com\/.+\/([\w\.]+)\.html.*$/i, "player.ku6.com/refer/$1/v.swf")
  163. .replace(/www\.56\.com\/u\d+\/v_([\w\-]+)\.html/i, "player.56.com/v_$1.swf")
  164. .replace(/www.56.com\/w\d+\/play_album\-aid\-\d+_vid\-([^.]+)\.html/i, "player.56.com/v_$1.swf")
  165. .replace(/v\.pps\.tv\/play_([\w]+)\.html.*$/i, "player.pps.tv/player/sid/$1/v.swf")
  166. .replace(/www\.letv\.com\/ptv\/vplay\/([\d]+)\.html.*$/i, "i7.imgs.letv.com/player/swfPlayer.swf?id=$1&autoplay=0")
  167. .replace(/www\.tudou\.com\/programs\/view\/([\w\-]+)\/?/i, "www.tudou.com/v/$1")
  168. .replace(/v\.qq\.com\/cover\/[\w]+\/[\w]+\/([\w]+)\.html/i, "static.video.qq.com/TPout.swf?vid=$1")
  169. .replace(/v\.qq\.com\/.+[\?\&]vid=([^&]+).*$/i, "static.video.qq.com/TPout.swf?vid=$1")
  170. .replace(/my\.tv\.sohu\.com\/[\w]+\/[\d]+\/([\d]+)\.shtml.*$/i, "share.vrs.sohu.com/my/v.swf&id=$1");
  171. return url;
  172. }
  173. /**
  174. * 检测传入的所有input框中输入的长宽是否是正数
  175. * @param nodes input框集合,
  176. */
  177. function checkNum( nodes ) {
  178. for ( var i = 0, ci; ci = nodes[i++]; ) {
  179. var value = ci.value;
  180. if ( !isNumber( value ) && value) {
  181. alert( lang.numError );
  182. ci.value = "";
  183. ci.focus();
  184. return false;
  185. }
  186. }
  187. return true;
  188. }
  189. /**
  190. * 数字判断
  191. * @param value
  192. */
  193. function isNumber( value ) {
  194. return /(0|^[1-9]\d*$)/.test( value );
  195. }
  196. /**
  197. * 创建图片浮动选择按钮
  198. * @param ids
  199. */
  200. function createAlignButton( ids ) {
  201. for ( var i = 0, ci; ci = ids[i++]; ) {
  202. var floatContainer = $G( ci ),
  203. nameMaps = {"none":lang['default'], "left":lang.floatLeft, "right":lang.floatRight, "center":lang.block};
  204. for ( var j in nameMaps ) {
  205. var div = document.createElement( "div" );
  206. div.setAttribute( "name", j );
  207. if ( j == "none" ) div.className="focus";
  208. div.style.cssText = "background:url(images/" + j + "_focus.jpg);";
  209. div.setAttribute( "title", nameMaps[j] );
  210. floatContainer.appendChild( div );
  211. }
  212. switchSelect( ci );
  213. }
  214. }
  215. /**
  216. * 选择切换
  217. * @param selectParentId
  218. */
  219. function switchSelect( selectParentId ) {
  220. var selects = $G( selectParentId ).children;
  221. for ( var i = 0, ci; ci = selects[i++]; ) {
  222. domUtils.on( ci, "click", function () {
  223. for ( var j = 0, cj; cj = selects[j++]; ) {
  224. cj.className = "";
  225. cj.removeAttribute && cj.removeAttribute( "class" );
  226. }
  227. this.className = "focus";
  228. } )
  229. }
  230. }
  231. /**
  232. * 监听url改变事件
  233. * @param url
  234. */
  235. function addUrlChangeListener(url){
  236. if (browser.ie) {
  237. url.onpropertychange = function () {
  238. createPreviewVideo( this.value );
  239. }
  240. } else {
  241. url.addEventListener( "input", function () {
  242. createPreviewVideo( this.value );
  243. }, false );
  244. }
  245. }
  246. /**
  247. * 根据url生成视频预览
  248. * @param url
  249. */
  250. function createPreviewVideo(url){
  251. if ( !url )return;
  252. var conUrl = convert_url(url);
  253. conUrl = utils.unhtmlForUrl(conUrl);
  254. $G("preview").innerHTML = '<div class="previewMsg"><span>'+lang.urlError+'</span></div>'+
  255. '<embed class="previewVideo" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"' +
  256. ' src="' + conUrl + '"' +
  257. ' width="' + 420 + '"' +
  258. ' height="' + 280 + '"' +
  259. ' wmode="transparent" play="true" loop="false" menu="false" allowscriptaccess="never" allowfullscreen="true" >' +
  260. '</embed>';
  261. }
  262. /* 插入上传视频 */
  263. function insertUpload(){
  264. var videoObjs=[],
  265. uploadDir = editor.getOpt('videoUrlPrefix'),
  266. width = parseInt($G('upload_width').value, 10) || 420,
  267. height = parseInt($G('upload_height').value, 10) || 280,
  268. align = findFocus("upload_alignment","name") || 'none';
  269. for(var key in uploadVideoList) {
  270. var file = uploadVideoList[key];
  271. videoObjs.push({
  272. url: uploadDir + file.url,
  273. width:width,
  274. height:height,
  275. align:align
  276. });
  277. }
  278. var count = uploadFile.getQueueCount();
  279. if (count) {
  280. $('.info', '#queueList').html('<span style="color:red;">' + '还有2个未上传文件'.replace(/[\d]/, count) + '</span>');
  281. return false;
  282. } else {
  283. editor.execCommand('insertvideo', videoObjs, 'upload');
  284. }
  285. }
  286. /*初始化上传标签*/
  287. function initUpload(){
  288. uploadFile = new UploadFile('queueList');
  289. }
  290. /* 上传附件 */
  291. function UploadFile(target) {
  292. this.$wrap = target.constructor == String ? $('#' + target) : $(target);
  293. this.init();
  294. }
  295. UploadFile.prototype = {
  296. init: function () {
  297. this.fileList = [];
  298. this.initContainer();
  299. this.initUploader();
  300. },
  301. initContainer: function () {
  302. this.$queue = this.$wrap.find('.filelist');
  303. },
  304. /* 初始化容器 */
  305. initUploader: function () {
  306. var _this = this,
  307. $ = jQuery, // just in case. Make sure it's not an other libaray.
  308. $wrap = _this.$wrap,
  309. // 图片容器
  310. $queue = $wrap.find('.filelist'),
  311. // 状态栏,包括进度和控制按钮
  312. $statusBar = $wrap.find('.statusBar'),
  313. // 文件总体选择信息。
  314. $info = $statusBar.find('.info'),
  315. // 上传按钮
  316. $upload = $wrap.find('.uploadBtn'),
  317. // 上传按钮
  318. $filePickerBtn = $wrap.find('.filePickerBtn'),
  319. // 上传按钮
  320. $filePickerBlock = $wrap.find('.filePickerBlock'),
  321. // 没选择文件之前的内容。
  322. $placeHolder = $wrap.find('.placeholder'),
  323. // 总体进度条
  324. $progress = $statusBar.find('.progress').hide(),
  325. // 添加的文件数量
  326. fileCount = 0,
  327. // 添加的文件总大小
  328. fileSize = 0,
  329. // 优化retina, 在retina下这个值是2
  330. ratio = window.devicePixelRatio || 1,
  331. // 缩略图大小
  332. thumbnailWidth = 113 * ratio,
  333. thumbnailHeight = 113 * ratio,
  334. // 可能有pedding, ready, uploading, confirm, done.
  335. state = '',
  336. // 所有文件的进度信息,key为file id
  337. percentages = {},
  338. supportTransition = (function () {
  339. var s = document.createElement('p').style,
  340. r = 'transition' in s ||
  341. 'WebkitTransition' in s ||
  342. 'MozTransition' in s ||
  343. 'msTransition' in s ||
  344. 'OTransition' in s;
  345. s = null;
  346. return r;
  347. })(),
  348. // WebUploader实例
  349. uploader,
  350. actionUrl = editor.getActionUrl(editor.getOpt('videoActionName')),
  351. fileMaxSize = editor.getOpt('videoMaxSize'),
  352. acceptExtensions = (editor.getOpt('videoAllowFiles') || []).join('').replace(/\./g, ',').replace(/^[,]/, '');;
  353. if (!WebUploader.Uploader.support()) {
  354. $('#filePickerReady').after($('<div>').html(lang.errorNotSupport)).hide();
  355. return;
  356. } else if (!editor.getOpt('videoActionName')) {
  357. $('#filePickerReady').after($('<div>').html(lang.errorLoadConfig)).hide();
  358. return;
  359. }
  360. uploader = _this.uploader = WebUploader.create({
  361. pick: {
  362. id: '#filePickerReady',
  363. label: lang.uploadSelectFile
  364. },
  365. swf: '../../third-party/webuploader/Uploader.swf',
  366. server: actionUrl,
  367. fileVal: editor.getOpt('videoFieldName'),
  368. duplicate: true,
  369. timeout: 0,
  370. fileSingleSizeLimit: fileMaxSize,
  371. compress: false,
  372. chunked: true,//开启分片
  373. chunkSize: 512 * 1024,// 单位B
  374. // 禁掉全局的拖拽功能。这样不会出现图片拖进页面的时候,把图片打开。
  375. disableGlobalDnd: true
  376. });
  377. uploader.addButton({
  378. id: '#filePickerBlock'
  379. });
  380. uploader.addButton({
  381. id: '#filePickerBtn',
  382. label: lang.uploadAddFile
  383. });
  384. setState('pedding');
  385. // 当有文件添加进来时执行,负责view的创建
  386. function addFile(file) {
  387. var $li = $('<li id="' + file.id + '">' +
  388. '<p class="title">' + file.name + '</p>' +
  389. '<p class="imgWrap"></p>' +
  390. '<p class="progress"><span></span></p>' +
  391. '</li>'),
  392. $btns = $('<div class="file-panel">' +
  393. '<span class="cancel">' + lang.uploadDelete + '</span>' +
  394. '<span class="rotateRight">' + lang.uploadTurnRight + '</span>' +
  395. '<span class="rotateLeft">' + lang.uploadTurnLeft + '</span></div>').appendTo($li),
  396. $prgress = $li.find('p.progress span'),
  397. $wrap = $li.find('p.imgWrap'),
  398. $info = $('<p class="error"></p>').hide().appendTo($li),
  399. showError = function (code) {
  400. switch (code) {
  401. case 'exceed_size':
  402. text = lang.errorExceedSize;
  403. break;
  404. case 'interrupt':
  405. text = lang.errorInterrupt;
  406. break;
  407. case 'http':
  408. text = lang.errorHttp;
  409. break;
  410. case 'not_allow_type':
  411. text = lang.errorFileType;
  412. break;
  413. default:
  414. text = lang.errorUploadRetry;
  415. break;
  416. }
  417. $info.text(text).show();
  418. };
  419. if (file.getStatus() === 'invalid') {
  420. showError(file.statusText);
  421. } else {
  422. $wrap.text(lang.uploadPreview);
  423. if ('|png|jpg|jpeg|bmp|gif|'.indexOf('|'+file.ext.toLowerCase()+'|') == -1) {
  424. $wrap.empty().addClass('notimage').append('<i class="file-preview file-type-' + file.ext.toLowerCase() + '"></i>' +
  425. '<span class="file-title">' + file.name + '</span>');
  426. } else {
  427. if (browser.ie && browser.version <= 7) {
  428. $wrap.text(lang.uploadNoPreview);
  429. } else {
  430. uploader.makeThumb(file, function (error, src) {
  431. if (error || !src || (/^data:/.test(src) && browser.ie && browser.version <= 7)) {
  432. $wrap.text(lang.uploadNoPreview);
  433. } else {
  434. var $img = $('<img src="' + src + '">');
  435. $wrap.empty().append($img);
  436. $img.on('error', function () {
  437. $wrap.text(lang.uploadNoPreview);
  438. });
  439. }
  440. }, thumbnailWidth, thumbnailHeight);
  441. }
  442. }
  443. percentages[ file.id ] = [ file.size, 0 ];
  444. file.rotation = 0;
  445. /* 检查文件格式 */
  446. if (!file.ext || acceptExtensions.indexOf(file.ext.toLowerCase()) == -1) {
  447. showError('not_allow_type');
  448. uploader.removeFile(file);
  449. }
  450. }
  451. file.on('statuschange', function (cur, prev) {
  452. if (prev === 'progress') {
  453. $prgress.hide().width(0);
  454. } else if (prev === 'queued') {
  455. $li.off('mouseenter mouseleave');
  456. $btns.remove();
  457. }
  458. // 成功
  459. if (cur === 'error' || cur === 'invalid') {
  460. showError(file.statusText);
  461. percentages[ file.id ][ 1 ] = 1;
  462. } else if (cur === 'interrupt') {
  463. showError('interrupt');
  464. } else if (cur === 'queued') {
  465. percentages[ file.id ][ 1 ] = 0;
  466. } else if (cur === 'progress') {
  467. $info.hide();
  468. $prgress.css('display', 'block');
  469. } else if (cur === 'complete') {
  470. }
  471. $li.removeClass('state-' + prev).addClass('state-' + cur);
  472. });
  473. $li.on('mouseenter', function () {
  474. $btns.stop().animate({height: 30});
  475. });
  476. $li.on('mouseleave', function () {
  477. $btns.stop().animate({height: 0});
  478. });
  479. $btns.on('click', 'span', function () {
  480. var index = $(this).index(),
  481. deg;
  482. switch (index) {
  483. case 0:
  484. uploader.removeFile(file);
  485. return;
  486. case 1:
  487. file.rotation += 90;
  488. break;
  489. case 2:
  490. file.rotation -= 90;
  491. break;
  492. }
  493. if (supportTransition) {
  494. deg = 'rotate(' + file.rotation + 'deg)';
  495. $wrap.css({
  496. '-webkit-transform': deg,
  497. '-mos-transform': deg,
  498. '-o-transform': deg,
  499. 'transform': deg
  500. });
  501. } else {
  502. $wrap.css('filter', 'progid:DXImageTransform.Microsoft.BasicImage(rotation=' + (~~((file.rotation / 90) % 4 + 4) % 4) + ')');
  503. }
  504. });
  505. $li.insertBefore($filePickerBlock);
  506. }
  507. // 负责view的销毁
  508. function removeFile(file) {
  509. var $li = $('#' + file.id);
  510. delete percentages[ file.id ];
  511. updateTotalProgress();
  512. $li.off().find('.file-panel').off().end().remove();
  513. }
  514. function updateTotalProgress() {
  515. var loaded = 0,
  516. total = 0,
  517. spans = $progress.children(),
  518. percent;
  519. $.each(percentages, function (k, v) {
  520. total += v[ 0 ];
  521. loaded += v[ 0 ] * v[ 1 ];
  522. });
  523. percent = total ? loaded / total : 0;
  524. spans.eq(0).text(Math.round(percent * 100) + '%');
  525. spans.eq(1).css('width', Math.round(percent * 100) + '%');
  526. updateStatus();
  527. }
  528. function setState(val, files) {
  529. if (val != state) {
  530. var stats = uploader.getStats();
  531. $upload.removeClass('state-' + state);
  532. $upload.addClass('state-' + val);
  533. switch (val) {
  534. /* 未选择文件 */
  535. case 'pedding':
  536. $queue.addClass('element-invisible');
  537. $statusBar.addClass('element-invisible');
  538. $placeHolder.removeClass('element-invisible');
  539. $progress.hide(); $info.hide();
  540. uploader.refresh();
  541. break;
  542. /* 可以开始上传 */
  543. case 'ready':
  544. $placeHolder.addClass('element-invisible');
  545. $queue.removeClass('element-invisible');
  546. $statusBar.removeClass('element-invisible');
  547. $progress.hide(); $info.show();
  548. $upload.text(lang.uploadStart);
  549. uploader.refresh();
  550. break;
  551. /* 上传中 */
  552. case 'uploading':
  553. $progress.show(); $info.hide();
  554. $upload.text(lang.uploadPause);
  555. break;
  556. /* 暂停上传 */
  557. case 'paused':
  558. $progress.show(); $info.hide();
  559. $upload.text(lang.uploadContinue);
  560. break;
  561. case 'confirm':
  562. $progress.show(); $info.hide();
  563. $upload.text(lang.uploadStart);
  564. stats = uploader.getStats();
  565. if (stats.successNum && !stats.uploadFailNum) {
  566. setState('finish');
  567. return;
  568. }
  569. break;
  570. case 'finish':
  571. $progress.hide(); $info.show();
  572. if (stats.uploadFailNum) {
  573. $upload.text(lang.uploadRetry);
  574. } else {
  575. $upload.text(lang.uploadStart);
  576. }
  577. break;
  578. }
  579. state = val;
  580. updateStatus();
  581. }
  582. if (!_this.getQueueCount()) {
  583. $upload.addClass('disabled')
  584. } else {
  585. $upload.removeClass('disabled')
  586. }
  587. }
  588. function updateStatus() {
  589. var text = '', stats;
  590. if (state === 'ready') {
  591. text = lang.updateStatusReady.replace('_', fileCount).replace('_KB', WebUploader.formatSize(fileSize));
  592. } else if (state === 'confirm') {
  593. stats = uploader.getStats();
  594. if (stats.uploadFailNum) {
  595. text = lang.updateStatusConfirm.replace('_', stats.successNum).replace('_', stats.successNum);
  596. }
  597. } else {
  598. stats = uploader.getStats();
  599. text = lang.updateStatusFinish.replace('_', fileCount).
  600. replace('_KB', WebUploader.formatSize(fileSize)).
  601. replace('_', stats.successNum);
  602. if (stats.uploadFailNum) {
  603. text += lang.updateStatusError.replace('_', stats.uploadFailNum);
  604. }
  605. }
  606. $info.html(text);
  607. }
  608. uploader.on('fileQueued', function (file) {
  609. fileCount++;
  610. fileSize += file.size;
  611. if (fileCount === 1) {
  612. $placeHolder.addClass('element-invisible');
  613. $statusBar.show();
  614. }
  615. addFile(file);
  616. });
  617. uploader.on('fileDequeued', function (file) {
  618. fileCount--;
  619. fileSize -= file.size;
  620. removeFile(file);
  621. updateTotalProgress();
  622. });
  623. uploader.on('filesQueued', function (file) {
  624. if (!uploader.isInProgress() && (state == 'pedding' || state == 'finish' || state == 'confirm' || state == 'ready')) {
  625. setState('ready');
  626. }
  627. updateTotalProgress();
  628. });
  629. uploader.on('all', function (type, files) {
  630. switch (type) {
  631. case 'uploadFinished':
  632. setState('confirm', files);
  633. break;
  634. case 'startUpload':
  635. /* 添加额外的GET参数 */
  636. var params = utils.serializeParam(editor.queryCommandValue('serverparam')) || '',
  637. url = utils.formatUrl(actionUrl + (actionUrl.indexOf('?') == -1 ? '?':'&') + 'encode=utf-8&' + params);
  638. uploader.option('server', url);
  639. setState('uploading', files);
  640. break;
  641. case 'stopUpload':
  642. setState('paused', files);
  643. break;
  644. }
  645. });
  646. uploader.on('uploadBeforeSend', function (file, data, header) {
  647. //这里可以通过data对象添加POST参数
  648. header['X_Requested_With'] = 'XMLHttpRequest';
  649. });
  650. uploader.on('uploadProgress', function (file, percentage) {
  651. var $li = $('#' + file.id),
  652. $percent = $li.find('.progress span');
  653. $percent.css('width', percentage * 100 + '%');
  654. percentages[ file.id ][ 1 ] = percentage;
  655. updateTotalProgress();
  656. });
  657. uploader.on('uploadSuccess', function (file, ret) {
  658. var $file = $('#' + file.id);
  659. try {
  660. var responseText = (ret._raw || ret),
  661. json = utils.str2json(responseText);
  662. if (json.state == 'SUCCESS') {
  663. uploadVideoList.push({
  664. 'url': json.url,
  665. 'type': json.type,
  666. 'original':json.original
  667. });
  668. $file.append('<span class="success"></span>');
  669. } else {
  670. $file.find('.error').text(json.state).show();
  671. }
  672. } catch (e) {
  673. $file.find('.error').text(lang.errorServerUpload).show();
  674. }
  675. });
  676. uploader.on('uploadError', function (file, code) {
  677. });
  678. uploader.on('error', function (code, file) {
  679. if (code == 'Q_TYPE_DENIED' || code == 'F_EXCEED_SIZE') {
  680. addFile(file);
  681. }
  682. });
  683. uploader.on('uploadComplete', function (file, ret) {
  684. });
  685. $upload.on('click', function () {
  686. if ($(this).hasClass('disabled')) {
  687. return false;
  688. }
  689. if (state === 'ready') {
  690. uploader.upload();
  691. } else if (state === 'paused') {
  692. uploader.upload();
  693. } else if (state === 'uploading') {
  694. uploader.stop();
  695. }
  696. });
  697. $upload.addClass('state-' + state);
  698. updateTotalProgress();
  699. },
  700. getQueueCount: function () {
  701. var file, i, status, readyFile = 0, files = this.uploader.getFiles();
  702. for (i = 0; file = files[i++]; ) {
  703. status = file.getStatus();
  704. if (status == 'queued' || status == 'uploading' || status == 'progress') readyFile++;
  705. }
  706. return readyFile;
  707. },
  708. refresh: function(){
  709. this.uploader.refresh();
  710. }
  711. };
  712. })();