Improved version of wallpaper installation

This commit is contained in:
Данил 2023-05-01 20:50:02 +03:00
parent aa8930c07e
commit 178a8c4770
No known key found for this signature in database
GPG key ID: 5051BCD5AB064A7B

View file

@ -0,0 +1,26 @@
package controllers
import (
"github.com/Redume/EveryNASA/api/utils"
utils2 "github.com/Redume/EveryNASA/utils"
"github.com/gofiber/fiber/v2"
"github.com/reujab/wallpaper"
)
var SetWallpaper = func(c *fiber.Ctx) error {
url := c.FormValue("url")
if url == "" {
utils.Respond(c, utils.Message(false, "URL`s required."))
return nil
}
err := wallpaper.SetFromURL(url)
if err != nil {
utils2.Log(err.Error())
utils.Respond(c, utils.Message(false, "An error occurred while setting the wallpaper."))
return err
}
utils.Respond(c, utils.Message(true, "The wallpaper was successfully installed."))
return nil
}