mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2025-12-08 06:25:37 -05:00
51 lines
1.1 KiB
Go
51 lines
1.1 KiB
Go
package wayland
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
"time"
|
|
|
|
"github.com/AvengeMedia/DankMaterialShell/core/internal/log"
|
|
)
|
|
|
|
type ipAPIResponse struct {
|
|
Lat float64 `json:"lat"`
|
|
Lon float64 `json:"lon"`
|
|
City string `json:"city"`
|
|
}
|
|
|
|
func FetchIPLocation() (*float64, *float64, error) {
|
|
client := &http.Client{
|
|
Timeout: 10 * time.Second,
|
|
}
|
|
|
|
resp, err := client.Get("http://ip-api.com/json/")
|
|
if err != nil {
|
|
return nil, nil, fmt.Errorf("failed to fetch IP location: %w", err)
|
|
}
|
|
defer resp.Body.Close()
|
|
|
|
if resp.StatusCode != http.StatusOK {
|
|
return nil, nil, fmt.Errorf("ip-api.com returned status %d", resp.StatusCode)
|
|
}
|
|
|
|
body, err := io.ReadAll(resp.Body)
|
|
if err != nil {
|
|
return nil, nil, fmt.Errorf("failed to read response: %w", err)
|
|
}
|
|
|
|
var data ipAPIResponse
|
|
if err := json.Unmarshal(body, &data); err != nil {
|
|
return nil, nil, fmt.Errorf("failed to parse response: %w", err)
|
|
}
|
|
|
|
if data.Lat == 0 && data.Lon == 0 {
|
|
return nil, nil, fmt.Errorf("missing location data in response")
|
|
}
|
|
|
|
log.Infof("Fetched IP-based location: %s (%.4f, %.4f)", data.City, data.Lat, data.Lon)
|
|
return &data.Lat, &data.Lon, nil
|
|
}
|