2022-08-30 18:49:07 +08:00
|
|
|
package router
|
|
|
|
|
|
|
|
import (
|
|
|
|
v1 "github.com/1Panel-dev/1Panel/app/api/v1"
|
|
|
|
"github.com/1Panel-dev/1Panel/middleware"
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
)
|
|
|
|
|
|
|
|
type CommandRouter struct{}
|
|
|
|
|
|
|
|
func (s *CommandRouter) InitCommandRouter(Router *gin.RouterGroup) {
|
2022-09-01 16:52:58 +08:00
|
|
|
cmdRouter := Router.Group("commands").Use(middleware.JwtAuth()).Use(middleware.SessionAuth())
|
|
|
|
withRecordRouter := Router.Group("commands").Use(middleware.JwtAuth()).Use(middleware.SessionAuth()).Use(middleware.OperationRecord())
|
2022-08-30 18:49:07 +08:00
|
|
|
baseApi := v1.ApiGroupApp.BaseApi
|
|
|
|
{
|
|
|
|
withRecordRouter.POST("", baseApi.CreateCommand)
|
|
|
|
withRecordRouter.POST("/del", baseApi.DeleteCommand)
|
2022-08-31 23:16:10 +08:00
|
|
|
withRecordRouter.PUT(":id", baseApi.UpdateCommand)
|
2022-09-01 16:52:58 +08:00
|
|
|
cmdRouter.POST("/search", baseApi.SearchCommand)
|
|
|
|
cmdRouter.GET("", baseApi.ListCommand)
|
2022-08-30 18:49:07 +08:00
|
|
|
}
|
|
|
|
}
|