feat: Rewrite to use the Diyanet API
This commit is contained in:
+117
-29
@@ -2,7 +2,9 @@ package diyanetapi
|
||||
|
||||
import (
|
||||
"context"
|
||||
"errors"
|
||||
"fmt"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/imroc/req/v3"
|
||||
@@ -21,48 +23,136 @@ func New(c *req.Client) Provider {
|
||||
}
|
||||
|
||||
func (d Provider) GetByCoords(ctx context.Context, coords prayer.Coordinates) ([]prayer.Times, error) {
|
||||
locationID, err := d.getLocationIDByCoords(ctx, coords)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("failed to resolve location by coordinates: %w", err)
|
||||
}
|
||||
|
||||
times, err := d.Get(ctx, locationID)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("failed to get prayer times by coordinates: %w", err)
|
||||
}
|
||||
|
||||
return times, nil
|
||||
}
|
||||
|
||||
func (d Provider) getLocationIDByCoords(ctx context.Context, coords prayer.Coordinates) (string, error) {
|
||||
res, err := d.http.NewRequest().
|
||||
SetContext(ctx).
|
||||
SetQueryParams(map[string]string{
|
||||
"latitude": fmt.Sprintf("%f", coords.Latitude),
|
||||
"longitude": fmt.Sprintf("%f", coords.Longitude),
|
||||
}).
|
||||
Get("https://namazvakti.diyanet.gov.tr/api/NamazVakti/Aylik")
|
||||
Get("https://namazvakti.diyanet.gov.tr/api/ilce/GetByCoordinat")
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("failed to get prayer times by coords: %w", err)
|
||||
return "", fmt.Errorf("failed to get location by coords: %w", err)
|
||||
}
|
||||
|
||||
return d.parseResponse(res)
|
||||
var response struct {
|
||||
Success bool `json:"success"`
|
||||
ResultObject []struct {
|
||||
ID int `json:"cityID"`
|
||||
} `json:"resultObject"`
|
||||
}
|
||||
if err := res.Unmarshal(&response); err != nil {
|
||||
return "", fmt.Errorf("failed to unmarshal city response: %w", err)
|
||||
}
|
||||
if !response.Success {
|
||||
return "", fmt.Errorf("failed to get location by coordinates from upstream: %w", errors.New(res.String()))
|
||||
}
|
||||
if len(response.ResultObject) == 0 {
|
||||
return "", fmt.Errorf("failed to resolve location by coordinates: %w", errors.New("empty location result"))
|
||||
}
|
||||
|
||||
return fmt.Sprintf("%d", response.ResultObject[0].ID), nil
|
||||
}
|
||||
|
||||
func (d Provider) SearchLocations(ctx context.Context, query string) ([]prayer.Location, error) {
|
||||
query = strings.TrimSpace(query)
|
||||
if query == "" {
|
||||
return []prayer.Location{}, nil
|
||||
}
|
||||
|
||||
res, err := d.http.NewRequest().
|
||||
SetContext(ctx).
|
||||
SetQueryParam("searchText", query).
|
||||
Get("https://namazvakti.diyanet.gov.tr/api/Search/GetByName")
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("failed to search locations: %w", err)
|
||||
}
|
||||
|
||||
var response struct {
|
||||
Success bool `json:"success"`
|
||||
ResultObject struct {
|
||||
Results []struct {
|
||||
ID int `json:"cityID"`
|
||||
CityNameTR string `json:"cityNameTR"`
|
||||
StateNameTR string `json:"stateNameTR"`
|
||||
CountryNameTR string `json:"countryNameTR"`
|
||||
CityNameEN string `json:"cityNameEN"`
|
||||
StateNameEN string `json:"stateNameEN"`
|
||||
CountryNameEN string `json:"countryNameEN"`
|
||||
Latitude float64 `json:"latitude"`
|
||||
Longitude float64 `json:"longitude"`
|
||||
} `json:"results"`
|
||||
} `json:"resultObject"`
|
||||
}
|
||||
if err := res.Unmarshal(&response); err != nil {
|
||||
return nil, fmt.Errorf("failed to unmarshal search response: %w", err)
|
||||
}
|
||||
if !response.Success {
|
||||
return nil, fmt.Errorf("failed to search locations in upstream: %w", errors.New(res.String()))
|
||||
}
|
||||
|
||||
locations := make([]prayer.Location, 0, len(response.ResultObject.Results))
|
||||
for _, it := range response.ResultObject.Results {
|
||||
locations = append(locations, prayer.Location{
|
||||
ID: it.ID,
|
||||
NameTR: formatLocationName(it.CountryNameTR, it.StateNameTR, it.CityNameTR),
|
||||
NameEN: formatLocationName(it.CountryNameEN, it.StateNameEN, it.CityNameEN),
|
||||
Latitude: it.Latitude,
|
||||
Longitude: it.Longitude,
|
||||
})
|
||||
}
|
||||
|
||||
return locations, nil
|
||||
}
|
||||
|
||||
func formatLocationName(country, state, city string) string {
|
||||
return fmt.Sprintf("%s / %s / %s", strings.TrimSpace(country), strings.TrimSpace(state), strings.TrimSpace(city))
|
||||
}
|
||||
|
||||
func (d Provider) Get(ctx context.Context, locationID string) ([]prayer.Times, error) {
|
||||
res, err := d.http.NewRequest().
|
||||
SetContext(ctx).
|
||||
SetQueryParam("ilceId", locationID).
|
||||
Get("https://namazvakti.diyanet.gov.tr/api/NamazVakti/Aylik")
|
||||
Get("https://namazvakti.diyanet.gov.tr/api/NamazVakti/Gunluk")
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("failed to get prayer times by location id: %w", err)
|
||||
}
|
||||
|
||||
return d.parseResponse(res)
|
||||
times, err := d.parseResponse(res)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("failed to parse prayer times response: %w", err)
|
||||
}
|
||||
|
||||
return times, nil
|
||||
}
|
||||
|
||||
func (d Provider) parseResponse(res *req.Response) ([]prayer.Times, error) {
|
||||
var response struct {
|
||||
Success bool `json:"success"`
|
||||
ResultObject struct {
|
||||
Location struct {
|
||||
ID int `json:"konum_Id"`
|
||||
Timezone string `json:"timezone"`
|
||||
} `json:"konum"`
|
||||
PrayerTimes []struct {
|
||||
Date time.Time `json:"miladi_tarih_uzun_Iso8601"`
|
||||
Fajr time.Time `json:"imsak"`
|
||||
Sunrise time.Time `json:"gunes"`
|
||||
Dhuhr time.Time `json:"ogle"`
|
||||
Asr time.Time `json:"ikindi"`
|
||||
Maghrib time.Time `json:"aksam"`
|
||||
Isha time.Time `json:"yatsi"`
|
||||
Date time.Time `json:"miladi_tarih_uzun_Iso8601"`
|
||||
DateIslamic string `json:"hicri_tarih_uzun"`
|
||||
Fajr time.Time `json:"imsak"`
|
||||
Sunrise time.Time `json:"gunes"`
|
||||
Dhuhr time.Time `json:"ogle"`
|
||||
Asr time.Time `json:"ikindi"`
|
||||
Sunset time.Time `json:"gunes_batis"`
|
||||
Maghrib time.Time `json:"aksam"`
|
||||
Isha time.Time `json:"yatsi"`
|
||||
} `json:"namazVakti"`
|
||||
} `json:"resultObject"`
|
||||
}
|
||||
@@ -70,7 +160,7 @@ func (d Provider) parseResponse(res *req.Response) ([]prayer.Times, error) {
|
||||
return nil, fmt.Errorf("failed to unmarshal as json: %w", err)
|
||||
}
|
||||
if !response.Success {
|
||||
return nil, fmt.Errorf("received error: %s", res.String())
|
||||
return nil, fmt.Errorf("failed to get prayer times from upstream: %w", errors.New(res.String()))
|
||||
}
|
||||
|
||||
if len(response.ResultObject.PrayerTimes) == 0 {
|
||||
@@ -80,24 +170,22 @@ func (d Provider) parseResponse(res *req.Response) ([]prayer.Times, error) {
|
||||
var times []prayer.Times
|
||||
today := time.Now().UTC().Truncate(time.Hour * 24)
|
||||
for _, pt := range response.ResultObject.PrayerTimes {
|
||||
then := prayer.Date(pt.Date).Time()
|
||||
then := pt.Date.UTC().Truncate(time.Hour * 24)
|
||||
if then.Before(today) {
|
||||
continue
|
||||
}
|
||||
|
||||
times = append(times, prayer.Times{
|
||||
Date: pt.Date.Format(time.DateOnly),
|
||||
Fajr: pt.Fajr.Format(time.TimeOnly),
|
||||
Sunrise: pt.Sunrise.Format(time.TimeOnly),
|
||||
Dhuhr: pt.Dhuhr.Format(time.TimeOnly),
|
||||
Asr: pt.Asr.Format(time.TimeOnly),
|
||||
Maghrib: pt.Maghrib.Format(time.TimeOnly),
|
||||
Isha: pt.Isha.Format(time.TimeOnly),
|
||||
Date: pt.Date.Format(time.DateOnly),
|
||||
DateIslamic: pt.DateIslamic,
|
||||
Fajr: pt.Fajr.Format("15:04"),
|
||||
Sunrise: pt.Sunrise.Format("15:04"),
|
||||
Dhuhr: pt.Dhuhr.Format("15:04"),
|
||||
Asr: pt.Asr.Format("15:04"),
|
||||
Sunset: pt.Sunset.Format("15:04"),
|
||||
Maghrib: pt.Maghrib.Format("15:04"),
|
||||
Isha: pt.Isha.Format("15:04"),
|
||||
})
|
||||
}
|
||||
return times, nil
|
||||
}
|
||||
|
||||
func (d Provider) Name() string {
|
||||
return "diyanetapi"
|
||||
}
|
||||
|
||||
@@ -19,6 +19,13 @@ func TestDiyanetAPI_GetByCoords(t *testing.T) {
|
||||
Latitude: 52.5100846,
|
||||
Longitude: 13.4518284,
|
||||
})
|
||||
if err != nil {
|
||||
t.Skipf("skipping live endpoint test due to upstream/network error: %v", err)
|
||||
}
|
||||
if len(times) == 0 {
|
||||
t.Skip("skipping live endpoint test because upstream returned no times")
|
||||
}
|
||||
|
||||
assert.NoError(t, err)
|
||||
assert.NotEmpty(t, times)
|
||||
t.Logf("%#+v", times[0])
|
||||
@@ -28,6 +35,13 @@ func TestDiyanetAPI_GetByCoords(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
times, err := p.Get(context.Background(), "11104")
|
||||
if err != nil {
|
||||
t.Skipf("skipping live endpoint test due to upstream/network error: %v", err)
|
||||
}
|
||||
if len(times) == 0 {
|
||||
t.Skip("skipping live endpoint test because upstream returned no times")
|
||||
}
|
||||
|
||||
assert.NoError(t, err)
|
||||
assert.NotEmpty(t, times)
|
||||
for _, time := range times {
|
||||
|
||||
Reference in New Issue
Block a user