
* 媒体库增加分类,图库多选择时优化。 * 重构 JWT token 生成,使用 `New()` 函数代替直接创建实例 * 上传组件支持查看大图 (#1982) * 将参数缓存,媒体库增加分类,图库多选择时优化。 (#1978) * 媒体库增加分类,图库多选择时优化。 *修复文件上传进度显示bug&按钮样式优化 (#1986) * fix:添加内部 iframe 展示网页,优化 permission 代码 * 俩个uuid库合并一个,更新库到当前版本。 * 优化关于我们界面 * feat: 个人中心头像调整,媒体库兼容性调整。 * feat: 自动化代码前端页面美化,多余按钮收入专家模式 * feat: 增加单独生成server功能 * feat: 限制单独生成前后端的情况下的细节配置 * feat: 修复全选失败报错的问题 --------- Co-authored-by: task <121913992@qq.com> Co-authored-by: Feng.YJ <32027253+huiyifyj@users.noreply.github.com> Co-authored-by: will0523 <dygsunshine@163.com> Co-authored-by: task <ms.yangdan@gmail.com> Co-authored-by: sslee <57312216+GIS142857@users.noreply.github.com> Co-authored-by: bypanghu <bypanghu@163.com> Co-authored-by: Azir <2075125282@qq.com> Co-authored-by: piexlMax(奇淼 <qimiaojiangjizhao@gmail.com> Co-authored-by: krank <emosick@qq.com>
112 lines
4.4 KiB
Go
112 lines
4.4 KiB
Go
package initialize
|
||
|
||
import (
|
||
"net/http"
|
||
"os"
|
||
|
||
"github.com/flipped-aurora/gin-vue-admin/server/docs"
|
||
"github.com/flipped-aurora/gin-vue-admin/server/global"
|
||
"github.com/flipped-aurora/gin-vue-admin/server/middleware"
|
||
"github.com/flipped-aurora/gin-vue-admin/server/router"
|
||
"github.com/gin-gonic/gin"
|
||
swaggerFiles "github.com/swaggo/files"
|
||
ginSwagger "github.com/swaggo/gin-swagger"
|
||
)
|
||
|
||
type justFilesFilesystem struct {
|
||
fs http.FileSystem
|
||
}
|
||
|
||
func (fs justFilesFilesystem) Open(name string) (http.File, error) {
|
||
f, err := fs.fs.Open(name)
|
||
if err != nil {
|
||
return nil, err
|
||
}
|
||
|
||
stat, err := f.Stat()
|
||
if stat.IsDir() {
|
||
return nil, os.ErrPermission
|
||
}
|
||
|
||
return f, nil
|
||
}
|
||
|
||
// 初始化总路由
|
||
|
||
func Routers() *gin.Engine {
|
||
Router := gin.New()
|
||
Router.Use(gin.Recovery())
|
||
if gin.Mode() == gin.DebugMode {
|
||
Router.Use(gin.Logger())
|
||
}
|
||
|
||
systemRouter := router.RouterGroupApp.System
|
||
exampleRouter := router.RouterGroupApp.Example
|
||
// 如果想要不使用nginx代理前端网页,可以修改 web/.env.production 下的
|
||
// VUE_APP_BASE_API = /
|
||
// VUE_APP_BASE_PATH = http://localhost
|
||
// 然后执行打包命令 npm run build。在打开下面3行注释
|
||
// Router.Static("/favicon.ico", "./dist/favicon.ico")
|
||
// Router.Static("/assets", "./dist/assets") // dist里面的静态资源
|
||
// Router.StaticFile("/", "./dist/index.html") // 前端网页入口页面
|
||
|
||
Router.StaticFS(global.GVA_CONFIG.Local.StorePath, justFilesFilesystem{http.Dir(global.GVA_CONFIG.Local.StorePath)}) // Router.Use(middleware.LoadTls()) // 如果需要使用https 请打开此中间件 然后前往 core/server.go 将启动模式 更变为 Router.RunTLS("端口","你的cre/pem文件","你的key文件")
|
||
// 跨域,如需跨域可以打开下面的注释
|
||
// Router.Use(middleware.Cors()) // 直接放行全部跨域请求
|
||
// Router.Use(middleware.CorsByRules()) // 按照配置的规则放行跨域请求
|
||
// global.GVA_LOG.Info("use middleware cors")
|
||
docs.SwaggerInfo.BasePath = global.GVA_CONFIG.System.RouterPrefix
|
||
Router.GET(global.GVA_CONFIG.System.RouterPrefix+"/swagger/*any", ginSwagger.WrapHandler(swaggerFiles.Handler))
|
||
global.GVA_LOG.Info("register swagger handler")
|
||
// 方便统一添加路由组前缀 多服务器上线使用
|
||
|
||
PublicGroup := Router.Group(global.GVA_CONFIG.System.RouterPrefix)
|
||
PrivateGroup := Router.Group(global.GVA_CONFIG.System.RouterPrefix)
|
||
|
||
PrivateGroup.Use(middleware.JWTAuth()).Use(middleware.CasbinHandler())
|
||
|
||
{
|
||
// 健康监测
|
||
PublicGroup.GET("/health", func(c *gin.Context) {
|
||
c.JSON(http.StatusOK, "ok")
|
||
})
|
||
}
|
||
{
|
||
systemRouter.InitBaseRouter(PublicGroup) // 注册基础功能路由 不做鉴权
|
||
systemRouter.InitInitRouter(PublicGroup) // 自动初始化相关
|
||
}
|
||
|
||
{
|
||
systemRouter.InitApiRouter(PrivateGroup, PublicGroup) // 注册功能api路由
|
||
systemRouter.InitJwtRouter(PrivateGroup) // jwt相关路由
|
||
systemRouter.InitUserRouter(PrivateGroup) // 注册用户路由
|
||
systemRouter.InitMenuRouter(PrivateGroup) // 注册menu路由
|
||
systemRouter.InitSystemRouter(PrivateGroup) // system相关路由
|
||
systemRouter.InitCasbinRouter(PrivateGroup) // 权限相关路由
|
||
systemRouter.InitAutoCodeRouter(PrivateGroup, PublicGroup) // 创建自动化代码
|
||
systemRouter.InitAuthorityRouter(PrivateGroup) // 注册角色路由
|
||
systemRouter.InitSysDictionaryRouter(PrivateGroup) // 字典管理
|
||
systemRouter.InitAutoCodeHistoryRouter(PrivateGroup) // 自动化代码历史
|
||
systemRouter.InitSysOperationRecordRouter(PrivateGroup) // 操作记录
|
||
systemRouter.InitSysDictionaryDetailRouter(PrivateGroup) // 字典详情管理
|
||
systemRouter.InitAuthorityBtnRouterRouter(PrivateGroup) // 按钮权限管理
|
||
systemRouter.InitSysExportTemplateRouter(PrivateGroup) // 导出模板
|
||
systemRouter.InitSysParamsRouter(PrivateGroup, PublicGroup) // 参数管理
|
||
exampleRouter.InitCustomerRouter(PrivateGroup) // 客户路由
|
||
exampleRouter.InitFileUploadAndDownloadRouter(PrivateGroup) // 文件上传下载功能路由
|
||
exampleRouter.InitAttachmentCategoryRouterRouter(PrivateGroup) // 文件上传下载分类
|
||
|
||
}
|
||
|
||
//插件路由安装
|
||
InstallPlugin(PrivateGroup, PublicGroup, Router)
|
||
|
||
// 注册业务路由
|
||
initBizRouter(PrivateGroup, PublicGroup)
|
||
|
||
global.GVA_ROUTERS = Router.Routes()
|
||
|
||
global.GVA_LOG.Info("router register success")
|
||
return Router
|
||
}
|