Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

article_media_edit.htm 41KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816
  1. <div class="item-from-flex border-b-no">
  2. <div class="item-flex-l">
  3. <div class="item-tit">
  4. 视频上传
  5. </div>
  6. <div class="item-con">
  7. <a href="javascript:void(0);" onclick="addUrlSys();" class="addr_y">新增</a>
  8. </div>
  9. </div>
  10. </div>
  11. <div class="item-from-flex pt0">
  12. <textarea class="none" name="video" id="video" cols="30" rows="10"></textarea>
  13. <div id="url-box_sys" style="padding: 10px 10px;width: 100%;background: #9e9e9e17;">
  14. </div>
  15. </div>
  16. <div class="item-from-flex">
  17. <div class="item-flex-l">
  18. <div class="item-tit">
  19. 附件地址
  20. </div>
  21. <div class="item-con flexi">
  22. <input type="text" name="addonFieldExt[courseware]" value="{$ArchivesData.courseware|default=''}" id="addonFieldExt_courseware" class="input-txt" style="flex: 2;width: auto;padding: 6px 5px;border: 1px solid #e1e1e1;margin-right: 5px;">
  23. <input type="file" id="courseware_file" data-type='local' onchange="upload_file_courseware_1585641738(this)" style="display: none;">
  24. {if isset($channelRow.data.qiniuyun_open) && $channelRow.data.qiniuyun_open == 1}
  25. <a href="javascript:void(0);" class="addr_q" id="upload_addonFieldExt_courseware_qiniu" onclick="$('#courseware_file').attr('data-type','qiniu').trigger('click');">七牛云上传</a>
  26. {elseif isset($channelRow.data.oss_open) && $channelRow.data.oss_open == 1}
  27. <a href="javascript:void(0);" class="addr_q" id="upload_addonFieldExt_courseware_oss" onclick="$('#courseware_file').attr('data-type','oss').trigger('click');">oss上传</a>
  28. {elseif isset($channelRow.data.cos_open) && $channelRow.data.cos_open == 1}
  29. <a href="javascript:void(0);" class="addr_q" id="upload_addonFieldExt_courseware_cos" onclick="$('#courseware_file').attr('data-type', 'cos').trigger('click');">cos上传</a>
  30. {else/}
  31. <a href="javascript:void(0);" class="addr_q" id="upload_addonFieldExt_courseware_local" onclick="$('#courseware_file').attr('data-type','local').trigger('click');">本地上传</a>
  32. {/if}
  33. </div>
  34. </div>
  35. </div>
  36. <script>
  37. $(function () {
  38. var data = '{$video_list|default=""}';
  39. if(data){
  40. data = JSON.parse(data);
  41. var num = 0;
  42. data.forEach(function(v){
  43. num++;
  44. addUrlSys(num,v);
  45. });
  46. }
  47. })
  48. layui.use('upload', function(){
  49. var upload = layui.upload;
  50. //执行实例
  51. //创建监听函数
  52. var xhrOnProgress=function(fun) {
  53. xhrOnProgress.onprogress = fun; //绑定监听
  54. //使用闭包实现监听绑
  55. return function() {
  56. var xhr = $.ajaxSettings.xhr(); //通过此方法获得XMLHttpRequest对象
  57. //判断监听函数是否为函数
  58. if (typeof xhrOnProgress.onprogress !== 'function') {
  59. return xhr;
  60. }
  61. //如果有监听函数并且xhr对象支持绑定时就把监听函数绑定上去
  62. if (xhrOnProgress.onprogress && xhr.upload) {
  63. xhr.upload.onprogress = xhrOnProgress.onprogress;
  64. }
  65. return xhr;
  66. }
  67. };
  68. upload.render({
  69. elem: "#upload_video_sys_1" //绑定元素
  70. ,url: "{:url('Uploadify/upVideo', ['savepath'=>'media'])}" //上传接口
  71. ,accept: 'video' //视频
  72. ,exts: '{$media_type}'
  73. ,size: {$upload_max_filesize} //限制文件大小,单位 KB
  74. ,before: function(obj){
  75. $("#upload_video_sys_1").text('等待中...');
  76. }
  77. ,xhr:xhrOnProgress
  78. ,progress: function(percent) {
  79. //上传进度回调 value进度值
  80. $("#upload_video_sys_1").text('上传中...'+percent+'%');
  81. }
  82. ,done: function(res){
  83. if ("SUCCESS" == res.state) {
  84. $("#video_url_sys_1").val(res.url);
  85. $("#video_time_sys_1").val(res.time);
  86. $("#video_size_sys_1").val(res.size);
  87. $("#video_mime_sys_1").val(res.mime);
  88. $("#video_name_sys_1").val(res.title);
  89. $("#upload_video_sys_1").text('上传成功');
  90. setTimeout(function(){
  91. $('#upload_video_sys_1').text('本地上传');
  92. }, 2000 )
  93. }else {
  94. $("#upload_video_sys_1").text('上传失败');
  95. setTimeout(function(){
  96. $('#upload_video_sys_1').text('本地上传');
  97. }, 2000 )
  98. layer.msg(res.state,{icon: 2});
  99. }
  100. }
  101. ,error: function(){
  102. // layer.close(load); //关闭loading
  103. }
  104. });
  105. });
  106. function addUrlSys(n,v) {
  107. var is_show_qiniuyun = {$channelRow.data.qiniuyun_open|default=0};
  108. var is_show_oss = {$channelRow.data.oss_open|default=0};
  109. var is_show_cos = {$channelRow.data.cos_open|default=0};
  110. if (n) {
  111. var num = n;
  112. var html = "";
  113. html += "<div id=\"num_upload_box_sys\" class='media_del_1586481014_" + num + "' data-num='" + num + "' style='margin-bottom: 15px;'>\n" +
  114. " <div class=\"media_del_box\">\n" +
  115. " <input type=\"text\" class=\"input-txt\" id=\"video_url_sys_" + num + "\" value=\"" + v.file_url + "\" style=\"width: 100% !important;\" placeholder=\"请输入链接地址\">\n" +
  116. " </div>\n" +
  117. " <div class=\"media_del_box\">\n" +
  118. " <input type=\"text\" class=\"input-txt mr10\" id=\"video_title_sys_" + num + "\" value=\"" + v.file_title + "\" style=\"width: 230px !important;\" placeholder=\"请输入选集名称\"><input type=\"text\" class=\"input-txt\" id=\"video_time_sys_" + num + "\" value=\"" + v.file_time + "\" style=\"width: 120px !important;margin-left: auto;\" placeholder=\"请输入时长(秒)\">\n" +
  119. " </div>\n" +
  120. " <div class=\"media_del_box\">\n" +
  121. " <input type=\"hidden\" class=\"input-txt\" id=\"video_size_sys_" + num + "\" value=\"" + v.file_size + "\">" +
  122. " <input type=\"hidden\" class=\"input-txt\" id=\"video_mime_sys_" + num + "\" value=\"" + v.file_mime + "\">" +
  123. " <input type=\"hidden\" class=\"input-txt\" id=\"video_name_sys_" + num + "\" value=\"" + v.file_name + "\">" +
  124. " <input type=\"hidden\" class=\"input-txt\" id=\"video_file_id_" + num + "\" value=\"" + v.file_id + "\">" +
  125. " <input type=\"file\" class=\"input-txt\" id=\"qiniu_click_sys_" + num + "\" onchange=\"QiniuUpload('" + num + "');\" style=\"display: none;\">\n" +
  126. " <input type=\"file\" class=\"input-txt\" id=\"oss_click_sys_" + num + "\" onchange=\"OssUpload('" + num + "');\" style=\"display: none;\">\n" +
  127. " <input type=\"file\" class=\"input-txt\" id=\"cos_click_sys_" + num + "\" onchange=\"CosUpload('" + num + "');\" style=\"display: none;\">\n";
  128. if (is_show_qiniuyun == 1) {
  129. html += " <a href=\"javascript:void(0);\" class=\"addr_q\" id=\"qiniu_upload_video_sys_" + num + "\" onclick=\"click_qiniu_sys('" + num + "')\">七牛云上传</a>\n";
  130. } else if (is_show_oss == 1) {
  131. html += " <a href=\"javascript:void(0);\" class=\"addr_q\" id=\"oss_upload_video_sys_" + num + "\" onclick=\"click_oss_sys('" + num + "')\">oss上传</a>\n";
  132. } else if (is_show_cos == 1) {
  133. html += " <a href=\"javascript:void(0);\" class=\"addr_q\" id=\"cos_upload_video_sys_" + num + "\" onclick=\"click_cos_sys('" + num + "');\">cos上传</a>\n";
  134. } else {
  135. html += " <a href=\"javascript:void(0);\" class=\"addr_q\" id=\"upload_video_sys_" + num + "\" data-num='" + num + "'>本地上传</a>\n";
  136. }
  137. var IsGratis = 1 == v.gratis ? 'checked' : '';
  138. html += " &nbsp; &nbsp; <label onselectstart='return false' style=\"display: flex;align-items: center;margin: 0;\"><input type='checkbox' id='video_gratis_sys_" + num + "' value='1' " + IsGratis + " style=\"margin-right: 2px;\">试看</label>" +
  139. "<a href=\"javascript:void(0);\" class=\"addr_q\" style=\"margin-left: auto;\" onclick=\"media_del('" + num + "')\">删除</a>\n" +
  140. " </div>\n" +
  141. "</div>";
  142. $('#url-box_sys').append(html);
  143. } else {
  144. var num = $("#url-box_sys #num_upload_box_sys").last().attr("data-num");
  145. if (!num) {
  146. num = 0;
  147. }
  148. num++;
  149. var html = "";
  150. html += "<div id=\"num_upload_box_sys\" class='media_del_1586481014_" + num + "' data-num='" + num + "' style='margin-bottom: 15px;'>\n" +
  151. " <div class=\"media_del_box\">\n" +
  152. " <input type=\"text\" class=\"input-txt\" id=\"video_url_sys_" + num + "\" style=\"width: 100% !important;display: inline-block;\" placeholder=\"请输入链接地址\">\n" +
  153. " </div>\n" +
  154. " <div class=\"media_del_box\">\n" +
  155. " <input type=\"text\" class=\"input-txt mr10\" id=\"video_title_sys_" + num + "\" style=\"width: 230px !important;display: inline-block;\" placeholder=\"请输入选集名称\"><input type=\"text\" class=\"input-txt\" id=\"video_time_sys_" + num + "\" style=\"width: 120px !important;margin-left: auto;display: inline-block;\" placeholder=\"请输入时长(秒)\">\n" +
  156. " </div>\n" +
  157. " <div class=\"media_del_box\">\n" +
  158. " <input type=\"hidden\" class=\"input-txt\" id=\"video_size_sys_" + num + "\">" +
  159. " <input type=\"hidden\" class=\"input-txt\" id=\"video_mime_sys_" + num + "\">" +
  160. " <input type=\"hidden\" class=\"input-txt\" id=\"video_name_sys_" + num + "\">" +
  161. " <input type=\"hidden\" class=\"input-txt\" id=\"video_file_id_" + num + "\">" +
  162. " <input type=\"file\" class=\"input-txt\" id=\"qiniu_click_sys_" + num + "\" onchange=\"QiniuUpload('" + num + "');\" style=\"display: none;\">\n" +
  163. " <input type=\"file\" class=\"input-txt\" id=\"oss_click_sys_" + num + "\" onchange=\"OssUpload('" + num + "');\" style=\"display: none;\">\n" +
  164. " <input type=\"file\" class=\"input-txt\" id=\"cos_click_sys_" + num + "\" onchange=\"CosUpload('" + num + "');\" style=\"display: none;\">\n";
  165. if (is_show_qiniuyun == 1) {
  166. html += " <a href=\"javascript:void(0);\" class=\"addr_q\" id=\"qiniu_upload_video_sys_" + num + "\" onclick=\"click_qiniu_sys('" + num + "')\">七牛云上传</a>\n";
  167. }else if (is_show_oss == 1) {
  168. html += " <a href=\"javascript:void(0);\" class=\"addr_q\" id=\"oss_upload_video_sys_" + num + "\" onclick=\"click_oss_sys('" + num + "')\">oss上传</a>\n";
  169. }else if (is_show_cos == 1) {
  170. html += " <a href=\"javascript:void(0);\" class=\"addr_q\" id=\"cos_upload_video_sys_" + num + "\" onclick=\"click_cos_sys('" + num + "')\">cos上传</a>\n";
  171. }else{
  172. html += " <a href=\"javascript:void(0);\" class=\"addr_q\" id=\"upload_video_sys_" + num + "\" data-num='" + num + "'>本地上传</a>\n" ;
  173. }
  174. html += " <a href=\"javascript:void(0);\" class=\"addr_q\" style=\"margin-left: auto;\" onclick=\"media_del('" + num + "')\">删除</a>\n" +
  175. " &nbsp; &nbsp; <label onselectstart='return false' style=\"display: flex;align-items: center;margin: 0;\"><input type='checkbox' id='video_gratis_sys_" + num + "' value='1' style=\"margin-right: 2px;\">试看</label>" +
  176. " </div>\n" +
  177. " </div>";
  178. $('#url-box_sys').append(html);
  179. }
  180. layui.use('upload', function(){
  181. var upload = layui.upload;
  182. var xhrOnProgress=function(fun) {
  183. xhrOnProgress.onprogress = fun;
  184. return function() {
  185. var xhr = $.ajaxSettings.xhr();
  186. if (typeof xhrOnProgress.onprogress !== 'function') {
  187. return xhr;
  188. }
  189. if (xhrOnProgress.onprogress && xhr.upload) {
  190. xhr.upload.onprogress = xhrOnProgress.onprogress;
  191. }
  192. return xhr;
  193. }
  194. };
  195. upload.render({
  196. elem: "#upload_video_sys_"+num
  197. ,url: "{:url('Uploadify/upVideo', ['savepath'=>'media'])}"
  198. ,accept: 'video' //视频
  199. ,exts: '{$media_type}'
  200. ,size: {$upload_max_filesize} //限制文件大小,单位 KB
  201. ,before: function(obj){
  202. $("#upload_video_sys_"+num).text('等待中...');
  203. }
  204. ,xhr:xhrOnProgress
  205. ,progress: function(percent) {
  206. $("#upload_video_sys_"+num).text('上传中...'+percent+'%');
  207. }
  208. ,done: function(res){
  209. if ("SUCCESS" == res.state) {
  210. var n = $(this.item).attr('data-num');
  211. $("#video_url_sys_"+n).val(res.url);
  212. $("#video_time_sys_"+n).val(res.time);
  213. $("#video_size_sys_"+n).val(res.size);
  214. $("#video_mime_sys_"+n).val(res.mime);
  215. $("#video_name_sys_"+n).val(res.title);
  216. $("#upload_video_sys_"+num).text('上传成功');
  217. setTimeout(function(){
  218. $('#upload_video_sys_'+num).text('本地上传');
  219. }, 2000 );
  220. }else {
  221. $("#upload_video_sys_"+num).text('上传失败');
  222. setTimeout(function(){
  223. $('#upload_video_sys_'+num).text('本地上传');
  224. }, 2000 );
  225. layer.msg(res.state,{icon: 2});
  226. }
  227. }
  228. ,error: function(){
  229. // layer.close(load); //关闭loading
  230. }
  231. });
  232. });
  233. }
  234. // 课件地址上传
  235. function upload_file_courseware_1585641738(e){
  236. var data_type = $(e).attr('data-type');
  237. if ('qiniu' == data_type) {
  238. upload_addonFieldExt_courseware_qiniu(e); // 七牛云上传
  239. } else if ('oss' == data_type) {
  240. upload_addonFieldExt_courseware_oss(e); // OSS上传
  241. } else if ('cos' == data_type) {
  242. upload_addonFieldExt_courseware_cos(e); // COS上传
  243. } else {
  244. var file = $(e)[0].files[0];
  245. if (!file) {
  246. return false;
  247. }
  248. var formData = new FormData();
  249. formData.append('file',file);
  250. $.ajax({
  251. type: 'post',
  252. url: "{:url('Uploadify/DownloadUploadFileAjax')}",
  253. data: formData,
  254. contentType: false,
  255. processData: false,
  256. dataType: 'json',
  257. xhr: function () { //获取ajaxSettings中的xhr对象,为它的upload属性绑定progress事件的处理函数
  258. myXhr = $.ajaxSettings.xhr();
  259. if (myXhr.upload) { //检查upload属性是否存在
  260. //绑定progress事件的回调函数
  261. // myXhr.upload.addEventListener('progress', progressHandlingFunction, false);
  262. myXhr.upload.addEventListener('progress', function(e){
  263. var curr = e.loaded;
  264. var total = e.total;
  265. process = parseInt(curr / total * 100);
  266. $("#upload_addonFieldExt_courseware_local").html('上传中...'+process+"%");
  267. });
  268. }
  269. return myXhr; //xhr对象返回给jQuery使用
  270. },
  271. success: function (res) {
  272. if (res.code==0){
  273. showErrorMsg(res.msg);
  274. $('#upload_addonFieldExt_courseware_local').html('本地上传');
  275. }if (res.state && !res.url) {
  276. showErrorMsg(res.state);
  277. $('#upload_addonFieldExt_courseware_local').html('本地上传');
  278. }else {
  279. $("#upload_addonFieldExt_courseware_local").html('上传成功');
  280. setTimeout(function(){
  281. $('#upload_addonFieldExt_courseware_local').html('本地上传');
  282. }, 2000 );
  283. var ori_url = $('#addonFieldExt_courseware').val();
  284. $("#addonFieldExt_courseware").val(res.url);
  285. //删除上次的文件
  286. if (ori_url) {
  287. del_media_file(ori_url)
  288. }
  289. }
  290. }
  291. })
  292. }
  293. }
  294. function upload_addonFieldExt_courseware_qiniu(obj)
  295. {
  296. var file = $("#courseware_file")[0].files[0]; //获取文件路径名
  297. var fileName = file.name;
  298. var fileExt = fileName.substr(fileName.lastIndexOf('.')).toLowerCase();
  299. var ext = judgeExt(fileExt,1);
  300. if (ext==-1) {
  301. showErrorAlert('不支持选中的文件格式,可在附件设置中修改');
  302. return false;
  303. }
  304. var size = "{$upload_max_filesize}";
  305. if (file.size > size) {
  306. showErrorAlert('文件大小超过限制,可在附件设置中修改');
  307. return false;
  308. }
  309. $.ajax({
  310. type: 'POST',
  311. url: '__ROOT_DIR__/index.php?m=plugins&c=Qiniuyun&a=qiniu_upload',
  312. data: {_ajax:1},
  313. dataType: "JSON",
  314. success: function(res1){
  315. if (1 == res1.code){
  316. var token = res1.data.token;
  317. var formData = new FormData();
  318. formData.append('file', file);
  319. formData.append('token', token);
  320. fileName = res1.data.filePath + fileExt;
  321. formData.append('key', fileName);
  322. $.ajax({
  323. url: res1.data.uphost,
  324. type: 'POST',
  325. dataType: 'JSON',
  326. data: formData,
  327. timeout: 1200000,
  328. cache: false, //默认是true,但是一般不做缓存
  329. processData: false, //用于对data参数进行序列化处理,这里必须false;如果是true,就会将FormData转换为String类型
  330. contentType: false, //一些文件上传http协议的关系,自行百度,如果上传的有文件,那么只能设置为false
  331. xhr: function () { //获取ajaxSettings中的xhr对象,为它的upload属性绑定progress事件的处理函数
  332. myXhr = $.ajaxSettings.xhr();
  333. if (myXhr.upload) { //检查upload属性是否存在
  334. //绑定progress事件的回调函数
  335. // myXhr.upload.addEventListener('progress', progressHandlingFunction, false);
  336. myXhr.upload.addEventListener('progress', function(e){
  337. var curr = e.loaded;
  338. var total = e.total;
  339. process = parseInt(curr / total * 100);
  340. $("#upload_addonFieldExt_courseware_qiniu").html('上传中...'+process+"%");
  341. });
  342. }
  343. return myXhr; //xhr对象返回给jQuery使用
  344. },
  345. success: function(res2){
  346. $("#upload_addonFieldExt_courseware_qiniu").html('上传成功');
  347. setTimeout(function(){
  348. $('#upload_addonFieldExt_courseware_qiniu').html('七牛云上传');
  349. }, 2000 );
  350. var video_url = res1.data.domain+"/"+res2.key;
  351. $("#addonFieldExt_courseware").val(video_url);
  352. },
  353. error: function(e){
  354. showErrorAlert(e.responseText);
  355. return false;
  356. }
  357. });
  358. }else{
  359. $("#courseware_file").val('');
  360. showErrorAlert(res1.msg);
  361. }
  362. },
  363. error: function(e){
  364. $("#courseware_file").val('');
  365. showErrorAlert(e.responseText);
  366. }
  367. });
  368. }
  369. function upload_addonFieldExt_courseware_oss(obj)
  370. {
  371. var file = $("#courseware_file")[0].files[0]; //获取文件路径名
  372. var fileName = file.name;
  373. var fileExt = fileName.substr(fileName.lastIndexOf('.')).toLowerCase();
  374. var ext = judgeExt(fileExt,1);
  375. if (ext==-1) {
  376. showErrorAlert('不支持选中的文件格式,可在附件设置中修改');
  377. return false;
  378. }
  379. var size = "{$upload_max_filesize}";
  380. if (file.size > size) {
  381. showErrorAlert('文件大小超过限制,可在附件设置中修改');
  382. return false;
  383. }
  384. $.ajax({
  385. type: 'POST',
  386. url: '__ROOT_DIR__/index.php?m=plugins&c=AliyunOss&a=oss_upload',
  387. data: {_ajax:1},
  388. dataType: "JSON",
  389. success: function(res1){
  390. if (1 == res1.code){
  391. fileName = res1.data.filePath + fileExt;
  392. //组装发送数据
  393. var request = new FormData();
  394. request.append("OSSAccessKeyId",res1.data.accessid);//Bucket 拥有者的Access Key Id。
  395. request.append("policy",res1.data.policy);//policy规定了请求的表单域的合法性
  396. request.append("Signature",res1.data.signature);//根据Access Key Secret和policy计算的签名信息,OSS验证该签名信息从而验证该Post请求的合法性
  397. request.append("key",fileName);//文件名字,可设置路径
  398. request.append("success_action_status",201);// 让服务端返回200,不然,默认会返回204
  399. request.append('file', file);//需要上传的文件 file
  400. $.ajax({
  401. url : res1.data.host, //上传阿里地址
  402. data : request,
  403. processData: false,
  404. cache: false,
  405. contentType: false,
  406. dataType: 'xml',
  407. type : 'post',
  408. xhr: function () { //获取ajaxSettings中的xhr对象,为它的upload属性绑定progress事件的处理函数
  409. myXhr = $.ajaxSettings.xhr();
  410. if (myXhr.upload) { //检查upload属性是否存在
  411. //绑定progress事件的回调函数
  412. myXhr.upload.addEventListener('progress', function(e){
  413. var curr = e.loaded;
  414. var total = e.total;
  415. var process = parseInt(curr / total * 100);
  416. $("#upload_addonFieldExt_courseware_oss").html('上传中...'+process+"%");
  417. });
  418. }
  419. return myXhr; //xhr对象返回给jQuery使用
  420. },
  421. success: function(res2){
  422. var res = $(res2).find('PostResponse');
  423. if (res) {
  424. var key = res.find('Key').text();
  425. $("#upload_addonFieldExt_courseware_oss").html('上传成功');
  426. setTimeout(function(){
  427. $('#upload_addonFieldExt_courseware_oss').html('oss上传');
  428. }, 2000 );
  429. var video_url = res1.data.domain+"/"+key;
  430. $("#addonFieldExt_courseware").val(video_url);
  431. }else{
  432. $("#upload_addonFieldExt_courseware_oss").html('上传失败');
  433. setTimeout(function(){
  434. $('#upload_addonFieldExt_courseware_oss').html('oss上传');
  435. }, 2000 );
  436. }
  437. },
  438. error: function(e){
  439. showErrorAlert(e.responseText);
  440. return false;
  441. }
  442. });
  443. }else{
  444. $("#courseware_file").val('');
  445. showErrorAlert(res1.msg);
  446. }
  447. },
  448. error: function(e){
  449. $("#courseware_file").val('');
  450. showErrorAlert(e.responseText);
  451. }
  452. });
  453. }
  454. function click_qiniu_sys(num)
  455. {
  456. $("#qiniu_click_sys_"+num).trigger("click");
  457. }
  458. function QiniuUpload(num)
  459. {
  460. var file = $("#qiniu_click_sys_"+num)[0].files[0]; //获取文件路径名
  461. var fileName = file.name;
  462. var fileExt = fileName.substr(fileName.lastIndexOf('.')).toLowerCase();
  463. var ext = judgeExt(fileExt);
  464. if (ext==-1) {
  465. showErrorAlert('不支持选中的视频格式,可在附件设置中修改');
  466. return false;
  467. }
  468. var size = "{$upload_max_filesize}";
  469. if (file.size > size) {
  470. showErrorAlert('视频大小超过限制,可在附件设置中修改');
  471. return false;
  472. }
  473. $.ajax({
  474. type: 'POST',
  475. url: '__ROOT_DIR__/index.php?m=plugins&c=Qiniuyun&a=qiniu_upload',
  476. data: {_ajax:1},
  477. dataType: "JSON",
  478. success: function(res1){
  479. if (1 == res1.code){
  480. var token = res1.data.token;
  481. var formData = new FormData();
  482. formData.append('file', file);
  483. formData.append('token', token);
  484. fileName = res1.data.filePath + fileExt;
  485. formData.append('key', fileName);
  486. $.ajax({
  487. url: res1.data.uphost,
  488. type: 'POST',
  489. dataType: 'JSON',
  490. data: formData,
  491. timeout: 1200000,
  492. cache: false, //默认是true,但是一般不做缓存
  493. processData: false, //用于对data参数进行序列化处理,这里必须false;如果是true,就会将FormData转换为String类型
  494. contentType: false, //一些文件上传http协议的关系,自行百度,如果上传的有文件,那么只能设置为false
  495. xhr: function () { //获取ajaxSettings中的xhr对象,为它的upload属性绑定progress事件的处理函数
  496. myXhr = $.ajaxSettings.xhr();
  497. if (myXhr.upload) { //检查upload属性是否存在
  498. //绑定progress事件的回调函数
  499. // myXhr.upload.addEventListener('progress', progressHandlingFunction, false);
  500. myXhr.upload.addEventListener('progress', function(e){
  501. var curr = e.loaded;
  502. var total = e.total;
  503. process = parseInt(curr / total * 100);
  504. $("#qiniu_upload_video_sys_"+num).text('上传中...'+process+"%");
  505. });
  506. }
  507. return myXhr; //xhr对象返回给jQuery使用
  508. },
  509. success: function(res2){
  510. $("#qiniu_upload_video_sys_"+num).text('上传成功');
  511. setTimeout(function(){
  512. $('#qiniu_upload_video_sys_'+num).text('七牛云上传');
  513. }, 2000 )
  514. var video_url = res1.data.domain+"/"+res2.key;
  515. $("#video_url_sys_"+num).val(video_url);
  516. $("#video_mime_sys_"+num).val('');
  517. $("#video_name_sys_"+num).val(res2.key);
  518. var rx=/^https?:\/\//i;
  519. if (!rx.test(video_url)) {
  520. video_url = 'http:'+video_url;
  521. }
  522. $.ajax({
  523. type: 'GET',
  524. url: video_url+"?avinfo",
  525. data: {},
  526. dataType: "JSON",
  527. success: function (res3) {
  528. $("#video_time_sys_"+num).val(parseInt(res3.format.duration));
  529. $("#video_size_sys_"+num).val(res3.format.size);
  530. }
  531. })
  532. },
  533. error: function(e){
  534. showErrorAlert(e.responseText);
  535. return false;
  536. }
  537. });
  538. }else{
  539. $("#qiniu_click_sys_"+num).val('');
  540. showErrorAlert(res1.msg);
  541. }
  542. },
  543. error: function(e){
  544. $("#qiniu_click_sys_"+num).val('');
  545. showErrorAlert(e.responseText);
  546. }
  547. });
  548. }
  549. function click_oss_sys(num)
  550. {
  551. $("#oss_click_sys_"+num).trigger("click");
  552. }
  553. function OssUpload(num)
  554. {
  555. var file = $("#oss_click_sys_"+num)[0].files[0]; //获取文件路径名
  556. //获取视频时长start
  557. var url = URL.createObjectURL(file);
  558. var oVideo = document.createElement('video');
  559. var duration = 0;
  560. oVideo.setAttribute('src',url);
  561. oVideo.oncanplay = ()=>{
  562. duration = parseInt(oVideo.duration);
  563. }
  564. //获取视频时长end
  565. var fileName = file.name;
  566. var fileExt = fileName.substr(fileName.lastIndexOf('.')).toLowerCase();
  567. var ext = judgeExt(fileExt);
  568. if (ext==-1) {
  569. showErrorAlert('不支持选中的视频格式,可在附件设置中修改');
  570. return false;
  571. }
  572. var size = "{$upload_max_filesize}";
  573. if (file.size > size) {
  574. showErrorAlert('视频大小超过限制,可在附件设置中修改');
  575. return false;
  576. }
  577. $.ajax({
  578. type: 'POST',
  579. url: '__ROOT_DIR__/index.php?m=plugins&c=AliyunOss&a=oss_upload',
  580. data: {_ajax: 1},
  581. dataType: "JSON",
  582. success: function(res1){
  583. if (1 == res1.code){
  584. fileName = res1.data.filePath + fileExt;
  585. //组装发送数据
  586. var request = new FormData();
  587. request.append("OSSAccessKeyId",res1.data.accessid);//Bucket 拥有者的Access Key Id。
  588. request.append("policy",res1.data.policy);//policy规定了请求的表单域的合法性
  589. request.append("Signature",res1.data.signature);//根据Access Key Secret和policy计算的签名信息,OSS验证该签名信息从而验证该Post请求的合法性
  590. request.append("key",fileName);//文件名字,可设置路径
  591. request.append("success_action_status",201);// 让服务端返回200,不然,默认会返回204
  592. request.append('file', file);//需要上传的文件 file
  593. $.ajax({
  594. url : res1.data.host, //上传阿里地址
  595. data : request,
  596. processData: false,
  597. cache: false,
  598. contentType: false,
  599. dataType: 'xml',
  600. type : 'post',
  601. xhr: function () { //获取ajaxSettings中的xhr对象,为它的upload属性绑定progress事件的处理函数
  602. myXhr = $.ajaxSettings.xhr();
  603. if (myXhr.upload) { //检查upload属性是否存在
  604. //绑定progress事件的回调函数
  605. myXhr.upload.addEventListener('progress', function(e){
  606. var curr = e.loaded;
  607. var total = e.total;
  608. var process = parseInt(curr / total * 100);
  609. $("#oss_upload_video_sys_"+num).text('上传中...'+process+"%");
  610. });
  611. }
  612. return myXhr; //xhr对象返回给jQuery使用
  613. },
  614. success : function(data) {
  615. var res = $(data).find('PostResponse');
  616. if (res) {
  617. var key = res.find('Key').text();
  618. $("#oss_upload_video_sys_"+num).text('上传成功');
  619. setTimeout(function(){
  620. $('#oss_upload_video_sys_'+num).text('oss上传');
  621. }, 2000 )
  622. var video_url = res1.data.domain+"/"+key;
  623. $("#video_url_sys_"+num).val(video_url);
  624. $("#video_mime_sys_"+num).val('');
  625. $("#video_name_sys_"+num).val(key);
  626. $("#video_time_sys_"+num).val(duration);
  627. $("#video_size_sys_"+num).val(file.size);
  628. }else{
  629. $("#oss_upload_video_sys_"+num).text('上传失败');
  630. setTimeout(function(){
  631. $('#oss_upload_video_sys_'+num).text('oss上传');
  632. }, 2000 )
  633. }
  634. },
  635. error : function(e) {
  636. console.log(e.responseText);
  637. }
  638. });
  639. }else{
  640. $("#oss_click_sys_"+num).val('');
  641. showErrorAlert(res1.msg);
  642. }
  643. },
  644. error: function(e){
  645. $("#oss_click_sys_"+num).val('');
  646. showErrorAlert(e.responseText);
  647. }
  648. });
  649. }
  650. /*腾讯云COS上传代码 --- 陈风任 --- 2021-02-03*/
  651. function click_cos_sys(num) {
  652. $("#cos_click_sys_"+num).trigger("click");
  653. }
  654. // 上传视频
  655. function CosUpload(num) {
  656. // 获取文件路径名
  657. var file = $("#cos_click_sys_"+num)[0].files[0];
  658. // 获取视频时长start
  659. var url = URL.createObjectURL(file);
  660. var oVideo = document.createElement('video');
  661. var duration = 0;
  662. oVideo.setAttribute('src', url);
  663. oVideo.oncanplay = ()=>{
  664. duration = parseInt(oVideo.duration);
  665. }
  666. // 获取视频时长end
  667. var fileName = file.name;
  668. var fileExt = fileName.substr(fileName.lastIndexOf('.')).toLowerCase();
  669. var ext = judgeExt(fileExt);
  670. if (ext == -1) {
  671. showErrorAlert('不支持选中的视频格式,可在附件设置中修改');
  672. return false;
  673. }
  674. var size = "{$upload_max_filesize}";
  675. if (file.size > size) {
  676. showErrorAlert('视频大小超过限制,可在附件设置中修改');
  677. return false;
  678. }
  679. var formData = new FormData();
  680. formData.append('file', file);
  681. formData.append('file_ext', fileExt);
  682. $.ajax({
  683. type: 'post',
  684. url: '__ROOT_DIR__/index.php?m=plugins&c=Cos&a=cos_upload&_ajax=1',
  685. data: formData,
  686. contentType: false,
  687. processData: false,
  688. dataType: 'json',
  689. xhr: function () {
  690. myXhr = $.ajaxSettings.xhr();
  691. if (myXhr.upload) {
  692. myXhr.upload.addEventListener('progress', function(e){
  693. var curr = e.loaded;
  694. var total = e.total;
  695. process = parseInt(curr / total * 100);
  696. if (100 == process) {
  697. process = 99;
  698. layer_loading('上传腾讯云');
  699. }
  700. $("#cos_upload_video_sys_"+num).text('上传中...'+process+"%");
  701. });
  702. }
  703. return myXhr;
  704. },
  705. success: function(res) {
  706. layer.closeAll();
  707. if (1 == res.code) {
  708. $("#video_url_sys_" + num).val(res.data.url);
  709. $("#video_title_sys_" + num).val(res.data.name);
  710. $("#video_time_sys_" + num).val(duration);
  711. $("#video_size_sys_" + num).val(res.data.size);
  712. $("#cos_upload_video_sys_"+num).text('上传成功');
  713. } else {
  714. $("#cos_upload_video_sys_"+num).text('上传失败');
  715. }
  716. setTimeout(function(){
  717. $('#cos_upload_video_sys_'+num).text('cos上传');
  718. }, 2000);
  719. },
  720. error: function(e){
  721. layer.closeAll();
  722. $("#cos_click_sys_"+num).val('');
  723. showErrorAlert(e.responseText);
  724. }
  725. });
  726. }
  727. /* 批量导入视频信息 end */
  728. function urlToStr() {
  729. var video = [];
  730. $("#url-box_sys div").each(function(){
  731. var n = $(this).attr('data-num');
  732. var arr ={};
  733. arr.file_url = $("#video_url_sys_"+n).val();
  734. if (!arr.file_url) {
  735. return true
  736. }
  737. arr.file_title = $("#video_title_sys_"+n).val();
  738. arr.file_name = $("#video_name_sys_"+n).val();
  739. arr.file_time = $("#video_time_sys_"+n).val();
  740. arr.file_size = $("#video_size_sys_"+n).val();
  741. arr.file_mime = $("#video_mime_sys_"+n).val();
  742. var gratis_checked = $("#video_gratis_sys_"+n).is(':checked');
  743. if (gratis_checked == true){
  744. arr.gratis = 1;
  745. } else{
  746. arr.gratis = 0;
  747. }
  748. video.push(arr);
  749. });
  750. video = JSON.stringify(video)
  751. $("#video").val(video)
  752. }
  753. //获取文件类型
  754. function judgeExt(ext,i) {
  755. var type = '';
  756. if (i==1){
  757. type = "{$file_type}";
  758. }else{
  759. type = "{$media_type}";
  760. }
  761. var extArr = [];
  762. extArr = type.split("|");
  763. var ext = ext.replace(".","");
  764. return extArr.indexOf(ext);
  765. }
  766. //删除
  767. function media_del(num) {
  768. var media_url = $("#video_url_sys_"+num).val();
  769. if (media_url) {
  770. del_media_file(media_url);
  771. }
  772. $(".media_del_1586481014_"+num).remove();
  773. }
  774. function del_media_file(path){
  775. var url = '';
  776. {if isset($channelRow.data.qiniuyun_open) && $channelRow.data.qiniuyun_open == 1}
  777. url = "{:url('plugins/Qiniuyun/deleteQny')}";
  778. {elseif isset($channelRow.data.oss_open) && $channelRow.data.oss_open == 1}
  779. url = "{:url('plugins/AliyunOss/deleteOss')}";
  780. {elseif isset($channelRow.data.cos_open) && $channelRow.data.cos_open == 1}
  781. url = "{:url('plugins/Cos/deleteCos')}";
  782. {else/}
  783. url = "{:url('user/Uploadify/del_local')}";
  784. {/if}
  785. $.ajax({
  786. type: 'GET',
  787. url: url,
  788. data: {_ajax: 1, filenames: path},
  789. success: function (res1) {
  790. }
  791. });
  792. }
  793. </script>