using Microsoft.AspNetCore.Http; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; using System; using System.Collections.Generic; using System.IO; using Znyc.Recruitment.Admin.Commons.Core.App; using Znyc.Recruitment.Admin.Commons.Extensions; using Znyc.Recruitment.Admin.Commons.Helpers; using Znyc.Recruitment.Admin.Commons.Log; using Znyc.Recruitment.Admin.Commons.Mapping; using Znyc.Recruitment.Admin.Commons.Options; using Znyc.Recruitment.Admin.Commons.Pages; using Znyc.Recruitment.Admin.Security.Dtos; using Znyc.Recruitment.Admin.Security.Entitys; using Znyc.Recruitment.Admin.Security.IServices; namespace Znyc.Recruitment.Admin.Security.Application { /// /// 文件上传 /// public class UploadFileApp { private readonly string _filePath; private readonly ILogger _logger; private readonly IUploadFileService service = App.GetService(); private string _belongApp; //所属应用 private string _belongAppId; //所属应用ID private string _dbFilePath; //数据库中的文件路径 private string _dbThumbnail; //数据库中的缩略图路径 /// /// public UploadFileApp() { } /// /// /// /// public UploadFileApp(IOptions setOptions, ILogger logger) { _logger = logger; _filePath = setOptions.Value.LocalPath; if (string.IsNullOrEmpty(_filePath)) { _filePath = AppContext.BaseDirectory; } } /// /// 根据应用Id和应用标识批量更新数据 /// /// 应用Id /// 更新前旧的应用Id /// 应用标识 /// public bool UpdateByBeLongAppId(string belongAppId, string oldBeLongAppId, string beLongApp = null) { return service.UpdateByBeLongAppId(belongAppId, oldBeLongAppId, beLongApp); } /// /// 新增 /// /// /// public long Insert(UploadFileEntity info) { return service.Insert(info); } /// /// 同步查询单个实体。 /// /// 主键 /// public UploadFileEntity Get(long id) { return service.Get(id); } /// /// 根据条件查询数据库,并返回对象集合(用于分页数据显示) /// /// 查询的条件 /// 分页实体 /// 排序字段 /// 是否降序 /// 指定对象的集合 public List FindWithPager(string condition, PagerInfo info, string fieldToSort, bool desc) { return service.FindWithPager(condition, info, fieldToSort, desc).MapTo(); } /// /// 批量上传文件 /// /// 文件 /// 所属应用,如文章article /// 所属应用ID,如文章id /// public 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; } /// /// 单个上传文件 /// /// /// 所属应用,如文章article /// 所属应用ID,如文章id /// public 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 = Path.GetFileName(file.FileName); byte[] data = binaryReader.ReadBytes((int)file.Length); UploadFile(fileName, data); UploadFileEntity filedb = new UploadFileEntity { FilePath = _dbFilePath, Thumbnail = _dbThumbnail, FileName = fileName, FileSize = file.Length.ToInt(), FileType = Path.GetExtension(fileName), Extension = Path.GetExtension(fileName), BelongApp = _belongApp, BelongAppId = _belongAppId }; service.Insert(filedb); return filedb.MapTo(); } } Log4NetHelper.Error("文件过大"); throw new Exception("文件过大"); } /// /// 实现文件上传到服务器保存,并生成缩略图 /// /// 文件名称 /// 文件字节流 private void UploadFile(string fileName, byte[] fileBuffers) { string folder = DateTime.Now.ToString("yyyyMMdd"); //判断文件是否为空 if (string.IsNullOrEmpty(fileName)) { Log4NetHelper.Error("文件名不能为空"); throw new Exception("文件名不能为空"); } //判断文件是否为空 if (fileBuffers.Length < 1) { Log4NetHelper.Error("文件不能为空"); throw new Exception("文件不能为空"); } string _tempfilepath = "/upload/" + _belongApp + "/" + folder + "/"; string uploadPath = _filePath + _tempfilepath; if (!Directory.Exists(uploadPath)) { Directory.CreateDirectory(uploadPath); } string ext = Path.GetExtension(fileName).ToLower(); string newName = 0 + ext; using (FileStream fs = new FileStream(uploadPath + newName, 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 = 0 + ext; ImgHelper.MakeThumbnail(uploadPath + newName, uploadPath + thumbnailName); _dbThumbnail = folder + "/" + thumbnailName; } _dbFilePath = _tempfilepath + "/" + newName; } } /// /// 统计上传内容数 /// /// public long GetCountTotal() { return service.GetCountByWhere("1=1"); } } }