...
|
...
|
@@ -16,65 +16,71 @@ import ( |
|
|
|
|
|
func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
|
|
|
server.AddRoutes(
|
|
|
[]rest.Route{
|
|
|
{
|
|
|
Method: http.MethodPost,
|
|
|
Path: "/chart",
|
|
|
Handler: chart.SaveChartHandler(serverCtx),
|
|
|
},
|
|
|
{
|
|
|
Method: http.MethodPost,
|
|
|
Path: "/chart/saveas",
|
|
|
Handler: chart.SaveAsChartHandler(serverCtx),
|
|
|
},
|
|
|
{
|
|
|
Method: http.MethodDelete,
|
|
|
Path: "/chart/:id",
|
|
|
Handler: chart.DeleteChartHandler(serverCtx),
|
|
|
},
|
|
|
{
|
|
|
Method: http.MethodPut,
|
|
|
Path: "/chart/:id",
|
|
|
Handler: chart.UpdateChartHandler(serverCtx),
|
|
|
},
|
|
|
{
|
|
|
Method: http.MethodPost,
|
|
|
Path: "/chart/search",
|
|
|
Handler: chart.SearchChartHandler(serverCtx),
|
|
|
},
|
|
|
{
|
|
|
Method: http.MethodPost,
|
|
|
Path: "/chart/move",
|
|
|
Handler: chart.UpdateChartSortHandler(serverCtx),
|
|
|
},
|
|
|
{
|
|
|
Method: http.MethodPost,
|
|
|
Path: "/chart/rename",
|
|
|
Handler: chart.RenameChartSortHandler(serverCtx),
|
|
|
},
|
|
|
{
|
|
|
Method: http.MethodPost,
|
|
|
Path: "/chart/components/search",
|
|
|
Handler: chart.SearchChartComponentsHandler(serverCtx),
|
|
|
},
|
|
|
},
|
|
|
rest.WithMiddlewares(
|
|
|
[]rest.Middleware{serverCtx.LoginStatusCheck, serverCtx.LogRequest},
|
|
|
[]rest.Route{
|
|
|
{
|
|
|
Method: http.MethodPost,
|
|
|
Path: "/chart",
|
|
|
Handler: chart.SaveChartHandler(serverCtx),
|
|
|
},
|
|
|
{
|
|
|
Method: http.MethodPost,
|
|
|
Path: "/chart/saveas",
|
|
|
Handler: chart.SaveAsChartHandler(serverCtx),
|
|
|
},
|
|
|
{
|
|
|
Method: http.MethodDelete,
|
|
|
Path: "/chart/:id",
|
|
|
Handler: chart.DeleteChartHandler(serverCtx),
|
|
|
},
|
|
|
{
|
|
|
Method: http.MethodPut,
|
|
|
Path: "/chart/:id",
|
|
|
Handler: chart.UpdateChartHandler(serverCtx),
|
|
|
},
|
|
|
{
|
|
|
Method: http.MethodPost,
|
|
|
Path: "/chart/search",
|
|
|
Handler: chart.SearchChartHandler(serverCtx),
|
|
|
},
|
|
|
{
|
|
|
Method: http.MethodPost,
|
|
|
Path: "/chart/move",
|
|
|
Handler: chart.UpdateChartSortHandler(serverCtx),
|
|
|
},
|
|
|
{
|
|
|
Method: http.MethodPost,
|
|
|
Path: "/chart/rename",
|
|
|
Handler: chart.RenameChartSortHandler(serverCtx),
|
|
|
},
|
|
|
{
|
|
|
Method: http.MethodPost,
|
|
|
Path: "/chart/components/search",
|
|
|
Handler: chart.SearchChartComponentsHandler(serverCtx),
|
|
|
},
|
|
|
}...,
|
|
|
),
|
|
|
rest.WithJwt(serverCtx.Config.JwtAuth.AccessSecret),
|
|
|
rest.WithPrefix("/v1"),
|
|
|
)
|
|
|
|
|
|
server.AddRoutes(
|
|
|
[]rest.Route{
|
|
|
{
|
|
|
Method: http.MethodPost,
|
|
|
Path: "/chart/load-data",
|
|
|
Handler: chart.LoadChartDataHandler(serverCtx),
|
|
|
},
|
|
|
{
|
|
|
Method: http.MethodGet,
|
|
|
Path: "/chart/:id",
|
|
|
Handler: chart.GetChartHandler(serverCtx),
|
|
|
},
|
|
|
},
|
|
|
rest.WithMiddlewares(
|
|
|
[]rest.Middleware{serverCtx.LogRequest},
|
|
|
[]rest.Route{
|
|
|
{
|
|
|
Method: http.MethodPost,
|
|
|
Path: "/chart/load-data",
|
|
|
Handler: chart.LoadChartDataHandler(serverCtx),
|
|
|
},
|
|
|
{
|
|
|
Method: http.MethodGet,
|
|
|
Path: "/chart/:id",
|
|
|
Handler: chart.GetChartHandler(serverCtx),
|
|
|
},
|
|
|
}...,
|
|
|
),
|
|
|
rest.WithPrefix("/v1"),
|
|
|
)
|
|
|
|
...
|
...
|
@@ -105,67 +111,76 @@ func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) { |
|
|
)
|
|
|
|
|
|
server.AddRoutes(
|
|
|
[]rest.Route{
|
|
|
{
|
|
|
Method: http.MethodPost,
|
|
|
Path: "/table/search-by-module",
|
|
|
Handler: table.SearchTableByModuleHandler(serverCtx),
|
|
|
},
|
|
|
},
|
|
|
rest.WithMiddlewares(
|
|
|
[]rest.Middleware{serverCtx.LoginStatusCheck, serverCtx.LogRequest},
|
|
|
[]rest.Route{
|
|
|
{
|
|
|
Method: http.MethodPost,
|
|
|
Path: "/table/search-by-module",
|
|
|
Handler: table.SearchTableByModuleHandler(serverCtx),
|
|
|
},
|
|
|
}...,
|
|
|
),
|
|
|
rest.WithJwt(serverCtx.Config.JwtAuth.AccessSecret),
|
|
|
rest.WithPrefix("/v1"),
|
|
|
)
|
|
|
|
|
|
server.AddRoutes(
|
|
|
[]rest.Route{
|
|
|
{
|
|
|
Method: http.MethodPost,
|
|
|
Path: "/app-page",
|
|
|
Handler: page.SaveAppPageHandler(serverCtx),
|
|
|
},
|
|
|
{
|
|
|
Method: http.MethodPost,
|
|
|
Path: "/app-page/saveas",
|
|
|
Handler: page.SaveAsAppPageHandler(serverCtx),
|
|
|
},
|
|
|
{
|
|
|
Method: http.MethodDelete,
|
|
|
Path: "/app-page/:id",
|
|
|
Handler: page.DeleteAppPageHandler(serverCtx),
|
|
|
},
|
|
|
{
|
|
|
Method: http.MethodPut,
|
|
|
Path: "/app-page/:id",
|
|
|
Handler: page.UpdateAppPageHandler(serverCtx),
|
|
|
},
|
|
|
{
|
|
|
Method: http.MethodPost,
|
|
|
Path: "/app-page/search",
|
|
|
Handler: page.SearchAppPageHandler(serverCtx),
|
|
|
},
|
|
|
{
|
|
|
Method: http.MethodPost,
|
|
|
Path: "/app-page/create-share",
|
|
|
Handler: page.CreateAppPageShareUrlHandler(serverCtx),
|
|
|
},
|
|
|
},
|
|
|
rest.WithMiddlewares(
|
|
|
[]rest.Middleware{serverCtx.LoginStatusCheck, serverCtx.LogRequest},
|
|
|
[]rest.Route{
|
|
|
{
|
|
|
Method: http.MethodPost,
|
|
|
Path: "/app-page",
|
|
|
Handler: page.SaveAppPageHandler(serverCtx),
|
|
|
},
|
|
|
{
|
|
|
Method: http.MethodPost,
|
|
|
Path: "/app-page/saveas",
|
|
|
Handler: page.SaveAsAppPageHandler(serverCtx),
|
|
|
},
|
|
|
{
|
|
|
Method: http.MethodDelete,
|
|
|
Path: "/app-page/:id",
|
|
|
Handler: page.DeleteAppPageHandler(serverCtx),
|
|
|
},
|
|
|
{
|
|
|
Method: http.MethodPut,
|
|
|
Path: "/app-page/:id",
|
|
|
Handler: page.UpdateAppPageHandler(serverCtx),
|
|
|
},
|
|
|
{
|
|
|
Method: http.MethodPost,
|
|
|
Path: "/app-page/search",
|
|
|
Handler: page.SearchAppPageHandler(serverCtx),
|
|
|
},
|
|
|
{
|
|
|
Method: http.MethodPost,
|
|
|
Path: "/app-page/create-share",
|
|
|
Handler: page.CreateAppPageShareUrlHandler(serverCtx),
|
|
|
},
|
|
|
}...,
|
|
|
),
|
|
|
rest.WithJwt(serverCtx.Config.JwtAuth.AccessSecret),
|
|
|
rest.WithPrefix("/v1"),
|
|
|
)
|
|
|
|
|
|
server.AddRoutes(
|
|
|
[]rest.Route{
|
|
|
{
|
|
|
Method: http.MethodGet,
|
|
|
Path: "/app-page/:id",
|
|
|
Handler: page.GetAppPageHandler(serverCtx),
|
|
|
},
|
|
|
{
|
|
|
Method: http.MethodGet,
|
|
|
Path: "/api/app-page/get-share-detail/:key",
|
|
|
Handler: page.GetAppPageShareDetailHandler(serverCtx),
|
|
|
},
|
|
|
},
|
|
|
rest.WithMiddlewares(
|
|
|
[]rest.Middleware{serverCtx.LogRequest},
|
|
|
[]rest.Route{
|
|
|
{
|
|
|
Method: http.MethodGet,
|
|
|
Path: "/app-page/:id",
|
|
|
Handler: page.GetAppPageHandler(serverCtx),
|
|
|
},
|
|
|
{
|
|
|
Method: http.MethodGet,
|
|
|
Path: "/api/app-page/get-share-detail/:key",
|
|
|
Handler: page.GetAppPageShareDetailHandler(serverCtx),
|
|
|
},
|
|
|
}...,
|
|
|
),
|
|
|
rest.WithPrefix("/v1"),
|
|
|
)
|
|
|
|
...
|
...
|
|