| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- package oauth_callback
- import (
- "fmt"
- "net/http"
- "net/url"
- "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/integrations"
- "golang.org/x/oauth2"
- )
- type OAuthCallbackDOHandler struct {
- handlers.PorterHandlerReadWriter
- }
- func NewOAuthCallbackDOHandler(
- config *config.Config,
- decoderValidator shared.RequestDecoderValidator,
- writer shared.ResultWriter,
- ) *OAuthCallbackDOHandler {
- return &OAuthCallbackDOHandler{
- PorterHandlerReadWriter: handlers.NewDefaultPorterHandler(config, decoderValidator, writer),
- }
- }
- func (p *OAuthCallbackDOHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
- session, err := p.Config().Store.Get(r, p.Config().ServerConf.CookieName)
- if err != nil {
- p.HandleAPIError(w, r, apierrors.NewErrInternal(err))
- return
- }
- if _, ok := session.Values["state"]; !ok {
- p.HandleAPIError(w, r, apierrors.NewErrInternal(err))
- return
- }
- if r.URL.Query().Get("state") != session.Values["state"] {
- p.HandleAPIError(w, r, apierrors.NewErrForbidden(err))
- return
- }
- token, err := p.Config().DOConf.Exchange(oauth2.NoContext, r.URL.Query().Get("code"))
- if err != nil {
- p.HandleAPIError(w, r, apierrors.NewErrForbidden(err))
- return
- }
- if !token.Valid() {
- p.HandleAPIError(w, r, apierrors.NewErrForbidden(fmt.Errorf("invalid token")))
- return
- }
- userID, _ := session.Values["user_id"].(uint)
- projID, _ := session.Values["project_id"].(uint)
- oauthInt := &integrations.OAuthIntegration{
- SharedOAuthModel: integrations.SharedOAuthModel{
- AccessToken: []byte(token.AccessToken),
- RefreshToken: []byte(token.RefreshToken),
- },
- Client: types.OAuthDigitalOcean,
- UserID: userID,
- ProjectID: projID,
- }
- oauthInt.PopulateTargetMetadata()
- // create the oauth integration first
- oauthInt, err = p.Repo().OAuthIntegration().CreateOAuthIntegration(oauthInt)
- if err != nil {
- p.HandleAPIError(w, r, apierrors.NewErrInternal(err))
- return
- }
- if redirectStr, ok := session.Values["redirect_uri"].(string); ok && redirectStr != "" {
- // attempt to parse the redirect uri, if it fails just redirect to dashboard
- redirectURI, err := url.Parse(redirectStr)
- if err != nil {
- http.Redirect(w, r, "/dashboard", 302)
- }
- http.Redirect(w, r, fmt.Sprintf("%s?%s", redirectURI.Path, redirectURI.RawQuery), 302)
- } else {
- http.Redirect(w, r, "/dashboard", 302)
- }
- }
|