package router import ( "fmt" "github.com/go-chi/chi" "github.com/porter-dev/porter/api/server/handlers/gitinstallation" "github.com/porter-dev/porter/api/server/shared" "github.com/porter-dev/porter/api/server/shared/config" "github.com/porter-dev/porter/api/types" ) func NewGitInstallationScopedRegisterer(children ...*Registerer) *Registerer { return &Registerer{ GetRoutes: GetGitInstallationScopedRoutes, Children: children, } } func GetGitInstallationScopedRoutes( r chi.Router, config *config.Config, basePath *types.Path, factory shared.APIEndpointFactory, children ...*Registerer, ) []*Route { routes, projPath := getGitInstallationRoutes(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 getGitInstallationRoutes( r chi.Router, config *config.Config, basePath *types.Path, factory shared.APIEndpointFactory, ) ([]*Route, *types.Path) { relPath := "/gitrepos/{git_installation_id}" newPath := &types.Path{ Parent: basePath, RelativePath: relPath, } routes := make([]*Route, 0) // GET /api/projects/{project_id}/gitrepos/{git_installation_id} -> gitinstallation.NewGitInstallationGetHandler getEndpoint := factory.NewAPIEndpoint( &types.APIRequestMetadata{ Verb: types.APIVerbGet, Method: types.HTTPVerbGet, Path: &types.Path{ Parent: basePath, RelativePath: relPath, }, Scopes: []types.PermissionScope{ types.UserScope, types.ProjectScope, types.GitInstallationScope, }, }, ) getHandler := gitinstallation.NewGitInstallationGetHandler( config, factory.GetResultWriter(), ) routes = append(routes, &Route{ Endpoint: getEndpoint, Handler: getHandler, Router: r, }) // GET /api/projects/{project_id}/gitrepos/{git_installation_id}/repos -> // gitinstallation.GithubListReposHandler listReposEndpoint := factory.NewAPIEndpoint( &types.APIRequestMetadata{ Verb: types.APIVerbList, Method: types.HTTPVerbGet, Path: &types.Path{ Parent: basePath, RelativePath: relPath + "/repos", }, Scopes: []types.PermissionScope{ types.UserScope, types.ProjectScope, types.GitInstallationScope, }, }, ) listReposHandler := gitinstallation.NewGithubListReposHandler( config, factory.GetResultWriter(), ) routes = append(routes, &Route{ Endpoint: listReposEndpoint, Handler: listReposHandler, Router: r, }) // GET /api/projects/{project_id}/gitrepos/{installation_id}/repos/{kind}/{owner}/{name}/branches -> // gitinstallation.GithubListBranchesHandler listBranchesEndpoint := factory.NewAPIEndpoint( &types.APIRequestMetadata{ Verb: types.APIVerbList, Method: types.HTTPVerbGet, Path: &types.Path{ Parent: basePath, RelativePath: fmt.Sprintf( "%s/repos/{%s}/{%s}/{%s}/branches", relPath, types.URLParamGitKind, types.URLParamGitRepoOwner, types.URLParamGitRepoName, ), }, Scopes: []types.PermissionScope{ types.UserScope, types.ProjectScope, types.GitInstallationScope, }, }, ) listBranchesHandler := gitinstallation.NewGithubListBranchesHandler( config, factory.GetResultWriter(), ) routes = append(routes, &Route{ Endpoint: listBranchesEndpoint, Handler: listBranchesHandler, Router: r, }) // GET /api/projects/{project_id}/gitrepos/{installation_id}/repos/{kind}/{owner}/{name}/{branch}/buildpack/detect -> // gitinstallation.NewGithubGetBuildpackHandler getBuildpackEndpoint := factory.NewAPIEndpoint( &types.APIRequestMetadata{ Verb: types.APIVerbGet, Method: types.HTTPVerbGet, Path: &types.Path{ Parent: basePath, RelativePath: fmt.Sprintf( "%s/repos/{%s}/{%s}/{%s}/{%s}/buildpack/detect", relPath, types.URLParamGitKind, types.URLParamGitRepoOwner, types.URLParamGitRepoName, types.URLParamGitBranch, ), }, Scopes: []types.PermissionScope{ types.UserScope, types.ProjectScope, types.GitInstallationScope, }, }, ) getBuildpackHandler := gitinstallation.NewGithubGetBuildpackHandler( config, factory.GetDecoderValidator(), factory.GetResultWriter(), ) routes = append(routes, &Route{ Endpoint: getBuildpackEndpoint, Handler: getBuildpackHandler, Router: r, }) // GET /api/projects/{project_id}/gitrepos/{installation_id}/repos/{kind}/{owner}/{name}/{branch}/contents -> // gitinstallation.NewGithubGetContentsHandler getContentsEndpoint := factory.NewAPIEndpoint( &types.APIRequestMetadata{ Verb: types.APIVerbGet, Method: types.HTTPVerbGet, Path: &types.Path{ Parent: basePath, RelativePath: fmt.Sprintf( "%s/repos/{%s}/{%s}/{%s}/{%s}/contents", relPath, types.URLParamGitKind, types.URLParamGitRepoOwner, types.URLParamGitRepoName, types.URLParamGitBranch, ), }, Scopes: []types.PermissionScope{ types.UserScope, types.ProjectScope, types.GitInstallationScope, }, }, ) getContentsHandler := gitinstallation.NewGithubGetContentsHandler( config, factory.GetDecoderValidator(), factory.GetResultWriter(), ) routes = append(routes, &Route{ Endpoint: getContentsEndpoint, Handler: getContentsHandler, Router: r, }) // GET /api/projects/{project_id}/gitrepos/{installation_id}/repos/{kind}/{owner}/{name}/{branch}/procfile -> // gitinstallation.NewGithubGetProcfileHandler getProcfileEndpoint := factory.NewAPIEndpoint( &types.APIRequestMetadata{ Verb: types.APIVerbGet, Method: types.HTTPVerbGet, Path: &types.Path{ Parent: basePath, RelativePath: fmt.Sprintf( "%s/repos/{%s}/{%s}/{%s}/{%s}/procfile", relPath, types.URLParamGitKind, types.URLParamGitRepoOwner, types.URLParamGitRepoName, types.URLParamGitBranch, ), }, Scopes: []types.PermissionScope{ types.UserScope, types.ProjectScope, types.GitInstallationScope, }, }, ) getProcfileHandler := gitinstallation.NewGithubGetProcfileHandler( config, factory.GetDecoderValidator(), factory.GetResultWriter(), ) routes = append(routes, &Route{ Endpoint: getProcfileEndpoint, Handler: getProcfileHandler, Router: r, }) // GET /api/projects/{project_id}/gitrepos/{installation_id}/repos/{kind}/{owner}/{name}/{branch}/tarball_url -> // gitinstallation.NewGithubGetTarballURLHandler getTarballURLEndpoint := factory.NewAPIEndpoint( &types.APIRequestMetadata{ Verb: types.APIVerbGet, Method: types.HTTPVerbGet, Path: &types.Path{ Parent: basePath, RelativePath: fmt.Sprintf( "%s/repos/{%s}/{%s}/{%s}/{%s}/tarball_url", relPath, types.URLParamGitKind, types.URLParamGitRepoOwner, types.URLParamGitRepoName, types.URLParamGitBranch, ), }, Scopes: []types.PermissionScope{ types.UserScope, types.ProjectScope, types.GitInstallationScope, }, }, ) getTarballURLHandler := gitinstallation.NewGithubGetTarballURLHandler( config, factory.GetDecoderValidator(), factory.GetResultWriter(), ) routes = append(routes, &Route{ Endpoint: getTarballURLEndpoint, Handler: getTarballURLHandler, Router: r, }) return routes, newPath }