mirror of
https://github.com/azaion/satellite-provider.git
synced 2026-06-21 06:51:13 +00:00
61612044fb
Wrap up cycle 5 verification + documentation: - Steps 10/11 wrap-up reports (implementation_completeness + implementation_report) for the AZ-503-foundation + AZ-504 batch. - Step 12 test-spec sync: AZ-503-foundation/AZ-504 ACs appended; AZ-505 deferred ACs recorded. - Step 13 update-docs: architecture, data-model, glossary, module- layout, uav-tile-upload contract (v1.1.0), DataAccess + Services + Tests module docs synced; new common_uuidv5.md module doc. - Step 14 security audit: PASS_WITH_WARNINGS; 0 new Critical/High; 2 new Low informational (F1 flightId provenance, F2 pgcrypto deploy gap). - Step 15 performance test: PASS_WITH_INFRA_WARNINGS; PT-08 passed twice (AZ-504 fix verified); PT-01/02 failed due to recurring local Docker/colima DNS cold-start (not an app regression). Cycle-3 perf-harness leftover stays OPEN with replay #5 documented. - Autodev state moved to Step 16 (Deploy). Co-authored-by: Cursor <cursoragent@cursor.com>
3.5 KiB
3.5 KiB
Module: DataAccess/DatabaseMigrator
Purpose
Runs DbUp-based SQL migrations against PostgreSQL on application startup. Ensures the database schema is up to date before the API begins serving requests.
Public Interface
DatabaseMigrator
- Constructor:
DatabaseMigrator(string connectionString, ILogger<DatabaseMigrator>? logger) RunMigrations() → bool: creates the database if missing (EnsureDatabase.For.PostgresqlDatabase), then runs all embedded SQL scripts matching.Migrations.from the DataAccess assembly. Returnstrueon success.
Internal Logic
- Uses
DbUp.DeployChangesfluent API targeting PostgreSQL - Scripts are embedded resources filtered by path containing
.Migrations. - Logs to console via DbUp's built-in
LogToConsole() - On failure, logs the error and returns
false
Dependencies
- NuGet:
dbup-postgresql(6.0.3) Microsoft.Extensions.Logging- Embedded SQL resources from
SatelliteProvider.DataAccess/Migrations/
Consumers
Program.cs— instantiated directly (not via DI) and called during startup. If migration fails, the application throws and does not start.
Migrations (14 scripts)
001_CreateTilesTable.sql002_CreateRegionsTable.sql003_CreateIndexes.sql004_AddVersionColumn.sql005_CreateRoutesTables.sql006_AddStitchTilesToRegions.sql007_AddRouteMapFields.sql008_AddGeofenceFlagToRouteRegions.sql009_AddGeofencePolygonIndex.sql010_AddTilesZipToRoutes.sql011_AddTileCoordinates.sql012_DropTileVersionConstraint.sql— drops the legacy 5-col(latitude, longitude, tile_zoom, tile_size_meters, version)unique index, replaces with 4-colidx_tiles_unique_location(preparation for AZ-484).013_AddTileSourceAndCapturedAt.sql— AZ-484 multi-source tile storage. Transactional. Addssource(VARCHAR(32) NOT NULL DEFAULT 'google_maps') andcaptured_at(TIMESTAMP NOT NULL) columns; backfills existing rows withsource='google_maps',captured_at=created_at; dropsidx_tiles_unique_locationand creates 5-colidx_tiles_unique_location_sourceon(latitude, longitude, tile_zoom, tile_size_meters, source). Idempotent against partial replays.014_AddTileIdentityColumns.sql— AZ-503 tile-identity foundation. Transactional. Enables thepgcryptoextension (CREATE EXTENSION IF NOT EXISTS pgcrypto) for the in-migration SHA-1 digest. Addsflight_id(UUID NULL),location_hash(UUID — backfilled then set NOT NULL),content_sha256(BYTEA NULL),legacy_id(UUID NULL). Defines a transactionalpg_temp.uuidv5(namespace, name)PL/pgSQL function that mirrorsSatelliteProvider.Common.Utils.Uuidv5.Createbyte-for-byte, then backfillslocation_hash = pg_temp.uuidv5(TILE_NAMESPACE, '{tile_zoom}/{tile_x}/{tile_y}')andlegacy_id = idfor every pre-existing row. Drops AZ-484'sidx_tiles_unique_location_sourceand createsidx_tiles_unique_identityUNIQUE on(tile_zoom, tile_x, tile_y, tile_size_meters, source, COALESCE(flight_id, '00000000-0000-0000-0000-000000000000'::uuid))plus a non-uniqueidx_tiles_location_hashon(location_hash). Safe to replay on a partially-migrated database because column adds areIF NOT EXISTS-equivalent andpg_temp.uuidv5is deterministic — re-running yields the samelocation_hashvalues.
Configuration
Receives connection string directly as constructor parameter.
External Integrations
PostgreSQL — DDL operations via DbUp.
Security
None directly, but controls schema evolution.
Tests
No dedicated tests.