| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package project_integration
- import (
- "net/http"
- "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/config"
- "github.com/porter-dev/porter/api/types"
- "github.com/porter-dev/porter/internal/models"
- )
- type ListOAuthHandler struct {
- handlers.PorterHandlerWriter
- }
- func NewListOAuthHandler(
- config *config.Config,
- writer shared.ResultWriter,
- ) *ListOAuthHandler {
- return &ListOAuthHandler{
- PorterHandlerWriter: handlers.NewDefaultPorterHandler(config, nil, writer),
- }
- }
- func (p *ListOAuthHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
- project, _ := r.Context().Value(types.ProjectScope).(*models.Project)
- oauthInts, err := p.Repo().OAuthIntegration().ListOAuthIntegrationsByProjectID(project.ID)
- if err != nil {
- p.HandleAPIError(w, r, apierrors.NewErrInternal(err))
- return
- }
- var res types.ListOAuthResponse = make([]*types.OAuthIntegration, 0)
- for _, oauthInt := range oauthInts {
- res = append(res, oauthInt.ToOAuthIntegrationType())
- }
- p.WriteResult(w, r, res)
- }
|