UploadHandler.cs 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Linq;
  5. using System.Text.RegularExpressions;
  6. using System.Web;
  7. /// <summary>
  8. /// UploadHandler 的摘要说明
  9. /// </summary>
  10. ///
  11. namespace LYFZ.WanYuKeFuData.UEditControl
  12. {
  13. public class UploadHandler : Handler
  14. {
  15. public UploadConfig UploadConfig { get; private set; }
  16. public UploadResult Result { get; private set; }
  17. public UploadHandler(HttpContext context, UploadConfig config)
  18. : base(context)
  19. {
  20. this.UploadConfig = config;
  21. this.Result = new UploadResult() { State = UploadState.Unknown };
  22. }
  23. public override void Process()
  24. {
  25. byte[] uploadFileBytes = null;
  26. string uploadFileName = null;
  27. if (UploadConfig.Base64)
  28. {
  29. uploadFileName = UploadConfig.Base64Filename;
  30. uploadFileBytes = Convert.FromBase64String(Request[UploadConfig.UploadFieldName]);
  31. }
  32. else
  33. {
  34. var file = Request.Files[UploadConfig.UploadFieldName];
  35. uploadFileName = file.FileName;
  36. if (!CheckFileType(uploadFileName))
  37. {
  38. Result.State = UploadState.TypeNotAllow;
  39. WriteResult();
  40. return;
  41. }
  42. if (!CheckFileSize(file.ContentLength))
  43. {
  44. Result.State = UploadState.SizeLimitExceed;
  45. WriteResult();
  46. return;
  47. }
  48. uploadFileBytes = new byte[file.ContentLength];
  49. try
  50. {
  51. file.InputStream.Read(uploadFileBytes, 0, file.ContentLength);
  52. }
  53. catch (Exception)
  54. {
  55. Result.State = UploadState.NetworkError;
  56. WriteResult();
  57. }
  58. }
  59. Result.OriginFileName = uploadFileName;
  60. var savePath = PathFormatter.Format(uploadFileName, UploadConfig.PathFormat);
  61. var localPath = Server.MapPath(savePath);
  62. try
  63. {
  64. if (!Directory.Exists(Path.GetDirectoryName(localPath)))
  65. {
  66. Directory.CreateDirectory(Path.GetDirectoryName(localPath));
  67. }
  68. File.WriteAllBytes(localPath, uploadFileBytes);
  69. Result.Url = savePath;
  70. Result.State = UploadState.Success;
  71. }
  72. catch (Exception e)
  73. {
  74. Result.State = UploadState.FileAccessError;
  75. Result.ErrorMessage = e.Message;
  76. }
  77. finally
  78. {
  79. WriteResult();
  80. }
  81. }
  82. private void WriteResult()
  83. {
  84. this.WriteJson(new
  85. {
  86. state = GetStateMessage(Result.State),
  87. url = Result.Url,
  88. title = Result.OriginFileName,
  89. original = Result.OriginFileName,
  90. error = Result.ErrorMessage
  91. });
  92. }
  93. private string GetStateMessage(UploadState state)
  94. {
  95. switch (state)
  96. {
  97. case UploadState.Success:
  98. return "SUCCESS";
  99. case UploadState.FileAccessError:
  100. return "文件访问出错,请检查写入权限";
  101. case UploadState.SizeLimitExceed:
  102. return "文件大小超出服务器限制";
  103. case UploadState.TypeNotAllow:
  104. return "不允许的文件格式";
  105. case UploadState.NetworkError:
  106. return "网络错误";
  107. }
  108. return "未知错误";
  109. }
  110. private bool CheckFileType(string filename)
  111. {
  112. var fileExtension = Path.GetExtension(filename).ToLower();
  113. return UploadConfig.AllowExtensions.Select(x => x.ToLower()).Contains(fileExtension);
  114. }
  115. private bool CheckFileSize(int size)
  116. {
  117. return size < UploadConfig.SizeLimit;
  118. }
  119. }
  120. public class UploadConfig
  121. {
  122. /// <summary>
  123. /// 文件命名规则
  124. /// </summary>
  125. public string PathFormat { get; set; }
  126. /// <summary>
  127. /// 上传表单域名称
  128. /// </summary>
  129. public string UploadFieldName { get; set; }
  130. /// <summary>
  131. /// 上传大小限制
  132. /// </summary>
  133. public long SizeLimit { get; set; }
  134. /// <summary>
  135. /// 上传允许的文件格式
  136. /// </summary>
  137. public string[] AllowExtensions { get; set; }
  138. /// <summary>
  139. /// 文件是否以 Base64 的形式上传
  140. /// </summary>
  141. public bool Base64 { get; set; }
  142. /// <summary>
  143. /// Base64 字符串所表示的文件名
  144. /// </summary>
  145. public string Base64Filename { get; set; }
  146. }
  147. public class UploadResult
  148. {
  149. public UploadState State { get; set; }
  150. public string Url { get; set; }
  151. public string OriginFileName { get; set; }
  152. public string ErrorMessage { get; set; }
  153. }
  154. public enum UploadState
  155. {
  156. Success = 0,
  157. SizeLimitExceed = -1,
  158. TypeNotAllow = -2,
  159. FileAccessError = -3,
  160. NetworkError = -4,
  161. Unknown = 1,
  162. }
  163. }