using System; using System.IO; using System.Linq; using FMSAdmin.Data; using FMSAdmin.Entities; using FMSAdmin.Helpers; using FMSAdmin.Models; using FMSAdmin.Services; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Logging; using OfficeOpenXml; namespace FMSAdmin.Controllers { [Authorize] [ApiController] [ApiVersion("1")] [Route("api/[controller]")] public class Investigation3Controller : Controller { private readonly ILogger _logger; private readonly FMSContext _context; private Investigation3Service _service; public Investigation3Controller( ILogger logger, FMSContext context, Investigation3Service service ) { _logger = logger; _context = context; _service = service; } /// /// 검색 & 정렬 /// /// /// private IQueryable _FilterAndSort(PagingRequest req) { var query = _service.GetAll(); // 기본 Entity 검색 query = query.Filter(req.conditions); if (req.siteId != null) { query = query.Where(x => x.SiteId == Util.ToInt(req.siteId) || x.IsAllSite == true); } if (req.siteIds != null && req.siteIds.Length > 0) { query = query.Where(x => req.siteIds.Contains(x.SiteId)); } query = query.Sort(req.sort); return query; } /// /// 셀렉트 공통 /// /// /// private dynamic _ListSelect(IQueryable query) { var list = query.Select(x => new { x.SiteId, SiteName = x.CmSite.Name, Investigation3GroupName = x.CmInvestigation3CodeGroup.Name, Investigation3TypeName = x.CmInvestigation3CodeType.Name, x.InvestigationNo, Name = x.IsAllSite ? "[본사] " + x.Name : x.Name, x.InvestigationGroupId, x.InvestigationTypeId, x.InvestigationId, x.IsAllSite }); return list; } /// /// 목록 /// /// /// /// [HttpGet] public IActionResult List([FromQuery] PagingRequest req) { var query = _FilterAndSort(req); var list = _ListSelect(query); var paging = PagingList.Pagination(list, req.page, req.limit); return Ok(paging); } // 엑셀 다운로드 [AllowAnonymous] [HttpGet("excel")] public IActionResult ExportExcel([FromQuery] PagingRequest req, string filename) { var query = _FilterAndSort(req); var list = _ListSelect(query); var stream = new MemoryStream(); using (var package = new ExcelPackage(stream)) { var workSheet = package.Workbook.Worksheets.Add("Sheet1"); workSheet.Cells.LoadFromCollection(list, true); if (req.columns != null && req.columns.Length > 0) { workSheet.AddStyle(req.columns, req.sort?.order?.ToLower() == "asc", filename); } package.Save(); } stream.Position = 0; string excelName = $"excel-{DateTime.Now.ToString("yyyyMMddHHmmssfff")}.xlsx"; return File(stream, "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", excelName); } /// /// 조회 /// [HttpGet("{siteId}/{id}")] public IActionResult Get(int siteId, int id) { var data = _service.Get(id, siteId); if (data.Count() == 0) { return NotFound("사이트 정보를 찾을 수 없습니다."); } var list = data.Select(x => new { x.InvestigationId, x.Name, x.SiteId, x.InvestigationGroupId, x.InvestigationTypeId, x.InvestigationNo, x.IsAllSite, CmSite = new { x.CmSite.Name, }, CmInvestigation3CodeGroup = new { x.CmInvestigation3CodeGroup.Name }, CmInvestigation3CodeType = new { x.CmInvestigation3CodeType.Name }, x.Description }); return Ok(list.First()); } /// /// 수정 /// [HttpPost("{siteId}/{id}")] public IActionResult Edit(int siteId, int id, [FromBody] CmInvestigation3 data) { _logger.LogInformation("Edit"); _logger.LogInformation("id:" + id); _logger.LogInformation("siteId:" + siteId); //_logger.LogInformation(data.Dump()); if (id != data.InvestigationId) { return BadRequest("잘못된 접근입니다.>>"); } if (ModelState.IsValid) { _service.Edit(id, siteId, data); } else { return BadRequest(ModelState); } return Ok(); } /// /// 등록 /// [HttpPut] public IActionResult Create([FromBody] CmInvestigation3 data) { _logger.LogInformation("Create"); //_logger.LogInformation(data.Dump()); if (ModelState.IsValid) { data.CreateUserId = User.Identity.Name; _service.Create(data); } else { return BadRequest(ModelState); } return Ok(); } /// /// 삭제 /// [HttpDelete("{siteId}/{id}")] public IActionResult Delete(int siteId, int id) { _service.Delete(id, siteId); return Ok(); } } }