| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- using Application.Abstractions.Data;
- using Application.Abstractions.Messaging;
- using Microsoft.EntityFrameworkCore;
- namespace Application.Features.Forum.CommentFile.Search;
- public sealed class Handler(IAppDbContext db) : IQueryHandler<Query, Response>
- {
- public async Task<Response> Handle(Query request, CancellationToken ct)
- {
- var query = db.CommentFile.AsNoTracking().Include(c => c.Board).Include(c => c.Post).Include(c => c.Comment).AsQueryable();
- if (request.BoardID.HasValue)
- {
- query = query.Where(c => c.BoardID == request.BoardID.Value);
- }
- if (request.PostID.HasValue)
- {
- query = query.Where(c => c.PostID == request.PostID.Value);
- }
- if (request.CommentID.HasValue)
- {
- query = query.Where(c => c.CommentID == request.CommentID.Value);
- }
- if (!string.IsNullOrWhiteSpace(request.Keyword))
- {
- var kw = request.Keyword.Trim();
- query = request.Search switch
- {
- 1 => query.Where(c => c.PostID.ToString().Contains(kw)),
- 2 => query.Where(c => c.Post.Subject.Contains(kw)),
- 3 => query.Where(c => (c.Post.Name != null && c.Post.Name.Contains(kw)) || (c.Post.SID != null && c.Post.SID.Contains(kw))),
- _ => query.Where(c => c.Post.Subject.Contains(kw))
- };
- }
- if (request.IsDisabled.HasValue)
- {
- query = query.Where(c => c.IsDisabled == request.IsDisabled.Value);
- }
- if (!string.IsNullOrWhiteSpace(request.StartAt) && DateTime.TryParse(request.StartAt, out var startDate))
- {
- query = query.Where(c => c.CreatedAt >= startDate);
- }
- if (!string.IsNullOrWhiteSpace(request.EndAt) && DateTime.TryParse(request.EndAt, out var endDate))
- {
- query = query.Where(c => c.CreatedAt <= endDate.AddDays(1));
- }
- query = query.OrderByDescending(c => c.ID);
- var total = await query.CountAsync(ct);
- var list = await query
- .Skip((request.PageNum - 1) * request.PerPage)
- .Take(request.PerPage)
- .Select(c => new
- {
- c.ID,
- c.BoardID,
- BoardName = c.Board.Name,
- c.PostID,
- PostSubject = c.Post.Subject,
- c.CommentID,
- c.FileName,
- c.Url,
- c.Extension,
- c.Size,
- c.Downloads,
- c.IsDisabled,
- c.CreatedAt
- })
- .ToListAsync(ct);
- var startNum = total - ((request.PageNum - 1) * request.PerPage);
- return new Response(
- total,
- [..list.Select((c, i) => new Response.Row(
- Num: startNum - i,
- c.ID,
- c.BoardID,
- c.BoardName,
- c.PostID,
- c.PostSubject,
- c.CommentID,
- c.FileName,
- c.Url,
- c.Extension,
- c.Size,
- c.Downloads,
- c.IsDisabled,
- c.CreatedAt
- ))]
- );
- }
- }
|