-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocations.go
executable file
·48 lines (42 loc) · 1 KB
/
locations.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package turso
import (
"encoding/json"
"fmt"
"net/http"
)
type Locations struct {
client *client
}
type locations struct {
Locations map[string]string
}
type region struct {
Server string `json:"server"`
Client string `json:"client"`
}
func (loc *Locations) List() (*locations, error) {
endpoint := fmt.Sprintf("%s/v1/locations", tursoBaseURL)
resp, err := loc.client.tursoAPIrequest(endpoint, http.MethodGet, nil)
if err != nil {
return nil, err
}
var locations = locations{}
if err := json.NewDecoder(resp.Body).Decode(&locations); err != nil {
return nil, err
}
defer resp.Body.Close()
return &locations, nil
}
func (loc *Locations) Closest() (*locations, error) {
endpoint := fmt.Sprintf("%s", tursoBaseURLRegion)
resp, err := loc.client.tursoAPIrequest(endpoint, http.MethodGet, nil)
if err != nil {
return nil, err
}
var locations = locations{}
if err := json.NewDecoder(resp.Body).Decode(&locations); err != nil {
return nil, err
}
defer resp.Body.Close()
return &locations, nil
}