package router import ( "github.com/go-chi/chi" "github.com/porter-dev/porter/api/server/handlers/slack_integration" "github.com/porter-dev/porter/api/server/shared" "github.com/porter-dev/porter/api/server/shared/config" "github.com/porter-dev/porter/api/server/shared/router" "github.com/porter-dev/porter/api/types" ) func NewSlackIntegrationScopedRegisterer(children ...*router.Registerer) *router.Registerer { return &router.Registerer{ GetRoutes: GetSlackIntegrationScopedRoutes, Children: children, } } func GetSlackIntegrationScopedRoutes( r chi.Router, config *config.Config, basePath *types.Path, factory shared.APIEndpointFactory, children ...*router.Registerer, ) []*router.Route { routes, projPath := getSlackIntegrationRoutes(r, config, basePath, factory) if len(children) > 0 { r.Route(projPath.RelativePath, func(r chi.Router) { for _, child := range children { childRoutes := child.GetRoutes(r, config, basePath, factory, child.Children...) routes = append(routes, childRoutes...) } }) } return routes } func getSlackIntegrationRoutes( r chi.Router, config *config.Config, basePath *types.Path, factory shared.APIEndpointFactory, ) ([]*router.Route, *types.Path) { relPath := "/slack_integrations" newPath := &types.Path{ Parent: basePath, RelativePath: relPath, } routes := make([]*router.Route, 0) // GET /api/projects/{project_id}/slack_integrations -> slack_integration.NewListHandler listEndpoint := factory.NewAPIEndpoint( &types.APIRequestMetadata{ Verb: types.APIVerbGet, Method: types.HTTPVerbGet, Path: &types.Path{ Parent: basePath, RelativePath: relPath, }, Scopes: []types.PermissionScope{ types.UserScope, types.ProjectScope, }, }, ) listHandler := slack_integration.NewSlackIntegrationListHandler( config, factory.GetResultWriter(), ) routes = append(routes, &router.Route{ Endpoint: listEndpoint, Handler: listHandler, Router: r, }) // GET /api/projects/{project_id}/slack_integrations/exists -> slack_integration.NewListHandler existsEndpoint := factory.NewAPIEndpoint( &types.APIRequestMetadata{ Verb: types.APIVerbGet, Method: types.HTTPVerbGet, Path: &types.Path{ Parent: basePath, RelativePath: relPath + "/exists", }, Scopes: []types.PermissionScope{ types.UserScope, types.ProjectScope, }, }, ) existsHandler := slack_integration.NewSlackIntegrationExists(config) routes = append(routes, &router.Route{ Endpoint: existsEndpoint, Handler: existsHandler, Router: r, }) // GET /api/projects/{project_id}/slack_integrations/exists -> slack_integration.NewListHandler deleteEndpoint := factory.NewAPIEndpoint( &types.APIRequestMetadata{ Verb: types.APIVerbDelete, Method: types.HTTPVerbDelete, Path: &types.Path{ Parent: basePath, RelativePath: relPath + "/{slack_integration_id}", }, Scopes: []types.PermissionScope{ types.UserScope, types.ProjectScope, }, }, ) deleteHandler := slack_integration.NewSlackIntegrationDelete(config) routes = append(routes, &router.Route{ Endpoint: deleteEndpoint, Handler: deleteHandler, Router: r, }) return routes, newPath }