157 lines
4.5 KiB
Go
157 lines
4.5 KiB
Go
// Package retrystartgame implements the `lobby.game.retry_start` message
|
|
// type. It transitions a `start_failed` game back to `ready_to_start` so
|
|
// the admin or owner can issue a fresh start command. Membership and
|
|
// race name reservations are not touched; the rebuilt start sequence
|
|
// runs against the same roster.
|
|
package retrystartgame
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"log/slog"
|
|
"time"
|
|
|
|
"galaxy/lobby/internal/domain/common"
|
|
"galaxy/lobby/internal/domain/game"
|
|
"galaxy/lobby/internal/logging"
|
|
"galaxy/lobby/internal/ports"
|
|
"galaxy/lobby/internal/service/shared"
|
|
"galaxy/lobby/internal/telemetry"
|
|
)
|
|
|
|
// Service executes the retry-start use case.
|
|
type Service struct {
|
|
games ports.GameStore
|
|
clock func() time.Time
|
|
logger *slog.Logger
|
|
telemetry *telemetry.Runtime
|
|
}
|
|
|
|
// Dependencies groups the collaborators used by Service.
|
|
type Dependencies struct {
|
|
// Games mediates the CAS status transition and the result read.
|
|
Games ports.GameStore
|
|
|
|
// Clock supplies the wall-clock used for UpdatedAt. Defaults to
|
|
// time.Now when nil.
|
|
Clock func() time.Time
|
|
|
|
// Logger records structured service-level events. Defaults to
|
|
// slog.Default when nil.
|
|
Logger *slog.Logger
|
|
|
|
// Telemetry records the `lobby.game.transitions` counter on each
|
|
// successful retry. Optional; nil disables metric emission.
|
|
Telemetry *telemetry.Runtime
|
|
}
|
|
|
|
// NewService constructs one Service with deps.
|
|
func NewService(deps Dependencies) (*Service, error) {
|
|
if deps.Games == nil {
|
|
return nil, errors.New("new retry start game service: nil game store")
|
|
}
|
|
|
|
clock := deps.Clock
|
|
if clock == nil {
|
|
clock = time.Now
|
|
}
|
|
logger := deps.Logger
|
|
if logger == nil {
|
|
logger = slog.Default()
|
|
}
|
|
|
|
return &Service{
|
|
games: deps.Games,
|
|
clock: clock,
|
|
logger: logger.With("service", "lobby.retrystartgame"),
|
|
telemetry: deps.Telemetry,
|
|
}, nil
|
|
}
|
|
|
|
// Input stores the arguments required to retry-start one game.
|
|
type Input struct {
|
|
// Actor identifies the caller.
|
|
Actor shared.Actor
|
|
|
|
// GameID identifies the target game record.
|
|
GameID common.GameID
|
|
}
|
|
|
|
// Handle authorizes the actor, asserts the source status is
|
|
// `start_failed`, transitions the record to `ready_to_start`, and
|
|
// returns the post-transition snapshot.
|
|
func (service *Service) Handle(ctx context.Context, input Input) (game.Game, error) {
|
|
if service == nil {
|
|
return game.Game{}, errors.New("retry start game: nil service")
|
|
}
|
|
if ctx == nil {
|
|
return game.Game{}, errors.New("retry start game: nil context")
|
|
}
|
|
if err := input.Actor.Validate(); err != nil {
|
|
return game.Game{}, fmt.Errorf("retry start game: actor: %w", err)
|
|
}
|
|
if err := input.GameID.Validate(); err != nil {
|
|
return game.Game{}, fmt.Errorf("retry start game: %w", err)
|
|
}
|
|
|
|
record, err := service.games.Get(ctx, input.GameID)
|
|
if err != nil {
|
|
return game.Game{}, fmt.Errorf("retry start game: %w", err)
|
|
}
|
|
if err := authorize(input.Actor, record); err != nil {
|
|
return game.Game{}, err
|
|
}
|
|
if record.Status != game.StatusStartFailed {
|
|
return game.Game{}, fmt.Errorf(
|
|
"retry start game: status %q is not %q: %w",
|
|
record.Status, game.StatusStartFailed, game.ErrConflict,
|
|
)
|
|
}
|
|
|
|
at := service.clock().UTC()
|
|
if err := service.games.UpdateStatus(ctx, ports.UpdateStatusInput{
|
|
GameID: input.GameID,
|
|
ExpectedFrom: game.StatusStartFailed,
|
|
To: game.StatusReadyToStart,
|
|
Trigger: game.TriggerCommand,
|
|
At: at,
|
|
}); err != nil {
|
|
return game.Game{}, fmt.Errorf("retry start game: %w", err)
|
|
}
|
|
|
|
service.telemetry.RecordGameTransition(ctx,
|
|
string(game.StatusStartFailed),
|
|
string(game.StatusReadyToStart),
|
|
string(game.TriggerCommand),
|
|
)
|
|
|
|
updated, err := service.games.Get(ctx, input.GameID)
|
|
if err != nil {
|
|
return game.Game{}, fmt.Errorf("retry start game: %w", err)
|
|
}
|
|
|
|
logArgs := []any{
|
|
"game_id", updated.GameID.String(),
|
|
"from_status", string(game.StatusStartFailed),
|
|
"to_status", string(updated.Status),
|
|
"trigger", string(game.TriggerCommand),
|
|
"actor_kind", string(input.Actor.Kind),
|
|
}
|
|
logArgs = append(logArgs, logging.ContextAttrs(ctx)...)
|
|
service.logger.InfoContext(ctx, "game retry start requested", logArgs...)
|
|
return updated, nil
|
|
}
|
|
|
|
// authorize enforces admin OR private-owner access to the record.
|
|
func authorize(actor shared.Actor, record game.Game) error {
|
|
if actor.IsAdmin() {
|
|
return nil
|
|
}
|
|
if record.GameType == game.GameTypePrivate && actor.UserID == record.OwnerUserID {
|
|
return nil
|
|
}
|
|
return fmt.Errorf("%w: actor is not authorized to retry start game %q",
|
|
shared.ErrForbidden, record.GameID.String())
|
|
}
|