summary refs log tree commit diff stats
path: root/pkg/apod/json.go
blob: 4589925952e8c4fbb9a80a401c72620be3766ece (plain) (blame)
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 apod

import (
	"encoding/json"
	"fmt"
	"regexp"

	"framagit.org/andinus/cetus/pkg/cetus"
)

// Res holds the response from the api.
type Res struct {
	Copyright      string `json:"copyright"`
	Date           string `json:"date"`
	Explanation    string `json:"explanation"`
	HDURL          string `json:"hdurl"`
	MediaType      string `json:"media_type"`
	ServiceVersion string `json:"service_version"`
	Title          string `json:"title"`
	URL            string `json:"url"`

	Code int    `json:"code"`
	Msg  string `json:"msg"`
}

// UnmarshalJson will take body as input & unmarshal it to res
func UnmarshalJson(res *Res, body string) error {
	err := json.Unmarshal([]byte(body), res)
	if err != nil {
		return fmt.Errorf("UnmarshalJson failed\n%s", err.Error())
	}
	return nil
}

// GetJson returns json response received from the api
func GetJson(reqInfo map[string]string) (string, error) {
	re := regexp.MustCompile("((19|20)\\d\\d)-(0?[1-9]|1[012])-(0?[1-9]|[12][0-9]|3[01])")
	if !re.MatchString(reqInfo["date"]) {
		return "", fmt.Errorf("%s does not match format 'YYYY-MM-DD'", reqInfo["date"])
	}

	params := make(map[string]string)
	params["api_key"] = reqInfo["apiKey"]
	params["date"] = reqInfo["date"]

	body, err := cetus.GetRes(reqInfo["api"], params)
	return string(body), err
}