mirror of
https://github.com/Starlio-app/StarlioX
synced 2024-11-21 08:36:22 +03:00
add to db who author image
This commit is contained in:
parent
2ff004f14f
commit
1ed4859ced
1 changed files with 9 additions and 4 deletions
|
@ -13,13 +13,14 @@ var GetFavorites = func(c *fiber.Ctx) error {
|
||||||
type Favorite struct {
|
type Favorite struct {
|
||||||
Title string `json:"title"`
|
Title string `json:"title"`
|
||||||
Explanation string `json:"explanation"`
|
Explanation string `json:"explanation"`
|
||||||
|
Copyright string `json:"copyright"`
|
||||||
Date string `json:"date"`
|
Date string `json:"date"`
|
||||||
URL string `json:"url"`
|
URL string `json:"url"`
|
||||||
HDURL string `json:"hdurl"`
|
HDURL string `json:"hdurl"`
|
||||||
MediaType string `json:"media_type"`
|
MediaType string `json:"media_type"`
|
||||||
}
|
}
|
||||||
|
|
||||||
var title, explanation, date, url, hdurl, media_type string
|
var title, explanation, copyright, date, url, hdurl, media_type string
|
||||||
db := functions.GetDatabase()
|
db := functions.GetDatabase()
|
||||||
|
|
||||||
if FavoriteTitle != "" {
|
if FavoriteTitle != "" {
|
||||||
|
@ -36,7 +37,7 @@ var GetFavorites = func(c *fiber.Ctx) error {
|
||||||
}(queryFavorites)
|
}(queryFavorites)
|
||||||
|
|
||||||
for queryFavorites.Next() {
|
for queryFavorites.Next() {
|
||||||
err := queryFavorites.Scan(&title, &explanation, &date, &url, &hdurl, &media_type)
|
err := queryFavorites.Scan(&title, &explanation, ©right, &date, &url, &hdurl, &media_type)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
functions.Logger(err.Error())
|
functions.Logger(err.Error())
|
||||||
}
|
}
|
||||||
|
@ -44,6 +45,7 @@ var GetFavorites = func(c *fiber.Ctx) error {
|
||||||
return c.JSON(fiber.Map{
|
return c.JSON(fiber.Map{
|
||||||
"title": title,
|
"title": title,
|
||||||
"explanation": explanation,
|
"explanation": explanation,
|
||||||
|
"copyright": copyright,
|
||||||
"date": date,
|
"date": date,
|
||||||
"url": url,
|
"url": url,
|
||||||
"hdurl": hdurl,
|
"hdurl": hdurl,
|
||||||
|
@ -65,7 +67,7 @@ var GetFavorites = func(c *fiber.Ctx) error {
|
||||||
|
|
||||||
var favorites []Favorite
|
var favorites []Favorite
|
||||||
for queryFavorite.Next() {
|
for queryFavorite.Next() {
|
||||||
err := queryFavorite.Scan(&title, &explanation, &date, &url, &hdurl, &media_type)
|
err := queryFavorite.Scan(&title, &explanation, ©right, &date, &url, &hdurl, &media_type)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
functions.Logger(err.Error())
|
functions.Logger(err.Error())
|
||||||
}
|
}
|
||||||
|
@ -73,6 +75,7 @@ var GetFavorites = func(c *fiber.Ctx) error {
|
||||||
favorites = append(favorites, Favorite{
|
favorites = append(favorites, Favorite{
|
||||||
Title: title,
|
Title: title,
|
||||||
Explanation: explanation,
|
Explanation: explanation,
|
||||||
|
Copyright: copyright,
|
||||||
Date: date,
|
Date: date,
|
||||||
URL: url,
|
URL: url,
|
||||||
HDURL: hdurl,
|
HDURL: hdurl,
|
||||||
|
@ -88,6 +91,7 @@ var GetFavorites = func(c *fiber.Ctx) error {
|
||||||
var AddFavorite = func(c *fiber.Ctx) error {
|
var AddFavorite = func(c *fiber.Ctx) error {
|
||||||
title := c.FormValue("title")
|
title := c.FormValue("title")
|
||||||
explanation := c.FormValue("explanation")
|
explanation := c.FormValue("explanation")
|
||||||
|
copyright := c.FormValue("copyright")
|
||||||
date := c.FormValue("date")
|
date := c.FormValue("date")
|
||||||
url := c.FormValue("url")
|
url := c.FormValue("url")
|
||||||
hdurl := c.FormValue("hdurl")
|
hdurl := c.FormValue("hdurl")
|
||||||
|
@ -100,9 +104,10 @@ var AddFavorite = func(c *fiber.Ctx) error {
|
||||||
|
|
||||||
db := functions.GetDatabase()
|
db := functions.GetDatabase()
|
||||||
|
|
||||||
_, err := db.Exec("INSERT INTO favorite (title, explanation, date, url, hdurl, media_type) VALUES (?, ?, ?, ?, ?, ?)",
|
_, err := db.Exec("INSERT INTO favorite (title, explanation, copyright, date, url, hdurl, media_type) VALUES (?, ?, ?, ?, ?, ?, ?)",
|
||||||
title,
|
title,
|
||||||
explanation,
|
explanation,
|
||||||
|
copyright,
|
||||||
date,
|
date,
|
||||||
url,
|
url,
|
||||||
hdurl,
|
hdurl,
|
||||||
|
|
Loading…
Add table
Reference in a new issue