super-graph/serv/serv.go

152 lines
2.7 KiB
Go
Raw Normal View History

2019-03-24 14:57:29 +01:00
package serv
import (
2019-05-13 01:27:26 +02:00
"context"
2019-03-24 14:57:29 +01:00
"fmt"
"net/http"
"os"
2019-05-13 01:27:26 +02:00
"os/signal"
2019-03-24 14:57:29 +01:00
"strings"
2019-05-13 01:27:26 +02:00
"time"
2019-03-24 14:57:29 +01:00
"github.com/dosco/super-graph/psql"
"github.com/dosco/super-graph/qcode"
)
2019-04-08 08:47:59 +02:00
func initCompilers(c *config) (*qcode.Compiler, *psql.Compiler, error) {
schema, err := psql.NewDBSchema(db, c.getAliasMap())
2019-05-13 01:27:26 +02:00
if err != nil {
return nil, nil, err
2019-04-08 08:47:59 +02:00
}
2019-03-24 14:57:29 +01:00
2019-04-08 08:47:59 +02:00
qc, err := qcode.NewCompiler(qcode.Config{
2019-05-13 01:27:26 +02:00
DefaultFilter: c.DB.Defaults.Filter,
FilterMap: c.getFilterMap(),
2019-09-08 07:54:38 +02:00
Blocklist: c.DB.Defaults.Blocklist,
2019-06-02 01:48:42 +02:00
KeepArgs: false,
2019-04-08 08:47:59 +02:00
})
2019-03-24 14:57:29 +01:00
if err != nil {
2019-04-08 08:47:59 +02:00
return nil, nil, err
2019-03-24 14:57:29 +01:00
}
2019-04-08 08:47:59 +02:00
pc := psql.NewCompiler(psql.Config{
Schema: schema,
2019-07-29 07:13:33 +02:00
Vars: c.getVariables(),
2019-04-08 08:47:59 +02:00
})
2019-03-24 14:57:29 +01:00
2019-04-08 08:47:59 +02:00
return qc, pc, nil
2019-03-24 14:57:29 +01:00
}
2019-09-08 20:56:32 +02:00
func initWatcher(path string) {
if conf.WatchAndReload == false {
return
}
var d dir
if len(path) == 0 || path == "./" {
d = Dir("./config", ReExec)
} else {
d = Dir(path, ReExec)
}
go func() {
err := Do(logger.Printf, d)
if err != nil {
panic(err)
}
}()
}
2019-05-13 01:27:26 +02:00
func startHTTP() {
2019-07-30 07:38:05 +02:00
hp := strings.SplitN(conf.HostPort, ":", 2)
if len(conf.Host) != 0 {
hp[0] = conf.Host
}
if len(conf.Port) != 0 {
hp[1] = conf.Port
}
hostPort := fmt.Sprintf("%s:%s", hp[0], hp[1])
2019-05-13 01:27:26 +02:00
srv := &http.Server{
2019-07-30 07:38:05 +02:00
Addr: hostPort,
2019-05-13 01:27:26 +02:00
Handler: routeHandler(),
ReadTimeout: 5 * time.Second,
WriteTimeout: 10 * time.Second,
MaxHeaderBytes: 1 << 20,
}
idleConnsClosed := make(chan struct{})
go func() {
sigint := make(chan os.Signal, 1)
signal.Notify(sigint, os.Interrupt)
<-sigint
if err := srv.Shutdown(context.Background()); err != nil {
logger.Error().Err(err).Msg("shutdown signal received")
2019-05-13 01:27:26 +02:00
}
close(idleConnsClosed)
}()
srv.RegisterOnShutdown(func() {
2019-09-26 06:35:31 +02:00
db.Close()
2019-05-13 01:27:26 +02:00
})
2019-07-30 07:38:05 +02:00
fmt.Printf("%s listening on %s (%s)\n", serverName, hostPort, conf.Env)
2019-05-13 01:27:26 +02:00
if err := srv.ListenAndServe(); err != http.ErrServerClosed {
logger.Error().Err(err).Msg("server closed")
2019-05-13 01:27:26 +02:00
}
<-idleConnsClosed
}
2019-03-24 14:57:29 +01:00
2019-05-13 01:27:26 +02:00
func routeHandler() http.Handler {
mux := http.NewServeMux()
mux.Handle("/api/v1/graphql", withAuth(apiv1Http))
2019-04-08 08:47:59 +02:00
if conf.WebUI {
2019-05-13 01:27:26 +02:00
mux.Handle("/", http.FileServer(_escFS(false)))
2019-03-24 14:57:29 +01:00
}
2019-05-13 01:27:26 +02:00
fn := func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Server", serverName)
mux.ServeHTTP(w, r)
}
2019-04-08 08:47:59 +02:00
2019-05-13 01:27:26 +02:00
return http.HandlerFunc(fn)
2019-04-08 08:47:59 +02:00
}
func getConfigName() string {
ge := strings.ToLower(os.Getenv("GO_ENV"))
switch {
case strings.HasPrefix(ge, "pro"):
return "prod"
case strings.HasPrefix(ge, "sta"):
return "stage"
case strings.HasPrefix(ge, "tes"):
return "test"
}
return "dev"
}
func getAuthFailBlock(c *config) int {
switch c.AuthFailBlock {
case "always":
return authFailBlockAlways
case "per_query", "perquery", "query":
return authFailBlockPerQuery
case "never", "false":
return authFailBlockNever
}
2019-03-24 14:57:29 +01:00
2019-04-08 08:47:59 +02:00
return authFailBlockAlways
2019-03-24 14:57:29 +01:00
}