super-graph/serv/http.go

119 lines
2.5 KiB
Go
Raw Normal View History

2019-03-24 14:57:29 +01:00
package serv
import (
"encoding/json"
"errors"
"io"
"io/ioutil"
"net/http"
"strings"
2019-04-01 14:55:46 +02:00
"time"
2019-03-24 14:57:29 +01:00
"github.com/gorilla/websocket"
)
const (
2019-04-19 07:55:03 +02:00
maxReadBytes = 100000 // 100Kb
2019-03-24 14:57:29 +01:00
introspectionQuery = "IntrospectionQuery"
openVar = "{{"
closeVar = "}}"
)
var (
2019-04-19 07:55:03 +02:00
upgrader = websocket.Upgrader{}
errNoUserID = errors.New("no user_id available")
errUnauthorized = errors.New("not authorized")
2019-03-24 14:57:29 +01:00
)
type gqlReq struct {
2019-09-05 06:09:56 +02:00
OpName string `json:"operationName"`
Query string `json:"query"`
Vars json.RawMessage `json:"variables"`
2019-07-29 07:13:33 +02:00
ref string
2019-09-20 06:19:11 +02:00
hdr http.Header
2019-03-24 14:57:29 +01:00
}
2019-09-05 06:09:56 +02:00
type variables map[string]json.RawMessage
2019-04-19 07:55:03 +02:00
2019-03-24 14:57:29 +01:00
type gqlResp struct {
2019-04-01 14:55:46 +02:00
Error string `json:"error,omitempty"`
2019-04-19 07:55:03 +02:00
Data json.RawMessage `json:"data"`
2019-04-04 06:53:24 +02:00
Extensions *extensions `json:"extensions,omitempty"`
2019-04-01 14:55:46 +02:00
}
type extensions struct {
2019-04-04 06:53:24 +02:00
Tracing *trace `json:"tracing,omitempty"`
2019-04-01 14:55:46 +02:00
}
type trace struct {
Version int `json:"version"`
StartTime time.Time `json:"startTime"`
EndTime time.Time `json:"endTime"`
Duration time.Duration `json:"duration"`
Execution execution `json:"execution"`
}
type execution struct {
Resolvers []resolver `json:"resolvers"`
}
type resolver struct {
Path []string `json:"path"`
ParentType string `json:"parentType"`
FieldName string `json:"fieldName"`
ReturnType string `json:"returnType"`
StartOffset int `json:"startOffset"`
Duration time.Duration `json:"duration"`
2019-03-24 14:57:29 +01:00
}
func apiv1Http(w http.ResponseWriter, r *http.Request) {
2019-05-13 01:27:26 +02:00
ctx := &coreContext{Context: r.Context()}
2019-03-24 14:57:29 +01:00
if authFailBlock == authFailBlockAlways && authCheck(ctx) == false {
2019-06-17 07:58:00 +02:00
err := "Not authorized"
logger.Debug().Msg(err)
http.Error(w, err, 401)
2019-03-24 14:57:29 +01:00
return
}
2019-04-19 07:55:03 +02:00
b, err := ioutil.ReadAll(io.LimitReader(r.Body, maxReadBytes))
2019-03-24 14:57:29 +01:00
defer r.Body.Close()
2019-06-17 07:58:00 +02:00
2019-03-24 14:57:29 +01:00
if err != nil {
2019-06-17 07:58:00 +02:00
logger.Err(err).Msg("failed to read request body")
2019-03-24 14:57:29 +01:00
errorResp(w, err)
return
}
2019-06-17 07:58:00 +02:00
err = json.Unmarshal(b, &ctx.req)
if err != nil {
logger.Err(err).Msg("failed to decode json request body")
2019-03-24 14:57:29 +01:00
errorResp(w, err)
return
}
2019-05-13 01:27:26 +02:00
if strings.EqualFold(ctx.req.OpName, introspectionQuery) {
2019-10-15 08:30:19 +02:00
introspect(w)
2019-03-24 14:57:29 +01:00
return
}
2019-05-13 01:27:26 +02:00
err = ctx.handleReq(w, r)
2019-03-24 14:57:29 +01:00
2019-04-19 07:55:03 +02:00
if err == errUnauthorized {
2019-06-17 07:58:00 +02:00
err := "Not authorized"
logger.Debug().Msg(err)
http.Error(w, err, 401)
2019-03-24 14:57:29 +01:00
}
if err != nil {
2019-06-17 07:58:00 +02:00
logger.Err(err).Msg("Failed to handle request")
2019-03-24 14:57:29 +01:00
errorResp(w, err)
}
2019-04-01 14:55:46 +02:00
}
2019-05-13 01:27:26 +02:00
func errorResp(w http.ResponseWriter, err error) {
w.WriteHeader(http.StatusBadRequest)
json.NewEncoder(w).Encode(gqlResp{Error: err.Error()})
}