using MTWorkHR.Application.Models; using MTWorkHR.Core.UnitOfWork; using MTWorkHR.Application.Services.Interfaces; using MTWorkHR.Core.Entities; using Microsoft.AspNetCore.Identity; using MTWorkHR.Application.Mapper; using MTWorkHR.Core.Global; using MTWorkHR.Infrastructure.Entities; using MTWorkHR.Infrastructure.Repositories; using MTWorkHR.Infrastructure.UnitOfWorks; using MTWorkHR.Core.IRepositories.Base; using Microsoft.AspNetCore.Http; using System.IO; namespace MTWorkHR.Application.Services { public class UserTaskAttachmentService : BaseService, IUserTaskAttachmentService { private readonly IUnitOfWork _unitOfWork; //private readonly AppSettingsConfiguration _configuration; //private readonly GlobalInfo _globalInfo; private readonly IFileService _fileService; public UserTaskAttachmentService(IUnitOfWork unitOfWork, IFileService fileService) : base(unitOfWork) { _unitOfWork = unitOfWork; _fileService = fileService; } public override async Task GetById(long id) { var entity = await _unitOfWork.UserTaskAttachment.GetByIdAsync(id); var response = MapperObject.Mapper.Map(entity); return response; } public override async Task Create(AttachmentDto input) { if (input.FileData != null) { // input.FilePath = await _fileService.UploadFile(input.FileData); input.OriginalName = input.FileData.FileName; List attachs = new List(); attachs.Add(input); _fileService.CopyFileToCloud(ref attachs); } var entity = MapperObject.Mapper.Map(input); if (entity is null) { throw new AppException(ExceptionEnum.MapperIssue); } var task = await _unitOfWork.UserTaskAttachment.AddAsync(entity); await _unitOfWork.CompleteAsync(); var response = MapperObject.Mapper.Map(task); //using (var stream = new MemoryStream(attach.Content)) //{ // var file = new FormFile(stream, 0, stream.Length, Path.GetFileNameWithoutExtension(attach.FileName), attach.FileName) // { // Headers = new HeaderDictionary(), // ContentType = attach.ContentType, // }; // System.Net.Mime.ContentDisposition cd = new System.Net.Mime.ContentDisposition // { // FileName = file.FileName // }; // file.ContentDisposition = cd.ToString(); //} return response; } //public override async Task Update(AttachmentDto input) //{ // var entitiy = await _unitOfWork.UserTaskAttachment.GetByIdAsync(input.Id); // if (entitiy == null) // throw new AppException(ExceptionEnum.RecordNotExist); // MapperObject.Mapper.Map(input, entitiy, typeof(AttachmentDto), typeof(UserTaskAttachment)); // await _unitOfWork.CompleteAsync(); // return input; //} } }