@astrojs/db 0.14.0 → 0.14.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_internal/core/utils.d.ts +2 -0
- package/dist/core/cli/commands/execute/index.js +2 -2
- package/dist/core/cli/commands/push/index.js +12 -5
- package/dist/core/cli/commands/shell/index.js +2 -3
- package/dist/core/cli/commands/verify/index.js +7 -3
- package/dist/core/cli/migration-queries.d.ts +2 -0
- package/dist/core/cli/migration-queries.js +1 -3
- package/dist/core/cli/print-help.js +1 -1
- package/dist/core/integration/index.js +11 -12
- package/dist/core/utils.d.ts +2 -0
- package/dist/core/utils.js +14 -1
- package/package.json +2 -2
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { type ManagedAppToken } from '@astrojs/studio';
|
|
1
2
|
import type { AstroConfig, AstroIntegration } from 'astro';
|
|
2
3
|
import './types.js';
|
|
3
4
|
export type VitePlugin = Required<AstroConfig['vite']>['plugins'][number];
|
|
@@ -7,6 +8,7 @@ export type RemoteDatabaseInfo = {
|
|
|
7
8
|
url: string;
|
|
8
9
|
};
|
|
9
10
|
export declare function getRemoteDatabaseInfo(): RemoteDatabaseInfo;
|
|
11
|
+
export declare function getManagedRemoteToken(token?: string, dbInfo?: RemoteDatabaseInfo): Promise<ManagedAppToken>;
|
|
10
12
|
export declare function getDbDirectoryUrl(root: URL | string): URL;
|
|
11
13
|
export declare function defineDbIntegration(integration: AstroIntegration): AstroIntegration;
|
|
12
14
|
export type Result<T> = {
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { existsSync } from "node:fs";
|
|
2
|
-
import { getManagedAppTokenOrExit } from "@astrojs/studio";
|
|
3
2
|
import { LibsqlError } from "@libsql/client";
|
|
4
3
|
import { green } from "kleur/colors";
|
|
5
4
|
import {
|
|
@@ -13,6 +12,7 @@ import {
|
|
|
13
12
|
getStudioVirtualModContents
|
|
14
13
|
} from "../../../integration/vite-plugin-db.js";
|
|
15
14
|
import { bundleFile, importBundledFile } from "../../../load-file.js";
|
|
15
|
+
import { getManagedRemoteToken } from "../../../utils.js";
|
|
16
16
|
async function cmd({
|
|
17
17
|
astroConfig,
|
|
18
18
|
dbConfig,
|
|
@@ -30,7 +30,7 @@ async function cmd({
|
|
|
30
30
|
}
|
|
31
31
|
let virtualModContents;
|
|
32
32
|
if (flags.remote) {
|
|
33
|
-
const appToken = await
|
|
33
|
+
const appToken = await getManagedRemoteToken(flags.token);
|
|
34
34
|
virtualModContents = getStudioVirtualModContents({
|
|
35
35
|
tables: dbConfig.tables ?? {},
|
|
36
36
|
appToken: appToken.token,
|
|
@@ -1,10 +1,12 @@
|
|
|
1
|
-
import { getManagedAppTokenOrExit } from "@astrojs/studio";
|
|
2
1
|
import { sql } from "drizzle-orm";
|
|
3
2
|
import prompts from "prompts";
|
|
4
3
|
import { createRemoteDatabaseClient } from "../../../../runtime/index.js";
|
|
5
4
|
import { safeFetch } from "../../../../runtime/utils.js";
|
|
6
5
|
import { MIGRATION_VERSION } from "../../../consts.js";
|
|
7
|
-
import {
|
|
6
|
+
import {
|
|
7
|
+
getManagedRemoteToken,
|
|
8
|
+
getRemoteDatabaseInfo
|
|
9
|
+
} from "../../../utils.js";
|
|
8
10
|
import {
|
|
9
11
|
createCurrentSnapshot,
|
|
10
12
|
createEmptySnapshot,
|
|
@@ -18,8 +20,12 @@ async function cmd({
|
|
|
18
20
|
}) {
|
|
19
21
|
const isDryRun = flags.dryRun;
|
|
20
22
|
const isForceReset = flags.forceReset;
|
|
21
|
-
const
|
|
22
|
-
const
|
|
23
|
+
const dbInfo = getRemoteDatabaseInfo();
|
|
24
|
+
const appToken = await getManagedRemoteToken(flags.token, dbInfo);
|
|
25
|
+
const productionSnapshot = await getProductionCurrentSnapshot({
|
|
26
|
+
dbInfo,
|
|
27
|
+
appToken: appToken.token
|
|
28
|
+
});
|
|
23
29
|
const currentSnapshot = createCurrentSnapshot(dbConfig);
|
|
24
30
|
const isFromScratch = !productionSnapshot;
|
|
25
31
|
const { queries: migrationQueries, confirmations } = await getMigrationQueries({
|
|
@@ -54,6 +60,7 @@ async function cmd({
|
|
|
54
60
|
console.log(`Pushing database schema updates...`);
|
|
55
61
|
await pushSchema({
|
|
56
62
|
statements: migrationQueries,
|
|
63
|
+
dbInfo,
|
|
57
64
|
appToken: appToken.token,
|
|
58
65
|
isDryRun,
|
|
59
66
|
currentSnapshot
|
|
@@ -64,6 +71,7 @@ async function cmd({
|
|
|
64
71
|
}
|
|
65
72
|
async function pushSchema({
|
|
66
73
|
statements,
|
|
74
|
+
dbInfo,
|
|
67
75
|
appToken,
|
|
68
76
|
isDryRun,
|
|
69
77
|
currentSnapshot
|
|
@@ -77,7 +85,6 @@ async function pushSchema({
|
|
|
77
85
|
console.info("[DRY RUN] Batch query:", JSON.stringify(requestBody, null, 2));
|
|
78
86
|
return new Response(null, { status: 200 });
|
|
79
87
|
}
|
|
80
|
-
const dbInfo = getRemoteDatabaseInfo();
|
|
81
88
|
return dbInfo.type === "studio" ? pushToStudio(requestBody, appToken, dbInfo.url) : pushToDb(requestBody, appToken, dbInfo.url);
|
|
82
89
|
}
|
|
83
90
|
async function pushToDb(requestBody, appToken, remoteUrl) {
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { getManagedAppTokenOrExit } from "@astrojs/studio";
|
|
2
1
|
import { sql } from "drizzle-orm";
|
|
3
2
|
import {
|
|
4
3
|
createLocalDatabaseClient,
|
|
@@ -7,7 +6,7 @@ import {
|
|
|
7
6
|
import { normalizeDatabaseUrl } from "../../../../runtime/index.js";
|
|
8
7
|
import { DB_PATH } from "../../../consts.js";
|
|
9
8
|
import { SHELL_QUERY_MISSING_ERROR } from "../../../errors.js";
|
|
10
|
-
import { getAstroEnv, getRemoteDatabaseInfo } from "../../../utils.js";
|
|
9
|
+
import { getAstroEnv, getManagedRemoteToken, getRemoteDatabaseInfo } from "../../../utils.js";
|
|
11
10
|
async function cmd({
|
|
12
11
|
flags,
|
|
13
12
|
astroConfig
|
|
@@ -19,7 +18,7 @@ async function cmd({
|
|
|
19
18
|
}
|
|
20
19
|
const dbInfo = getRemoteDatabaseInfo();
|
|
21
20
|
if (flags.remote) {
|
|
22
|
-
const appToken = await
|
|
21
|
+
const appToken = await getManagedRemoteToken(flags.token, dbInfo);
|
|
23
22
|
const db = createRemoteDatabaseClient({
|
|
24
23
|
dbType: dbInfo.type,
|
|
25
24
|
remoteUrl: dbInfo.url,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { getManagedRemoteToken, getRemoteDatabaseInfo } from "../../../utils.js";
|
|
2
2
|
import {
|
|
3
3
|
createCurrentSnapshot,
|
|
4
4
|
createEmptySnapshot,
|
|
@@ -11,8 +11,12 @@ async function cmd({
|
|
|
11
11
|
flags
|
|
12
12
|
}) {
|
|
13
13
|
const isJson = flags.json;
|
|
14
|
-
const
|
|
15
|
-
const
|
|
14
|
+
const dbInfo = getRemoteDatabaseInfo();
|
|
15
|
+
const appToken = await getManagedRemoteToken(flags.token, dbInfo);
|
|
16
|
+
const productionSnapshot = await getProductionCurrentSnapshot({
|
|
17
|
+
dbInfo,
|
|
18
|
+
appToken: appToken.token
|
|
19
|
+
});
|
|
16
20
|
const currentSnapshot = createCurrentSnapshot(dbConfig);
|
|
17
21
|
const { queries: migrationQueries, confirmations } = await getMigrationQueries({
|
|
18
22
|
oldSnapshot: productionSnapshot || createEmptySnapshot(),
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { DBConfig, DBSnapshot, ResolvedDBTable } from '../types.js';
|
|
2
|
+
import type { RemoteDatabaseInfo } from '../utils.js';
|
|
2
3
|
export declare function getMigrationQueries({ oldSnapshot, newSnapshot, reset, }: {
|
|
3
4
|
oldSnapshot: DBSnapshot;
|
|
4
5
|
newSnapshot: DBSnapshot;
|
|
@@ -16,6 +17,7 @@ export declare function getTableChangeQueries({ tableName, oldTable, newTable, }
|
|
|
16
17
|
confirmations: string[];
|
|
17
18
|
}>;
|
|
18
19
|
export declare function getProductionCurrentSnapshot(options: {
|
|
20
|
+
dbInfo: RemoteDatabaseInfo;
|
|
19
21
|
appToken: string;
|
|
20
22
|
}): Promise<DBSnapshot | undefined>;
|
|
21
23
|
export declare function createCurrentSnapshot({ tables }: DBConfig): DBSnapshot;
|
|
@@ -20,7 +20,6 @@ import {
|
|
|
20
20
|
schemaTypeToSqlType
|
|
21
21
|
} from "../queries.js";
|
|
22
22
|
import { columnSchema } from "../schemas.js";
|
|
23
|
-
import { getRemoteDatabaseInfo } from "../utils.js";
|
|
24
23
|
const sqlite = new SQLiteAsyncDialect();
|
|
25
24
|
const genTempTableName = customAlphabet("abcdefghijklmnopqrstuvwxyz", 10);
|
|
26
25
|
async function getMigrationQueries({
|
|
@@ -305,8 +304,7 @@ function hasRuntimeDefault(column) {
|
|
|
305
304
|
return !!(column.schema.default && isSerializedSQL(column.schema.default));
|
|
306
305
|
}
|
|
307
306
|
function getProductionCurrentSnapshot(options) {
|
|
308
|
-
|
|
309
|
-
return dbInfo.type === "studio" ? getStudioCurrentSnapshot(options.appToken, dbInfo.url) : getDbCurrentSnapshot(options.appToken, dbInfo.url);
|
|
307
|
+
return options.dbInfo.type === "studio" ? getStudioCurrentSnapshot(options.appToken, options.dbInfo.url) : getDbCurrentSnapshot(options.appToken, options.dbInfo.url);
|
|
310
308
|
}
|
|
311
309
|
async function getDbCurrentSnapshot(appToken, remoteUrl) {
|
|
312
310
|
const client = createRemoteDatabaseClient({
|
|
@@ -2,7 +2,6 @@ import { existsSync } from "node:fs";
|
|
|
2
2
|
import { mkdir, writeFile } from "node:fs/promises";
|
|
3
3
|
import { dirname } from "node:path";
|
|
4
4
|
import { fileURLToPath } from "node:url";
|
|
5
|
-
import { getManagedAppTokenOrExit } from "@astrojs/studio";
|
|
6
5
|
import { LibsqlError } from "@libsql/client";
|
|
7
6
|
import { blue, yellow } from "kleur/colors";
|
|
8
7
|
import {
|
|
@@ -16,7 +15,7 @@ import { CONFIG_FILE_NAMES, DB_PATH } from "../consts.js";
|
|
|
16
15
|
import { EXEC_DEFAULT_EXPORT_ERROR, EXEC_ERROR } from "../errors.js";
|
|
17
16
|
import { resolveDbConfig } from "../load-file.js";
|
|
18
17
|
import { SEED_DEV_FILE_NAME } from "../queries.js";
|
|
19
|
-
import { getDbDirectoryUrl } from "../utils.js";
|
|
18
|
+
import { getDbDirectoryUrl, getManagedRemoteToken } from "../utils.js";
|
|
20
19
|
import { fileURLIntegration } from "./file-url.js";
|
|
21
20
|
import { getDtsContent } from "./typegen.js";
|
|
22
21
|
import {
|
|
@@ -24,7 +23,7 @@ import {
|
|
|
24
23
|
vitePluginDb
|
|
25
24
|
} from "./vite-plugin-db.js";
|
|
26
25
|
function astroDBIntegration() {
|
|
27
|
-
let
|
|
26
|
+
let connectToRemote = false;
|
|
28
27
|
let configFileDependencies = [];
|
|
29
28
|
let root;
|
|
30
29
|
let appToken;
|
|
@@ -57,11 +56,11 @@ function astroDBIntegration() {
|
|
|
57
56
|
if (command === "preview") return;
|
|
58
57
|
let dbPlugin = void 0;
|
|
59
58
|
const args = parseArgs(process.argv.slice(3));
|
|
60
|
-
|
|
61
|
-
if (
|
|
62
|
-
appToken = await
|
|
59
|
+
connectToRemote = process.env.ASTRO_INTERNAL_TEST_REMOTE || args["remote"];
|
|
60
|
+
if (connectToRemote) {
|
|
61
|
+
appToken = await getManagedRemoteToken();
|
|
63
62
|
dbPlugin = vitePluginDb({
|
|
64
|
-
connectToStudio,
|
|
63
|
+
connectToStudio: connectToRemote,
|
|
65
64
|
appToken: appToken.token,
|
|
66
65
|
tables,
|
|
67
66
|
root: config.root,
|
|
@@ -95,7 +94,7 @@ function astroDBIntegration() {
|
|
|
95
94
|
seedFiles.get = () => integrationSeedPaths;
|
|
96
95
|
configFileDependencies = dependencies;
|
|
97
96
|
const localDbUrl = new URL(DB_PATH, config.root);
|
|
98
|
-
if (!
|
|
97
|
+
if (!connectToRemote && !existsSync(localDbUrl)) {
|
|
99
98
|
await mkdir(dirname(fileURLToPath(localDbUrl)), { recursive: true });
|
|
100
99
|
await writeFile(localDbUrl, "");
|
|
101
100
|
}
|
|
@@ -120,9 +119,9 @@ function astroDBIntegration() {
|
|
|
120
119
|
});
|
|
121
120
|
setTimeout(() => {
|
|
122
121
|
logger.info(
|
|
123
|
-
|
|
122
|
+
connectToRemote ? "Connected to remote database." : "New local database created."
|
|
124
123
|
);
|
|
125
|
-
if (
|
|
124
|
+
if (connectToRemote) return;
|
|
126
125
|
const localSeedPaths = SEED_DEV_FILE_NAME.map(
|
|
127
126
|
(name) => new URL(name, getDbDirectoryUrl(root))
|
|
128
127
|
);
|
|
@@ -134,12 +133,12 @@ function astroDBIntegration() {
|
|
|
134
133
|
}, 100);
|
|
135
134
|
},
|
|
136
135
|
"astro:build:start": async ({ logger }) => {
|
|
137
|
-
if (!
|
|
136
|
+
if (!connectToRemote && !databaseFileEnvDefined() && (output === "server" || output === "hybrid")) {
|
|
138
137
|
const message = `Attempting to build without the --remote flag or the ASTRO_DATABASE_FILE environment variable defined. You probably want to pass --remote to astro build.`;
|
|
139
138
|
const hint = "Learn more connecting to Studio: https://docs.astro.build/en/guides/astro-db/#connect-to-astro-studio";
|
|
140
139
|
throw new AstroDbError(message, hint);
|
|
141
140
|
}
|
|
142
|
-
logger.info("database: " + (
|
|
141
|
+
logger.info("database: " + (connectToRemote ? yellow("remote") : blue("local database.")));
|
|
143
142
|
},
|
|
144
143
|
"astro:build:setup": async ({ vite }) => {
|
|
145
144
|
tempViteServer = await getTempViteServer({ viteConfig: vite });
|
package/dist/core/utils.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { type ManagedAppToken } from '@astrojs/studio';
|
|
1
2
|
import type { AstroConfig, AstroIntegration } from 'astro';
|
|
2
3
|
import './types.js';
|
|
3
4
|
export type VitePlugin = Required<AstroConfig['vite']>['plugins'][number];
|
|
@@ -7,6 +8,7 @@ export type RemoteDatabaseInfo = {
|
|
|
7
8
|
url: string;
|
|
8
9
|
};
|
|
9
10
|
export declare function getRemoteDatabaseInfo(): RemoteDatabaseInfo;
|
|
11
|
+
export declare function getManagedRemoteToken(token?: string, dbInfo?: RemoteDatabaseInfo): Promise<ManagedAppToken>;
|
|
10
12
|
export declare function getDbDirectoryUrl(root: URL | string): URL;
|
|
11
13
|
export declare function defineDbIntegration(integration: AstroIntegration): AstroIntegration;
|
|
12
14
|
export type Result<T> = {
|
package/dist/core/utils.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { getAstroStudioEnv } from "@astrojs/studio";
|
|
1
|
+
import { getAstroStudioEnv, getManagedAppTokenOrExit } from "@astrojs/studio";
|
|
2
2
|
import { loadEnv } from "vite";
|
|
3
3
|
import "./types.js";
|
|
4
4
|
function getAstroEnv(envMode = "") {
|
|
@@ -23,6 +23,18 @@ function getRemoteDatabaseInfo() {
|
|
|
23
23
|
url: "https://db.services.astro.build"
|
|
24
24
|
};
|
|
25
25
|
}
|
|
26
|
+
function getManagedRemoteToken(token, dbInfo) {
|
|
27
|
+
dbInfo ??= getRemoteDatabaseInfo();
|
|
28
|
+
if (dbInfo.type === "studio") {
|
|
29
|
+
return getManagedAppTokenOrExit(token);
|
|
30
|
+
}
|
|
31
|
+
const astroEnv = getAstroEnv();
|
|
32
|
+
return Promise.resolve({
|
|
33
|
+
token: token ?? astroEnv.ASTRO_DB_APP_TOKEN,
|
|
34
|
+
renew: () => Promise.resolve(),
|
|
35
|
+
destroy: () => Promise.resolve()
|
|
36
|
+
});
|
|
37
|
+
}
|
|
26
38
|
function getDbDirectoryUrl(root) {
|
|
27
39
|
return new URL("db/", root);
|
|
28
40
|
}
|
|
@@ -38,6 +50,7 @@ export {
|
|
|
38
50
|
defineDbIntegration,
|
|
39
51
|
getAstroEnv,
|
|
40
52
|
getDbDirectoryUrl,
|
|
53
|
+
getManagedRemoteToken,
|
|
41
54
|
getRemoteDatabaseInfo,
|
|
42
55
|
mapObject
|
|
43
56
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@astrojs/db",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.1",
|
|
4
4
|
"description": "Add libSQL and Astro Studio support to your Astro site",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"cheerio": "1.0.0",
|
|
85
85
|
"typescript": "^5.5.4",
|
|
86
86
|
"vite": "^5.4.2",
|
|
87
|
-
"astro": "4.15.
|
|
87
|
+
"astro": "4.15.3",
|
|
88
88
|
"astro-scripts": "0.0.14"
|
|
89
89
|
},
|
|
90
90
|
"scripts": {
|