mirror of
https://github.com/Starlio-app/StarlioX
synced 2024-11-06 06:13:57 +03:00
134 lines
3.1 KiB
Go
134 lines
3.1 KiB
Go
|
package controllers
|
||
|
|
||
|
import (
|
||
|
"database/sql"
|
||
|
"fmt"
|
||
|
"github.com/Redume/EveryNasa/api/utils"
|
||
|
"github.com/Redume/EveryNasa/functions"
|
||
|
"github.com/gofiber/fiber/v2"
|
||
|
)
|
||
|
|
||
|
var GetFavorites = func(c *fiber.Ctx) error {
|
||
|
FavoriteTitle := c.Query("title")
|
||
|
|
||
|
type Favorite struct {
|
||
|
Title string `json:"title"`
|
||
|
Explanation string `json:"explanation"`
|
||
|
Date string `json:"date"`
|
||
|
URL string `json:"url"`
|
||
|
HDURL string `json:"hdurl"`
|
||
|
MediaType string `json:"media_type"`
|
||
|
}
|
||
|
|
||
|
var title, explanation, date, url, hdurl, media_type string
|
||
|
db := functions.GetDatabase()
|
||
|
|
||
|
if FavoriteTitle != "" {
|
||
|
queryFavorites, err := db.Query("SELECT * FROM favorite WHERE title LIKE ?", FavoriteTitle)
|
||
|
if err != nil {
|
||
|
functions.Logger(err.Error())
|
||
|
}
|
||
|
|
||
|
defer func(query *sql.Rows) {
|
||
|
err := query.Close()
|
||
|
if err != nil {
|
||
|
functions.Logger(err.Error())
|
||
|
}
|
||
|
}(queryFavorites)
|
||
|
|
||
|
for queryFavorites.Next() {
|
||
|
err := queryFavorites.Scan(&title, &explanation, &date, &url, &hdurl, &media_type)
|
||
|
if err != nil {
|
||
|
functions.Logger(err.Error())
|
||
|
}
|
||
|
|
||
|
return c.JSON(fiber.Map{
|
||
|
"title": title,
|
||
|
"explanation": explanation,
|
||
|
"date": date,
|
||
|
"url": url,
|
||
|
"hdurl": hdurl,
|
||
|
"media_type": media_type,
|
||
|
})
|
||
|
}
|
||
|
} else {
|
||
|
queryFavorite, err := db.Query("SELECT * FROM favorite")
|
||
|
if err != nil {
|
||
|
functions.Logger(err.Error())
|
||
|
}
|
||
|
|
||
|
defer func(query *sql.Rows) {
|
||
|
err := query.Close()
|
||
|
if err != nil {
|
||
|
functions.Logger(err.Error())
|
||
|
}
|
||
|
}(queryFavorite)
|
||
|
var favorites []Favorite
|
||
|
for queryFavorite.Next() {
|
||
|
err := queryFavorite.Scan(&title, &explanation, &date, &url, &hdurl, &media_type)
|
||
|
if err != nil {
|
||
|
functions.Logger(err.Error())
|
||
|
}
|
||
|
|
||
|
favorites = append(favorites, Favorite{
|
||
|
Title: title,
|
||
|
Explanation: explanation,
|
||
|
Date: date,
|
||
|
URL: url,
|
||
|
HDURL: hdurl,
|
||
|
MediaType: media_type})
|
||
|
}
|
||
|
|
||
|
return c.JSON(favorites)
|
||
|
}
|
||
|
|
||
|
return c.SendString("No favorites found")
|
||
|
}
|
||
|
|
||
|
var AddFavorite = func(c *fiber.Ctx) error {
|
||
|
title := c.FormValue("title")
|
||
|
explanation := c.FormValue("explanation")
|
||
|
date := c.FormValue("date")
|
||
|
url := c.FormValue("url")
|
||
|
hdurl := c.FormValue("hdurl")
|
||
|
media_type := c.FormValue("media_type")
|
||
|
|
||
|
fmt.Println(title, explanation, date, url, hdurl, media_type)
|
||
|
|
||
|
if title == "" && explanation == "" && date == "" && url == "" && hdurl == "" && media_type == "" {
|
||
|
utils.Respond(c, utils.Message(false, "All fields are required"))
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
db := functions.GetDatabase()
|
||
|
|
||
|
_, err := db.Exec("INSERT INTO favorite (title, explanation, date, url, hdurl, media_type) VALUES (?, ?, ?, ?, ?, ?)",
|
||
|
title,
|
||
|
explanation,
|
||
|
date,
|
||
|
url,
|
||
|
hdurl,
|
||
|
media_type)
|
||
|
|
||
|
if err != nil {
|
||
|
functions.Logger(err.Error())
|
||
|
}
|
||
|
|
||
|
utils.Respond(c, utils.Message(true, "Favorite added"))
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
var DeleteFavorite = func(c *fiber.Ctx) error {
|
||
|
title := c.FormValue("title")
|
||
|
|
||
|
db := functions.GetDatabase()
|
||
|
|
||
|
_, err := db.Exec("DELETE FROM favorite WHERE title = ?", title)
|
||
|
if err != nil {
|
||
|
functions.Logger(err.Error())
|
||
|
}
|
||
|
|
||
|
utils.Respond(c, utils.Message(true, "Favorite deleted"))
|
||
|
return nil
|
||
|
}
|