-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjsonfile.go
57 lines (45 loc) · 890 Bytes
/
jsonfile.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
49
50
51
52
53
54
55
56
57
package gfunc
import (
"errors"
"io"
"net/http"
"os"
"strings"
)
type Query struct {
jsonfile []byte
}
func NewJsonFile(file string) (*Query, error) {
if !strings.HasSuffix(file, ".json") {
return nil, errors.New("file must be json")
}
bytefile, err := os.ReadFile(file)
if err != nil {
return nil, err
}
b := Query{
jsonfile: bytefile,
}
return &b, nil
}
func NewJsonUrl(url string) (*Query, error) {
if !strings.HasSuffix(url, ".json") {
return nil, errors.New("URL must point to a JSON file")
}
response, err := http.Get(url)
if err != nil {
return nil, err
}
defer response.Body.Close()
if response.StatusCode != http.StatusOK {
return nil, errors.New("failed to fetch JSON file: " + response.Status)
}
bytefile, err := io.ReadAll(response.Body)
if err != nil {
return nil, err
}
b := Query{
jsonfile: bytefile,
}
return &b, nil
}