using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using System; using System.Collections.Generic; using System.IO; using Znyc.Recruitment.Admin.AspNetCore.Controllers; using Znyc.Recruitment.Admin.AspNetCore.Entitys; using Znyc.Recruitment.Admin.Commons.Cache; using Znyc.Recruitment.Admin.Commons.Entitys; using Znyc.Recruitment.Admin.Commons.Extend; using Znyc.Recruitment.Admin.Commons.Extensions; using Znyc.Recruitment.Admin.Commons.Helpers; using Znyc.Recruitment.Admin.Commons.Json; using Znyc.Recruitment.Admin.Commons.Log; using Znyc.Recruitment.Admin.Commons.Mapping; using Znyc.Recruitment.Admin.Security.Application; using Znyc.Recruitment.Admin.Security.Dtos; using Znyc.Recruitment.Admin.Security.Entitys; namespace Znyc.Recruitment.Admin.WebApi.Controllers { /// /// 文件上传 /// [Route("api/[controller]")] [ApiController] public class FilesController : ApiController { private readonly IWebHostEnvironment _hostingEnvironment; private string _belongApp; //所属应用 private string _belongAppId; //所属应用ID private string _dbFilePath; //数据库中的文件路径 private string _dbThumbnail; //数据库中的缩略图路径 private string _fileName; //文件名称 private string _filePath; public FilesController(IWebHostEnvironment hostingEnvironment) { _hostingEnvironment = hostingEnvironment; } /// /// 单文件上传接口 /// /// /// 服务器存储的文件信息 [HttpPost("Upload")] public IActionResult Upload([FromForm] IFormCollection formCollection) { CommonResult result = new CommonResult(); FormFileCollection filelist = (FormFileCollection)formCollection.Files; string belongApp = formCollection["belongApp"].ToString(); string belongAppId = formCollection["belongAppId"].ToString(); _fileName = filelist[0].FileName; try { result.ResData = Add(filelist[0], belongApp, belongAppId); result.ErrCode = ErrCode.successCode; result.Success = true; } catch (Exception ex) { result.ErrCode = "500"; result.ErrMsg = ex.Message; Log4NetHelper.Error("", ex); throw ex; } return ToJsonContent(result); } /// /// 批量上传文件接口 /// /// /// 服务器存储的文件信息 [HttpPost("Uploads")] public IActionResult Uploads([FromForm] IFormCollection formCollection) { CommonResult result = new CommonResult(); FormFileCollection filelist = (FormFileCollection)formCollection.Files; string belongApp = formCollection["belongApp"].ToString(); string belongAppId = formCollection["belongAppId"].ToString(); try { result.ResData = Adds(filelist, belongApp, belongAppId); } catch (Exception ex) { Log4NetHelper.Error("", ex); result.ErrCode = "500"; result.ErrMsg = ex.Message; } return ToJsonContent(result); } /// /// 删除文件 /// /// /// [HttpGet("DeleteFile")] public IActionResult DeleteFile(int id) { CommonResult result = new CommonResult(); try { UploadFileEntity uploadFile = new UploadFileApp().Get(id); CacheHelper cacheHelper = new CacheHelper(); SysSettingEntity sysSetting = cacheHelper.Get("SysSetting").ToJson().ToObject(); string localpath = _hostingEnvironment.WebRootPath; if (uploadFile != null) { string filepath = (localpath + "/" + uploadFile.FilePath).ToFilePath(); if (System.IO.File.Exists(filepath)) { System.IO.File.Delete(filepath); } string filepathThu = (localpath + "/" + uploadFile.Thumbnail).ToFilePath(); if (System.IO.File.Exists(filepathThu)) { System.IO.File.Delete(filepathThu); } result.ErrCode = ErrCode.successCode; result.Success = true; } else { result.ErrCode = ErrCode.failCode; result.Success = false; } } catch (Exception ex) { Log4NetHelper.Error("", ex); result.ErrCode = "500"; result.ErrMsg = ex.Message; } return ToJsonContent(result); } /// /// 批量上传文件 /// /// 文件 /// 所属应用,如文章article /// 所属应用ID,如文章id /// private List Adds(IFormFileCollection files, string belongApp, string belongAppId) { List result = new List(); foreach (IFormFile file in files) { if (file != null) { result.Add(Add(file, belongApp, belongAppId)); } } return result; } /// /// 单个上传文件 /// /// /// /// /// private UploadFileResultOuputDto Add(IFormFile file, string belongApp, string belongAppId) { _belongApp = belongApp; _belongAppId = belongAppId; if (file != null && file.Length > 0 && file.Length < 10485760) { using (BinaryReader binaryReader = new BinaryReader(file.OpenReadStream())) { string fileName = string.Empty; fileName = _fileName; byte[] data = binaryReader.ReadBytes((int)file.Length); UploadFile(fileName, data); ; UploadFileEntity filedb = new UploadFileEntity { Id = 0, FilePath = _dbFilePath, Thumbnail = _dbThumbnail, FileName = fileName, FileSize = file.Length.ToInt(), FileType = Path.GetExtension(fileName), Extension = Path.GetExtension(fileName), BelongApp = _belongApp, BelongAppId = _belongAppId }; //new UploadFileApp().Insert(filedb); UploadFileResultOuputDto uploadFileResultOuputDto = filedb.MapTo(); uploadFileResultOuputDto.PhysicsFilePath = (_hostingEnvironment.WebRootPath + "/" + _dbThumbnail).ToFilePath(); ; return uploadFileResultOuputDto; } } Log4NetHelper.Info("文件过大"); throw new Exception("文件过大"); } /// /// 实现文件上传到服务器保存,并生成缩略图 /// /// 文件名称 /// 文件字节流 private void UploadFile(string fileName, byte[] fileBuffers) { //判断文件是否为空 if (string.IsNullOrEmpty(fileName)) { Log4NetHelper.Info("文件名不能为空"); throw new Exception("文件名不能为空"); } //判断文件是否为空 if (fileBuffers.Length < 1) { Log4NetHelper.Info("文件不能为空"); throw new Exception("文件不能为空"); } CacheHelper cacheHelper = new CacheHelper(); SysSettingEntity sysSetting = cacheHelper.Get("SysSetting").ToJson().ToObject(); string folder = DateTime.Now.ToString("yyyyMMdd"); _filePath = _hostingEnvironment.WebRootPath; string _tempfilepath = sysSetting.Filepath; if (!string.IsNullOrEmpty(_belongApp)) { _tempfilepath += "/" + _belongApp; } if (!string.IsNullOrEmpty(_belongAppId)) { _tempfilepath += "/" + _belongAppId; } if (sysSetting.Filesave == "1") { _tempfilepath = _tempfilepath + "/" + folder + "/"; } if (sysSetting.Filesave == "2") { DateTime date = DateTime.Now; _tempfilepath = _tempfilepath + "/" + date.Year + "/" + date.Month + "/" + date.Day + "/"; } string uploadPath = _filePath + "/" + _tempfilepath; if (sysSetting.Fileserver == "localhost") { if (!Directory.Exists(uploadPath)) { Directory.CreateDirectory(uploadPath); } } string ext = Path.GetExtension(fileName).ToLower(); Guid newName = Guid.NewGuid(); string newfileName = newName + ext; using (FileStream fs = new FileStream(uploadPath + newfileName, FileMode.Create)) { fs.Write(fileBuffers, 0, fileBuffers.Length); fs.Close(); //生成缩略图 if (ext.Contains(".jpg") || ext.Contains(".jpeg") || ext.Contains(".png") || ext.Contains(".bmp") || ext.Contains(".gif")) { string thumbnailName = newName + "_" + sysSetting.Thumbnailwidth + "x" + sysSetting.Thumbnailheight + ext; ImgHelper.MakeThumbnail(uploadPath + newfileName, uploadPath + thumbnailName, sysSetting.Thumbnailwidth.ToInt(), sysSetting.Thumbnailheight.ToInt()); _dbThumbnail = _tempfilepath + thumbnailName; } _dbFilePath = _tempfilepath + newfileName; } } } }