Files
mautrix-telegram/pkg/connector/geouri.go
T
Sumner Evans 314b2da99f edits: bridge TG -> Matrix
Signed-off-by: Sumner Evans <sumner.evans@automattic.com>
2024-07-19 14:33:52 -06:00

41 lines
888 B
Go

package connector
import (
"fmt"
"strconv"
"strings"
)
type GeoURI struct {
Lat float64
Long float64
}
func GeoURIFromLatLong(lat, long float64) GeoURI {
return GeoURI{lat, long}
}
func ParseGeoURI(uri string) (g GeoURI, err error) {
if !strings.HasPrefix(uri, "geo:") {
return g, fmt.Errorf("invalid geo URI: %s", uri)
}
coordinates := strings.Split(strings.TrimPrefix(uri, "geo:"), ";")[0]
parts := strings.Split(coordinates, ",")
if len(parts) != 2 {
return g, fmt.Errorf("geo coordinates not formatted properly")
}
g.Lat, err = strconv.ParseFloat(parts[0], 64)
if err != nil {
return g, fmt.Errorf("failed to parse latitude: %w", err)
}
g.Long, err = strconv.ParseFloat(parts[1], 64)
if err != nil {
return g, fmt.Errorf("failed to parse longitude: %w", err)
}
return
}
func (g GeoURI) URI() string {
return fmt.Sprintf("geo:%f,%f", g.Lat, g.Long)
}