ListFileHandler.cs 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Linq;
  5. using System.Web;
  6. /// <summary>
  7. /// FileManager 的摘要说明
  8. /// </summary>
  9. ///
  10. namespace LYFZ.WanYuKeFuData.UEditControl
  11. {
  12. public class ListFileManager : Handler
  13. {
  14. enum ResultState
  15. {
  16. Success,
  17. InvalidParam,
  18. AuthorizError,
  19. IOError,
  20. PathNotFound
  21. }
  22. private int Start;
  23. private int Size;
  24. private int Total;
  25. private ResultState State;
  26. private String PathToList;
  27. private String[] FileList;
  28. private String[] SearchExtensions;
  29. public ListFileManager(HttpContext context, string pathToList, string[] searchExtensions)
  30. : base(context)
  31. {
  32. this.SearchExtensions = searchExtensions.Select(x => x.ToLower()).ToArray();
  33. this.PathToList = pathToList;
  34. }
  35. public override void Process()
  36. {
  37. try
  38. {
  39. Start = String.IsNullOrEmpty(Request["start"]) ? 0 : Convert.ToInt32(Request["start"]);
  40. Size = String.IsNullOrEmpty(Request["size"]) ? Config.GetInt("imageManagerListSize") : Convert.ToInt32(Request["size"]);
  41. }
  42. catch (FormatException)
  43. {
  44. State = ResultState.InvalidParam;
  45. WriteResult();
  46. return;
  47. }
  48. var buildingList = new List<String>();
  49. try
  50. {
  51. var localPath = Server.MapPath(PathToList);
  52. buildingList.AddRange(Directory.GetFiles(localPath, "*", SearchOption.AllDirectories)
  53. .Where(x => SearchExtensions.Contains(Path.GetExtension(x).ToLower()))
  54. .Select(x => PathToList + x.Substring(localPath.Length).Replace("\\", "/")));
  55. Total = buildingList.Count;
  56. FileList = buildingList.OrderBy(x => x).Skip(Start).Take(Size).ToArray();
  57. }
  58. catch (UnauthorizedAccessException)
  59. {
  60. State = ResultState.AuthorizError;
  61. }
  62. catch (DirectoryNotFoundException)
  63. {
  64. State = ResultState.PathNotFound;
  65. }
  66. catch (IOException)
  67. {
  68. State = ResultState.IOError;
  69. }
  70. finally
  71. {
  72. WriteResult();
  73. }
  74. }
  75. private void WriteResult()
  76. {
  77. WriteJson(new
  78. {
  79. state = GetStateString(),
  80. list = FileList == null ? null : FileList.Select(x => new { url = x }),
  81. start = Start,
  82. size = Size,
  83. total = Total
  84. });
  85. }
  86. private string GetStateString()
  87. {
  88. switch (State)
  89. {
  90. case ResultState.Success:
  91. return "SUCCESS";
  92. case ResultState.InvalidParam:
  93. return "参数不正确";
  94. case ResultState.PathNotFound:
  95. return "路径不存在";
  96. case ResultState.AuthorizError:
  97. return "文件系统权限不足";
  98. case ResultState.IOError:
  99. return "文件系统读取错误";
  100. }
  101. return "未知错误";
  102. }
  103. }
  104. }