8565942392
Serve the whole stack behind one host: site at /, game UI at /game/, gateway REST at /api + /healthz, Connect at /rpc (prefix stripped by the edge Caddy). The built artifact is domain-agnostic — the UI talks to the gateway same-origin via relative URLs, so the same bundle runs under any host with no rebuild and with CORS disabled. - Rename the Connect proto service galaxy.gateway.v1.EdgeGateway -> edge.v1.Gateway; regenerate Go + TS; public path /rpc/edge.v1.Gateway. - Move the game UI under base path /game (env BASE_PATH); make the manifest, service-worker scope, WASM loader, and all navigation base-aware via a withBase helper. - Relative API + /rpc Connect prefix; Vite dev proxy mirrors the strip. - Rewrite the edge Caddy (dev + prod) for path-based routing; empty CORS allow-lists (same-origin); single host. - New VitePress project site (site/): i18n en/ru with switcher, LaTeX math, minimal monospace theme; built and served at /. - dev-deploy compose/Makefile + CI (dev-deploy, prod-build, new site-build) build and seed the site; probes hit /, /game/, /healthz. - Sync docs (ARCHITECTURE, gateway README/openapi, dev-deploy & local-dev READMEs, CLAUDE.md, ui/PLAN). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
96 lines
3.1 KiB
Go
96 lines
3.1 KiB
Go
package grpcapi
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"time"
|
|
|
|
"galaxy/gateway/internal/clock"
|
|
"galaxy/gateway/internal/replay"
|
|
edgev1 "galaxy/gateway/proto/edge/v1"
|
|
|
|
"google.golang.org/grpc"
|
|
"google.golang.org/grpc/codes"
|
|
"google.golang.org/grpc/status"
|
|
)
|
|
|
|
const minimumReplayReservationTTL = time.Millisecond
|
|
|
|
// freshnessAndReplayService applies freshness and anti-replay checks after
|
|
// client-signature verification and before later policy or routing steps run.
|
|
type freshnessAndReplayService struct {
|
|
edgev1.UnimplementedGatewayServer
|
|
|
|
delegate edgev1.GatewayServer
|
|
clock clock.Clock
|
|
replayStore replay.Store
|
|
freshnessWindow time.Duration
|
|
}
|
|
|
|
// ExecuteCommand verifies request freshness and replay protection before
|
|
// delegating to the configured service implementation.
|
|
func (s freshnessAndReplayService) ExecuteCommand(ctx context.Context, req *edgev1.ExecuteCommandRequest) (*edgev1.ExecuteCommandResponse, error) {
|
|
if err := s.verifyFreshnessAndReplay(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return s.delegate.ExecuteCommand(ctx, req)
|
|
}
|
|
|
|
// SubscribeEvents verifies request freshness and replay protection before
|
|
// delegating to the configured service implementation.
|
|
func (s freshnessAndReplayService) SubscribeEvents(req *edgev1.SubscribeEventsRequest, stream grpc.ServerStreamingServer[edgev1.GatewayEvent]) error {
|
|
if err := s.verifyFreshnessAndReplay(stream.Context()); err != nil {
|
|
return err
|
|
}
|
|
|
|
return s.delegate.SubscribeEvents(req, stream)
|
|
}
|
|
|
|
// newFreshnessAndReplayService wraps delegate with the freshness and replay
|
|
// gate.
|
|
func newFreshnessAndReplayService(delegate edgev1.GatewayServer, clk clock.Clock, replayStore replay.Store, freshnessWindow time.Duration) edgev1.GatewayServer {
|
|
return freshnessAndReplayService{
|
|
delegate: delegate,
|
|
clock: clk,
|
|
replayStore: replayStore,
|
|
freshnessWindow: freshnessWindow,
|
|
}
|
|
}
|
|
|
|
func (s freshnessAndReplayService) verifyFreshnessAndReplay(ctx context.Context) error {
|
|
envelope, ok := parsedEnvelopeFromContext(ctx)
|
|
if !ok {
|
|
return status.Error(codes.Internal, "authenticated request context is incomplete")
|
|
}
|
|
|
|
now := s.clock.Now().UTC()
|
|
requestTime := time.UnixMilli(envelope.TimestampMS).UTC()
|
|
if requestTime.Before(now.Add(-s.freshnessWindow)) || requestTime.After(now.Add(s.freshnessWindow)) {
|
|
return status.Error(codes.FailedPrecondition, "request timestamp is outside the freshness window")
|
|
}
|
|
|
|
ttl := requestTime.Add(s.freshnessWindow).Sub(now)
|
|
if ttl < minimumReplayReservationTTL {
|
|
ttl = minimumReplayReservationTTL
|
|
}
|
|
|
|
err := s.replayStore.Reserve(ctx, envelope.DeviceSessionID, envelope.RequestID, ttl)
|
|
switch {
|
|
case err == nil:
|
|
return nil
|
|
case errors.Is(err, replay.ErrDuplicate):
|
|
return status.Error(codes.FailedPrecondition, "request replay detected")
|
|
default:
|
|
return status.Error(codes.Unavailable, "replay store is unavailable")
|
|
}
|
|
}
|
|
|
|
type unavailableReplayStore struct{}
|
|
|
|
func (unavailableReplayStore) Reserve(context.Context, string, string, time.Duration) error {
|
|
return errors.New("replay store is unavailable")
|
|
}
|
|
|
|
var _ edgev1.GatewayServer = freshnessAndReplayService{}
|