handler 추출

This commit is contained in:
2025-12-04 23:34:00 +09:00
parent 8313c989f0
commit d4185a6529
2 changed files with 90 additions and 70 deletions

View File

@@ -0,0 +1,86 @@
package main
import (
"context"
"encoding/json"
"log"
"time"
"github.com/neatflowcv/seven-skies/internal/pkg/broker"
"github.com/neatflowcv/seven-skies/internal/pkg/domain"
"github.com/neatflowcv/seven-skies/internal/pkg/openweather"
)
type Handler struct {
broker broker.Broker
key string
lat float64
lon float64
}
func NewHandler(broker broker.Broker, key string, lat float64, lon float64) *Handler {
return &Handler{
broker: broker,
key: key,
lat: lat,
lon: lon,
}
}
func (h *Handler) Handle(ctx context.Context) error {
log.Println("get forecast")
forecast, err := openweather.Forecast(ctx, h.key, h.lat, h.lon)
if err != nil {
log.Println("error in get forecast", err)
return err
}
log.Println("get forecast successfully", forecast)
for _, list := range forecast.List {
weatherEvent := domain.WeatherEvent{
Date: time.Unix(int64(list.Dt), 0),
Condition: decideCondition(list.Weather[0].Main),
Temperature: &domain.Temperature{Value: domain.Celsius(list.Main.Temp)},
High: &domain.Temperature{Value: domain.Celsius(list.Main.TempMax)},
Low: &domain.Temperature{Value: domain.Celsius(list.Main.TempMin)},
}
message, err := json.Marshal(weatherEvent)
if err != nil {
log.Println("error in marshal weather event", err)
continue
}
err = h.broker.Publish(ctx, "SEVEN_SKIES_SUBJECT.OPENWEATHER", message)
if err != nil {
log.Println("error in publish weather event", err)
continue
}
}
return nil
}
func decideCondition(main string) domain.WeatherCondition {
switch main {
case "Thunderstorm", "Drizzle", "Rain":
return domain.WeatherConditionRain
case "Snow":
return domain.WeatherConditionSnow
case "Mist", "Smoke", "Haze", "Dust", "Fog", "Sand", "Ash", "Squall", "Tornado", "Clouds":
return domain.WeatherConditionCloudy
case "Clear":
return domain.WeatherConditionClear
default:
return domain.WeatherConditionUnknown
}
}