Quellcode durchsuchen

Merge pull request 'fix(db): grant app user permissions on players and games tables' (#5) from fix/db-permissions into main

main
jschoubben vor 1 Monat
Ursprung
Commit
eab696ce42
1 geänderte Dateien mit 29 neuen und 0 gelöschten Zeilen
  1. +29
    -0
      migrations/provision/postgres/001-grant-permissions.ts

+ 29
- 0
migrations/provision/postgres/001-grant-permissions.ts Datei anzeigen

@@ -0,0 +1,29 @@
import pg from "pg";

const client = new pg.Client({
host: process.env.PROVISION_HOST,
port: parseInt(process.env.PROVISION_PORT ?? "5432"),
user: process.env.PROVISION_USER,
password: process.env.PROVISION_PASSWORD,
database: process.env.PROVISION_DATABASE,
});

await client.connect();

try {
// The HAL postgres provisioner names the app user identically to the database.
// PROVISION_DATABASE = "txt_game_scores" = the app user that server.mjs connects as.
const appUser = process.env.PROVISION_DATABASE as string;

await client.query(
`GRANT SELECT, INSERT, UPDATE ON TABLE players, games TO "${appUser}"`
);

await client.query(
`GRANT USAGE, SELECT ON SEQUENCE games_id_seq TO "${appUser}"`
);

console.log(`[txt-game migration-001] permissions granted to ${appUser}`);
} finally {
await client.end();
}

Laden…
Abbrechen
Speichern