package router import ( "github.com/go-chi/chi/v5" "github.com/porter-dev/porter/api/server/handlers/project_oauth" "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 NewProjectOAuthScopedRegisterer(children ...*router.Registerer) *router.Registerer { return &router.Registerer{ GetRoutes: GetProjectOAuthScopedRoutes, Children: children, } } func GetProjectOAuthScopedRoutes( r chi.Router, config *config.Config, basePath *types.Path, factory shared.APIEndpointFactory, children ...*router.Registerer, ) []*router.Route { routes, projPath := getProjectOAuthRoutes(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 getProjectOAuthRoutes( r chi.Router, config *config.Config, basePath *types.Path, factory shared.APIEndpointFactory, ) ([]*router.Route, *types.Path) { relPath := "/oauth" newPath := &types.Path{ Parent: basePath, RelativePath: relPath, } routes := make([]*router.Route, 0) // GET /api/projects/{project_id}/oauth/slack -> project_integration.NewProjectOAuthSlackHandler slackEndpoint := factory.NewAPIEndpoint( &types.APIRequestMetadata{ Verb: types.APIVerbGet, Method: types.HTTPVerbGet, Path: &types.Path{ Parent: basePath, RelativePath: relPath + "/slack", }, Scopes: []types.PermissionScope{ types.UserScope, types.ProjectScope, }, }, ) slackHandler := project_oauth.NewProjectOAuthSlackHandler( config, factory.GetDecoderValidator(), factory.GetResultWriter(), ) routes = append(routes, &router.Route{ Endpoint: slackEndpoint, Handler: slackHandler, Router: r, }) // GET /api/projects/{project_id}/oauth/digitalocean -> project_integration.NewProjectOAuthDOHandler doEndpoint := factory.NewAPIEndpoint( &types.APIRequestMetadata{ Verb: types.APIVerbGet, Method: types.HTTPVerbGet, Path: &types.Path{ Parent: basePath, RelativePath: relPath + "/digitalocean", }, Scopes: []types.PermissionScope{ types.UserScope, types.ProjectScope, }, }, ) doHandler := project_oauth.NewProjectOAuthDOHandler( config, factory.GetDecoderValidator(), factory.GetResultWriter(), ) routes = append(routes, &router.Route{ Endpoint: doEndpoint, Handler: doHandler, Router: r, }) // GET /api/projects/{project_id}/oauth/gitlab -> project_integration.NewProjectOAuthGitlabHandler gitlabEndpoint := factory.NewAPIEndpoint( &types.APIRequestMetadata{ Verb: types.APIVerbGet, Method: types.HTTPVerbGet, Path: &types.Path{ Parent: basePath, RelativePath: relPath + "/gitlab", }, Scopes: []types.PermissionScope{ types.UserScope, types.ProjectScope, }, }, ) gitlabHandler := project_oauth.NewProjectOAuthGitlabHandler( config, factory.GetDecoderValidator(), factory.GetResultWriter(), ) routes = append(routes, &router.Route{ Endpoint: gitlabEndpoint, Handler: gitlabHandler, Router: r, }) return routes, newPath }