2019-12-08 03:59:58 -05:00
|
|
|
package controller
|
|
|
|
|
|
|
|
import (
|
2024-10-21 02:30:50 -04:00
|
|
|
"errors"
|
2019-12-08 03:59:58 -05:00
|
|
|
"fmt"
|
2023-11-28 20:42:51 -05:00
|
|
|
"log"
|
2021-07-14 11:53:37 -04:00
|
|
|
"net/http"
|
2024-10-19 23:47:45 -04:00
|
|
|
"strings"
|
2019-12-08 03:59:58 -05:00
|
|
|
|
2024-10-19 12:09:16 -04:00
|
|
|
jwt "github.com/appleboy/gin-jwt/v2"
|
2021-05-10 06:04:38 -04:00
|
|
|
"github.com/gin-contrib/pprof"
|
2019-12-08 03:59:58 -05:00
|
|
|
"github.com/gin-gonic/gin"
|
2024-10-19 11:14:53 -04:00
|
|
|
swaggerfiles "github.com/swaggo/files"
|
|
|
|
ginSwagger "github.com/swaggo/gin-swagger"
|
2019-12-08 03:59:58 -05:00
|
|
|
|
2024-10-19 11:14:53 -04:00
|
|
|
docs "github.com/naiba/nezha/cmd/dashboard/docs"
|
2024-07-14 07:41:50 -04:00
|
|
|
"github.com/naiba/nezha/model"
|
2022-01-08 22:54:14 -05:00
|
|
|
"github.com/naiba/nezha/service/singleton"
|
2019-12-08 03:59:58 -05:00
|
|
|
)
|
|
|
|
|
2024-10-22 11:44:50 -04:00
|
|
|
func ServeWeb() http.Handler {
|
2019-12-08 10:18:29 -05:00
|
|
|
gin.SetMode(gin.ReleaseMode)
|
2021-05-10 06:04:38 -04:00
|
|
|
r := gin.Default()
|
2024-10-19 11:14:53 -04:00
|
|
|
docs.SwaggerInfo.BasePath = "/api/v1"
|
2024-07-14 07:41:50 -04:00
|
|
|
if singleton.Conf.Debug {
|
|
|
|
gin.SetMode(gin.DebugMode)
|
|
|
|
pprof.Register(r)
|
|
|
|
}
|
2024-10-19 23:47:45 -04:00
|
|
|
if singleton.Conf.Debug {
|
|
|
|
r.GET("/swagger/*any", ginSwagger.WrapHandler(swaggerfiles.Handler))
|
|
|
|
}
|
2024-10-20 02:05:43 -04:00
|
|
|
|
2024-10-19 23:47:45 -04:00
|
|
|
r.Use(recordPath)
|
2019-12-08 03:59:58 -05:00
|
|
|
routers(r)
|
2021-08-10 08:13:17 -04:00
|
|
|
|
2024-10-22 11:44:50 -04:00
|
|
|
return r
|
2019-12-08 03:59:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func routers(r *gin.Engine) {
|
2024-10-19 12:09:16 -04:00
|
|
|
authMiddleware, err := jwt.New(initParams())
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal("JWT Error:" + err.Error())
|
|
|
|
}
|
2024-10-20 11:23:04 -04:00
|
|
|
if err := authMiddleware.MiddlewareInit(); err != nil {
|
|
|
|
log.Fatal("authMiddleware.MiddlewareInit Error:" + err.Error())
|
|
|
|
}
|
2024-10-20 02:05:43 -04:00
|
|
|
api := r.Group("api/v1")
|
|
|
|
api.POST("/login", authMiddleware.LoginHandler)
|
2024-10-19 12:09:16 -04:00
|
|
|
|
2024-10-21 02:30:50 -04:00
|
|
|
optionalAuth := api.Group("", optionalAuthMiddleware(authMiddleware))
|
2024-10-21 11:00:51 -04:00
|
|
|
optionalAuth.GET("/ws/server", commonHandler(serverStream))
|
|
|
|
optionalAuth.GET("/server-group", commonHandler(listServerGroup))
|
2024-10-20 11:23:04 -04:00
|
|
|
|
2024-10-20 02:05:43 -04:00
|
|
|
auth := api.Group("", authMiddleware.MiddlewareFunc())
|
2024-10-22 10:01:01 -04:00
|
|
|
|
2024-10-19 12:09:16 -04:00
|
|
|
auth.GET("/refresh_token", authMiddleware.RefreshHandler)
|
2024-10-21 11:00:51 -04:00
|
|
|
|
2024-10-22 10:01:01 -04:00
|
|
|
auth.POST("/terminal", commonHandler(createTerminal))
|
|
|
|
auth.GET("/ws/terminal/:id", commonHandler(terminalStream))
|
|
|
|
|
2024-10-22 09:19:30 -04:00
|
|
|
auth.GET("/user", commonHandler(listUser))
|
|
|
|
auth.POST("/user", commonHandler(createUser))
|
|
|
|
auth.POST("/batch-delete/user", commonHandler(batchDeleteUser))
|
|
|
|
|
|
|
|
auth.POST("/server-group", commonHandler(createServerGroup))
|
|
|
|
auth.PATCH("/server-group/:id", commonHandler(updateServerGroup))
|
2024-10-21 11:00:51 -04:00
|
|
|
auth.POST("/batch-delete/server-group", commonHandler(batchDeleteServerGroup))
|
|
|
|
|
2024-10-23 09:55:12 -04:00
|
|
|
auth.GET("/notification-group", commonHandler(listNotificationGroup))
|
|
|
|
auth.POST("/notification-group", commonHandler(createNotificationGroup))
|
|
|
|
auth.PATCH("/notification-group/:id", commonHandler(updateNotificationGroup))
|
|
|
|
auth.POST("/batch-delete/notification-group", commonHandler(batchDeleteNotificationGroup))
|
|
|
|
|
2024-10-23 05:34:15 -04:00
|
|
|
auth.GET("/server", commonHandler(listServer))
|
2024-10-22 09:19:30 -04:00
|
|
|
auth.PATCH("/server/:id", commonHandler(updateServer))
|
2024-10-21 11:00:51 -04:00
|
|
|
auth.POST("/batch-delete/server", commonHandler(batchDeleteServer))
|
|
|
|
|
2024-10-23 09:55:12 -04:00
|
|
|
auth.GET("/notification", commonHandler(listNotification))
|
|
|
|
auth.POST("/notification", commonHandler(createNotification))
|
|
|
|
auth.PATCH("/notification/:id", commonHandler(updateNotification))
|
|
|
|
auth.POST("/batch-delete/notification", commonHandler(batchDeleteNotification))
|
|
|
|
|
2024-10-21 11:00:51 -04:00
|
|
|
auth.GET("/ddns", commonHandler(listDDNS))
|
2024-10-21 12:04:17 -04:00
|
|
|
auth.GET("/ddns/providers", commonHandler(listProviders))
|
2024-10-22 09:19:30 -04:00
|
|
|
auth.POST("/ddns", commonHandler(createDDNS))
|
|
|
|
auth.PATCH("/ddns/:id", commonHandler(updateDDNS))
|
2024-10-21 11:00:51 -04:00
|
|
|
auth.POST("/batch-delete/ddns", commonHandler(batchDeleteDDNS))
|
2019-12-08 03:59:58 -05:00
|
|
|
}
|
2022-04-29 21:32:57 -04:00
|
|
|
|
2024-10-19 23:47:45 -04:00
|
|
|
func recordPath(c *gin.Context) {
|
|
|
|
url := c.Request.URL.String()
|
|
|
|
for _, p := range c.Params {
|
|
|
|
url = strings.Replace(url, p.Value, ":"+p.Key, 1)
|
|
|
|
}
|
|
|
|
c.Set("MatchedPath", url)
|
|
|
|
}
|
2024-10-21 02:30:50 -04:00
|
|
|
|
2024-10-21 11:00:51 -04:00
|
|
|
func newErrorResponse(err error) model.CommonResponse[any] {
|
|
|
|
return model.CommonResponse[any]{
|
2024-10-21 02:30:50 -04:00
|
|
|
Success: false,
|
|
|
|
Error: err.Error(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-23 05:56:51 -04:00
|
|
|
type handlerFunc[T any] func(c *gin.Context) (T, error)
|
2024-10-21 02:30:50 -04:00
|
|
|
|
|
|
|
// There are many error types in gorm, so create a custom type to represent all
|
|
|
|
// gorm errors here instead
|
|
|
|
type gormError struct {
|
|
|
|
msg string
|
|
|
|
a []interface{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func newGormError(format string, args ...interface{}) error {
|
|
|
|
return &gormError{
|
|
|
|
msg: format,
|
|
|
|
a: args,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ge *gormError) Error() string {
|
|
|
|
return fmt.Sprintf(ge.msg, ge.a...)
|
|
|
|
}
|
|
|
|
|
2024-10-23 05:56:51 -04:00
|
|
|
func commonHandler[T any](handler handlerFunc[T]) func(*gin.Context) {
|
2024-10-21 02:30:50 -04:00
|
|
|
return func(c *gin.Context) {
|
2024-10-23 05:56:51 -04:00
|
|
|
data, err := handler(c)
|
|
|
|
if err == nil {
|
|
|
|
c.JSON(http.StatusOK, model.CommonResponse[T]{Success: true, Data: data})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if _, ok := err.(*gormError); ok {
|
|
|
|
log.Printf("NEZHA>> gorm error: %v", err)
|
|
|
|
c.JSON(http.StatusOK, newErrorResponse(errors.New("database error")))
|
|
|
|
return
|
|
|
|
} else {
|
|
|
|
c.JSON(http.StatusOK, newErrorResponse(err))
|
|
|
|
return
|
2024-10-21 02:30:50 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|