|
|
|
@ -86,7 +86,25 @@ func InitWebRouter_Co() *gin.Engine {
|
|
|
|
|
// 请求排版
|
|
|
|
|
aiLayout.POST("layout_generate", validatorFactory.Create(consts.ValidatorPrefix+"LayoutGenerate"))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
file := backend.Group("file/")
|
|
|
|
|
{
|
|
|
|
|
//创建文件
|
|
|
|
|
file.POST("file_creat", validatorFactory.Create(consts.ValidatorPrefix+"FileCreat"))
|
|
|
|
|
//打开文件
|
|
|
|
|
file.GET("file_get", validatorFactory.Create(consts.ValidatorPrefix+"FileGet"))
|
|
|
|
|
//文件重命名
|
|
|
|
|
file.POST("file_rename", validatorFactory.Create(consts.ValidatorPrefix+"FileRename"))
|
|
|
|
|
//移动文件
|
|
|
|
|
file.POST("file_move", validatorFactory.Create(consts.ValidatorPrefix+"FileMove"))
|
|
|
|
|
//保存文件
|
|
|
|
|
file.POST("file_save", validatorFactory.Create(consts.ValidatorPrefix+"FileSave"))
|
|
|
|
|
//删除文件
|
|
|
|
|
file.POST("file_delete", validatorFactory.Create(consts.ValidatorPrefix+"FileDelete"))
|
|
|
|
|
//创建文件夹
|
|
|
|
|
file.POST("folder_creat", validatorFactory.Create(consts.ValidatorPrefix+"FolderCreat"))
|
|
|
|
|
//打开文件夹
|
|
|
|
|
file.GET("folder_get", validatorFactory.Create(consts.ValidatorPrefix+"FolderGet"))
|
|
|
|
|
}
|
|
|
|
|
// 【需要token】中间件验证的路由
|
|
|
|
|
backend.Use(authorization.CheckTokenAuth())
|
|
|
|
|
{
|
|
|
|
@ -107,30 +125,6 @@ func InitWebRouter_Co() *gin.Engine {
|
|
|
|
|
users.POST("logout", validatorFactory.Create(consts.ValidatorPrefix+"UsersLogout"))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//【需要token】中间件验证的路由
|
|
|
|
|
backend.Use(authorization.CheckTokenAuth())
|
|
|
|
|
{
|
|
|
|
|
// 文件操作相关路由组
|
|
|
|
|
file := backend.Group("file/")
|
|
|
|
|
{
|
|
|
|
|
//创建文件
|
|
|
|
|
file.POST("file_creat", validatorFactory.Create(consts.ValidatorPrefix+"FileCreat"))
|
|
|
|
|
//打开文件
|
|
|
|
|
file.GET("file_get", validatorFactory.Create(consts.ValidatorPrefix+"FileGet"))
|
|
|
|
|
//文件重命名
|
|
|
|
|
file.POST("file_rename", validatorFactory.Create(consts.ValidatorPrefix+"FileRename"))
|
|
|
|
|
//移动文件
|
|
|
|
|
file.POST("file_move", validatorFactory.Create(consts.ValidatorPrefix+"FileMove"))
|
|
|
|
|
//保存文件
|
|
|
|
|
file.POST("file_save", validatorFactory.Create(consts.ValidatorPrefix+"FileSave"))
|
|
|
|
|
//删除文件
|
|
|
|
|
file.POST("file_delete", validatorFactory.Create(consts.ValidatorPrefix+"FileDelete"))
|
|
|
|
|
//创建文件夹
|
|
|
|
|
file.POST("folder_creat", validatorFactory.Create(consts.ValidatorPrefix+"FolderCreat"))
|
|
|
|
|
//打开文件夹
|
|
|
|
|
file.GET("folder_get", validatorFactory.Create(consts.ValidatorPrefix+"FolderGet"))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
return router
|
|
|
|
|