summary refs log tree commit diff stats
path: root/cmd/cetus-nasa/cetus-nasa.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/cetus-nasa/cetus-nasa.go')
-rw-r--r--cmd/cetus-nasa/cetus-nasa.go106
1 files changed, 58 insertions, 48 deletions
diff --git a/cmd/cetus-nasa/cetus-nasa.go b/cmd/cetus-nasa/cetus-nasa.go
index 495a308..fafd921 100644
--- a/cmd/cetus-nasa/cetus-nasa.go
+++ b/cmd/cetus-nasa/cetus-nasa.go
@@ -1,6 +1,7 @@
 package main
 
 import (
+	"encoding/json"
 	"flag"
 	"fmt"
 	"log"
@@ -11,22 +12,31 @@ import (
 	"framagit.org/andinus/cetus/pkg/nasa"
 )
 
+type apod 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"`
+}
+
 var (
+	t         time.Duration
+	api       string
+	date      string
+	dump      bool
 	quiet     bool
+	random    bool
+	apiKey    string
 	version   bool
 	fetchOnly bool
 	pathOnly  bool
-
-	api         string
-	apiKey      string
-	date        string
-	random      bool
-	dateHelp    string
-	dateDefault string
-	timeout     time.Duration
-
-	err     error
-	apodRes nasa.APOD
 )
 
 func main() {
@@ -38,22 +48,26 @@ func main() {
 	}
 
 	// Convert timeout to seconds
-	timeout = timeout * time.Second
+	t = t * time.Second
 
 	if random {
 		date = nasa.RandDate()
 	}
 
-	// get response from api
-	apodRes, err = getAPODRes()
-	if err != nil {
-		if len(apodRes.Msg) != 0 {
-			log.Println("Message: ", apodRes.Msg)
-		}
-		log.Fatal(err)
+	body, err := apodBody()
+	if dump {
+		fmt.Println(body)
+		return
 	}
 
-	printDetails(apodRes)
+	apod := apod{}
+	err = json.Unmarshal([]byte(body), &apod)
+	cetus.ErrChk("body unmarshal failed", err)
+	if len(apod.msg) != 0 {
+		log.Println("Message: ", apod.msg)
+	}
+
+	printDetails(apod)
 
 	// if fetchOnly is true then don't set background
 	if fetchOnly {
@@ -61,11 +75,9 @@ func main() {
 	}
 
 	// if media type is an image then set background
-	if apodRes.MediaType == "image" {
-		err = background.Set(apodRes.HDURL)
-		if err != nil {
-			log.Fatal(err)
-		}
+	if apod.mediaType == "image" {
+		err = background.Set(apod.hdURL)
+		cetus.ErrChk("setting background failed", err)
 	}
 
 }
@@ -74,8 +86,8 @@ func parseFlags() {
 	flag.BoolVar(&quiet, "quiet", false, "No output")
 	flag.BoolVar(&version, "version", false, "Cetus version")
 	flag.BoolVar(&fetchOnly, "fetch-only", false, "Don't set background, only fetch info")
-
-	dateHelp = fmt.Sprintf("Choose a random date between 1995-06-16 & %s",
+	flag.BoolVar(&dump, "dump", false, "Only dump received response")
+	dateHelp := fmt.Sprintf("Choose a random date between 1995-06-16 & %s",
 		time.Now().UTC().Format("2006-01-02"))
 	flag.BoolVar(&random, "random", false, dateHelp)
 	flag.BoolVar(&pathOnly, "path-only", false, "Print only path of the image")
@@ -83,42 +95,40 @@ func parseFlags() {
 	flag.StringVar(&api, "api", "https://api.nasa.gov/planetary/apod", "APOD API URL")
 	flag.StringVar(&apiKey, "api-key", "DEMO_KEY", "api.nasa.gov key for expanded usage")
 
-	dateDefault = time.Now().UTC().Format("2006-01-02")
+	dateDefault := time.Now().UTC().Format("2006-01-02")
 	flag.StringVar(&date, "date", dateDefault, "Date of the APOD image to retrieve")
 
-	flag.DurationVar(&timeout, "timeout", 32*time.Second, "Timeout for http client in seconds")
+	flag.DurationVar(&t, "timeout", 32*time.Second, "Timeout for http client in seconds")
 	flag.Parse()
 
 }
 
-func printDetails(apodRes nasa.APOD) {
+func printDetails(apod apod) {
 	if quiet {
 		return
 	}
 	if pathOnly {
-		cetus.PrintPath(apodRes.HDURL)
+		cetus.PrintPath(apod.hdURL)
 		return
 	}
-	fmt.Printf("Title: %s\n\n", apodRes.Title)
-	fmt.Printf("Copyright: %s\n", apodRes.Copyright)
-	fmt.Printf("Date: %s\n\n", apodRes.Date)
-	fmt.Printf("Media Type: %s\n", apodRes.MediaType)
-	if apodRes.MediaType == "image" {
-		fmt.Printf("URL: %s\n\n", apodRes.HDURL)
+	fmt.Printf("Title: %s\n\n", apod.title)
+	fmt.Printf("Copyright: %s\n", apod.copyright)
+	fmt.Printf("Date: %s\n\n", apod.date)
+	fmt.Printf("Media Type: %s\n", apod.mediaType)
+	if apod.mediaType == "image" {
+		fmt.Printf("URL: %s\n\n", apod.hdURL)
 	} else {
-		fmt.Printf("URL: %s\n\n", apodRes.URL)
+		fmt.Printf("URL: %s\n\n", apod.url)
 	}
-	fmt.Printf("Explanation: %s\n", apodRes.Explanation)
+	fmt.Printf("Explanation: %s\n", apod.explanation)
 }
 
-func getAPODRes() (nasa.APOD, error) {
-	var apodInfo map[string]string
-	apodInfo = make(map[string]string)
-	apodInfo["api"] = api
-	apodInfo["apiKey"] = apiKey
-	apodInfo["date"] = date
-
-	apodRes, err = nasa.APODPath(apodInfo, timeout)
+func apodBody() (string, error) {
+	reqInfo := make(map[string]string)
+	reqInfo["api"] = api
+	reqInfo["apiKey"] = apiKey
+	reqInfo["date"] = date
 
-	return apodRes, err
+	body, err := nasa.GetApodJson(reqInfo, t)
+	return body, err
 }