| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- using Application.Abstractions.Messaging;
- using Application.Abstractions.Cache;
- using Application.Abstractions.Crypto;
- namespace Application.Features.Api.Crypto.Ticker.GetDetail;
- public sealed class Handler(IUpbitClient upbit, ICacheService cache) : IQueryHandler<Query, Response>
- {
- private static readonly TimeSpan _cacheExpiry = TimeSpan.FromSeconds(10);
- public async Task<Response> Handle(Query request, CancellationToken ct)
- {
- var cacheKey = CacheKeys.CryptoTickerDetail(request.Market);
- // 캐시 확인
- var cached = await cache.GetAsync<Response>(cacheKey, ct);
- if (cached is not null)
- {
- return cached;
- }
- // Upbit REST API 호출
- var tickers = await upbit.GetTickersAsync([request.Market], ct);
- if (tickers.Count == 0)
- {
- return new Response(request.Market, "", "", "", "", 0, 0, 0, 0, 0, 0, "", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "", 0, "", 0);
- }
- var t = tickers[0];
- var response = new Response(
- t.Market,
- t.TradeDate,
- t.TradeTime,
- t.TradeDateKst,
- t.TradeTimeKst,
- t.TradeTimestamp,
- t.OpeningPrice,
- t.HighPrice,
- t.LowPrice,
- t.TradePrice,
- t.PrevClosingPrice,
- t.Change,
- t.ChangePrice,
- t.ChangeRate,
- t.SignedChangePrice,
- t.SignedChangeRate,
- t.TradeVolume,
- t.AccTradePrice,
- t.AccTradePrice24h,
- t.AccTradeVolume,
- t.AccTradeVolume24h,
- t.Highest52WeekPrice,
- t.Highest52WeekDate,
- t.Lowest52WeekPrice,
- t.Lowest52WeekDate,
- t.Timestamp
- );
- // Redis 캐시 저장 (10초)
- await cache.SetAsync(cacheKey, response, _cacheExpiry, ct);
- return response;
- }
- }
|