1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
|
package org.nutz.kindeditor4.plugin;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.Comparator;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.servlet.ServletContext;
import org.nutz.ioc.loader.annotation.IocBean;
import org.nutz.log.Log;
import org.nutz.log.Logs;
import org.nutz.mvc.annotation.AdaptBy;
import org.nutz.mvc.annotation.At;
import org.nutz.mvc.annotation.Param;
import org.nutz.mvc.upload.UploadAdaptor;
/**
* KindEditor在线编辑器文件上传,管理模块
* @author Elkan(elkan1788@gmail.com)
*/
@At("/nutz/ke4plugin")
@AdaptBy(type = UploadAdaptor.class)
@IocBean
public class KindEditor4Module {
// 日志输出对象
private static Log log = Logs.get();
// 文件目录名称
private String fileDir;
// 文件后缀名称
private String fileExt;
// 当前站点上下文
private String pageCtx;
// 站点真实路径
private String relPath;
// 上传文件保存路径
private String savePath;
// 允许上传文件后缀MAP数组
private static final HashMap<String, String> extMap = new HashMap<String, String>();
// 允许上传文件大小MAP数组
private static final HashMap<String,Long> sizeMap = new HashMap<String, Long>();
// 上传文件存放根目录
private String filePath = "/attached/";
static {
// 初始后缀名称MAP数组
extMap.put("image", "gif,jpg,jpeg,png,bmp");
extMap.put("flash", "swf,flv");
extMap.put("media", "swf,flv,mp3,wav,wma,wmv,mid,avi,mpg,asf,rm,rmvb");
extMap.put("file", "doc,docx,xls,xlsx,ppt,txt,zip,rar");
// 初始文件大小MAP数组
sizeMap.put("image", 100 * 1024l);
sizeMap.put("flash", 10 * 1024 * 1024l);
sizeMap.put("media", 10 * 1024 * 1024l);
sizeMap.put("file", 10 * 1024 * 1024l);
}
@At
public Map<String, Object> upload(@Param("imgFile") File tempFile,
@Param("dir") String dir, ServletContext context) {
// 初始相关变量
Map<String, Object> execute = new HashMap<String, Object>();
pageCtx = context.getContextPath().concat(filePath);
relPath = context.getRealPath(filePath);
fileDir = dir;
if (null == dir || dir.isEmpty()) {
fileDir = "file";
}
// 检查是否有上传文件
if (null == tempFile) {
execute.put("error", 1);
execute.put("message", "请选择上传文件.");
return execute;
}
// 检查上传文件保存目录是否存在或可写
if (!isExistOrRwFolder()) {
execute.put("error", 1);
execute.put("message", "上传文件保存目录不存在或\n是没有写入权限,请检查.");
return execute;
}
// 检查目录名称是否正确
if (!extMap.containsKey(fileDir)) {
execute.put("error", 1);
execute.put("message", "目录名不正确,请检查.");
return execute;
}
// 计算出文件后缀名
String tempFileName = tempFile.getName();
fileExt = tempFileName.substring(tempFileName.lastIndexOf(".") + 1);
// 检查上传文件类型
if(!Arrays.<String>asList(extMap.get(fileDir).split(",")).contains(fileExt)){
execute.put("error", 1);
execute.put("message", "上传文件的格式被拒绝,\n只允许" + extMap.get(fileDir) + "格式的文件.");
return execute;
}
// 检查上传文件的大小
long maxSize = sizeMap.get(fileDir);
if (tempFile.length() > maxSize) {
execute.put("error", 1);
String size = null;
if(maxSize < 1024) {
size = maxSize + "B";
}
if(maxSize > 1024 && maxSize < 1024 * 1024){
size = maxSize/1024 + "KB";
}
if(maxSize > 1024 * 1024){
size = maxSize/(1024 * 1024) + "MB";
}
execute.put("message", "上传文件大小超过限制,只允\n许上传小于 " + size + " 的文件.");
return execute;
}
// 生成新的文件名,并按日期分类
newSavePath();
// 拷贝上传文件至指定存放目录
copy(tempFile, savePath);
// 计算出文件输出路径
int point = savePath.lastIndexOf("/") - 8;
StringBuilder url = new StringBuilder(pageCtx);
url.append(fileDir).append("/");
url.append(savePath.substring(point));
// 返回上传文件的输出路径至前端
execute.put("error", 0);
execute.put("url", url.toString());
return execute;
}
@At
public Map<String, Object> manager(@Param("dir") String dir,
@Param("path") String path, @Param("order") String order,
ServletContext context) {
// 初始相关变量
Map<String, Object> execute = new HashMap<String, Object>();
pageCtx = context.getContextPath().concat(filePath);
relPath = context.getRealPath(filePath);
fileDir = dir;
if (null == dir || dir.isEmpty()) {
fileDir = "file";
}
if (!extMap.containsKey(fileDir)) {
execute.put("error", 1);
execute.put("message", "目录名不正确,请检查.");
return execute;
}
String tempPath = null == path ? fileDir.concat("/") : fileDir.concat("/"+path);
String curPath = pageCtx.concat(tempPath);
String curFileDir = relPath.concat("/"+tempPath);
String curDir = path;
String moveupDir = "";
// 检查当前目录是否为根目录
if (!"".equals(path)) {
String str = curDir.substring(0, curDir.length() - 1);
moveupDir = str.lastIndexOf("/") >= 0 ? str.substring(0, str.lastIndexOf("/") + 1) : "";
}
// 检查..命令
if(path.indexOf("..") >= 0){
execute.put("error", 1);
execute.put("message", "不允许使用..命令返回上一层.");
return execute;
}
//最后一个字符不是/
if (!"".equals(path) && !path.endsWith("/")) {
execute.put("error", 1);
execute.put("message", "文件路径不合法.");
return execute;
}
// 检查当前目录
File curPathFile = new File(curFileDir);
if (!curPathFile.isDirectory()) {
execute.put("error", 1);
execute.put("message", "当前目录不存在.");
return execute;
}
//遍历目录取的文件信息
List<HashMap> fileList = new ArrayList<HashMap>();
if (curPathFile.listFiles() != null) {
for (File file : curPathFile.listFiles()) {
HashMap<String, Object> hash = new HashMap<String, Object>();
String fileName = file.getName();
if (file.isDirectory()) {
hash.put("is_dir", true);
hash.put("has_file", (file.listFiles() != null));
hash.put("filesize", 0L);
hash.put("is_photo", false);
hash.put("filetype", "");
} else if (file.isFile()) {
fileExt = fileName.substring(fileName.lastIndexOf(".") + 1).toLowerCase();
hash.put("is_dir", false);
hash.put("has_file", false);
hash.put("filesize", file.length());
hash.put("is_photo", Arrays.<String>asList(extMap.get("image").split(",")).contains(fileExt));
hash.put("filetype", fileExt);
}
hash.put("filename", fileName);
hash.put("datetime", new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(file.lastModified()));
fileList.add(hash);
}
}
// 文件排序方式
String tempOrder = order != null ? order.toLowerCase() : "name";
if ("size".equals(tempOrder)) {
Collections.sort(fileList, new SizeComparator());
} else if ("type".equals(tempOrder)) {
Collections.sort(fileList, new TypeComparator());
} else {
Collections.sort(fileList, new NameComparator());
}
// 输出遍历后的文件信息数据
execute.put("moveup_dir_path", moveupDir);
execute.put("current_dir_path", curDir);
execute.put("current_url", curPath);
execute.put("total_count", fileList.size());
execute.put("file_list", fileList);
return execute;
}
/**
* 判断文件上传保存的文件夹是否存在或可写
* @return 如果存在且可写返回"true",否则返回"false"
*/
public boolean isExistOrRwFolder(){
if(null == relPath || relPath.isEmpty()) {
return false;
}
File folder = new File(relPath);
if(!folder.exists())
return false;
if(!folder.isDirectory())
return false;
if(!folder.canWrite())
return false;
return true;
}
/**
* 生成新的文件名,且按日期分类管理
*/
public void newSavePath() {
StringBuilder tempPath = new StringBuilder(relPath);
tempPath.append("/").append(fileDir).append("/");
SimpleDateFormat folderNameFormat = new SimpleDateFormat("yyyyMMdd");
tempPath.append(folderNameFormat.format(new Date()));
File temp = new File(tempPath.toString());
if(!temp.exists())
temp.mkdirs();
SimpleDateFormat fileNameFormat = new SimpleDateFormat("yyyyMMddkkmmss_S");
tempPath.append("/").append(fileNameFormat.format(new Date()));
tempPath.append(".").append(fileExt);
savePath = tempPath.toString().replaceAll("\\\\", "/");
}
/**
* 拷贝文件
* @param src 源文件
* @param tar 目标路径
*/
public void copy(File src, String tar) {
// 判断源文件或目标路径是否为空
if (null == src
|| null == tar
|| tar.isEmpty()) {
return;
}
InputStream srcIs = null;
OutputStream tarOs = null;
try {
srcIs = new FileInputStream(src);
File tarFile = new File(tar);
tarOs = new FileOutputStream(tarFile);
byte[] buffer = new byte[4096];
int n = 0;
while (-1 != (n = srcIs.read(buffer))) {
tarOs.write(buffer, 0, n);
}
} catch (IOException e) {
log.error("Copy File is Fali, Because "+e);
} finally {
try {
if (null != srcIs) {
srcIs.close();
}
if (null != tarOs) {
tarOs.close();
}
} catch (IOException e) {
log.error("Close Stream is Fail, Because "+e);
}
}
}
/**
* 根据文件名称排序
*/
public class NameComparator implements Comparator {
@Override
public int compare(Object a, Object b) {
HashMap hashA = (HashMap) a;
HashMap hashB = (HashMap) b;
if (((Boolean) hashA.get("is_dir")) && !((Boolean) hashB.get("is_dir"))) {
return -1;
} else if (!((Boolean) hashA.get("is_dir")) && ((Boolean) hashB.get("is_dir"))) {
return 1;
} else {
return ((String) hashA.get("filename")).compareTo((String) hashB.get("filename"));
}
}
}
/**
* 根据文件大小排序
*/
public class SizeComparator implements Comparator {
@Override
public int compare(Object a, Object b) {
HashMap hashA = (HashMap) a;
HashMap hashB = (HashMap) b;
if (((Boolean) hashA.get("is_dir")) && !((Boolean) hashB.get("is_dir"))) {
return -1;
} else if (!((Boolean) hashA.get("is_dir")) && ((Boolean) hashB.get("is_dir"))) {
return 1;
} else {
if (((Long) hashA.get("filesize")) > ((Long) hashB.get("filesize"))) {
return 1;
} else if (((Long) hashA.get("filesize")) < ((Long) hashB.get("filesize"))) {
return -1;
} else {
return 0;
}
}
}
}
/**
* 根据文件类型排序
*/
public class TypeComparator implements Comparator {
@Override
public int compare(Object a, Object b) {
HashMap hashA = (HashMap) a;
HashMap hashB = (HashMap) b;
if (((Boolean) hashA.get("is_dir")) && !((Boolean) hashB.get("is_dir"))) {
return -1;
} else if (!((Boolean) hashA.get("is_dir")) && ((Boolean) hashB.get("is_dir"))) {
return 1;
} else {
return ((String) hashA.get("filetype")).compareTo((String) hashB.get("filetype"));
}
}
}
}
|