mirror of
https://github.com/go-admin-team/go-admin.git
synced 2026-09-21 10:13:01 +00:00
1. 添加js代码模板 2. 添加vue代码模板 1. 使用cmd进行程序配置 1. 调整代码结构 1. 添加token过期时间配置项 1. 修复bug,含搜索条件等
210 lines
6.2 KiB
Go
210 lines
6.2 KiB
Go
package router
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/swaggo/gin-swagger"
|
|
"github.com/swaggo/gin-swagger/swaggerFiles"
|
|
log2 "go-admin/apis/log"
|
|
"go-admin/apis/monitor"
|
|
"go-admin/apis/system"
|
|
"go-admin/apis/system/dict"
|
|
. "go-admin/apis/tools"
|
|
_ "go-admin/docs"
|
|
"go-admin/handler"
|
|
"go-admin/handler/sd"
|
|
"go-admin/middleware"
|
|
_ "go-admin/pkg/jwtauth"
|
|
"log"
|
|
)
|
|
|
|
func InitRouter() *gin.Engine {
|
|
r := gin.New()
|
|
r.Use(middleware.LoggerToFile())
|
|
r.Use(middleware.CustomError)
|
|
r.Use(middleware.NoCache)
|
|
r.Use(middleware.Options)
|
|
r.Use(middleware.Secure)
|
|
r.Use(middleware.RequestId())
|
|
r.Use(middleware.DemoEvn())
|
|
|
|
r.GET("/", system.HelloWorld)
|
|
r.Static("/static", "./static")
|
|
r.GET("/info", handler.Ping)
|
|
|
|
// 监控信息
|
|
svcd := r.Group("/sd")
|
|
{
|
|
svcd.GET("/health", sd.HealthCheck)
|
|
svcd.GET("/disk", sd.DiskCheck)
|
|
svcd.GET("/cpu", sd.CPUCheck)
|
|
svcd.GET("/ram", sd.RAMCheck)
|
|
svcd.GET("/os", sd.OSCheck)
|
|
}
|
|
|
|
// the jwt middleware
|
|
authMiddleware, err := middleware.AuthInit()
|
|
|
|
if err != nil {
|
|
log.Fatalln("JWT Error", err.Error())
|
|
}
|
|
|
|
r.POST("/login", authMiddleware.LoginHandler)
|
|
|
|
// Refresh time can be longer than token timeout
|
|
r.GET("/refresh_token", authMiddleware.RefreshHandler)
|
|
r.GET("/routes", Dashboard)
|
|
|
|
apiv1 := r.Group("/api/v1")
|
|
{
|
|
|
|
apiv1.GET("/monitor/server", monitor.ServerInfo)
|
|
|
|
apiv1.GET("/getCaptcha", system.GenerateCaptchaHandler)
|
|
apiv1.GET("/db/tables/page", GetDBTableList)
|
|
apiv1.GET("/db/columns/page", GetDBColumnList)
|
|
apiv1.GET("/sys/tables/page", GetSysTableList)
|
|
apiv1.POST("/sys/tables/info", InsertSysTable)
|
|
apiv1.PUT("/sys/tables/info", UpdateSysTable)
|
|
apiv1.DELETE("/sys/tables/info/:tableId", DeleteSysTables)
|
|
apiv1.GET("/sys/tables/info/:tableId", GetSysTables)
|
|
apiv1.GET("/gen/preview/:tableId", Preview)
|
|
apiv1.GET("/menuTreeselect", system.GetMenuTreeelect)
|
|
apiv1.GET("/dict/databytype/:dictType", dict.GetDictDataByDictType)
|
|
|
|
}
|
|
|
|
auth := r.Group("/api/v1")
|
|
auth.Use(authMiddleware.MiddlewareFunc()).Use(middleware.AuthCheckRole())
|
|
{
|
|
|
|
auth.GET("/deptList", system.GetDeptList)
|
|
auth.GET("/deptTree", system.GetDeptTree)
|
|
auth.GET("/dept/:deptId", system.GetDept)
|
|
auth.POST("/dept", system.InsertDept)
|
|
auth.PUT("/dept", system.UpdateDept)
|
|
auth.DELETE("/dept/:id", system.DeleteDept)
|
|
|
|
auth.GET("/dict/datalist", dict.GetDictDataList)
|
|
auth.GET("/dict/data/:dictCode", dict.GetDictData)
|
|
auth.POST("/dict/data", dict.InsertDictData)
|
|
auth.PUT("/dict/data/", dict.UpdateDictData)
|
|
auth.DELETE("/dict/data/:dictCode", dict.DeleteDictData)
|
|
|
|
auth.GET("/dict/typelist", dict.GetDictTypeList)
|
|
auth.GET("/dict/type/:dictId", dict.GetDictType)
|
|
auth.POST("/dict/type", dict.InsertDictType)
|
|
auth.PUT("/dict/type", dict.UpdateDictType)
|
|
auth.DELETE("/dict/type/:dictId", dict.DeleteDictType)
|
|
|
|
auth.GET("/dict/typeoptionselect", dict.GetDictTypeOptionSelect)
|
|
|
|
auth.GET("/sysUserList", system.GetSysUserList)
|
|
auth.GET("/sysUser/:userId", system.GetSysUser)
|
|
auth.GET("/sysUser/", system.GetSysUserInit)
|
|
auth.POST("/sysUser", system.InsertSysUser)
|
|
auth.PUT("/sysUser", system.UpdateSysUser)
|
|
auth.DELETE("/sysUser/:userId", system.DeleteSysUser)
|
|
|
|
auth.GET("/rolelist", system.GetRoleList)
|
|
auth.GET("/role/:roleId", system.GetRole)
|
|
auth.POST("/role", system.InsertRole)
|
|
auth.PUT("/role", system.UpdateRole)
|
|
auth.PUT("/roledatascope", system.UpdateRoleDataScope)
|
|
auth.DELETE("/role/:roleId", system.DeleteRole)
|
|
|
|
auth.GET("/configList", system.GetConfigList)
|
|
auth.GET("/config/:configId", system.GetConfig)
|
|
auth.POST("/config", system.InsertConfig)
|
|
auth.PUT("/config", system.UpdateConfig)
|
|
auth.DELETE("/config/:configId", system.DeleteConfig)
|
|
|
|
auth.GET("/roleMenuTreeselect/:roleId", system.GetMenuTreeRoleselect)
|
|
auth.GET("/roleDeptTreeselect/:roleId", system.GetDeptTreeRoleselect)
|
|
|
|
auth.GET("/getinfo", system.GetInfo)
|
|
auth.GET("/user/profile", system.GetSysUserProfile)
|
|
auth.POST("/user/avatar", system.InsetSysUserAvatar)
|
|
auth.PUT("/user/pwd", system.SysUserUpdatePwd)
|
|
|
|
auth.GET("/postlist", system.GetPostList)
|
|
auth.GET("/post/:postId", system.GetPost)
|
|
auth.POST("/post", system.InsertPost)
|
|
auth.PUT("/post", system.UpdatePost)
|
|
auth.DELETE("/post/:postId", system.DeletePost)
|
|
|
|
auth.GET("/menulist", system.GetMenuList)
|
|
auth.GET("/menu/:id", system.GetMenu)
|
|
auth.POST("/menu", system.InsertMenu)
|
|
auth.PUT("/menu", system.UpdateMenu)
|
|
auth.DELETE("/menu/:id", system.DeleteMenu)
|
|
auth.GET("/menurole", system.GetMenuRole)
|
|
|
|
auth.GET("/menuids", system.GetMenuIDS)
|
|
|
|
auth.GET("/loginloglist", log2.GetLoginLogList)
|
|
auth.GET("/loginlog/:infoId", log2.GetLoginLog)
|
|
auth.POST("/loginlog", log2.InsertLoginLog)
|
|
auth.PUT("/loginlog", log2.UpdateLoginLog)
|
|
auth.DELETE("/loginlog/:infoId", log2.DeleteLoginLog)
|
|
|
|
auth.GET("/operloglist", log2.GetOperLogList)
|
|
auth.GET("/operlog/:operId", log2.GetOperLog)
|
|
auth.DELETE("/operlog/:operId", log2.DeleteOperLog)
|
|
|
|
auth.GET("/configKey/:configKey", system.GetConfigByConfigKey)
|
|
|
|
auth.POST("/logout", handler.LogOut)
|
|
}
|
|
//r.NoRoute(authMiddleware.MiddlewareFunc(), NoFound)
|
|
|
|
r.GET("/swagger/*any", ginSwagger.WrapHandler(swaggerFiles.Handler))
|
|
log.Println("路由加载成功!")
|
|
return r
|
|
}
|
|
|
|
func Dashboard(c *gin.Context) {
|
|
|
|
var user = make(map[string]interface{})
|
|
user["login_name"] = "admin"
|
|
user["user_id"] = 1
|
|
user["user_name"] = "管理员"
|
|
user["dept_id"] = 1
|
|
|
|
var cmenuList = make(map[string]interface{})
|
|
cmenuList["children"] = nil
|
|
cmenuList["parent_id"] = 1
|
|
cmenuList["title"] = "用户管理"
|
|
cmenuList["name"] = "Sysuser"
|
|
cmenuList["icon"] = "user"
|
|
cmenuList["order_num"] = 1
|
|
cmenuList["id"] = 4
|
|
cmenuList["path"] = "sysuser"
|
|
cmenuList["component"] = "sysuser/index"
|
|
|
|
var lista = make([]interface{}, 1)
|
|
lista[0] = cmenuList
|
|
|
|
var menuList = make(map[string]interface{})
|
|
menuList["children"] = lista
|
|
menuList["parent_id"] = 1
|
|
menuList["name"] = "Upms"
|
|
menuList["title"] = "权限管理"
|
|
menuList["icon"] = "example"
|
|
menuList["order_num"] = 1
|
|
menuList["id"] = 4
|
|
menuList["path"] = "/upms"
|
|
menuList["component"] = "Layout"
|
|
|
|
var list = make([]interface{}, 1)
|
|
list[0] = menuList
|
|
var data = make(map[string]interface{})
|
|
data["user"] = user
|
|
data["menuList"] = list
|
|
|
|
var r = make(map[string]interface{})
|
|
r["code"] = 200
|
|
r["data"] = data
|
|
|
|
c.JSON(200, r)
|
|
}
|