routes.go 4.5 KB
// Code generated by goctl. DO NOT EDIT.
package handler

import (
	"net/http"

	chart "gitlab.fjmaimaimai.com/allied-creation/sumifcc-bchart/cmd/chart-server/api/internal/handler/chart"
	log "gitlab.fjmaimaimai.com/allied-creation/sumifcc-bchart/cmd/chart-server/api/internal/handler/log"
	page "gitlab.fjmaimaimai.com/allied-creation/sumifcc-bchart/cmd/chart-server/api/internal/handler/page"
	public "gitlab.fjmaimaimai.com/allied-creation/sumifcc-bchart/cmd/chart-server/api/internal/handler/public"
	table "gitlab.fjmaimaimai.com/allied-creation/sumifcc-bchart/cmd/chart-server/api/internal/handler/table"
	"gitlab.fjmaimaimai.com/allied-creation/sumifcc-bchart/cmd/chart-server/api/internal/svc"

	"github.com/zeromicro/go-zero/rest"
)

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.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.WithPrefix("/v1"),
	)

	server.AddRoutes(
		[]rest.Route{
			{
				Method:  http.MethodPost,
				Path:    "/table/field-optional-values",
				Handler: table.SearchTableFieldOptionalValuesHandler(serverCtx),
			},
			{
				Method:  http.MethodGet,
				Path:    "/table/:tableId",
				Handler: table.GetTableDetailHandler(serverCtx),
			},
			{
				Method:  http.MethodPost,
				Path:    "/table/data",
				Handler: table.SearchTableDataHandler(serverCtx),
			},
			{
				Method:  http.MethodGet,
				Path:    "/table/sync",
				Handler: table.SyncTableHandler(serverCtx),
			},
		},
		rest.WithPrefix("/v1"),
	)

	server.AddRoutes(
		[]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.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.WithPrefix("/v1"),
	)

	server.AddRoutes(
		[]rest.Route{
			{
				Method:  http.MethodGet,
				Path:    "/log/:module",
				Handler: log.GetLogHandler(serverCtx),
			},
		},
		rest.WithPrefix("/v1"),
	)

	server.AddRoutes(
		[]rest.Route{
			{
				Method:  http.MethodGet,
				Path:    "/public/:filename",
				Handler: public.GetFileHandler(serverCtx),
			},
		},
	)
}