using Microsoft.AspNetCore.Mvc; using Znyc.Recruitment.Admin.AspNetCore.Controllers; using Znyc.Recruitment.Admin.Security.Dtos; using Znyc.Recruitment.Admin.Security.Entitys; using Znyc.Recruitment.Admin.Security.IServices; namespace Znyc.Recruitment.Admin.WebApi.Controllers { /// /// 文件管理 /// [Route("api/Security/[controller]")] [ApiController] public class UploadFileController : AreaApiController { /// /// /// public UploadFileController(IUploadFileService service) : base(service) { _service = service; } ///// ///// 异步批量物理删除 ///// ///// 主键Id数组 //[HttpDelete("DeleteBatchAsync")] //[FunctionAuthorize("Delete")] //public override async Task DeleteBatchAsync(DeletesInputDto info) //{ // var result = new CommonResult(); // var where = string.Empty; // where = "id in ('" + info.Ids.Join(",").Trim(',').Replace(",", "','") + "')"; // if (!string.IsNullOrEmpty(where)) // { // var jobsId = info.Ids; // foreach (var item in jobsId) // { // if (string.IsNullOrEmpty(item.ToString())) continue; // UploadFile uploadFile = new UploadFileApp().Get(item.ToString()); // var cacheHelper = new CacheHelper(); // var sysSetting = cacheHelper.Get("SysSetting").ToJson().ToObject(); // if (uploadFile != null) // { // if (System.IO.File.Exists(sysSetting.LocalPath + "/" + uploadFile.FilePath)) // System.IO.File.Delete(sysSetting.LocalPath + "/" + uploadFile.FilePath); // if (!string.IsNullOrEmpty(uploadFile.Thumbnail)) // if (System.IO.File.Exists(sysSetting.LocalPath + "/" + uploadFile.Thumbnail)) // System.IO.File.Delete(sysSetting.LocalPath + "/" + uploadFile.Thumbnail); // } // } // var bl = await _service.DeleteBatchWhereAsync(where).ConfigureAwait(false); // if (bl) // { // result.ErrCode = ErrCode.successCode; // result.ErrMsg = ErrCode.err0; // } // else // { // result.ErrMsg = ErrCode.err43003; // result.ErrCode = "43003"; // } // } // return ToJsonContent(result); //} } }