mirror of
https://github.com/Starlio-app/Starlio-web.git
synced 2024-11-21 16:26:21 +03:00
added group for api and custom error
This commit is contained in:
parent
2ee1052085
commit
026b62851d
2 changed files with 40 additions and 15 deletions
|
@ -1,6 +1,7 @@
|
||||||
package functions
|
package functions
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
"runtime"
|
"runtime"
|
||||||
"strings"
|
"strings"
|
||||||
|
@ -20,7 +21,8 @@ func Logger(text string) {
|
||||||
}
|
}
|
||||||
now := time.Now()
|
now := time.Now()
|
||||||
|
|
||||||
_, file, _, ok := runtime.Caller(1)
|
_, file, line, ok := runtime.Caller(1)
|
||||||
|
|
||||||
if !ok {
|
if !ok {
|
||||||
file = "???"
|
file = "???"
|
||||||
}
|
}
|
||||||
|
@ -31,10 +33,15 @@ func Logger(text string) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if strings.Contains(file, dir) {
|
if strings.Contains(file, dir) {
|
||||||
file = file[len(dir)+1:]
|
file = strings.Replace(file, dir, "", -1)
|
||||||
}
|
}
|
||||||
|
|
||||||
_, err = f.Write([]byte(now.Format("Mon Jan 2 15:04:05 2006") + " | " + text + " [" + file + "] " + "\n"))
|
var lineString string
|
||||||
|
if ok {
|
||||||
|
lineString = fmt.Sprintf("%d", line)
|
||||||
|
}
|
||||||
|
|
||||||
|
_, err = f.Write([]byte(now.Format("Mon Jan 2 15:04:05 2006") + " | " + text + " [" + file + "] [" + lineString + "]\n"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
|
|
42
main.go
42
main.go
|
@ -4,7 +4,6 @@ import (
|
||||||
"github.com/Redume/EveryNasa/api/controllers"
|
"github.com/Redume/EveryNasa/api/controllers"
|
||||||
"github.com/Redume/EveryNasa/functions"
|
"github.com/Redume/EveryNasa/functions"
|
||||||
"github.com/Redume/EveryNasa/web/page"
|
"github.com/Redume/EveryNasa/web/page"
|
||||||
|
|
||||||
"github.com/getlantern/systray"
|
"github.com/getlantern/systray"
|
||||||
"github.com/gofiber/fiber/v2"
|
"github.com/gofiber/fiber/v2"
|
||||||
"github.com/gofiber/fiber/v2/middleware/cors"
|
"github.com/gofiber/fiber/v2/middleware/cors"
|
||||||
|
@ -16,6 +15,22 @@ func main() {
|
||||||
go functions.StartWallpaper()
|
go functions.StartWallpaper()
|
||||||
|
|
||||||
app := fiber.New()
|
app := fiber.New()
|
||||||
|
app = fiber.New(fiber.Config{
|
||||||
|
ErrorHandler: func(ctx *fiber.Ctx, err error) error {
|
||||||
|
code := fiber.StatusInternalServerError
|
||||||
|
|
||||||
|
if e, ok := err.(*fiber.Error); ok {
|
||||||
|
code = e.Code
|
||||||
|
}
|
||||||
|
|
||||||
|
if code == fiber.StatusNotFound {
|
||||||
|
return ctx.SendFile("./web/errors/404.html")
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
app.Static("/static", "./web/static")
|
app.Static("/static", "./web/static")
|
||||||
app.Use(cors.New())
|
app.Use(cors.New())
|
||||||
|
|
||||||
|
@ -29,29 +44,32 @@ func main() {
|
||||||
return page.About(c)
|
return page.About(c)
|
||||||
})
|
})
|
||||||
|
|
||||||
app.Post("/api/update/settings", func(c *fiber.Ctx) error {
|
api := app.Group("/api")
|
||||||
|
|
||||||
|
update := api.Group("/update")
|
||||||
|
get := api.Group("/get")
|
||||||
|
create := api.Group("/create")
|
||||||
|
|
||||||
|
update.Post("/settings", func(c *fiber.Ctx) error {
|
||||||
return controllers.SettingsUpdate(c)
|
return controllers.SettingsUpdate(c)
|
||||||
})
|
})
|
||||||
app.Post("/api/update/wallpaper", func(c *fiber.Ctx) error {
|
update.Post("/wallpaper", func(c *fiber.Ctx) error {
|
||||||
return controllers.WallpaperUpdate(c)
|
return controllers.WallpaperUpdate(c)
|
||||||
})
|
})
|
||||||
app.Post("/api/update/startup", func(c *fiber.Ctx) error {
|
update.Post("/startup", func(c *fiber.Ctx) error {
|
||||||
return controllers.Startup(c)
|
return controllers.Startup(c)
|
||||||
})
|
})
|
||||||
app.Post("/api/create/label", func(c *fiber.Ctx) error {
|
|
||||||
|
create.Post("/label", func(c *fiber.Ctx) error {
|
||||||
return controllers.CreateLabel(c)
|
return controllers.CreateLabel(c)
|
||||||
})
|
})
|
||||||
|
|
||||||
app.Get("/api/get/settings", func(c *fiber.Ctx) error {
|
get.Get("/settings", func(c *fiber.Ctx) error {
|
||||||
return controllers.SettingsGet(c)
|
return controllers.SettingsGet(c)
|
||||||
})
|
})
|
||||||
|
|
||||||
app.Use(func(c *fiber.Ctx) error {
|
get.Get("/settings", func(c *fiber.Ctx) error {
|
||||||
err := c.SendStatus(404)
|
return controllers.SettingsGet(c)
|
||||||
if err != nil {
|
|
||||||
functions.Logger(err.Error())
|
|
||||||
}
|
|
||||||
return c.SendFile("./web/errors/404.html")
|
|
||||||
})
|
})
|
||||||
|
|
||||||
err := app.Listen(":3000")
|
err := app.Listen(":3000")
|
||||||
|
|
Loading…
Add table
Reference in a new issue