ev/main.go

110 lines
2.5 KiB
Go
Raw Normal View History

2022-08-04 14:37:51 -06:00
package main
import (
"context"
"log"
"net/http"
"os"
"os/signal"
"time"
2022-08-07 11:55:49 -06:00
"github.com/99designs/gqlgen/graphql/handler"
2022-08-12 15:53:16 -06:00
"github.com/ravilushqa/otelgqlgen"
2022-08-10 19:18:42 -06:00
"github.com/rs/cors"
2022-08-10 21:18:57 -06:00
"golang.org/x/sync/errgroup"
2022-08-10 19:18:42 -06:00
2022-08-07 11:55:49 -06:00
"github.com/sour-is/ev/api/gql_ev"
"github.com/sour-is/ev/internal/graph"
"github.com/sour-is/ev/internal/graph/generated"
"github.com/sour-is/ev/internal/logz"
2022-08-14 10:04:15 -06:00
"github.com/sour-is/ev/pkg/domain"
2022-08-04 14:37:51 -06:00
"github.com/sour-is/ev/pkg/es"
2022-08-06 09:52:36 -06:00
diskstore "github.com/sour-is/ev/pkg/es/driver/disk-store"
memstore "github.com/sour-is/ev/pkg/es/driver/mem-store"
"github.com/sour-is/ev/pkg/es/driver/streamer"
"github.com/sour-is/ev/pkg/msgbus"
2022-08-07 11:55:49 -06:00
"github.com/sour-is/ev/pkg/playground"
2022-08-04 14:37:51 -06:00
)
const AppName string = "sour.is-ev"
2022-08-12 15:53:16 -06:00
2022-08-04 14:37:51 -06:00
func main() {
ctx, cancel := signal.NotifyContext(context.Background(), os.Interrupt, os.Kill)
go func() {
<-ctx.Done()
defer cancel()
}()
2022-08-12 16:27:54 -06:00
ctx, stop := logz.Init(ctx, AppName)
2022-08-12 16:27:54 -06:00
defer stop()
Mup, err := logz.Meter(ctx).SyncInt64().UpDownCounter("up")
2022-08-12 15:53:16 -06:00
if err != nil {
log.Fatal(err)
}
Mup.Add(ctx, 1)
2022-08-04 14:37:51 -06:00
2022-08-14 10:04:15 -06:00
if err := run(ctx); err != nil && err != http.ErrServerClosed {
log.Fatal(err)
2022-08-04 14:37:51 -06:00
}
}
func run(ctx context.Context) error {
2022-08-04 21:07:10 -06:00
diskstore.Init(ctx)
2022-08-06 09:52:36 -06:00
memstore.Init(ctx)
2022-08-14 10:04:15 -06:00
if err := domain.Init(ctx); err != nil {
return err
}
2022-08-04 14:37:51 -06:00
es, err := es.Open(ctx, env("EV_DATA", "file:data"), streamer.New(ctx))
2022-08-04 14:37:51 -06:00
if err != nil {
return err
}
2022-08-14 13:56:55 -06:00
svc, err := msgbus.New(ctx, es, env("EV_BASE_URL", "https://ev.sour.is/inbox/"))
2022-08-07 11:55:49 -06:00
if err != nil {
return err
2022-08-04 14:37:51 -06:00
}
r, err := gql_ev.New(es)
if err != nil {
return err
}
res := graph.New(r)
2022-08-07 11:55:49 -06:00
gql := handler.NewDefaultServer(generated.NewExecutableSchema(generated.Config{Resolvers: res}))
2022-08-12 15:53:16 -06:00
gql.Use(otelgqlgen.Middleware())
2022-08-07 11:55:49 -06:00
2022-08-04 14:37:51 -06:00
s := http.Server{
2022-08-06 09:52:36 -06:00
Addr: env("EV_HTTP", ":8080"),
2022-08-04 14:37:51 -06:00
}
2022-08-10 19:18:42 -06:00
mux := http.NewServeMux()
mux.Handle("/", playground.Handler("GraphQL playground", "/gql"))
mux.Handle("/gql", logz.Htrace(res.ChainMiddlewares(gql), "gql"))
mux.Handle("/inbox/", logz.Htrace(http.StripPrefix("/inbox/", svc), "inbox"))
2022-08-14 13:40:02 -06:00
mux.Handle("/.well-known/salty/", logz.Htrace(svc, "lookup"))
mux.Handle("/metrics", logz.PromHTTP(ctx))
2022-08-10 19:18:42 -06:00
s.Handler = cors.AllowAll().Handler(mux)
2022-08-04 14:37:51 -06:00
log.Print("Listen on ", s.Addr)
g, ctx := errgroup.WithContext(ctx)
g.Go(s.ListenAndServe)
g.Go(func() error {
<-ctx.Done()
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
return s.Shutdown(ctx)
})
return g.Wait()
}
2022-08-06 09:52:36 -06:00
func env(name, defaultValue string) string {
if v := os.Getenv(name); v != "" {
log.Println("# ", name, " = ", v)
return v
}
return defaultValue
}