百度文本编辑器UEditor(图片的在线管理中)增加图片删除功能【.net版】
分类:Javascript| 发布:佚名| 查看:6416 | 发表时间:2014/2/17
目前UEditor最新版本是:UEditor 1.3.6
更新日期:2013.12.24根据UEditor的帮助第19条,我们知道,
UEditor提供的图片在线管理是指什么?需要注意哪些问题?
- 1、图片在线管理虽名为管理,但考虑到安全因素,目前版本的UEditor并未提供删除功能,仅仅实现了在线图片浏览并插入至编辑器的功能。
- 2、由于无法获取数据库相关信息,UEditor的图片浏览采用了遍历文件夹的方式来实现。同学们需要在imageManager.php文件中配置存放图片文件的文件夹路径,并最终返回如imageManager.php中所示的json数据即可。
- 3、获取服务器图片的请求通过ajax来发送,需要在editor_config.js中配置imageManagerPath参数来指定imageManager.php文件的路径。如果同学们有额外的参数需要向后台发送,比如想实现删除功能,可以修改dialog文件夹下的image.js文件中关于imageManager模块的代码。
- 4、建议后台配置的图片存放路径尽量指向缩略图存放文件夹,并在返回数据中同时返回缩略图地址和真实地址,否则在浏览时可能造成不必要的带宽和性能消耗!
那么,我们如果自己添加删除图片的功能呢?
步骤如下(.net方式,php,jsp方式与此雷同):
1、首先修改服务器端ueditor\net
下的文件imageManager.ashx
,增加图片删除的处理。如下代码的Add部分所示:
001 | <%@ WebHandler Language= "C#" Class= "imageManager" %> |
012 | using System.Text.RegularExpressions; |
014 | public class imageManager : IHttpHandler |
017 | public void ProcessRequest(HttpContext context) |
019 | context.Response.ContentType = "text/plain" ; |
022 | string [] paths = { "upload" , "upload1" }; |
023 | string [] filetype = { ".gif" , ".png" , ".jpg" , ".jpeg" , ".bmp" }; |
025 | string action = context.Server.HtmlEncode(context.Request[ "action" ]); |
029 | String str = String.Empty; |
031 | foreach ( string path in paths) |
033 | DirectoryInfo info = new DirectoryInfo(context.Server.MapPath(path)); |
038 | DirectoryInfo[] infoArr = info.GetDirectories(); |
039 | foreach (DirectoryInfo tmpInfo in infoArr) |
041 | foreach (FileInfo fi in tmpInfo.GetFiles()) |
043 | if (Array.IndexOf(filetype, fi.Extension) != -1) |
045 | str += path+ "/" + tmpInfo.Name + "/" + fi.Name + "ue_separate_ue" ; |
052 | context.Response.Write(str); |
057 | string pathDel = string .Empty; |
058 | string fileName = context.Server.HtmlEncode(context.Request[ "fileName" ]); |
059 | bool isDeleted = false ; |
065 | String fullPath = String.Empty; |
066 | foreach ( string path in paths) |
068 | pathDel = context.Server.MapPath(path); |
069 | DirectoryInfo info = new DirectoryInfo(pathDel); |
075 | DirectoryInfo[] infoArr = info.GetDirectories(); |
076 | foreach (DirectoryInfo tmpInfo in infoArr) |
078 | foreach (FileInfo fi in tmpInfo.GetFiles()) |
081 | if (Array.IndexOf(filetype, fi.Extension) != -1) |
083 | if (fi.Name.Equals(fileName)) |
085 | fullPath = pathDel + "/" + tmpInfo.Name + "/" + fileName; |
086 | File.Delete(fullPath); |
093 | if (isDeleted == true ) |
098 | if (isDeleted == true ) |
102 | context.Response.Write( "success" ); |
106 | context.Response.Write( "error" ); |
112 | public bool IsReusable |
2、修改脚本ueditor\dialogs\image
下的image.js
文件。增加图片删除的处理的Ajax调用。如下的Add部分所示:
008 | var imageUploader = {}, |
013 | ajax = parent.baidu.editor.ajax, |
014 | maskIframe = g( "maskIframe" ); |
017 | var flagImg = null , flashContainer; |
018 | imageUploader.init = function (opt, callbacks) { |
019 | switchTab( "imageTab" ); |
020 | createAlignButton([ "remoteFloat" , "localFloat" ]); |
021 | createFlash(opt, callbacks); |
022 | var srcImg = editor.selection.getRange().getClosedNode(); |
024 | showImageInfo(srcImg); |
025 | showPreviewImage(srcImg, true ); |
026 | var tabElements = g( "imageTab" ).children, |
027 | tabHeads = tabElements[0].children, |
028 | tabBodys = tabElements[1].children; |
029 | for ( var i = 0, ci; ci = tabHeads[i++];) { |
030 | if (ci.getAttribute( "tabSrc" ) == "remote" ) { |
031 | clickHandler(tabHeads, tabBodys, ci); |
036 | addUrlChangeListener(); |
042 | imageUploader.setPostParams = function (obj,index){ |
043 | if (index===undefined){ |
044 | utils.each(postConfig, function (config){ |
048 | postConfig[index].data = obj; |
052 | function insertImage(imgObjs) { |
053 | editor.fireEvent( 'beforeInsertImage' , imgObjs); |
054 | editor.execCommand( "insertImage" , imgObjs); |
057 | function searchImage() { |
058 | var imgSearchInput = $G( "imgSearchTxt" ); |
059 | if (!imgSearchInput.getAttribute( "hasClick" ) || !imgSearchInput.value) { |
060 | selectTxt(imgSearchInput); |
063 | g( "searchList" ).innerHTML = "<p class='msg'>" + lang.imageLoading + "</p>" ; |
064 | var key = imgSearchInput.value, |
065 | type = $G( "imgType" ).value, |
067 | var reqCallBack = function (data) { |
069 | var imgObjs = data.data; |
073 | var frg = document.createDocumentFragment(); |
074 | if (imgObjs.length < 2) { |
075 | g( "searchList" ).innerHTML = "<p class='msg'>" + lang.tryAgain + "</p>" ; |
078 | for ( var i = 0, len = imgObjs.length; i < len - 1; i++) { |
079 | var img = document.createElement( "img" ), obj = imgObjs[i], div = document.createElement( "div" ); |
080 | img.src = obj.objURL; |
081 | img.setAttribute( "sourceUrl" , obj.objURL); |
082 | var title = obj.fromPageTitleEnc.replace(/^\.\.\./i, "" ); |
083 | img.setAttribute( "title" , lang.toggleSelect + obj.width + "X" + obj.height); |
084 | img.onclick = function () { |
085 | changeSelected( this ); |
087 | scale(img, 100, obj.width, obj.height); |
088 | div.appendChild(img); |
089 | var p = document.createElement( "p" ); |
090 | p.innerHTML = "<a target='_blank' href='" + obj.fromURL + "'>" + title + "</a>" ; |
093 | frg.appendChild(div); |
097 | g( "searchList" ).innerHTML = "" ; |
098 | g( "searchList" ).appendChild(frg); |
100 | baidu.sio.callByServer(url, reqCallBack, {charset: "GB18030" }); |
103 | function selectTxt(node) { |
107 | var r = node.createTextRange && node.createTextRange(); |
112 | function addSearchListener() { |
113 | g( "imgSearchTxt" ).onclick = function () { |
115 | this .setAttribute( "hasClick" , true ); |
116 | if ( this .value == lang.searchInitInfo) { |
120 | g( "imgSearchTxt" ).onkeyup = function () { |
121 | this .setAttribute( "hasClick" , true ); |
126 | g( "imgSearchBtn" ).onclick = function () { |
129 | g( "imgSearchReset" ).onclick = function () { |
130 | var txt = g( "imgSearchTxt" ); |
133 | g( "searchList" ).innerHTML = "" ; |
135 | g( "imgType" ).onchange = function () { |
138 | domUtils.on(g( "imgSearchTxt" ), "keyup" , function (evt) { |
139 | if (evt.keyCode == 13) { |
149 | function addScrollListener() { |
151 | g( "imageList" ).onscroll = function () { |
152 | var imgs = this .getElementsByTagName( "img" ), |
153 | top = Math.ceil( this .scrollTop / 100) - 1; |
154 | top = top < 0 ? 0 : top; |
155 | for ( var i = top * 5; i < (top + 5) * 5; i++) { |
157 | if (img && !img.getAttribute( "src" )) { |
158 | img.src = img.getAttribute( "lazy_src" ); |
159 | img.removeAttribute( "lazy_src" ); |
168 | function addOKListener() { |
169 | dialog.onok = function () { |
170 | var currentTab = findFocus( "tabHeads" , "tabSrc" ); |
171 | switch (currentTab) { |
173 | return insertSingle(); |
176 | return insertBatch(); |
179 | return insertSearch( "imageList" ); |
182 | return insertSearch( "searchList" , true ); |
186 | dialog.oncancel = function () { |
191 | function hideFlash() { |
193 | flashContainer.innerHTML = "" ; |
201 | function insertSearch(id, catchRemote) { |
202 | var imgs = $G(id).getElementsByTagName( "img" ), imgObjs = []; |
203 | for ( var i = 0, ci; ci = imgs[i++];) { |
204 | if (ci.getAttribute( "selected" )) { |
205 | var url = ci.getAttribute( "src" , 2).replace(/(\s*$)/g, "" ), img = {}; |
207 | img.data_ue_src = url; |
211 | insertImage(imgObjs); |
212 | catchRemote && editor.fireEvent( "catchRemoteImage" ); |
219 | function insertSingle() { |
222 | height = g( "height" ), |
223 | border = g( "border" ), |
224 | vhSpace = g( "vhSpace" ), |
226 | align = findFocus( "remoteFloat" , "name" ), |
228 | if (!url.value) return ; |
229 | if (!flagImg) return ; |
230 | if (!checkNum([width, height, border, vhSpace])) return false ; |
231 | imgObj.src = url.value; |
232 | imgObj.data_ue_src = url.value; |
233 | imgObj.width = width.value; |
234 | imgObj.height = height.value; |
235 | imgObj.border = border.value; |
236 | imgObj.floatStyle = align; |
237 | imgObj.vspace = imgObj.hspace = vhSpace.value; |
238 | imgObj.title = title.value; |
239 | imgObj.style = "width:" + width.value + "px;height:" + height.value + "px;" ; |
241 | editor.fireEvent( "catchRemoteImage" ); |
249 | function checkNum(nodes) { |
250 | for ( var i = 0, ci; ci = nodes[i++];) { |
251 | if (!isNumber(ci.value) || ci.value < 0) { |
252 | alert(lang.numError); |
265 | function isNumber(value) { |
266 | return /(0|^[1-9]\d*$)/.test(value); |
272 | function insertBatch() { |
273 | if (imageUrls.length < 1) return ; |
275 | align = findFocus( "localFloat" , "name" ); |
277 | for ( var i = 0, ci; ci = imageUrls[i++];) { |
279 | tmpObj.title = ci.title; |
280 | tmpObj.floatStyle = align; |
282 | tmpObj.data_ue_src = tmpObj.src = editor.options.imagePath + ci.url; |
283 | imgObjs.push(tmpObj); |
285 | insertImage(imgObjs); |
294 | function findFocus(id, returnProperty) { |
295 | var tabs = g(id).children, |
297 | for ( var i = 0, ci; ci = tabs[i++];) { |
298 | if (ci.className == "focus" ) { |
299 | property = ci.getAttribute(returnProperty); |
309 | function addUrlChangeListener() { |
310 | var value = g( "url" ).value; |
312 | g( "url" ).onpropertychange = function () { |
315 | createPreviewImage(v); |
320 | g( "url" ).addEventListener( "input" , function () { |
323 | createPreviewImage(v); |
334 | function addSizeChangeListener(percent) { |
335 | var width = g( "width" ), |
336 | height = g( "height" ), |
338 | width.onkeyup = function () { |
339 | if (!isNaN( this .value) && lock.checked) { |
340 | height.value = Math.round( this .value / percent) || this .value; |
343 | height.onkeyup = function () { |
344 | if (!isNaN( this .value) && lock.checked) { |
345 | width.value = Math.round( this .value * percent) || this .value; |
353 | function createPreviewImage(url) { |
356 | g( "preview" ).innerHTML = "" ; |
357 | g( "width" ).value = "" ; |
358 | g( "height" ).value = "" ; |
359 | g( "border" ).value = "" ; |
360 | g( "vhSpace" ).value = "" ; |
361 | g( "title" ).value = "" ; |
365 | var img = document.createElement( "img" ), |
366 | preview = g( "preview" ); |
368 | var imgTypeReg = /\.(png|gif|jpg|jpeg)$/gi, |
370 | if (!imgTypeReg.test(url) || url.indexOf(urlFilter) == -1) { |
371 | preview.innerHTML = "<span style='color: red'>" + lang.imageUrlError + "</span>" ; |
375 | preview.innerHTML = lang.imageLoading; |
376 | img.onload = function () { |
379 | showPreviewImage( this , true ); |
382 | img.onerror = function () { |
383 | preview.innerHTML = "<span style='color: red'>" + lang.imageLoadError + "</span>" ; |
394 | function showImageInfo(img) { |
395 | if (!img.getAttribute( "src" ) || !img.src) return ; |
396 | var wordImgFlag = img.getAttribute( "word_img" ); |
397 | g( "url" ).value = wordImgFlag ? wordImgFlag.replace( "&" , "&" ) : (img.getAttribute( 'data_ue_src' ) || img.getAttribute( "src" , 2).replace( "&" , "&" )); |
398 | g( "width" ).value = img.width || 0; |
399 | g( "height" ).value = img.height || 0; |
400 | g( "border" ).value = img.getAttribute( "border" ) || 0; |
401 | g( "vhSpace" ).value = img.getAttribute( "vspace" ) || 0; |
402 | g( "title" ).value = img.title || "" ; |
403 | var align = editor.queryCommandValue( "imageFloat" ) || "none" ; |
404 | updateAlignButton(align); |
407 | var percent = (img.width / img.height).toFixed(2); |
408 | addSizeChangeListener(percent); |
416 | function showPreviewImage(img, needClone) { |
417 | var tmpWidth = img.width, tmpHeight = img.height; |
418 | var maxWidth = 262,maxHeight = 262, |
419 | target = scaling(tmpWidth,tmpHeight,maxWidth,maxHeight); |
420 | target.border = img.border||0; |
421 | target.src = img.src; |
423 | if ((target.width + 2 * target.border) > maxWidth) { |
424 | target.width = maxWidth - 2 * target.border; |
426 | if ((target.height + 2 * target.border) > maxWidth) { |
427 | target.height = maxWidth - 2 * target.border; |
429 | var preview = g( "preview" ); |
430 | preview.innerHTML = '<img src="' + target.src + '" width="' + target.width + '" height="' + target.height + '" border="' + target.border + 'px solid #000" />' ; |
438 | function scale(img, max, oWidth, oHeight) { |
439 | var width = 0, height = 0, percent, ow = img.width || oWidth, oh = img.height || oHeight; |
440 | if (ow > max || oh > max) { |
442 | if (width = ow - max) { |
443 | percent = (width / ow).toFixed(2); |
444 | img.height = oh - oh * percent; |
448 | if (height = oh - max) { |
449 | percent = (height / oh).toFixed(2); |
450 | img.width = ow - ow * percent; |
457 | function scaling(width,height,maxWidth,maxHeight){ |
458 | if (width<maxWidth && height<maxHeight) return {width:width,height:height}; |
459 | var srcRatio = (width/height).toFixed(2), |
460 | tarRatio = (maxWidth/maxHeight).toFixed(2), |
462 | if (srcRatio<tarRatio){ |
469 | return {width:w.toFixed(0),height:h.toFixed(0)} |
476 | function createFlash(opt, callbacks) { |
477 | var i18n = utils.extend({}, lang.flashI18n); |
479 | for ( var i in i18n) { |
480 | if (!(i in { "lang" :1, "uploadingTF" :1, "imageTF" :1, "textEncoding" :1}) && i18n[i]) { |
481 | i18n[i] = encodeURIComponent(editor.options.langPath + editor.options.lang + "/images/" + i18n[i]); |
484 | opt = utils.extend(opt, i18n, false ); |
491 | errorMessage:lang.flashError, |
492 | wmode:browser.safari ? 'transparent' : 'window' , |
495 | container:opt.container |
498 | flashContainer = $G(opt.container); |
499 | option = utils.extend(option, callbacks, false ); |
500 | flashObj = new baidu.flash.imageUploader(option); |
507 | function updateAlignButton(align) { |
508 | var aligns = g( "remoteFloat" ).children; |
509 | for ( var i = 0, ci; ci = aligns[i++];) { |
510 | if (ci.getAttribute( "name" ) == align) { |
511 | if (ci.className != "focus" ) { |
512 | ci.className = "focus" ; |
515 | if (ci.className == "focus" ) { |
526 | function createAlignButton(ids) { |
527 | for ( var i = 0, ci; ci = ids[i++];) { |
528 | var floatContainer = g(ci), |
529 | nameMaps = { "none" :lang.floatDefault, "left" :lang.floatLeft, "right" :lang.floatRight, "center" :lang.floatCenter}; |
530 | for ( var j in nameMaps) { |
531 | var div = document.createElement( "div" ); |
532 | div.setAttribute( "name" , j); |
533 | if (j == "none" ) div.className = "focus" ; |
535 | div.style.cssText = "background:url(images/" + j + "_focus.jpg);" ; |
536 | div.setAttribute( "title" , nameMaps[j]); |
537 | floatContainer.appendChild(div); |
543 | function toggleFlash(show) { |
544 | if (flashContainer && browser.webkit) { |
545 | flashContainer.style.left = show ? "0" : "-10000px" ; |
555 | function clickHandler(tabHeads, tabBodys, obj) { |
557 | for ( var k = 0, len = tabHeads.length; k < len; k++) { |
558 | tabHeads[k].className = "" ; |
560 | obj.className = "focus" ; |
562 | var tabSrc = obj.getAttribute( "tabSrc" ); |
563 | for ( var j = 0, length = tabBodys.length; j < length; j++) { |
564 | var body = tabBodys[j], |
565 | id = body.getAttribute( "id" ); |
566 | body.onclick = function () { |
570 | body.style.zIndex = 1; |
572 | body.style.zIndex = 200; |
576 | maskIframe.style.display = "none" ; |
578 | if (selectedImageCount) { |
579 | dialog.buttons[0].setDisabled( true ); |
583 | maskIframe.style.display = "" ; |
584 | dialog.buttons[0].setDisabled( false ); |
586 | var list = g( "imageList" ); |
587 | list.style.display = "none" ; |
589 | if (id == "imgManager" ) { |
590 | list.style.display = "" ; |
592 | if (!list.children.length) { |
593 | ajax.request(editor.options.imageManagerUrl, { |
596 | onsuccess: function (xhr) { |
598 | var tmp = utils.trim(xhr.responseText), |
599 | imageUrls = !tmp ? [] : tmp.split( "ue_separate_ue" ), |
600 | length = imageUrls.length; |
601 | g( "imageList" ).innerHTML = !length ? " " + lang.noUploadImage : "" ; |
602 | for ( var k = 0, ci; ci = imageUrls[k++];) { |
603 | var img = document.createElement( "img" ); |
605 | var div = document.createElement( "div" ); |
606 | div.appendChild(img); |
607 | div.style.display = "none" ; |
608 | g( "imageList" ).appendChild(div); |
609 | img.onclick = function () { |
610 | changeSelected( this ); |
613 | img.ondblclick = function (){ |
614 | var me = this ,src = me.getAttribute( "src" ,2); |
615 | if (!confirm( "删除操作不可恢复,您确认要删除本图片么?" )) return ; |
616 | ajax.request(editor.options.imageManagerUrl,{ |
618 | fileName:src.substr(src.lastIndexOf( "/" )+1), |
619 | onsuccess: function (xhr){ |
620 | if (xhr.responseText== "success" ) { |
621 | me.parentNode.removeChild(me); |
623 | alert( "服务器删除图片失败,请重试!" ); |
626 | onerror: function (xhr){ |
632 | img.onload = function () { |
633 | this .parentNode.style.display = "" ; |
634 | var w = this .width, h = this .height; |
635 | scale( this , 100, 120, 80); |
636 | this .title = lang.toggleSelect + w + "X" + h; |
639 | img.setAttribute(k < 35 ? "src" : "lazy_src" , editor.options.imageManagerPath + ci.replace(/\s+|\s+/ig, "" )); |
640 | img.setAttribute( "data_ue_src" , editor.options.imageManagerPath + ci.replace(/\s+|\s+/ig, "" )); |
644 | onerror: function () { |
645 | g( "imageList" ).innerHTML = lang.imageLoadError; |
650 | if (id == "imgSearch" ) { |
651 | selectTxt(g( "imgSearchTxt" )); |
653 | if (id == "remote" ) { |
665 | function switchTab(tabParentId) { |
666 | var tabElements = g(tabParentId).children, |
667 | tabHeads = tabElements[0].children, |
668 | tabBodys = tabElements[1].children; |
670 | for ( var i = 0, length = tabHeads.length; i < length; i++) { |
671 | var head = tabHeads[i]; |
672 | if (head.className === "focus" )clickHandler(tabHeads, tabBodys, head); |
673 | head.onclick = function () { |
674 | clickHandler(tabHeads, tabBodys, this ); |
683 | function changeSelected(o) { |
684 | if (o.getAttribute( "selected" )) { |
685 | o.removeAttribute( "selected" ); |
686 | o.style.cssText = "filter:alpha(Opacity=100);-moz-opacity:1;opacity: 1;border: 2px solid #fff" ; |
688 | o.setAttribute( "selected" , "true" ); |
689 | o.style.cssText = "filter:alpha(Opacity=50);-moz-opacity:0.5;opacity: 0.5;border:2px solid blue;" ; |
697 | function switchSelect(selectParentId) { |
698 | var select = g(selectParentId), |
699 | children = select.children; |
700 | domUtils.on(select, "click" , function (evt) { |
701 | var tar = evt.srcElement || evt.target; |
702 | for ( var j = 0, cj; cj = children[j++];) { |
704 | cj.removeAttribute && cj.removeAttribute( "class" ); |
706 | tar.className = "focus" ; |
715 | function encodeToGb2312(str) { |
717 | for ( var i = 0; i < str.length; i++) { |
718 | var c = str.charAt(i), |
719 | code = str.charCodeAt(i); |
720 | if (c == " " ) strOut += "+" ; |
721 | else if (code >= 19968 && code <= 40869) { |
722 | var index = code - 19968; |
723 | strOut += "%" + z.substr(index * 4, 2) + "%" + z.substr(index * 4 + 2, 2); |
725 | strOut += "%" + str.charCodeAt(i).toString(16); |
可以看到,我们添加了图片的双击事件:img.ondblclick
,然后指定后台操作action:"del"
来源:via