| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- package gitinstallation
- import (
- "context"
- "net/http"
- "github.com/google/go-github/v41/github"
- "github.com/porter-dev/porter/api/server/authz"
- "github.com/porter-dev/porter/api/server/handlers"
- "github.com/porter-dev/porter/api/server/shared"
- "github.com/porter-dev/porter/api/server/shared/apierrors"
- "github.com/porter-dev/porter/api/server/shared/commonutils"
- "github.com/porter-dev/porter/api/server/shared/config"
- "github.com/porter-dev/porter/api/types"
- )
- type GithubGetContentsHandler struct {
- handlers.PorterHandlerReadWriter
- authz.KubernetesAgentGetter
- }
- func NewGithubGetContentsHandler(
- config *config.Config,
- decoderValidator shared.RequestDecoderValidator,
- writer shared.ResultWriter,
- ) *GithubGetContentsHandler {
- return &GithubGetContentsHandler{
- PorterHandlerReadWriter: handlers.NewDefaultPorterHandler(config, decoderValidator, writer),
- }
- }
- func (c *GithubGetContentsHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
- request := &types.GetContentsRequest{}
- ok := c.DecodeAndValidate(w, r, request)
- if !ok {
- return
- }
- owner, name, ok := commonutils.GetOwnerAndNameParams(c, w, r)
- if !ok {
- return
- }
- branch, ok := commonutils.GetBranchParam(c, w, r)
- if !ok {
- return
- }
- client, err := GetGithubAppClientFromRequest(c.Config(), r)
- if err != nil {
- c.HandleAPIError(w, r, apierrors.NewErrInternal(err))
- return
- }
- repoContentOptions := github.RepositoryContentGetOptions{}
- repoContentOptions.Ref = branch
- _, directoryContents, _, err := client.Repositories.GetContents(
- context.Background(),
- owner,
- name,
- request.Dir,
- &repoContentOptions,
- )
- if err != nil {
- c.HandleAPIError(w, r, apierrors.NewErrInternal(err))
- return
- }
- res := make(types.GetContentsResponse, 0)
- for i := range directoryContents {
- res = append(res, types.GithubDirectoryItem{
- Path: *directoryContents[i].Path,
- Type: *directoryContents[i].Type,
- })
- }
- c.WriteResult(w, r, res)
- }
|