| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- using Application.Abstractions.Messaging;
- using Application.Abstractions.Data;
- using Microsoft.EntityFrameworkCore;
- namespace Application.Features.Forum.Post.Search;
- public sealed class Handler(IAppDbContext db) : IQueryHandler<Query, Response>
- {
- public async Task<Response> Handle(Query request, CancellationToken ct)
- {
- var query = db.Post.AsNoTracking().Include(c => c.Board).AsQueryable();
- if (request.BoardID.HasValue)
- {
- query = query.Where(c => c.BoardID == request.BoardID.Value);
- }
- if (!string.IsNullOrWhiteSpace(request.Keyword))
- {
- var kw = request.Keyword.Trim();
- query = request.Search switch
- {
- 0 => query.Where(c => c.Subject.Contains(kw)),
- 1 => query.Where(c => c.Content.Contains(kw)),
- 2 => query.Where(c => (c.Name != null && c.Name.Contains(kw)) || (c.SID != null && c.SID.Contains(kw))),
- _ => query.Where(c => c.Subject.Contains(kw) || c.Content.Contains(kw))
- };
- }
- 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));
- }
- if (request.IsNotice == true)
- {
- query = query.Where(c => c.IsNotice);
- }
- if (request.IsSecret == true)
- {
- query = query.Where(c => c.IsSecret);
- }
- if (request.IsReply == true)
- {
- query = query.Where(c => c.IsReply);
- }
- if (request.IsDeleted == true)
- {
- query = query.Where(c => c.IsDeleted);
- }
- query = request.Sort switch
- {
- 1 => query.OrderByDescending(c => c.Views),
- 2 => query.OrderByDescending(c => c.Comments),
- 3 => query.OrderByDescending(c => c.Likes),
- _ => 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.Subject,
- c.Thumbnail,
- c.Name,
- c.SID,
- c.IsNotice,
- c.IsSecret,
- c.IsReply,
- c.IsSpeaker,
- c.IsAnonymous,
- c.IsDeleted,
- c.Views,
- c.Likes,
- c.Dislikes,
- c.Comments,
- c.Images,
- c.Medias,
- c.Files,
- c.Tags,
- c.UpdatedAt,
- 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.Subject,
- c.Thumbnail,
- c.Name,
- c.SID,
- c.IsNotice,
- c.IsSecret,
- c.IsReply,
- c.IsSpeaker,
- c.IsAnonymous,
- c.IsDeleted,
- c.Views,
- c.Likes,
- c.Dislikes,
- c.Comments,
- c.Images,
- c.Medias,
- c.Files,
- c.Tags,
- c.UpdatedAt,
- c.CreatedAt
- ))]
- );
- }
- }
|