86 lines
2.2 KiB
Go
86 lines
2.2 KiB
Go
package handlers
|
|
|
|
import (
|
|
"encoding/base64"
|
|
"encoding/json"
|
|
"log"
|
|
"net/http"
|
|
"strings"
|
|
|
|
"github.com/authorizerdev/authorizer/server/constants"
|
|
"github.com/authorizerdev/authorizer/server/utils"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
type State struct {
|
|
AuthorizerURL string `json:"authorizerURL"`
|
|
RedirectURL string `json:"redirectURL"`
|
|
}
|
|
|
|
func AppHandler() gin.HandlerFunc {
|
|
return func(c *gin.Context) {
|
|
state := c.Query("state")
|
|
|
|
var stateObj State
|
|
|
|
if state == "" {
|
|
// cookie, err := utils.GetAuthToken(c)
|
|
// if err != nil {
|
|
// c.JSON(400, gin.H{"error": "invalid state"})
|
|
// return
|
|
// }
|
|
|
|
stateObj.AuthorizerURL = constants.AUTHORIZER_URL
|
|
stateObj.RedirectURL = constants.AUTHORIZER_URL + "/app"
|
|
|
|
} else {
|
|
decodedState, err := base64.StdEncoding.DecodeString(state)
|
|
if err != nil {
|
|
c.JSON(400, gin.H{"error": "[unable to decode state] invalid state"})
|
|
return
|
|
}
|
|
|
|
err = json.Unmarshal(decodedState, &stateObj)
|
|
if err != nil {
|
|
c.JSON(400, gin.H{"error": "[unable to parse state] invalid state"})
|
|
return
|
|
}
|
|
stateObj.AuthorizerURL = strings.TrimSuffix(stateObj.AuthorizerURL, "/")
|
|
stateObj.RedirectURL = strings.TrimSuffix(stateObj.RedirectURL, "/")
|
|
|
|
// validate redirect url with allowed origins
|
|
if !utils.IsValidRedirectURL(stateObj.RedirectURL) {
|
|
c.JSON(400, gin.H{"error": "invalid redirect url"})
|
|
return
|
|
}
|
|
|
|
if stateObj.AuthorizerURL == "" {
|
|
c.JSON(400, gin.H{"error": "invalid authorizer url"})
|
|
return
|
|
}
|
|
|
|
// validate host and domain of authorizer url
|
|
if strings.TrimSuffix(stateObj.AuthorizerURL, "/") != constants.AUTHORIZER_URL {
|
|
c.JSON(400, gin.H{"error": "invalid host url"})
|
|
return
|
|
}
|
|
}
|
|
|
|
// debug the request state
|
|
if pusher := c.Writer.Pusher(); pusher != nil {
|
|
// use pusher.Push() to do server push
|
|
if err := pusher.Push("/app/build/bundle.js", nil); err != nil {
|
|
log.Printf("Failed to push: %v", err)
|
|
}
|
|
}
|
|
c.HTML(http.StatusOK, "app.tmpl", gin.H{
|
|
"data": map[string]string{
|
|
"authorizerURL": stateObj.AuthorizerURL,
|
|
"redirectURL": stateObj.RedirectURL,
|
|
"organizationName": constants.ORGANIZATION_NAME,
|
|
"organizationLogo": constants.ORGANIZATION_LOGO,
|
|
},
|
|
})
|
|
}
|
|
}
|