feat: implement battle replay module with database migrations, repository, and CRUD service endpoints
All checks were successful
Build and Release / release (push) Successful in 1m32s

This commit is contained in:
2026-05-17 22:25:48 +07:00
parent 94601dbe58
commit 374c3b4f47
19 changed files with 10169 additions and 26 deletions

View File

@@ -0,0 +1,49 @@
-- name: CreateBattleReplay :one
INSERT INTO battle_replays (
id, geometry_id, project_id, target_geometry_ids, detail
) VALUES (
COALESCE(sqlc.narg('id')::uuid, uuidv7()), $1, $2, $3, $4
)
RETURNING *;
-- name: GetBattleReplayById :one
SELECT *
FROM battle_replays
WHERE id = $1 AND is_deleted = false;
-- name: GetBattleReplaysByIDs :many
SELECT * FROM battle_replays WHERE id = ANY($1::uuid[]) AND is_deleted = false;
-- name: GetBattleReplaysByGeometryId :many
SELECT *
FROM battle_replays
WHERE geometry_id = $1 AND is_deleted = false;
-- name: GetBattleReplaysByGeometryIDs :many
SELECT *
FROM battle_replays
WHERE geometry_id = ANY($1::uuid[]) AND is_deleted = false;
-- name: GetBattleReplaysByProjectId :many
SELECT *
FROM battle_replays
WHERE project_id = $1 AND is_deleted = false;
-- name: UpdateBattleReplay :one
UPDATE battle_replays
SET
geometry_id = COALESCE(sqlc.narg('geometry_id'), geometry_id),
target_geometry_ids = COALESCE(sqlc.narg('target_geometry_ids'), target_geometry_ids),
detail = COALESCE(sqlc.narg('detail'), detail)
WHERE id = sqlc.arg('id') AND is_deleted = false
RETURNING *;
-- name: DeleteBattleReplay :exec
UPDATE battle_replays
SET is_deleted = true
WHERE id = $1;
-- name: DeleteBattleReplaysByIDs :exec
UPDATE battle_replays
SET is_deleted = true
WHERE id = ANY($1::uuid[]);