FileController.cs 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Linq;
  5. using System.Net;
  6. using System.Net.Http;
  7. using System.Threading.Tasks;
  8. using Microsoft.AspNetCore.Mvc;
  9. using EVCB_OCPP.WEBAPI;
  10. using Microsoft.AspNetCore.Http;
  11. using Microsoft.AspNetCore.Hosting;
  12. using Microsoft.AspNetCore.StaticFiles;
  13. using Microsoft.Extensions.Logging;
  14. using Microsoft.Extensions.Configuration;
  15. namespace EVCB_OCPP.WEBAPI.Controllers
  16. {
  17. [ApiExplorerSettings(IgnoreApi = true)]
  18. [Route("file")]
  19. public class FileController : ControllerBase
  20. {
  21. private readonly FileExtensionContentTypeProvider typeProvider;
  22. //private readonly IWebHostEnvironment webHostEnvironment;
  23. private readonly ILogger<FileController> logger;
  24. private readonly string ftpPath;
  25. public FileController(
  26. FileExtensionContentTypeProvider typeProvider,
  27. //IWebHostEnvironment webHostEnvironment,
  28. IConfiguration configuration,
  29. ILogger<FileController> logger)
  30. {
  31. this.typeProvider = typeProvider;
  32. //this.webHostEnvironment = webHostEnvironment;
  33. this.logger = logger;
  34. this.ftpPath = "/home/UploadFiles/Diagnostics";
  35. if (!string.IsNullOrEmpty(configuration["FtpPath"]))
  36. {
  37. this.ftpPath = configuration["FtpPath"];
  38. }
  39. }
  40. [HttpPut]
  41. [HttpPost]
  42. public async Task<IActionResult> Upload()
  43. {
  44. var ctx = HttpContext;// HttpContextHelper.Current;
  45. //var root = ctx.Server.MapPath("~/UploadFiles/Diagnostics");
  46. //string root = string.Format("{webHostEnvironment.ContentRootPath}/UploadFiles/Diagnostics");
  47. if (!Directory.Exists(ftpPath))
  48. {
  49. Directory.CreateDirectory(ftpPath);
  50. }
  51. //var provider = new MultipartFileStreamProvider(root);
  52. try
  53. {
  54. if (!Request.HasFormContentType)
  55. //if (!Request.Content.IsMimeMultipartContent())
  56. {
  57. //throw new HttpResponseException(HttpStatusCode.UnsupportedMediaType);
  58. return StatusCode(StatusCodes.Status415UnsupportedMediaType);
  59. }
  60. //await Request.Content.ReadAsMultipartAsync(provider);
  61. foreach (IFormFile file in Request.Form.Files)
  62. {
  63. if (file.Headers.ContentType.Contains("application/zip"))
  64. {
  65. var name = file.FileName;
  66. name = name.Trim('"');
  67. //var localFileName = file.LocalFileName;
  68. var filePath = Path.Combine(ftpPath, name);
  69. if (!System.IO.File.Exists(filePath))
  70. {
  71. //System.IO.File.Move(localFileName, filePath);
  72. using (var istream = file.OpenReadStream())
  73. using (var fstream = System.IO.File.Open(filePath, FileMode.CreateNew))
  74. {
  75. await istream.CopyToAsync(fstream);
  76. }
  77. }
  78. else
  79. {
  80. //return Request.CreateResponse(HttpStatusCode.BadRequest);
  81. return StatusCode(StatusCodes.Status400BadRequest);
  82. }
  83. }
  84. else
  85. {
  86. //return Request.CreateResponse(HttpStatusCode.Forbidden);
  87. return StatusCode(StatusCodes.Status403Forbidden);
  88. }
  89. }
  90. //foreach (var file in provider.FileData)
  91. //{
  92. // if (file.Headers.ContentType.MediaType == "application/zip")
  93. // {
  94. // var name = file.Headers.ContentDisposition.FileName;
  95. // name = name.Trim('"');
  96. // var localFileName = file.LocalFileName;
  97. // var filePath = Path.Combine(root, name);
  98. // if (!System.IO.File.Exists(filePath))
  99. // {
  100. // System.IO.File.Move(localFileName, filePath);
  101. // }
  102. // else
  103. // {
  104. // //return Request.CreateResponse(HttpStatusCode.BadRequest);
  105. // return StatusCode(StatusCodes.Status400BadRequest);
  106. // }
  107. // }
  108. // else
  109. // {
  110. // //return Request.CreateResponse(HttpStatusCode.Forbidden);
  111. // return StatusCode(StatusCodes.Status403Forbidden);
  112. // }
  113. //}
  114. //return Request.CreateResponse(HttpStatusCode.OK);
  115. return StatusCode(StatusCodes.Status200OK);
  116. }
  117. catch (Exception ex)
  118. {
  119. logger.LogError(ex.Message);
  120. logger.LogError(ex.StackTrace);
  121. //return Request.CreateResponse(HttpStatusCode.InternalServerError, ex.ToString());
  122. return StatusCode(StatusCodes.Status500InternalServerError, ex.ToString());
  123. }
  124. }
  125. [HttpGet("{FileName}")]
  126. public IActionResult GetFile([FromRoute] string FileName)
  127. {
  128. try
  129. {
  130. //string root = string.Format($"{webHostEnvironment.ContentRootPath}/UploadFiles/Diagnostics");
  131. var filePath = Path.Combine(ftpPath, FileName);
  132. if (!FileName.ToLower().EndsWith(".zip") ||
  133. !System.IO.File.Exists(filePath))
  134. {
  135. return StatusCode(StatusCodes.Status400BadRequest);
  136. }
  137. var stream = System.IO.File.OpenRead(filePath);
  138. if (!typeProvider.TryGetContentType(FileName, out var contentType))
  139. {
  140. return StatusCode(StatusCodes.Status500InternalServerError);
  141. }
  142. //return new FileStreamResult(stream, "application/zip");
  143. return File(stream, contentType, fileDownloadName: FileName, enableRangeProcessing: false);
  144. }
  145. catch (Exception e)
  146. {
  147. logger.LogError(e.Message);
  148. logger.LogError(e.StackTrace);
  149. return null;
  150. }
  151. }
  152. }
  153. }