3. 对 UEditor 文件上传的源码的理解

这里以上传图片为例

  1. 先决条件

  2. 问题

    1. ueditor 上传图片的过程不受我们控制,编辑过程产生的垃圾(例如:用户上传后没有使用的图片)不知如何清理?
    2. 上传图片只能保存在本服务器上(继承上一篇的开发环境:也就本 tomcat 上),使得我们无法为本项目配置单独一台图片服务器进行开发、生产(服务器集群)
  3. 寻找后端入口 :

    (com.baidu.ueditor.ActionEnter)

    查看 ueditor.config.js

  4. 下载 ueditor 源码

    ueditor官网下载链接

  5. 删除 ueditor jar包

  6. 引入源码

    几个比较重要的类(突然然发现这些名字都起的好好,见名知义):

    1. ActionEnter.java
      后台入口,调用 CongigManager 加载 jsp/config.json 的配置信息,根据不同请求执行不同的逻辑代码

      1. 构造方法,初始化的时候 利用 CongigManager 加载 jsp/config.json 的数据
              public ActionEnter ( HttpServletRequest request, String rootPath ) {
              this.request = request;
              this.rootPath = rootPath;
              this.actionType = request.getParameter( "action" );
              this.contextPath = request.getContextPath();
              this.configManager = ConfigManager.getInstance( this.rootPath, this.contextPath, request.getRequestURI() );
              
          }
      
      1. 根据不同请求执行不同的逻辑代码
              public String invoke() {
          
          if ( actionType == null || !ActionMap.mapping.containsKey( actionType ) ) {
              return new BaseState( false, AppInfo.INVALID_ACTION ).toJSONString();
          }
          
          if ( this.configManager == null || !this.configManager.valid() ) {
              return new BaseState( false, AppInfo.CONFIG_ERROR ).toJSONString();
          }
          
          State state = null;
          
          int actionCode = ActionMap.getType( this.actionType );
          
          Map<String, Object> conf = null;
          
          switch ( actionCode ) {
          
              case ActionMap.CONFIG:
                  return this.configManager.getAllConfig().toString();
                  
              case ActionMap.UPLOAD_IMAGE:
              case ActionMap.UPLOAD_SCRAWL:
              case ActionMap.UPLOAD_VIDEO:
              case ActionMap.UPLOAD_FILE:
                  conf = this.configManager.getConfig( actionCode );
                  state = new Uploader( request, conf ).doExec();
                  break;
                  
              case ActionMap.CATCH_IMAGE:
                  conf = configManager.getConfig( actionCode );
                  String[] list = this.request.getParameterValues( (String)conf.get( "fieldName" ) );
                  state = new ImageHunter( conf ).capture( list );
                  break;
                  
              case ActionMap.LIST_IMAGE:
              case ActionMap.LIST_FILE:
                  conf = configManager.getConfig( actionCode );
                  int start = this.getStartIndex();
                  state = new FileManager( conf ).listFile( start );
                  break;
                  
          }
          
          return state.toJSONString();
          
      }
      
      
    2. ConfigManager.java

      配置管理器 : 看下面代码对比一下 jsp/config.json 就知道了

      
          public Map<String, Object> getConfig ( int type ) {
          
          Map<String, Object> conf = new HashMap<String, Object>();
          String savePath = null;
          
          switch ( type ) {
          
              case ActionMap.UPLOAD_FILE:
                  conf.put( "isBase64", "false" );
                  conf.put( "maxSize", this.jsonConfig.getLong( "fileMaxSize" ) );
                  conf.put( "allowFiles", this.getArray( "fileAllowFiles" ) );
                  conf.put( "fieldName", this.jsonConfig.getString( "fileFieldName" ) );
                  savePath = this.jsonConfig.getString( "filePathFormat" );
                  break;
                  
              case ActionMap.UPLOAD_IMAGE:
                  conf.put( "isBase64", "false" );
                  conf.put( "maxSize", this.jsonConfig.getLong( "imageMaxSize" ) );
                  conf.put( "allowFiles", this.getArray( "imageAllowFiles" ) );
                  conf.put( "fieldName", this.jsonConfig.getString( "imageFieldName" ) );
                  savePath = this.jsonConfig.getString( "imagePathFormat" );
                  break;
                  
              case ActionMap.UPLOAD_VIDEO:
                  conf.put( "maxSize", this.jsonConfig.getLong( "videoMaxSize" ) );
                  conf.put( "allowFiles", this.getArray( "videoAllowFiles" ) );
                  conf.put( "fieldName", this.jsonConfig.getString( "videoFieldName" ) );
                  savePath = this.jsonConfig.getString( "videoPathFormat" );
                  break;
                  
              case ActionMap.UPLOAD_SCRAWL:
                  conf.put( "filename", ConfigManager.SCRAWL_FILE_NAME );
                  conf.put( "maxSize", this.jsonConfig.getLong( "scrawlMaxSize" ) );
                  conf.put( "fieldName", this.jsonConfig.getString( "scrawlFieldName" ) );
                  conf.put( "isBase64", "true" );
                  savePath = this.jsonConfig.getString( "scrawlPathFormat" );
                  break;
                  
              case ActionMap.CATCH_IMAGE:
                  conf.put( "filename", ConfigManager.REMOTE_FILE_NAME );
                  conf.put( "filter", this.getArray( "catcherLocalDomain" ) );
                  conf.put( "maxSize", this.jsonConfig.getLong( "catcherMaxSize" ) );
                  conf.put( "allowFiles", this.getArray( "catcherAllowFiles" ) );
                  conf.put( "fieldName", this.jsonConfig.getString( "catcherFieldName" ) + "[]" );
                  savePath = this.jsonConfig.getString( "catcherPathFormat" );
                  break;
                  
              case ActionMap.LIST_IMAGE:
                  conf.put( "allowFiles", this.getArray( "imageManagerAllowFiles" ) );
                  conf.put( "dir", this.jsonConfig.getString( "imageManagerListPath" ) );
                  conf.put( "count", this.jsonConfig.getInt( "imageManagerListSize" ) );
                  break;
                  
              case ActionMap.LIST_FILE:
                  conf.put( "allowFiles", this.getArray( "fileManagerAllowFiles" ) );
                  conf.put( "dir", this.jsonConfig.getString( "fileManagerListPath" ) );
                  conf.put( "count", this.jsonConfig.getInt( "fileManagerListSize" ) );
                  break;
                  
          }
          
          conf.put( "savePath", savePath );
          conf.put( "rootPath", this.rootPath );
          
          return conf;
          
      }
      
      
    
    3. Uploader.java
    
        执行下载
    
    4. State.java
        
        处理状态接口 ,前后台沟通的接口。
        
    5. BaseState.java
    
        State 的其中一个实现类里面包含了一个 Map<String ,String > 实例,通过 Map 添加前台需要的参数。
        
        1. 前台请求规范
            ![](http://upload-images.jianshu.io/upload_images/4139030-0ccf38bfba31759b.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
        
        2. 后台返回规范(以上传图片为例)
           ![](http://upload-images.jianshu.io/upload_images/4139030-666d2791beb13a2d.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240) 
    
    
  7. 具体后台运行过程,自己用 debug 工具,多走几下就知道了(这里就不演示了)

  8. 运行项目

下一篇 : ueditor 实现 自定义上传

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,056评论 5 474
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,842评论 2 378
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,938评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,296评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,292评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,413评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,824评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,493评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,686评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,502评论 2 318
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,553评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,281评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,820评论 3 305
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,873评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,109评论 1 258
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,699评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,257评论 2 341

推荐阅读更多精彩内容

  • 这里以上传图片为例 先决条件你已经看完了上一篇 : 对 ueditor 文件上传的源码的理解,因为我是使用上一篇的...
    灰气球阅读 1,601评论 0 1
  • Spark SQL, DataFrames and Datasets Guide Overview SQL Dat...
    Joyyx阅读 8,319评论 0 16
  • 本人初学Android,最近做了一个实现安卓简单音乐播放功能的播放器,收获不少,于是便记录下来自己的思路与知识总结...
    落日柳风阅读 19,055评论 2 41
  • 作《中庸》,子思笔.中不偏,庸不易. 著述《中庸》这篇文章的,是孔子的孙子孔伋.“中庸”意思是待人接物处理事情要至...
    欧阳寒耘阅读 490评论 0 0
  • ·初中开始,不断买教辅书,以为买了书就可以获取知识,想一劳永逸,不断找试题(特别是越临近中考的时候);即便买到了很...
    supertony91阅读 209评论 0 0