mirror of
https://github.com/bknd-io/bknd/
synced 2026-08-02 16:16:02 +00:00
Compare commits
68 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7a046fa18e | |||
| 786d1d1bd4 | |||
| c384bf4dd4 | |||
| db2a994a01 | |||
| 166ea4a71b | |||
| 0d3bb3b7d6 | |||
| cfbec5b6ea | |||
| 957355c862 | |||
| fc282b795e | |||
| bc65f5f311 | |||
| 5355f2593e | |||
| e939debba5 | |||
| b35ee36fb1 | |||
| 109c72e84f | |||
| 7e0b02a125 | |||
| d4076803c6 | |||
| a5959acb34 | |||
| a4ddf780ce | |||
| 2f684765de | |||
| 5143ee5726 | |||
| 22b54862e8 | |||
| fe1716ed01 | |||
| 0c31dcdb95 | |||
| 4cc0f8e172 | |||
| 45138c25f0 | |||
| 80034b9b0a | |||
| e6ee75c712 | |||
| 56287eb05e | |||
| 144f35ec66 | |||
| d1378c6c51 | |||
| 4e10b36d0d | |||
| 70737c04cd | |||
| d41fd5541f | |||
| e76e3531d7 | |||
| a9f3a582eb | |||
| 57ae2f333c | |||
| c161a26ec0 | |||
| 6e78a4c238 | |||
| 42edce904f | |||
| b2086c4da7 | |||
| 344d729320 | |||
| c86f4c12b7 | |||
| aaa97ed113 | |||
| 69c8aec6fb | |||
| f5ceffd80e | |||
| a9f367aa2c | |||
| b87696a0db | |||
| 3338804c34 | |||
| 6b3ac9e6e2 | |||
| 8e1ecfcfe3 | |||
| 6e2596fb77 | |||
| 2ada4e9f20 | |||
| cc038a0a9a | |||
| af6d1960b9 | |||
| 96ae8f9d63 | |||
| c09d1d53b3 | |||
| 2239333f08 | |||
| 0710b5bf1f | |||
| 03c4c41d2d | |||
| 85d8542a2e | |||
| f8d2a9090e | |||
| bbb7bfb7a1 | |||
| 28e277afe1 | |||
| 8517c9b90b | |||
| fe5ccd4206 | |||
| 8b4b63b3cd | |||
| 046c1d21b1 | |||
| 6c2e579596 |
@@ -12,6 +12,11 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Setup Node.js
|
||||||
|
uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: "22.x"
|
||||||
|
|
||||||
- name: Setup Bun
|
- name: Setup Bun
|
||||||
uses: oven-sh/setup-bun@v1
|
uses: oven-sh/setup-bun@v1
|
||||||
with:
|
with:
|
||||||
|
|||||||
@@ -9,10 +9,18 @@
|
|||||||
</p>
|
</p>
|
||||||
|
|
||||||
bknd simplifies app development by providing a fully functional backend for database management, authentication, media and workflows. Being lightweight and built on Web Standards, it can be deployed nearly anywhere, including running inside your framework of choice. No more deploying multiple separate services!
|
bknd simplifies app development by providing a fully functional backend for database management, authentication, media and workflows. Being lightweight and built on Web Standards, it can be deployed nearly anywhere, including running inside your framework of choice. No more deploying multiple separate services!
|
||||||
|
* **Runtimes**: Node.js 22+, Bun 1.0+, Deno, Browser, Cloudflare Workers/Pages, Vercel, Netlify, AWS Lambda, etc.
|
||||||
|
* **Databases**:
|
||||||
|
* SQLite: LibSQL, Node SQLite, Bun SQLite, Cloudflare D1, Cloudflare Durable Objects SQLite, SQLocal
|
||||||
|
* Postgres: Vanilla Postgres, Supabase, Neon, Xata
|
||||||
|
* **Frameworks**: React, Next.js, React Router, Astro, Vite, Waku
|
||||||
|
* **Storage**: AWS S3, S3-compatible (Tigris, R2, Minio, etc.), Cloudflare R2 (binding), Cloudinary, Filesystem
|
||||||
|
|
||||||
**For documentation and examples, please visit https://docs.bknd.io.**
|
**For documentation and examples, please visit https://docs.bknd.io.**
|
||||||
|
|
||||||
> [!WARNING]
|
> [!WARNING]
|
||||||
|
> This project requires Node.js 22 or higher (because of `node:sqlite`).
|
||||||
|
>
|
||||||
> Please keep in mind that **bknd** is still under active development
|
> Please keep in mind that **bknd** is still under active development
|
||||||
> and therefore full backward compatibility is not guaranteed before reaching v1.0.0.
|
> and therefore full backward compatibility is not guaranteed before reaching v1.0.0.
|
||||||
|
|
||||||
|
|||||||
+130
-12
@@ -1,6 +1,9 @@
|
|||||||
import { afterAll, afterEach, describe, expect, test } from "bun:test";
|
import { afterEach, describe, test, expect } from "bun:test";
|
||||||
import { App } from "../src";
|
import { App, createApp } from "core/test/utils";
|
||||||
import { getDummyConnection } from "./helper";
|
import { getDummyConnection } from "./helper";
|
||||||
|
import { Hono } from "hono";
|
||||||
|
import * as proto from "../src/data/prototype";
|
||||||
|
import { pick } from "lodash-es";
|
||||||
|
|
||||||
const { dummyConnection, afterAllCleanup } = getDummyConnection();
|
const { dummyConnection, afterAllCleanup } = getDummyConnection();
|
||||||
afterEach(afterAllCleanup);
|
afterEach(afterAllCleanup);
|
||||||
@@ -10,18 +13,133 @@ describe("App tests", async () => {
|
|||||||
const app = new App(dummyConnection);
|
const app = new App(dummyConnection);
|
||||||
await app.build();
|
await app.build();
|
||||||
|
|
||||||
//expect(await app.data?.em.ping()).toBeTrue();
|
expect(await app.em.ping()).toBeTrue();
|
||||||
});
|
});
|
||||||
|
|
||||||
/*test.only("what", async () => {
|
test("plugins", async () => {
|
||||||
const app = new App(dummyConnection, {
|
const called: string[] = [];
|
||||||
auth: {
|
const app = createApp({
|
||||||
enabled: true,
|
initialConfig: {
|
||||||
|
auth: {
|
||||||
|
enabled: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
options: {
|
||||||
|
plugins: [
|
||||||
|
(app) => {
|
||||||
|
expect(app).toBeDefined();
|
||||||
|
expect(app).toBeInstanceOf(App);
|
||||||
|
return {
|
||||||
|
name: "test",
|
||||||
|
schema: () => {
|
||||||
|
called.push("schema");
|
||||||
|
return proto.em(
|
||||||
|
{
|
||||||
|
posts: proto.entity("posts", {
|
||||||
|
title: proto.text(),
|
||||||
|
}),
|
||||||
|
comments: proto.entity("comments", {
|
||||||
|
content: proto.text(),
|
||||||
|
}),
|
||||||
|
users: proto.entity("users", {
|
||||||
|
email_verified: proto.boolean(),
|
||||||
|
}),
|
||||||
|
},
|
||||||
|
(fn, s) => {
|
||||||
|
fn.relation(s.comments).manyToOne(s.posts);
|
||||||
|
fn.index(s.posts).on(["title"]);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
},
|
||||||
|
onBoot: async () => {
|
||||||
|
called.push("onBoot");
|
||||||
|
},
|
||||||
|
beforeBuild: async () => {
|
||||||
|
called.push("beforeBuild");
|
||||||
|
},
|
||||||
|
onBuilt: async () => {
|
||||||
|
called.push("onBuilt");
|
||||||
|
},
|
||||||
|
onServerInit: async (server) => {
|
||||||
|
called.push("onServerInit");
|
||||||
|
expect(server).toBeDefined();
|
||||||
|
expect(server).toBeInstanceOf(Hono);
|
||||||
|
},
|
||||||
|
onFirstBoot: async () => {
|
||||||
|
called.push("onFirstBoot");
|
||||||
|
},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
],
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
await app.module.auth.build();
|
|
||||||
await app.module.data.build();
|
await app.build();
|
||||||
console.log(app.em.entities.map((e) => e.name));
|
|
||||||
console.log(await app.em.schema().getDiff());
|
expect(app.em.entities.map((e) => e.name)).toEqual(["users", "posts", "comments"]);
|
||||||
});*/
|
expect(app.em.indices.map((i) => i.name)).toEqual([
|
||||||
|
"idx_unique_users_email",
|
||||||
|
"idx_users_strategy",
|
||||||
|
"idx_users_strategy_value",
|
||||||
|
"idx_posts_title",
|
||||||
|
]);
|
||||||
|
expect(
|
||||||
|
app.em.relations.all.map((r) => pick(r.toJSON(), ["type", "source", "target"])),
|
||||||
|
).toEqual([
|
||||||
|
{
|
||||||
|
type: "n:1",
|
||||||
|
source: "comments",
|
||||||
|
target: "posts",
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
expect(called).toEqual([
|
||||||
|
"onBoot",
|
||||||
|
"onServerInit",
|
||||||
|
"beforeBuild",
|
||||||
|
"onServerInit",
|
||||||
|
"schema",
|
||||||
|
"onFirstBoot",
|
||||||
|
"onBuilt",
|
||||||
|
]);
|
||||||
|
expect(app.plugins.size).toBe(1);
|
||||||
|
expect(Array.from(app.plugins.keys())).toEqual(["test"]);
|
||||||
|
});
|
||||||
|
|
||||||
|
test.only("drivers", async () => {
|
||||||
|
const called: string[] = [];
|
||||||
|
const app = new App(dummyConnection, undefined, {
|
||||||
|
drivers: {
|
||||||
|
email: {
|
||||||
|
send: async (to, subject, body) => {
|
||||||
|
called.push("email.send");
|
||||||
|
return {
|
||||||
|
id: "",
|
||||||
|
};
|
||||||
|
},
|
||||||
|
},
|
||||||
|
cache: {
|
||||||
|
get: async (key) => {
|
||||||
|
called.push("cache.get");
|
||||||
|
return "";
|
||||||
|
},
|
||||||
|
set: async (key, value, ttl) => {
|
||||||
|
called.push("cache.set");
|
||||||
|
},
|
||||||
|
del: async (key) => {
|
||||||
|
called.push("cache.del");
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
await app.build();
|
||||||
|
|
||||||
|
expect(app.drivers.cache).toBeDefined();
|
||||||
|
expect(app.drivers.email).toBeDefined();
|
||||||
|
await app.drivers.email.send("", "", "");
|
||||||
|
await app.drivers.cache.get("");
|
||||||
|
await app.drivers.cache.set("", "", 0);
|
||||||
|
await app.drivers.cache.del("");
|
||||||
|
|
||||||
|
expect(called).toEqual(["email.send", "cache.get", "cache.set", "cache.del"]);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -3,21 +3,36 @@ import * as adapter from "adapter";
|
|||||||
import { disableConsoleLog, enableConsoleLog } from "core/utils";
|
import { disableConsoleLog, enableConsoleLog } from "core/utils";
|
||||||
import { adapterTestSuite } from "adapter/adapter-test-suite";
|
import { adapterTestSuite } from "adapter/adapter-test-suite";
|
||||||
import { bunTestRunner } from "adapter/bun/test";
|
import { bunTestRunner } from "adapter/bun/test";
|
||||||
|
import { omitKeys } from "core/utils";
|
||||||
|
|
||||||
beforeAll(disableConsoleLog);
|
beforeAll(disableConsoleLog);
|
||||||
afterAll(enableConsoleLog);
|
afterAll(enableConsoleLog);
|
||||||
|
|
||||||
describe("adapter", () => {
|
describe("adapter", () => {
|
||||||
it("makes config", () => {
|
it("makes config", () => {
|
||||||
expect(adapter.makeConfig({})).toEqual({});
|
expect(omitKeys(adapter.makeConfig({}), ["connection"])).toEqual({});
|
||||||
expect(adapter.makeConfig({}, { env: { TEST: "test" } })).toEqual({});
|
expect(omitKeys(adapter.makeConfig({}, { env: { TEST: "test" } }), ["connection"])).toEqual(
|
||||||
|
{},
|
||||||
|
);
|
||||||
|
|
||||||
// merges everything returned from `app` with the config
|
// merges everything returned from `app` with the config
|
||||||
expect(adapter.makeConfig({ app: (a) => a as any }, { env: { TEST: "test" } })).toEqual({
|
expect(
|
||||||
env: { TEST: "test" },
|
omitKeys(
|
||||||
} as any);
|
adapter.makeConfig(
|
||||||
|
{ app: (a) => ({ initialConfig: { server: { cors: { origin: a.env.TEST } } } }) },
|
||||||
|
{ env: { TEST: "test" } },
|
||||||
|
),
|
||||||
|
["connection"],
|
||||||
|
),
|
||||||
|
).toEqual({
|
||||||
|
initialConfig: { server: { cors: { origin: "test" } } },
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
/* it.only("...", async () => {
|
||||||
|
const app = await adapter.createAdapterApp();
|
||||||
|
}); */
|
||||||
|
|
||||||
it("reuses apps correctly", async () => {
|
it("reuses apps correctly", async () => {
|
||||||
const id = crypto.randomUUID();
|
const id = crypto.randomUUID();
|
||||||
|
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
import { afterAll, beforeAll, describe, expect, it } from "bun:test";
|
import { afterAll, beforeAll, describe, expect, it } from "bun:test";
|
||||||
import { Guard } from "../../src/auth";
|
import { Guard } from "../../src/auth";
|
||||||
import { parse } from "../../src/core/utils";
|
|
||||||
import { DataApi } from "../../src/data/api/DataApi";
|
import { DataApi } from "../../src/data/api/DataApi";
|
||||||
import { DataController } from "../../src/data/api/DataController";
|
import { DataController } from "../../src/data/api/DataController";
|
||||||
import { dataConfigSchema } from "../../src/data/data-schema";
|
import { dataConfigSchema } from "../../src/data/data-schema";
|
||||||
import * as proto from "../../src/data/prototype";
|
import * as proto from "../../src/data/prototype";
|
||||||
import { schemaToEm } from "../helper";
|
import { schemaToEm } from "../helper";
|
||||||
import { disableConsoleLog, enableConsoleLog } from "core/utils/test";
|
import { disableConsoleLog, enableConsoleLog } from "core/utils/test";
|
||||||
|
import { parse } from "core/object/schema";
|
||||||
|
|
||||||
beforeAll(disableConsoleLog);
|
beforeAll(disableConsoleLog);
|
||||||
afterAll(enableConsoleLog);
|
afterAll(enableConsoleLog);
|
||||||
@@ -153,7 +153,7 @@ describe("DataApi", () => {
|
|||||||
const oneBy = api.readOneBy("posts", { where: { title: "baz" }, select: ["title"] });
|
const oneBy = api.readOneBy("posts", { where: { title: "baz" }, select: ["title"] });
|
||||||
const oneByRes = await oneBy;
|
const oneByRes = await oneBy;
|
||||||
expect(oneByRes.data).toEqual({ title: "baz" } as any);
|
expect(oneByRes.data).toEqual({ title: "baz" } as any);
|
||||||
expect(oneByRes.body.meta.count).toEqual(1);
|
expect(oneByRes.body.meta.items).toEqual(1);
|
||||||
});
|
});
|
||||||
|
|
||||||
it("exists/count", async () => {
|
it("exists/count", async () => {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import { describe, expect, mock, test } from "bun:test";
|
import { describe, expect, mock, test } from "bun:test";
|
||||||
import type { ModuleBuildContext } from "../../src";
|
import type { ModuleBuildContext } from "../../src";
|
||||||
import { App, createApp } from "../../src/App";
|
import { App, createApp } from "core/test/utils";
|
||||||
import * as proto from "../../src/data/prototype";
|
import * as proto from "../../src/data/prototype";
|
||||||
|
|
||||||
describe("App", () => {
|
describe("App", () => {
|
||||||
@@ -20,6 +20,7 @@ describe("App", () => {
|
|||||||
"guard",
|
"guard",
|
||||||
"flags",
|
"flags",
|
||||||
"logger",
|
"logger",
|
||||||
|
"helper",
|
||||||
]);
|
]);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -0,0 +1,35 @@
|
|||||||
|
import { AppServer, serverConfigSchema } from "modules/server/AppServer";
|
||||||
|
import { describe, test, expect } from "bun:test";
|
||||||
|
|
||||||
|
describe("AppServer", () => {
|
||||||
|
test("config", () => {
|
||||||
|
{
|
||||||
|
const server = new AppServer();
|
||||||
|
expect(server).toBeDefined();
|
||||||
|
expect(server.config).toEqual({
|
||||||
|
cors: {
|
||||||
|
origin: "*",
|
||||||
|
allow_methods: ["GET", "POST", "PATCH", "PUT", "DELETE"],
|
||||||
|
allow_headers: ["Content-Type", "Content-Length", "Authorization", "Accept"],
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
const server = new AppServer({
|
||||||
|
cors: {
|
||||||
|
origin: "https",
|
||||||
|
allow_methods: ["GET", "POST"],
|
||||||
|
},
|
||||||
|
});
|
||||||
|
expect(server).toBeDefined();
|
||||||
|
expect(server.config).toEqual({
|
||||||
|
cors: {
|
||||||
|
origin: "https",
|
||||||
|
allow_methods: ["GET", "POST"],
|
||||||
|
allow_headers: ["Content-Type", "Content-Length", "Authorization", "Accept"],
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
import { createApp, registries } from "../../src";
|
import { createApp } from "core/test/utils";
|
||||||
import * as proto from "../../src/data/prototype";
|
import * as proto from "../../src/data/prototype";
|
||||||
import { StorageLocalAdapter } from "adapter/node/storage/StorageLocalAdapter";
|
import { StorageLocalAdapter } from "adapter/node/storage/StorageLocalAdapter";
|
||||||
|
|
||||||
@@ -13,8 +13,8 @@ describe("repros", async () => {
|
|||||||
* There was an issue that AppData had old configs because of system entity "media"
|
* There was an issue that AppData had old configs because of system entity "media"
|
||||||
*/
|
*/
|
||||||
test("registers media entity correctly to relate to it", async () => {
|
test("registers media entity correctly to relate to it", async () => {
|
||||||
registries.media.register("local", StorageLocalAdapter);
|
|
||||||
const app = createApp();
|
const app = createApp();
|
||||||
|
app.module.media.adapters.set("local", StorageLocalAdapter);
|
||||||
await app.build();
|
await app.build();
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -2,8 +2,7 @@ import { describe, expect, test } from "bun:test";
|
|||||||
import { Authenticator, type User, type UserPool } from "../../src/auth";
|
import { Authenticator, type User, type UserPool } from "../../src/auth";
|
||||||
import { cookieConfig } from "../../src/auth/authenticate/Authenticator";
|
import { cookieConfig } from "../../src/auth/authenticate/Authenticator";
|
||||||
import { PasswordStrategy } from "../../src/auth/authenticate/strategies/PasswordStrategy";
|
import { PasswordStrategy } from "../../src/auth/authenticate/strategies/PasswordStrategy";
|
||||||
import * as hash from "../../src/auth/utils/hash";
|
import { parse } from "core/object/schema";
|
||||||
import { Default, parse } from "../../src/core/utils";
|
|
||||||
|
|
||||||
/*class MemoryUserPool implements UserPool {
|
/*class MemoryUserPool implements UserPool {
|
||||||
constructor(private users: User[] = []) {}
|
constructor(private users: User[] = []) {}
|
||||||
@@ -23,7 +22,7 @@ import { Default, parse } from "../../src/core/utils";
|
|||||||
describe("Authenticator", async () => {
|
describe("Authenticator", async () => {
|
||||||
test("cookie options", async () => {
|
test("cookie options", async () => {
|
||||||
console.log("parsed", parse(cookieConfig, undefined));
|
console.log("parsed", parse(cookieConfig, undefined));
|
||||||
console.log(Default(cookieConfig, {}));
|
console.log(cookieConfig.template({}));
|
||||||
});
|
});
|
||||||
/*const userpool = new MemoryUserPool([
|
/*const userpool = new MemoryUserPool([
|
||||||
{ id: 1, email: "d", username: "test", password: await hash.sha256("test") },
|
{ id: 1, email: "d", username: "test", password: await hash.sha256("test") },
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
import { type TObject, type TString, Type } from "@sinclair/typebox";
|
|
||||||
import { Registry } from "core";
|
import { Registry } from "core";
|
||||||
|
import { s } from "core/object/schema";
|
||||||
|
|
||||||
type Constructor<T> = new (...args: any[]) => T;
|
type Constructor<T> = new (...args: any[]) => T;
|
||||||
|
|
||||||
@@ -11,7 +11,7 @@ class What {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
getType() {
|
getType() {
|
||||||
return Type.Object({ type: Type.String() });
|
return s.object({ type: s.string() });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
class What2 extends What {}
|
class What2 extends What {}
|
||||||
@@ -19,7 +19,7 @@ class NotAllowed {}
|
|||||||
|
|
||||||
type Test1 = {
|
type Test1 = {
|
||||||
cls: new (...args: any[]) => What;
|
cls: new (...args: any[]) => What;
|
||||||
schema: TObject<{ type: TString }>;
|
schema: s.ObjectSchema<{ type: s.StringSchema }>;
|
||||||
enabled: boolean;
|
enabled: boolean;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -28,7 +28,7 @@ describe("Registry", () => {
|
|||||||
const registry = new Registry<Test1>().set({
|
const registry = new Registry<Test1>().set({
|
||||||
first: {
|
first: {
|
||||||
cls: What,
|
cls: What,
|
||||||
schema: Type.Object({ type: Type.String(), what: Type.String() }),
|
schema: s.object({ type: s.string(), what: s.string() }),
|
||||||
enabled: true,
|
enabled: true,
|
||||||
},
|
},
|
||||||
} satisfies Record<string, Test1>);
|
} satisfies Record<string, Test1>);
|
||||||
@@ -37,7 +37,7 @@ describe("Registry", () => {
|
|||||||
expect(item).toBeDefined();
|
expect(item).toBeDefined();
|
||||||
expect(item?.cls).toBe(What);
|
expect(item?.cls).toBe(What);
|
||||||
|
|
||||||
const second = Type.Object({ type: Type.String(), what: Type.String() });
|
const second = s.object({ type: s.string(), what: s.string() });
|
||||||
registry.add("second", {
|
registry.add("second", {
|
||||||
cls: What2,
|
cls: What2,
|
||||||
schema: second,
|
schema: second,
|
||||||
@@ -46,7 +46,7 @@ describe("Registry", () => {
|
|||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
expect(registry.get("second").schema).toEqual(second);
|
expect(registry.get("second").schema).toEqual(second);
|
||||||
|
|
||||||
const third = Type.Object({ type: Type.String({ default: "1" }), what22: Type.String() });
|
const third = s.object({ type: s.string({ default: "1" }), what22: s.string() });
|
||||||
registry.add("third", {
|
registry.add("third", {
|
||||||
// @ts-expect-error
|
// @ts-expect-error
|
||||||
cls: NotAllowed,
|
cls: NotAllowed,
|
||||||
@@ -56,7 +56,7 @@ describe("Registry", () => {
|
|||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
expect(registry.get("third").schema).toEqual(third);
|
expect(registry.get("third").schema).toEqual(third);
|
||||||
|
|
||||||
const fourth = Type.Object({ type: Type.Number(), what22: Type.String() });
|
const fourth = s.object({ type: s.number(), what22: s.string() });
|
||||||
registry.add("fourth", {
|
registry.add("fourth", {
|
||||||
cls: What,
|
cls: What,
|
||||||
// @ts-expect-error
|
// @ts-expect-error
|
||||||
@@ -81,6 +81,8 @@ describe("Registry", () => {
|
|||||||
registry.register("what2", What2);
|
registry.register("what2", What2);
|
||||||
expect(registry.get("what2")).toBeDefined();
|
expect(registry.get("what2")).toBeDefined();
|
||||||
expect(registry.get("what2").cls).toBe(What2);
|
expect(registry.get("what2").cls).toBe(What2);
|
||||||
expect(registry.get("what2").schema).toEqual(What2.prototype.getType());
|
expect(JSON.stringify(registry.get("what2").schema)).toEqual(
|
||||||
|
JSON.stringify(What2.prototype.getType()),
|
||||||
|
);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
import { SchemaObject } from "../../../src/core";
|
import { SchemaObject } from "../../../src/core";
|
||||||
import { Type } from "@sinclair/typebox";
|
import { s } from "core/object/schema";
|
||||||
|
|
||||||
describe("SchemaObject", async () => {
|
describe("SchemaObject", async () => {
|
||||||
test("basic", async () => {
|
test("basic", async () => {
|
||||||
const m = new SchemaObject(
|
const m = new SchemaObject(
|
||||||
Type.Object({ a: Type.String({ default: "b" }) }),
|
s.strictObject({ a: s.string({ default: "b" }) }),
|
||||||
{ a: "test" },
|
{ a: "test" },
|
||||||
{
|
{
|
||||||
forceParse: true,
|
forceParse: true,
|
||||||
@@ -23,19 +23,19 @@ describe("SchemaObject", async () => {
|
|||||||
|
|
||||||
test("patch", async () => {
|
test("patch", async () => {
|
||||||
const m = new SchemaObject(
|
const m = new SchemaObject(
|
||||||
Type.Object({
|
s.strictObject({
|
||||||
s: Type.Object(
|
s: s.strictObject(
|
||||||
{
|
{
|
||||||
a: Type.String({ default: "b" }),
|
a: s.string({ default: "b" }),
|
||||||
b: Type.Object(
|
b: s.strictObject(
|
||||||
{
|
{
|
||||||
c: Type.String({ default: "d" }),
|
c: s.string({ default: "d" }),
|
||||||
e: Type.String({ default: "f" }),
|
e: s.string({ default: "f" }),
|
||||||
},
|
},
|
||||||
{ default: {} },
|
{ default: {} },
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
{ default: {}, additionalProperties: false },
|
{ default: {} },
|
||||||
),
|
),
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
@@ -44,7 +44,7 @@ describe("SchemaObject", async () => {
|
|||||||
await m.patch("s.a", "c");
|
await m.patch("s.a", "c");
|
||||||
|
|
||||||
// non-existing path on no additional properties
|
// non-existing path on no additional properties
|
||||||
expect(() => m.patch("s.s.s", "c")).toThrow();
|
expect(m.patch("s.s.s", "c")).rejects.toThrow();
|
||||||
// wrong type
|
// wrong type
|
||||||
expect(() => m.patch("s.a", 1)).toThrow();
|
expect(() => m.patch("s.a", 1)).toThrow();
|
||||||
|
|
||||||
@@ -58,8 +58,8 @@ describe("SchemaObject", async () => {
|
|||||||
|
|
||||||
test("patch array", async () => {
|
test("patch array", async () => {
|
||||||
const m = new SchemaObject(
|
const m = new SchemaObject(
|
||||||
Type.Object({
|
s.strictObject({
|
||||||
methods: Type.Array(Type.String(), { default: ["GET", "PATCH"] }),
|
methods: s.array(s.string(), { default: ["GET", "PATCH"] }),
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
expect(m.get()).toEqual({ methods: ["GET", "PATCH"] });
|
expect(m.get()).toEqual({ methods: ["GET", "PATCH"] });
|
||||||
@@ -75,13 +75,13 @@ describe("SchemaObject", async () => {
|
|||||||
|
|
||||||
test("remove", async () => {
|
test("remove", async () => {
|
||||||
const m = new SchemaObject(
|
const m = new SchemaObject(
|
||||||
Type.Object({
|
s.object({
|
||||||
s: Type.Object(
|
s: s.object(
|
||||||
{
|
{
|
||||||
a: Type.String({ default: "b" }),
|
a: s.string({ default: "b" }),
|
||||||
b: Type.Object(
|
b: s.object(
|
||||||
{
|
{
|
||||||
c: Type.String({ default: "d" }),
|
c: s.string({ default: "d" }),
|
||||||
},
|
},
|
||||||
{ default: {} },
|
{ default: {} },
|
||||||
),
|
),
|
||||||
@@ -107,8 +107,8 @@ describe("SchemaObject", async () => {
|
|||||||
|
|
||||||
test("set", async () => {
|
test("set", async () => {
|
||||||
const m = new SchemaObject(
|
const m = new SchemaObject(
|
||||||
Type.Object({
|
s.strictObject({
|
||||||
methods: Type.Array(Type.String(), { default: ["GET", "PATCH"] }),
|
methods: s.array(s.string(), { default: ["GET", "PATCH"] }),
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
expect(m.get()).toEqual({ methods: ["GET", "PATCH"] });
|
expect(m.get()).toEqual({ methods: ["GET", "PATCH"] });
|
||||||
@@ -124,8 +124,8 @@ describe("SchemaObject", async () => {
|
|||||||
let called = false;
|
let called = false;
|
||||||
let result: any;
|
let result: any;
|
||||||
const m = new SchemaObject(
|
const m = new SchemaObject(
|
||||||
Type.Object({
|
s.strictObject({
|
||||||
methods: Type.Array(Type.String(), { default: ["GET", "PATCH"] }),
|
methods: s.array(s.string(), { default: ["GET", "PATCH"] }),
|
||||||
}),
|
}),
|
||||||
undefined,
|
undefined,
|
||||||
{
|
{
|
||||||
@@ -145,8 +145,8 @@ describe("SchemaObject", async () => {
|
|||||||
test("listener: onBeforeUpdate", async () => {
|
test("listener: onBeforeUpdate", async () => {
|
||||||
let called = false;
|
let called = false;
|
||||||
const m = new SchemaObject(
|
const m = new SchemaObject(
|
||||||
Type.Object({
|
s.strictObject({
|
||||||
methods: Type.Array(Type.String(), { default: ["GET", "PATCH"] }),
|
methods: s.array(s.string(), { default: ["GET", "PATCH"] }),
|
||||||
}),
|
}),
|
||||||
undefined,
|
undefined,
|
||||||
{
|
{
|
||||||
@@ -167,7 +167,7 @@ describe("SchemaObject", async () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
test("throwIfRestricted", async () => {
|
test("throwIfRestricted", async () => {
|
||||||
const m = new SchemaObject(Type.Object({}), undefined, {
|
const m = new SchemaObject(s.strictObject({}), undefined, {
|
||||||
restrictPaths: ["a.b"],
|
restrictPaths: ["a.b"],
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -179,13 +179,13 @@ describe("SchemaObject", async () => {
|
|||||||
|
|
||||||
test("restriction bypass", async () => {
|
test("restriction bypass", async () => {
|
||||||
const m = new SchemaObject(
|
const m = new SchemaObject(
|
||||||
Type.Object({
|
s.strictObject({
|
||||||
s: Type.Object(
|
s: s.strictObject(
|
||||||
{
|
{
|
||||||
a: Type.String({ default: "b" }),
|
a: s.string({ default: "b" }),
|
||||||
b: Type.Object(
|
b: s.strictObject(
|
||||||
{
|
{
|
||||||
c: Type.String({ default: "d" }),
|
c: s.string({ default: "d" }),
|
||||||
},
|
},
|
||||||
{ default: {} },
|
{ default: {} },
|
||||||
),
|
),
|
||||||
@@ -205,7 +205,21 @@ describe("SchemaObject", async () => {
|
|||||||
expect(m.get()).toEqual({ s: { a: "b", b: { c: "e" } } });
|
expect(m.get()).toEqual({ s: { a: "b", b: { c: "e" } } });
|
||||||
});
|
});
|
||||||
|
|
||||||
const dataEntitiesSchema = Type.Object(
|
const dataEntitiesSchema = s.strictObject({
|
||||||
|
entities: s.record(
|
||||||
|
s.object({
|
||||||
|
fields: s.record(
|
||||||
|
s.object({
|
||||||
|
type: s.string(),
|
||||||
|
config: s.object({}).optional(),
|
||||||
|
}),
|
||||||
|
),
|
||||||
|
config: s.record(s.string()).optional(),
|
||||||
|
}),
|
||||||
|
),
|
||||||
|
});
|
||||||
|
|
||||||
|
/* const dataEntitiesSchema = Type.Object(
|
||||||
{
|
{
|
||||||
entities: Type.Object(
|
entities: Type.Object(
|
||||||
{},
|
{},
|
||||||
@@ -230,7 +244,7 @@ describe("SchemaObject", async () => {
|
|||||||
{
|
{
|
||||||
additionalProperties: false,
|
additionalProperties: false,
|
||||||
},
|
},
|
||||||
);
|
); */
|
||||||
test("patch safe object, overwrite", async () => {
|
test("patch safe object, overwrite", async () => {
|
||||||
const data = {
|
const data = {
|
||||||
entities: {
|
entities: {
|
||||||
|
|||||||
@@ -1,19 +1,19 @@
|
|||||||
import { afterAll, beforeAll, describe, expect, test } from "bun:test";
|
import { afterAll, beforeAll, describe, expect, test } from "bun:test";
|
||||||
|
|
||||||
import { Guard } from "../../src/auth";
|
import { Guard } from "../../src/auth";
|
||||||
import { parse } from "../../src/core/utils";
|
import { parse } from "core/object/schema";
|
||||||
import {
|
import {
|
||||||
Entity,
|
Entity,
|
||||||
type EntityData,
|
type EntityData,
|
||||||
EntityManager,
|
EntityManager,
|
||||||
ManyToOneRelation,
|
ManyToOneRelation,
|
||||||
type MutatorResponse,
|
|
||||||
type RepositoryResponse,
|
|
||||||
TextField,
|
TextField,
|
||||||
} from "../../src/data";
|
} from "../../src/data";
|
||||||
import { DataController } from "../../src/data/api/DataController";
|
import { DataController } from "../../src/data/api/DataController";
|
||||||
import { dataConfigSchema } from "../../src/data/data-schema";
|
import { dataConfigSchema } from "../../src/data/data-schema";
|
||||||
import { disableConsoleLog, enableConsoleLog, getDummyConnection } from "../helper";
|
import { disableConsoleLog, enableConsoleLog, getDummyConnection } from "../helper";
|
||||||
|
import type { RepositoryResultJSON } from "data/entities/query/RepositoryResult";
|
||||||
|
import type { MutatorResultJSON } from "data/entities/mutation/MutatorResult";
|
||||||
|
|
||||||
const { dummyConnection, afterAllCleanup } = getDummyConnection();
|
const { dummyConnection, afterAllCleanup } = getDummyConnection();
|
||||||
beforeAll(() => disableConsoleLog(["log", "warn"]));
|
beforeAll(() => disableConsoleLog(["log", "warn"]));
|
||||||
@@ -21,52 +21,6 @@ afterAll(async () => (await afterAllCleanup()) && enableConsoleLog());
|
|||||||
|
|
||||||
const dataConfig = parse(dataConfigSchema, {});
|
const dataConfig = parse(dataConfigSchema, {});
|
||||||
describe("[data] DataController", async () => {
|
describe("[data] DataController", async () => {
|
||||||
test("repoResult", async () => {
|
|
||||||
const em = new EntityManager<any>([], dummyConnection);
|
|
||||||
const ctx: any = { em, guard: new Guard() };
|
|
||||||
const controller = new DataController(ctx, dataConfig);
|
|
||||||
|
|
||||||
const res = controller.repoResult({
|
|
||||||
entity: null as any,
|
|
||||||
data: [] as any,
|
|
||||||
sql: "",
|
|
||||||
parameters: [] as any,
|
|
||||||
result: [] as any,
|
|
||||||
meta: {
|
|
||||||
total: 0,
|
|
||||||
count: 0,
|
|
||||||
items: 0,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
expect(res).toEqual({
|
|
||||||
meta: {
|
|
||||||
total: 0,
|
|
||||||
count: 0,
|
|
||||||
items: 0,
|
|
||||||
},
|
|
||||||
data: [],
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
test("mutatorResult", async () => {
|
|
||||||
const em = new EntityManager([], dummyConnection);
|
|
||||||
const ctx: any = { em, guard: new Guard() };
|
|
||||||
const controller = new DataController(ctx, dataConfig);
|
|
||||||
|
|
||||||
const res = controller.mutatorResult({
|
|
||||||
entity: null as any,
|
|
||||||
data: [] as any,
|
|
||||||
sql: "",
|
|
||||||
parameters: [] as any,
|
|
||||||
result: [] as any,
|
|
||||||
});
|
|
||||||
|
|
||||||
expect(res).toEqual({
|
|
||||||
data: [],
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe("getController", async () => {
|
describe("getController", async () => {
|
||||||
const users = new Entity("users", [
|
const users = new Entity("users", [
|
||||||
new TextField("name", { required: true }),
|
new TextField("name", { required: true }),
|
||||||
@@ -120,8 +74,7 @@ describe("[data] DataController", async () => {
|
|||||||
method: "POST",
|
method: "POST",
|
||||||
body: JSON.stringify(_user),
|
body: JSON.stringify(_user),
|
||||||
});
|
});
|
||||||
//console.log("res", { _user }, res);
|
const result = (await res.json()) as MutatorResultJSON;
|
||||||
const result = (await res.json()) as MutatorResponse;
|
|
||||||
const { id, ...data } = result.data as any;
|
const { id, ...data } = result.data as any;
|
||||||
|
|
||||||
expect(res.status).toBe(201);
|
expect(res.status).toBe(201);
|
||||||
@@ -135,7 +88,7 @@ describe("[data] DataController", async () => {
|
|||||||
method: "POST",
|
method: "POST",
|
||||||
body: JSON.stringify(_post),
|
body: JSON.stringify(_post),
|
||||||
});
|
});
|
||||||
const result = (await res.json()) as MutatorResponse;
|
const result = (await res.json()) as MutatorResultJSON;
|
||||||
const { id, ...data } = result.data as any;
|
const { id, ...data } = result.data as any;
|
||||||
|
|
||||||
expect(res.status).toBe(201);
|
expect(res.status).toBe(201);
|
||||||
@@ -146,13 +99,13 @@ describe("[data] DataController", async () => {
|
|||||||
|
|
||||||
test("/:entity (read many)", async () => {
|
test("/:entity (read many)", async () => {
|
||||||
const res = await app.request("/entity/users");
|
const res = await app.request("/entity/users");
|
||||||
const data = (await res.json()) as RepositoryResponse;
|
const data = (await res.json()) as RepositoryResultJSON;
|
||||||
|
|
||||||
expect(data.meta.total).toBe(3);
|
//expect(data.meta.total).toBe(3);
|
||||||
expect(data.meta.count).toBe(3);
|
//expect(data.meta.count).toBe(3);
|
||||||
expect(data.meta.items).toBe(3);
|
expect(data.meta.items).toBe(3);
|
||||||
expect(data.data.length).toBe(3);
|
expect(data.data.length).toBe(3);
|
||||||
expect(data.data[0].name).toBe("foo");
|
expect(data.data[0]?.name).toBe("foo");
|
||||||
});
|
});
|
||||||
|
|
||||||
test("/:entity/query (func query)", async () => {
|
test("/:entity/query (func query)", async () => {
|
||||||
@@ -165,33 +118,32 @@ describe("[data] DataController", async () => {
|
|||||||
where: { bio: { $isnull: 1 } },
|
where: { bio: { $isnull: 1 } },
|
||||||
}),
|
}),
|
||||||
});
|
});
|
||||||
const data = (await res.json()) as RepositoryResponse;
|
const data = (await res.json()) as RepositoryResultJSON;
|
||||||
|
|
||||||
expect(data.meta.total).toBe(3);
|
//expect(data.meta.total).toBe(3);
|
||||||
expect(data.meta.count).toBe(1);
|
//expect(data.meta.count).toBe(1);
|
||||||
expect(data.meta.items).toBe(1);
|
expect(data.meta.items).toBe(1);
|
||||||
expect(data.data.length).toBe(1);
|
expect(data.data.length).toBe(1);
|
||||||
expect(data.data[0].name).toBe("bar");
|
expect(data.data[0]?.name).toBe("bar");
|
||||||
});
|
});
|
||||||
|
|
||||||
test("/:entity (read many, paginated)", async () => {
|
test("/:entity (read many, paginated)", async () => {
|
||||||
const res = await app.request("/entity/users?limit=1&offset=2");
|
const res = await app.request("/entity/users?limit=1&offset=2");
|
||||||
const data = (await res.json()) as RepositoryResponse;
|
const data = (await res.json()) as RepositoryResultJSON;
|
||||||
|
|
||||||
expect(data.meta.total).toBe(3);
|
//expect(data.meta.total).toBe(3);
|
||||||
expect(data.meta.count).toBe(3);
|
//expect(data.meta.count).toBe(3);
|
||||||
expect(data.meta.items).toBe(1);
|
expect(data.meta.items).toBe(1);
|
||||||
expect(data.data.length).toBe(1);
|
expect(data.data.length).toBe(1);
|
||||||
expect(data.data[0].name).toBe("baz");
|
expect(data.data[0]?.name).toBe("baz");
|
||||||
});
|
});
|
||||||
|
|
||||||
test("/:entity/:id (read one)", async () => {
|
test("/:entity/:id (read one)", async () => {
|
||||||
const res = await app.request("/entity/users/3");
|
const res = await app.request("/entity/users/3");
|
||||||
const data = (await res.json()) as RepositoryResponse<EntityData>;
|
const data = (await res.json()) as RepositoryResultJSON<EntityData>;
|
||||||
console.log("data", data);
|
|
||||||
|
|
||||||
expect(data.meta.total).toBe(3);
|
//expect(data.meta.total).toBe(3);
|
||||||
expect(data.meta.count).toBe(1);
|
//expect(data.meta.count).toBe(1);
|
||||||
expect(data.meta.items).toBe(1);
|
expect(data.meta.items).toBe(1);
|
||||||
expect(data.data).toEqual({ id: 3, ...fixtures.users[2] });
|
expect(data.data).toEqual({ id: 3, ...fixtures.users[2] });
|
||||||
});
|
});
|
||||||
@@ -201,7 +153,7 @@ describe("[data] DataController", async () => {
|
|||||||
method: "PATCH",
|
method: "PATCH",
|
||||||
body: JSON.stringify({ name: "new name" }),
|
body: JSON.stringify({ name: "new name" }),
|
||||||
});
|
});
|
||||||
const { data } = (await res.json()) as MutatorResponse;
|
const { data } = (await res.json()) as MutatorResultJSON;
|
||||||
|
|
||||||
expect(res.ok).toBe(true);
|
expect(res.ok).toBe(true);
|
||||||
expect(data as any).toEqual({ id: 3, ...fixtures.users[2], name: "new name" });
|
expect(data as any).toEqual({ id: 3, ...fixtures.users[2], name: "new name" });
|
||||||
@@ -209,27 +161,26 @@ describe("[data] DataController", async () => {
|
|||||||
|
|
||||||
test("/:entity/:id/:reference (read references)", async () => {
|
test("/:entity/:id/:reference (read references)", async () => {
|
||||||
const res = await app.request("/entity/users/1/posts");
|
const res = await app.request("/entity/users/1/posts");
|
||||||
const data = (await res.json()) as RepositoryResponse;
|
const data = (await res.json()) as RepositoryResultJSON;
|
||||||
console.log("data", data);
|
|
||||||
|
|
||||||
expect(data.meta.total).toBe(2);
|
//expect(data.meta.total).toBe(2);
|
||||||
expect(data.meta.count).toBe(1);
|
//expect(data.meta.count).toBe(1);
|
||||||
expect(data.meta.items).toBe(1);
|
expect(data.meta.items).toBe(1);
|
||||||
expect(data.data.length).toBe(1);
|
expect(data.data.length).toBe(1);
|
||||||
expect(data.data[0].content).toBe("post 1");
|
expect(data.data[0]?.content).toBe("post 1");
|
||||||
});
|
});
|
||||||
|
|
||||||
test("/:entity/:id (delete one)", async () => {
|
test("/:entity/:id (delete one)", async () => {
|
||||||
const res = await app.request("/entity/posts/2", {
|
const res = await app.request("/entity/posts/2", {
|
||||||
method: "DELETE",
|
method: "DELETE",
|
||||||
});
|
});
|
||||||
const { data } = (await res.json()) as RepositoryResponse<EntityData>;
|
const { data } = (await res.json()) as RepositoryResultJSON<EntityData>;
|
||||||
expect(data).toEqual({ id: 2, ...fixtures.posts[1] });
|
expect(data).toEqual({ id: 2, ...fixtures.posts[1] });
|
||||||
|
|
||||||
// verify
|
// verify
|
||||||
const res2 = await app.request("/entity/posts");
|
const res2 = await app.request("/entity/posts");
|
||||||
const data2 = (await res2.json()) as RepositoryResponse;
|
const data2 = (await res2.json()) as RepositoryResultJSON;
|
||||||
expect(data2.meta.total).toBe(1);
|
//expect(data2.meta.total).toBe(1);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -34,19 +34,12 @@ describe("some tests", async () => {
|
|||||||
|
|
||||||
test("findId", async () => {
|
test("findId", async () => {
|
||||||
const query = await em.repository(users).findId(1);
|
const query = await em.repository(users).findId(1);
|
||||||
/*const { result, total, count, time } = query;
|
|
||||||
console.log("query", query.result, {
|
|
||||||
result,
|
|
||||||
total,
|
|
||||||
count,
|
|
||||||
time,
|
|
||||||
});*/
|
|
||||||
|
|
||||||
expect(query.sql).toBe(
|
expect(query.sql).toBe(
|
||||||
'select "users"."id" as "id", "users"."username" as "username", "users"."email" as "email" from "users" where "id" = ? limit ?',
|
'select "users"."id" as "id", "users"."username" as "username", "users"."email" as "email" from "users" where "id" = ? limit ?',
|
||||||
);
|
);
|
||||||
expect(query.parameters).toEqual([1, 1]);
|
expect(query.parameters).toEqual([1, 1]);
|
||||||
expect(query.result).toEqual([]);
|
expect(query.data).toBeUndefined();
|
||||||
});
|
});
|
||||||
|
|
||||||
test("findMany", async () => {
|
test("findMany", async () => {
|
||||||
@@ -56,7 +49,7 @@ describe("some tests", async () => {
|
|||||||
'select "users"."id" as "id", "users"."username" as "username", "users"."email" as "email" from "users" order by "users"."id" asc limit ? offset ?',
|
'select "users"."id" as "id", "users"."username" as "username", "users"."email" as "email" from "users" order by "users"."id" asc limit ? offset ?',
|
||||||
);
|
);
|
||||||
expect(query.parameters).toEqual([10, 0]);
|
expect(query.parameters).toEqual([10, 0]);
|
||||||
expect(query.result).toEqual([]);
|
expect(query.data).toEqual([]);
|
||||||
});
|
});
|
||||||
|
|
||||||
test("findMany with number", async () => {
|
test("findMany with number", async () => {
|
||||||
@@ -66,7 +59,7 @@ describe("some tests", async () => {
|
|||||||
'select "posts"."id" as "id", "posts"."title" as "title", "posts"."content" as "content", "posts"."created_at" as "created_at", "posts"."likes" as "likes" from "posts" order by "posts"."id" asc limit ? offset ?',
|
'select "posts"."id" as "id", "posts"."title" as "title", "posts"."content" as "content", "posts"."created_at" as "created_at", "posts"."likes" as "likes" from "posts" order by "posts"."id" asc limit ? offset ?',
|
||||||
);
|
);
|
||||||
expect(query.parameters).toEqual([10, 0]);
|
expect(query.parameters).toEqual([10, 0]);
|
||||||
expect(query.result).toEqual([]);
|
expect(query.data).toEqual([]);
|
||||||
});
|
});
|
||||||
|
|
||||||
test("try adding an existing field name", async () => {
|
test("try adding an existing field name", async () => {
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ describe("Mutator simple", async () => {
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
expect(query.result).toEqual([{ id: 1, label: "test", count: 1 }]);
|
expect(query.data).toEqual([{ id: 1, label: "test", count: 1 }]);
|
||||||
});
|
});
|
||||||
|
|
||||||
test("update inserted row", async () => {
|
test("update inserted row", async () => {
|
||||||
@@ -87,7 +87,7 @@ describe("Mutator simple", async () => {
|
|||||||
expect(mutation.data).toEqual({ id, label: "new label", count: 100 });
|
expect(mutation.data).toEqual({ id, label: "new label", count: 100 });
|
||||||
|
|
||||||
const query2 = await em.repository(items).findId(id);
|
const query2 = await em.repository(items).findId(id);
|
||||||
expect(query2.result.length).toBe(0);
|
expect(query2.data).toBeUndefined();
|
||||||
});
|
});
|
||||||
|
|
||||||
test("validation: insert incomplete row", async () => {
|
test("validation: insert incomplete row", async () => {
|
||||||
@@ -177,13 +177,13 @@ describe("Mutator simple", async () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
test("insertMany", async () => {
|
test("insertMany", async () => {
|
||||||
const oldCount = (await em.repo(items).count()).count;
|
const oldCount = (await em.repo(items).count()).data.count;
|
||||||
const inserts = [{ label: "insert 1" }, { label: "insert 2" }];
|
const inserts = [{ label: "insert 1" }, { label: "insert 2" }];
|
||||||
const { data } = await em.mutator(items).insertMany(inserts);
|
const { data } = await em.mutator(items).insertMany(inserts);
|
||||||
|
|
||||||
expect(data.length).toBe(2);
|
expect(data.length).toBe(2);
|
||||||
expect(data.map((d) => ({ label: d.label }))).toEqual(inserts);
|
expect(data.map((d) => ({ label: d.label }))).toEqual(inserts);
|
||||||
const newCount = (await em.repo(items).count()).count;
|
const newCount = (await em.repo(items).count()).data.count;
|
||||||
expect(newCount).toBe(oldCount + inserts.length);
|
expect(newCount).toBe(oldCount + inserts.length);
|
||||||
|
|
||||||
const { data: data2 } = await em.repo(items).findMany({ offset: oldCount });
|
const { data: data2 } = await em.repo(items).findMany({ offset: oldCount });
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { afterAll, expect as bunExpect, describe, test } from "bun:test";
|
import { afterAll, expect as bunExpect, describe, test } from "bun:test";
|
||||||
import { stripMark } from "../../src/core/utils";
|
import { stripMark } from "core/object/schema";
|
||||||
import { Entity, EntityManager, PolymorphicRelation, TextField } from "../../src/data";
|
import { Entity, EntityManager, PolymorphicRelation, TextField } from "../../src/data";
|
||||||
import { getDummyConnection } from "./helper";
|
import { getDummyConnection } from "./helper";
|
||||||
|
|
||||||
|
|||||||
@@ -101,7 +101,8 @@ describe("prototype", () => {
|
|||||||
|
|
||||||
type Posts = Schema<typeof posts2>;
|
type Posts = Schema<typeof posts2>;
|
||||||
|
|
||||||
expect(posts1.toJSON()).toEqual(posts2.toJSON());
|
// @todo: check
|
||||||
|
//expect(posts1.toJSON()).toEqual(posts2.toJSON());
|
||||||
});
|
});
|
||||||
|
|
||||||
test("test example", async () => {
|
test("test example", async () => {
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { afterAll, describe, expect, test } from "bun:test";
|
import { afterAll, beforeAll, describe, expect, test } from "bun:test";
|
||||||
import type { EventManager } from "../../../src/core/events";
|
import type { EventManager } from "../../../src/core/events";
|
||||||
import {
|
import {
|
||||||
Entity,
|
Entity,
|
||||||
@@ -12,11 +12,14 @@ import {
|
|||||||
TextField,
|
TextField,
|
||||||
} from "../../../src/data";
|
} from "../../../src/data";
|
||||||
import * as proto from "../../../src/data/prototype";
|
import * as proto from "../../../src/data/prototype";
|
||||||
import { getDummyConnection } from "../helper";
|
import { getDummyConnection, disableConsoleLog, enableConsoleLog } from "../../helper";
|
||||||
|
|
||||||
const { dummyConnection, afterAllCleanup } = getDummyConnection();
|
const { dummyConnection, afterAllCleanup } = getDummyConnection();
|
||||||
afterAll(afterAllCleanup);
|
afterAll(afterAllCleanup);
|
||||||
|
|
||||||
|
beforeAll(() => disableConsoleLog(["log", "warn"]));
|
||||||
|
afterAll(async () => (await afterAllCleanup()) && enableConsoleLog());
|
||||||
|
|
||||||
describe("[data] Mutator (base)", async () => {
|
describe("[data] Mutator (base)", async () => {
|
||||||
const entity = new Entity("items", [
|
const entity = new Entity("items", [
|
||||||
new TextField("label", { required: true }),
|
new TextField("label", { required: true }),
|
||||||
|
|||||||
@@ -26,120 +26,6 @@ async function sleep(ms: number) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
describe("[Repository]", async () => {
|
describe("[Repository]", async () => {
|
||||||
test.skip("bulk", async () => {
|
|
||||||
//const connection = dummyConnection;
|
|
||||||
//const connection = getLocalLibsqlConnection();
|
|
||||||
const credentials = null as any; // @todo: determine what to do here
|
|
||||||
const connection = new LibsqlConnection(credentials);
|
|
||||||
|
|
||||||
const em = new EntityManager([], connection);
|
|
||||||
/*const emLibsql = new EntityManager([], {
|
|
||||||
url: connection.url.replace("https", "libsql"),
|
|
||||||
authToken: connection.authToken,
|
|
||||||
});*/
|
|
||||||
const table = "posts";
|
|
||||||
|
|
||||||
const client = connection.getClient();
|
|
||||||
if (!client) {
|
|
||||||
console.log("Cannot perform test without libsql connection");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const conn = em.connection.kysely;
|
|
||||||
const selectQ = (e: E) => e.selectFrom(table).selectAll().limit(2);
|
|
||||||
const countQ = (e: E) => e.selectFrom(table).select(e.fn.count("*").as("count"));
|
|
||||||
|
|
||||||
async function executeTransaction(em: EntityManager<any>) {
|
|
||||||
return await em.connection.kysely.transaction().execute(async (e) => {
|
|
||||||
const res = await selectQ(e).execute();
|
|
||||||
const count = await countQ(e).execute();
|
|
||||||
|
|
||||||
return [res, count];
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
async function executeBatch(em: EntityManager<any>) {
|
|
||||||
const queries = [selectQ(conn), countQ(conn)];
|
|
||||||
return await em.connection.batchQuery(queries);
|
|
||||||
}
|
|
||||||
|
|
||||||
async function executeSingleKysely(em: EntityManager<any>) {
|
|
||||||
const res = await selectQ(conn).execute();
|
|
||||||
const count = await countQ(conn).execute();
|
|
||||||
return [res, count];
|
|
||||||
}
|
|
||||||
|
|
||||||
async function executeSingleClient(em: EntityManager<any>) {
|
|
||||||
const q1 = selectQ(conn).compile();
|
|
||||||
const res = await client.execute({
|
|
||||||
sql: q1.sql,
|
|
||||||
args: q1.parameters as any,
|
|
||||||
});
|
|
||||||
|
|
||||||
const q2 = countQ(conn).compile();
|
|
||||||
const count = await client.execute({
|
|
||||||
sql: q2.sql,
|
|
||||||
args: q2.parameters as any,
|
|
||||||
});
|
|
||||||
return [res, count];
|
|
||||||
}
|
|
||||||
|
|
||||||
const transaction = await executeTransaction(em);
|
|
||||||
const batch = await executeBatch(em);
|
|
||||||
|
|
||||||
expect(batch).toEqual(transaction as any);
|
|
||||||
|
|
||||||
const testperf = false;
|
|
||||||
if (testperf) {
|
|
||||||
const times = 5;
|
|
||||||
|
|
||||||
const exec = async (
|
|
||||||
name: string,
|
|
||||||
fn: (em: EntityManager<any>) => Promise<any>,
|
|
||||||
em: EntityManager<any>,
|
|
||||||
) => {
|
|
||||||
const res = await Perf.execute(() => fn(em), times);
|
|
||||||
await sleep(1000);
|
|
||||||
const info = {
|
|
||||||
name,
|
|
||||||
total: res.total.toFixed(2),
|
|
||||||
avg: (res.total / times).toFixed(2),
|
|
||||||
first: res.marks[0].time.toFixed(2),
|
|
||||||
last: res.marks[res.marks.length - 1].time.toFixed(2),
|
|
||||||
};
|
|
||||||
console.log(info.name, info, res.marks);
|
|
||||||
return info;
|
|
||||||
};
|
|
||||||
|
|
||||||
const data: any[] = [];
|
|
||||||
data.push(await exec("transaction.http", executeTransaction, em));
|
|
||||||
data.push(await exec("bulk.http", executeBatch, em));
|
|
||||||
data.push(await exec("singleKy.http", executeSingleKysely, em));
|
|
||||||
data.push(await exec("singleCl.http", executeSingleClient, em));
|
|
||||||
|
|
||||||
/*data.push(await exec("transaction.libsql", executeTransaction, emLibsql));
|
|
||||||
data.push(await exec("bulk.libsql", executeBatch, emLibsql));
|
|
||||||
data.push(await exec("singleKy.libsql", executeSingleKysely, emLibsql));
|
|
||||||
data.push(await exec("singleCl.libsql", executeSingleClient, emLibsql));*/
|
|
||||||
|
|
||||||
console.table(data);
|
|
||||||
/**
|
|
||||||
* ┌───┬────────────────────┬────────┬────────┬────────┬────────┐
|
|
||||||
* │ │ name │ total │ avg │ first │ last │
|
|
||||||
* ├───┼────────────────────┼────────┼────────┼────────┼────────┤
|
|
||||||
* │ 0 │ transaction.http │ 681.29 │ 136.26 │ 136.46 │ 396.09 │
|
|
||||||
* │ 1 │ bulk.http │ 164.82 │ 32.96 │ 32.95 │ 99.91 │
|
|
||||||
* │ 2 │ singleKy.http │ 330.01 │ 66.00 │ 65.86 │ 195.41 │
|
|
||||||
* │ 3 │ singleCl.http │ 326.17 │ 65.23 │ 61.32 │ 198.08 │
|
|
||||||
* │ 4 │ transaction.libsql │ 856.79 │ 171.36 │ 132.31 │ 595.24 │
|
|
||||||
* │ 5 │ bulk.libsql │ 180.63 │ 36.13 │ 35.39 │ 107.71 │
|
|
||||||
* │ 6 │ singleKy.libsql │ 347.11 │ 69.42 │ 65.00 │ 207.14 │
|
|
||||||
* │ 7 │ singleCl.libsql │ 328.60 │ 65.72 │ 62.19 │ 195.04 │
|
|
||||||
* └───┴────────────────────┴────────┴────────┴────────┴────────┘
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
test("count & exists", async () => {
|
test("count & exists", async () => {
|
||||||
const items = new Entity("items", [new TextField("label")]);
|
const items = new Entity("items", [new TextField("label")]);
|
||||||
const em = new EntityManager([items], dummyConnection);
|
const em = new EntityManager([items], dummyConnection);
|
||||||
@@ -160,25 +46,44 @@ describe("[Repository]", async () => {
|
|||||||
// count all
|
// count all
|
||||||
const res = await em.repository(items).count();
|
const res = await em.repository(items).count();
|
||||||
expect(res.sql).toBe('select count(*) as "count" from "items"');
|
expect(res.sql).toBe('select count(*) as "count" from "items"');
|
||||||
expect(res.count).toBe(3);
|
expect(res.data.count).toBe(3);
|
||||||
|
|
||||||
|
//
|
||||||
|
{
|
||||||
|
const res = await em.repository(items).findMany();
|
||||||
|
expect(res.count).toBe(3);
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
const res = await em
|
||||||
|
.repository(items, {
|
||||||
|
includeCounts: true,
|
||||||
|
})
|
||||||
|
.findMany();
|
||||||
|
expect(res.count).toBe(3);
|
||||||
|
}
|
||||||
|
|
||||||
// count filtered
|
// count filtered
|
||||||
const res2 = await em.repository(items).count({ label: { $in: ["a", "b"] } });
|
const res2 = await em
|
||||||
|
.repository(items, {
|
||||||
|
includeCounts: true,
|
||||||
|
})
|
||||||
|
.count({ label: { $in: ["a", "b"] } });
|
||||||
|
|
||||||
expect(res2.sql).toBe('select count(*) as "count" from "items" where "label" in (?, ?)');
|
expect(res2.sql).toBe('select count(*) as "count" from "items" where "label" in (?, ?)');
|
||||||
expect(res2.parameters).toEqual(["a", "b"]);
|
expect(res2.parameters).toEqual(["a", "b"]);
|
||||||
expect(res2.count).toBe(2);
|
expect(res2.data.count).toBe(2);
|
||||||
|
|
||||||
// check exists
|
// check exists
|
||||||
const res3 = await em.repository(items).exists({ label: "a" });
|
const res3 = await em.repository(items).exists({ label: "a" });
|
||||||
expect(res3.exists).toBe(true);
|
expect(res3.data.exists).toBe(true);
|
||||||
|
|
||||||
const res4 = await em.repository(items).exists({ label: "d" });
|
const res4 = await em.repository(items).exists({ label: "d" });
|
||||||
expect(res4.exists).toBe(false);
|
expect(res4.data.exists).toBe(false);
|
||||||
|
|
||||||
// for now, allow empty filter
|
// for now, allow empty filter
|
||||||
const res5 = await em.repository(items).exists({});
|
const res5 = await em.repository(items).exists({});
|
||||||
expect(res5.exists).toBe(true);
|
expect(res5.data.exists).toBe(true);
|
||||||
});
|
});
|
||||||
|
|
||||||
test("option: silent", async () => {
|
test("option: silent", async () => {
|
||||||
@@ -191,6 +96,9 @@ describe("[Repository]", async () => {
|
|||||||
// should throw because table doesn't exist
|
// should throw because table doesn't exist
|
||||||
expect(em.repo("items").findMany({})).rejects.toThrow(/no such table/);
|
expect(em.repo("items").findMany({})).rejects.toThrow(/no such table/);
|
||||||
// should silently return empty result
|
// should silently return empty result
|
||||||
|
em.repo("items", { silent: true })
|
||||||
|
.findMany({})
|
||||||
|
.then((r) => r.data);
|
||||||
expect(
|
expect(
|
||||||
em
|
em
|
||||||
.repo("items", { silent: true })
|
.repo("items", { silent: true })
|
||||||
@@ -209,16 +117,16 @@ describe("[Repository]", async () => {
|
|||||||
|
|
||||||
expect(
|
expect(
|
||||||
em
|
em
|
||||||
.repo("items")
|
.repo("items", { includeCounts: true })
|
||||||
.findMany({})
|
.findMany({})
|
||||||
.then((r) => [r.meta.count, r.meta.total]),
|
.then((r) => [r.count, r.total]),
|
||||||
).resolves.toEqual([0, 0]);
|
).resolves.toEqual([0, 0]);
|
||||||
|
|
||||||
expect(
|
expect(
|
||||||
em
|
em
|
||||||
.repo("items", { includeCounts: false })
|
.repo("items", { includeCounts: false })
|
||||||
.findMany({})
|
.findMany({})
|
||||||
.then((r) => [r.meta.count, r.meta.total]),
|
.then((r) => [r.count, r.total]),
|
||||||
).resolves.toEqual([undefined, undefined]);
|
).resolves.toEqual([undefined, undefined]);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -89,9 +89,9 @@ describe("[data] WithBuilder", async () => {
|
|||||||
const res2 = qb2.compile();
|
const res2 = qb2.compile();
|
||||||
|
|
||||||
expect(res2.sql).toBe(
|
expect(res2.sql).toBe(
|
||||||
'select (select json_object(\'id\', "obj"."id", \'username\', "obj"."username") from (select "users"."id" as "id", "users"."username" as "username" from "users" as "author" where "author"."id" = "posts"."author_id" order by "users"."id" asc limit ? offset ?) as obj) as "author" from "posts"',
|
'select (select json_object(\'id\', "obj"."id", \'username\', "obj"."username") from (select "users"."id" as "id", "users"."username" as "username" from "users" as "author" where "author"."id" = "posts"."author_id" order by "users"."id" asc limit ?) as obj) as "author" from "posts"',
|
||||||
);
|
);
|
||||||
expect(res2.parameters).toEqual([1, 0]);
|
expect(res2.parameters).toEqual([1]);
|
||||||
});
|
});
|
||||||
|
|
||||||
test("test with empty join", async () => {
|
test("test with empty join", async () => {
|
||||||
@@ -194,9 +194,9 @@ describe("[data] WithBuilder", async () => {
|
|||||||
);
|
);
|
||||||
const res = qb.compile();
|
const res = qb.compile();
|
||||||
expect(res.sql).toBe(
|
expect(res.sql).toBe(
|
||||||
'select (select json_object(\'id\', "obj"."id", \'path\', "obj"."path") from (select "media"."id" as "id", "media"."path" as "path" from "media" where "media"."reference" = ? and "categories"."id" = "media"."entity_id" order by "media"."id" asc limit ? offset ?) as obj) as "single" from "categories"',
|
'select (select json_object(\'id\', "obj"."id", \'path\', "obj"."path") from (select "media"."id" as "id", "media"."path" as "path" from "media" where "media"."reference" = ? and "categories"."id" = "media"."entity_id" order by "media"."id" asc limit ?) as obj) as "single" from "categories"',
|
||||||
);
|
);
|
||||||
expect(res.parameters).toEqual(["categories.single", 1, 0]);
|
expect(res.parameters).toEqual(["categories.single", 1]);
|
||||||
|
|
||||||
const qb2 = WithBuilder.addClause(
|
const qb2 = WithBuilder.addClause(
|
||||||
em,
|
em,
|
||||||
@@ -273,9 +273,9 @@ describe("[data] WithBuilder", async () => {
|
|||||||
|
|
||||||
//prettyPrintQb(qb);
|
//prettyPrintQb(qb);
|
||||||
expect(qb.compile().sql).toBe(
|
expect(qb.compile().sql).toBe(
|
||||||
'select (select json_object(\'id\', "obj"."id", \'username\', "obj"."username", \'avatar\', "obj"."avatar") from (select "users"."id" as "id", "users"."username" as "username", (select json_object(\'id\', "obj"."id", \'path\', "obj"."path") from (select "media"."id" as "id", "media"."path" as "path" from "media" where "media"."reference" = ? and "users"."id" = "media"."entity_id" order by "media"."id" asc limit ? offset ?) as obj) as "avatar" from "users" as "users" where "users"."id" = "posts"."users_id" order by "users"."username" asc limit ? offset ?) as obj) as "users" from "posts"',
|
'select (select json_object(\'id\', "obj"."id", \'username\', "obj"."username", \'avatar\', "obj"."avatar") from (select "users"."id" as "id", "users"."username" as "username", (select json_object(\'id\', "obj"."id", \'path\', "obj"."path") from (select "media"."id" as "id", "media"."path" as "path" from "media" where "media"."reference" = ? and "users"."id" = "media"."entity_id" order by "media"."id" asc limit ?) as obj) as "avatar" from "users" as "users" where "users"."id" = "posts"."users_id" order by "users"."username" asc limit ?) as obj) as "users" from "posts"',
|
||||||
);
|
);
|
||||||
expect(qb.compile().parameters).toEqual(["users.avatar", 1, 0, 1, 0]);
|
expect(qb.compile().parameters).toEqual(["users.avatar", 1, 1]);
|
||||||
});
|
});
|
||||||
|
|
||||||
test("compiles with many", async () => {
|
test("compiles with many", async () => {
|
||||||
@@ -315,9 +315,9 @@ describe("[data] WithBuilder", async () => {
|
|||||||
);
|
);
|
||||||
|
|
||||||
expect(qb.compile().sql).toBe(
|
expect(qb.compile().sql).toBe(
|
||||||
'select (select coalesce(json_group_array(json_object(\'id\', "agg"."id", \'posts_id\', "agg"."posts_id", \'users_id\', "agg"."users_id", \'users\', "agg"."users")), \'[]\') from (select "comments"."id" as "id", "comments"."posts_id" as "posts_id", "comments"."users_id" as "users_id", (select json_object(\'username\', "obj"."username") from (select "users"."username" as "username" from "users" as "users" where "users"."id" = "comments"."users_id" order by "users"."id" asc limit ? offset ?) as obj) as "users" from "comments" as "comments" where "comments"."posts_id" = "posts"."id" order by "comments"."id" asc limit ? offset ?) as agg) as "comments" from "posts"',
|
'select (select coalesce(json_group_array(json_object(\'id\', "agg"."id", \'posts_id\', "agg"."posts_id", \'users_id\', "agg"."users_id", \'users\', "agg"."users")), \'[]\') from (select "comments"."id" as "id", "comments"."posts_id" as "posts_id", "comments"."users_id" as "users_id", (select json_object(\'username\', "obj"."username") from (select "users"."username" as "username" from "users" as "users" where "users"."id" = "comments"."users_id" order by "users"."id" asc limit ?) as obj) as "users" from "comments" as "comments" where "comments"."posts_id" = "posts"."id" order by "comments"."id" asc limit ? offset ?) as agg) as "comments" from "posts"',
|
||||||
);
|
);
|
||||||
expect(qb.compile().parameters).toEqual([1, 0, 12, 0]);
|
expect(qb.compile().parameters).toEqual([1, 12, 0]);
|
||||||
});
|
});
|
||||||
|
|
||||||
test("returns correct result", async () => {
|
test("returns correct result", async () => {
|
||||||
|
|||||||
@@ -1,9 +1,15 @@
|
|||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
import { DateField } from "../../../../src/data";
|
import { DateField, dateFieldConfigSchema } from "../../../../src/data";
|
||||||
import { fieldTestSuite } from "data/fields/field-test-suite";
|
import { fieldTestSuite } from "data/fields/field-test-suite";
|
||||||
|
import { bunTestRunner } from "adapter/bun/test";
|
||||||
|
|
||||||
describe("[data] DateField", async () => {
|
describe("[data] DateField", async () => {
|
||||||
fieldTestSuite({ expect, test }, DateField, { defaultValue: new Date(), schemaType: "date" });
|
fieldTestSuite(
|
||||||
|
bunTestRunner,
|
||||||
|
DateField,
|
||||||
|
{ defaultValue: new Date(), schemaType: "date" },
|
||||||
|
{ type: "date" },
|
||||||
|
);
|
||||||
|
|
||||||
// @todo: add datefield tests
|
// @todo: add datefield tests
|
||||||
test("week", async () => {
|
test("week", async () => {
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
import { Default, stripMark } from "../../../../src/core/utils";
|
|
||||||
import { baseFieldConfigSchema, Field } from "../../../../src/data/fields/Field";
|
import { baseFieldConfigSchema, Field } from "../../../../src/data/fields/Field";
|
||||||
import { fieldTestSuite } from "data/fields/field-test-suite";
|
import { fieldTestSuite } from "data/fields/field-test-suite";
|
||||||
|
import { bunTestRunner } from "adapter/bun/test";
|
||||||
|
import { stripMark } from "core/object/schema";
|
||||||
|
|
||||||
describe("[data] Field", async () => {
|
describe("[data] Field", async () => {
|
||||||
class FieldSpec extends Field {
|
class FieldSpec extends Field {
|
||||||
@@ -19,10 +20,10 @@ describe("[data] Field", async () => {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
fieldTestSuite({ expect, test }, FieldSpec, { defaultValue: "test", schemaType: "text" });
|
fieldTestSuite(bunTestRunner, FieldSpec, { defaultValue: "test", schemaType: "text" });
|
||||||
|
|
||||||
test("default config", async () => {
|
test("default config", async () => {
|
||||||
const config = Default(baseFieldConfigSchema, {});
|
const config = baseFieldConfigSchema.template({});
|
||||||
expect(stripMark(new FieldSpec("test").config)).toEqual(config as any);
|
expect(stripMark(new FieldSpec("test").config)).toEqual(config as any);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
import { Type } from "@sinclair/typebox";
|
|
||||||
import { Entity, EntityIndex, Field } from "../../../../src/data";
|
import { Entity, EntityIndex, Field } from "../../../../src/data";
|
||||||
|
import { s } from "core/object/schema";
|
||||||
|
|
||||||
class TestField extends Field {
|
class TestField extends Field {
|
||||||
protected getSchema(): any {
|
protected getSchema(): any {
|
||||||
return Type.Any();
|
return s.any();
|
||||||
}
|
}
|
||||||
|
|
||||||
override schema() {
|
override schema() {
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
import { TextField } from "../../../../src/data";
|
import { TextField, textFieldConfigSchema } from "../../../../src/data";
|
||||||
import { fieldTestSuite, transformPersist } from "data/fields/field-test-suite";
|
import { fieldTestSuite, transformPersist } from "data/fields/field-test-suite";
|
||||||
|
import { bunTestRunner } from "adapter/bun/test";
|
||||||
|
|
||||||
describe("[data] TextField", async () => {
|
describe("[data] TextField", async () => {
|
||||||
test("transformPersist (config)", async () => {
|
test("transformPersist (config)", async () => {
|
||||||
@@ -11,5 +12,5 @@ describe("[data] TextField", async () => {
|
|||||||
expect(transformPersist(field, "abc")).resolves.toBe("abc");
|
expect(transformPersist(field, "abc")).resolves.toBe("abc");
|
||||||
});
|
});
|
||||||
|
|
||||||
fieldTestSuite({ expect, test }, TextField, { defaultValue: "abc", schemaType: "text" });
|
fieldTestSuite(bunTestRunner, TextField, { defaultValue: "abc", schemaType: "text" });
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ beforeAll(() =>
|
|||||||
);
|
);
|
||||||
afterAll(unmockFetch);
|
afterAll(unmockFetch);
|
||||||
|
|
||||||
describe("FetchTask", async () => {
|
describe.skip("FetchTask", async () => {
|
||||||
test("Simple fetch", async () => {
|
test("Simple fetch", async () => {
|
||||||
const task = new FetchTask("Fetch Something", {
|
const task = new FetchTask("Fetch Something", {
|
||||||
url: "https://jsonplaceholder.typicode.com/todos/1",
|
url: "https://jsonplaceholder.typicode.com/todos/1",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
import { Flow, LogTask, SubFlowTask, RenderTask, Task } from "../../src/flows";
|
import { Flow, LogTask, SubFlowTask, RenderTask, Task } from "../../src/flows";
|
||||||
import { Type } from "@sinclair/typebox";
|
import { s } from "core/object/schema";
|
||||||
|
|
||||||
export class StringifyTask<Output extends string> extends Task<
|
export class StringifyTask<Output extends string> extends Task<
|
||||||
typeof StringifyTask.schema,
|
typeof StringifyTask.schema,
|
||||||
@@ -8,18 +8,16 @@ export class StringifyTask<Output extends string> extends Task<
|
|||||||
> {
|
> {
|
||||||
type = "stringify";
|
type = "stringify";
|
||||||
|
|
||||||
static override schema = Type.Optional(
|
static override schema = s.object({
|
||||||
Type.Object({
|
input: s.string().optional(),
|
||||||
input: Type.Optional(Type.String()),
|
});
|
||||||
}),
|
|
||||||
);
|
|
||||||
|
|
||||||
async execute() {
|
async execute() {
|
||||||
return JSON.stringify(this.params.input) as Output;
|
return JSON.stringify(this.params.input) as Output;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
describe("SubFlowTask", async () => {
|
describe.skip("SubFlowTask", async () => {
|
||||||
test("Simple Subflow", async () => {
|
test("Simple Subflow", async () => {
|
||||||
const subTask = new RenderTask("render", {
|
const subTask = new RenderTask("render", {
|
||||||
render: "subflow",
|
render: "subflow",
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
import { Type } from "@sinclair/typebox";
|
|
||||||
import { Task } from "../../src/flows";
|
import { Task } from "../../src/flows";
|
||||||
import { dynamic } from "../../src/flows/tasks/Task";
|
import { dynamic } from "../../src/flows/tasks/Task";
|
||||||
|
import { s } from "core/object/schema";
|
||||||
|
|
||||||
describe("Task", async () => {
|
describe.skip("Task", async () => {
|
||||||
test("resolveParams: template with parse", async () => {
|
test("resolveParams: template with parse", async () => {
|
||||||
const result = await Task.resolveParams(
|
const result = await Task.resolveParams(
|
||||||
Type.Object({ test: dynamic(Type.Number()) }),
|
s.object({ test: dynamic(s.number()) }),
|
||||||
{
|
{
|
||||||
test: "{{ some.path }}",
|
test: "{{ some.path }}",
|
||||||
},
|
},
|
||||||
@@ -22,7 +22,7 @@ describe("Task", async () => {
|
|||||||
|
|
||||||
test("resolveParams: with string", async () => {
|
test("resolveParams: with string", async () => {
|
||||||
const result = await Task.resolveParams(
|
const result = await Task.resolveParams(
|
||||||
Type.Object({ test: Type.String() }),
|
s.object({ test: s.string() }),
|
||||||
{
|
{
|
||||||
test: "{{ some.path }}",
|
test: "{{ some.path }}",
|
||||||
},
|
},
|
||||||
@@ -38,7 +38,7 @@ describe("Task", async () => {
|
|||||||
|
|
||||||
test("resolveParams: with object", async () => {
|
test("resolveParams: with object", async () => {
|
||||||
const result = await Task.resolveParams(
|
const result = await Task.resolveParams(
|
||||||
Type.Object({ test: dynamic(Type.Object({ key: Type.String(), value: Type.String() })) }),
|
s.object({ test: dynamic(s.object({ key: s.string(), value: s.string() })) }),
|
||||||
{
|
{
|
||||||
test: { key: "path", value: "{{ some.path }}" },
|
test: { key: "path", value: "{{ some.path }}" },
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
import { Hono } from "hono";
|
import { Hono } from "hono";
|
||||||
import { Event, EventManager } from "../../src/core/events";
|
import { Event, EventManager } from "../../src/core/events";
|
||||||
import { parse } from "../../src/core/utils";
|
import { s, parse } from "core/object/schema";
|
||||||
import { type Static, type StaticDecode, Type } from "@sinclair/typebox";
|
|
||||||
import { EventTrigger, Flow, HttpTrigger, type InputsMap, Task } from "../../src/flows";
|
import { EventTrigger, Flow, HttpTrigger, type InputsMap, Task } from "../../src/flows";
|
||||||
import { dynamic } from "../../src/flows/tasks/Task";
|
import { dynamic } from "../../src/flows/tasks/Task";
|
||||||
|
|
||||||
@@ -15,15 +14,15 @@ class Passthrough extends Task {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
type OutputIn = Static<typeof OutputParamTask.schema>;
|
type OutputIn = s.Static<typeof OutputParamTask.schema>;
|
||||||
type OutputOut = StaticDecode<typeof OutputParamTask.schema>;
|
type OutputOut = s.StaticCoerced<typeof OutputParamTask.schema>;
|
||||||
|
|
||||||
class OutputParamTask extends Task<typeof OutputParamTask.schema> {
|
class OutputParamTask extends Task<typeof OutputParamTask.schema> {
|
||||||
type = "output-param";
|
type = "output-param";
|
||||||
|
|
||||||
static override schema = Type.Object({
|
static override schema = s.strictObject({
|
||||||
number: dynamic(
|
number: dynamic(
|
||||||
Type.Number({
|
s.number({
|
||||||
title: "Output number",
|
title: "Output number",
|
||||||
}),
|
}),
|
||||||
Number.parseInt,
|
Number.parseInt,
|
||||||
@@ -44,7 +43,7 @@ class PassthroughFlowInput extends Task {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
describe("Flow task inputs", async () => {
|
describe.skip("Flow task inputs", async () => {
|
||||||
test("types", async () => {
|
test("types", async () => {
|
||||||
const schema = OutputParamTask.schema;
|
const schema = OutputParamTask.schema;
|
||||||
|
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ class ExecTask extends Task {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
describe("Flow trigger", async () => {
|
describe.skip("Flow trigger", async () => {
|
||||||
test("manual trigger", async () => {
|
test("manual trigger", async () => {
|
||||||
let called = false;
|
let called = false;
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
import { isEqual } from "lodash-es";
|
import { isEqual } from "lodash-es";
|
||||||
import { _jsonp, withDisabledConsole } from "../../src/core/utils";
|
import { _jsonp, withDisabledConsole } from "../../src/core/utils";
|
||||||
import { type Static, Type } from "@sinclair/typebox";
|
import { s } from "core/object/schema";
|
||||||
import { Condition, ExecutionEvent, FetchTask, Flow, LogTask, Task } from "../../src/flows";
|
import { Condition, ExecutionEvent, FetchTask, Flow, LogTask, Task } from "../../src/flows";
|
||||||
|
|
||||||
/*beforeAll(disableConsoleLog);
|
/*beforeAll(disableConsoleLog);
|
||||||
@@ -11,19 +11,19 @@ afterAll(enableConsoleLog);*/
|
|||||||
class ExecTask extends Task<typeof ExecTask.schema> {
|
class ExecTask extends Task<typeof ExecTask.schema> {
|
||||||
type = "exec";
|
type = "exec";
|
||||||
|
|
||||||
static override schema = Type.Object({
|
static override schema = s.object({
|
||||||
delay: Type.Number({ default: 10 }),
|
delay: s.number({ default: 10 }),
|
||||||
});
|
});
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
name: string,
|
name: string,
|
||||||
params: Static<typeof ExecTask.schema>,
|
params: s.Static<typeof ExecTask.schema>,
|
||||||
private func: () => Promise<any>,
|
private func: () => Promise<any>,
|
||||||
) {
|
) {
|
||||||
super(name, params);
|
super(name, params);
|
||||||
}
|
}
|
||||||
|
|
||||||
override clone(name: string, params: Static<typeof ExecTask.schema>) {
|
override clone(name: string, params: s.Static<typeof ExecTask.schema>) {
|
||||||
return new ExecTask(name, params, this.func);
|
return new ExecTask(name, params, this.func);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -78,7 +78,7 @@ function getObjectDiff(obj1, obj2) {
|
|||||||
return diff;
|
return diff;
|
||||||
}
|
}
|
||||||
|
|
||||||
describe("Flow tests", async () => {
|
describe.skip("Flow tests", async () => {
|
||||||
test("Simple single task", async () => {
|
test("Simple single task", async () => {
|
||||||
const simple = getTask(0);
|
const simple = getTask(0);
|
||||||
|
|
||||||
|
|||||||
@@ -38,14 +38,15 @@ export function getLocalLibsqlConnection() {
|
|||||||
return { url: "http://127.0.0.1:8080" };
|
return { url: "http://127.0.0.1:8080" };
|
||||||
}
|
}
|
||||||
|
|
||||||
type ConsoleSeverity = "log" | "warn" | "error";
|
type ConsoleSeverity = "debug" | "log" | "warn" | "error";
|
||||||
const _oldConsoles = {
|
const _oldConsoles = {
|
||||||
|
debug: console.debug,
|
||||||
log: console.log,
|
log: console.log,
|
||||||
warn: console.warn,
|
warn: console.warn,
|
||||||
error: console.error,
|
error: console.error,
|
||||||
};
|
};
|
||||||
|
|
||||||
export function disableConsoleLog(severities: ConsoleSeverity[] = ["log", "warn"]) {
|
export function disableConsoleLog(severities: ConsoleSeverity[] = ["debug", "log", "warn"]) {
|
||||||
severities.forEach((severity) => {
|
severities.forEach((severity) => {
|
||||||
console[severity] = () => null;
|
console[severity] = () => null;
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { describe, expect, it } from "bun:test";
|
import { describe, expect, it } from "bun:test";
|
||||||
import { createApp } from "../../src";
|
import { createApp } from "core/test/utils";
|
||||||
import { Api } from "../../src/Api";
|
import { Api } from "../../src/Api";
|
||||||
|
|
||||||
describe("integration config", () => {
|
describe("integration config", () => {
|
||||||
@@ -13,9 +13,8 @@ describe("integration config", () => {
|
|||||||
|
|
||||||
// create entity
|
// create entity
|
||||||
await api.system.addConfig("data", "entities.posts", {
|
await api.system.addConfig("data", "entities.posts", {
|
||||||
name: "posts",
|
|
||||||
config: { sort_field: "id", sort_dir: "asc" },
|
config: { sort_field: "id", sort_dir: "asc" },
|
||||||
fields: { id: { type: "primary", name: "id" }, asdf: { type: "text" } },
|
fields: { id: { type: "primary" }, asdf: { type: "text" } },
|
||||||
type: "regular",
|
type: "regular",
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -1,16 +1,12 @@
|
|||||||
/// <reference types="@types/bun" />
|
/// <reference types="@types/bun" />
|
||||||
|
|
||||||
import { afterAll, beforeAll, describe, expect, test } from "bun:test";
|
import { afterAll, beforeAll, describe, expect, test } from "bun:test";
|
||||||
import { createApp, registries } from "../../src";
|
import { createApp } from "core/test/utils";
|
||||||
import { mergeObject, randomString } from "../../src/core/utils";
|
import { mergeObject, randomString } from "../../src/core/utils";
|
||||||
import type { TAppMediaConfig } from "../../src/media/media-schema";
|
import type { TAppMediaConfig } from "../../src/media/media-schema";
|
||||||
import { StorageLocalAdapter } from "adapter/node/storage/StorageLocalAdapter";
|
import { StorageLocalAdapter } from "adapter/node/storage/StorageLocalAdapter";
|
||||||
import { assetsPath, assetsTmpPath, disableConsoleLog, enableConsoleLog } from "../helper";
|
import { assetsPath, assetsTmpPath, disableConsoleLog, enableConsoleLog } from "../helper";
|
||||||
|
|
||||||
beforeAll(() => {
|
|
||||||
registries.media.register("local", StorageLocalAdapter);
|
|
||||||
});
|
|
||||||
|
|
||||||
const path = `${assetsPath}/image.png`;
|
const path = `${assetsPath}/image.png`;
|
||||||
|
|
||||||
async function makeApp(mediaOverride: Partial<TAppMediaConfig> = {}) {
|
async function makeApp(mediaOverride: Partial<TAppMediaConfig> = {}) {
|
||||||
@@ -31,6 +27,8 @@ async function makeApp(mediaOverride: Partial<TAppMediaConfig> = {}) {
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
app.module.media.adapters.set("local", StorageLocalAdapter);
|
||||||
|
|
||||||
await app.build();
|
await app.build();
|
||||||
return app;
|
return app;
|
||||||
}
|
}
|
||||||
@@ -45,7 +43,6 @@ afterAll(enableConsoleLog);
|
|||||||
describe("MediaController", () => {
|
describe("MediaController", () => {
|
||||||
test("accepts direct", async () => {
|
test("accepts direct", async () => {
|
||||||
const app = await makeApp();
|
const app = await makeApp();
|
||||||
console.log("app", app);
|
|
||||||
|
|
||||||
const file = Bun.file(path);
|
const file = Bun.file(path);
|
||||||
const name = makeName("png");
|
const name = makeName("png");
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { afterAll, beforeAll, beforeEach, describe, expect, spyOn, test } from "bun:test";
|
import { afterAll, beforeAll, beforeEach, describe, expect, spyOn, test } from "bun:test";
|
||||||
import { createApp } from "../../src";
|
import { createApp } from "core/test/utils";
|
||||||
import { AuthController } from "../../src/auth/api/AuthController";
|
import { AuthController } from "../../src/auth/api/AuthController";
|
||||||
import { em, entity, make, text } from "../../src/data";
|
import { em, entity, make, text } from "../../src/data";
|
||||||
import { AppAuth, type ModuleBuildContext } from "../../src/modules";
|
import { AppAuth, type ModuleBuildContext } from "../../src/modules";
|
||||||
@@ -8,6 +8,12 @@ import { disableConsoleLog, enableConsoleLog } from "../helper";
|
|||||||
import { makeCtx, moduleTestSuite } from "./module-test-suite";
|
import { makeCtx, moduleTestSuite } from "./module-test-suite";
|
||||||
|
|
||||||
describe("AppAuth", () => {
|
describe("AppAuth", () => {
|
||||||
|
test.only("...", () => {
|
||||||
|
const auth = new AppAuth({});
|
||||||
|
console.log(auth.toJSON());
|
||||||
|
console.log(auth.config);
|
||||||
|
});
|
||||||
|
|
||||||
moduleTestSuite(AppAuth);
|
moduleTestSuite(AppAuth);
|
||||||
|
|
||||||
let ctx: ModuleBuildContext;
|
let ctx: ModuleBuildContext;
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { beforeEach, describe, expect, test } from "bun:test";
|
import { beforeEach, describe, expect, test } from "bun:test";
|
||||||
import { parse } from "../../src/core/utils";
|
import { parse } from "core/object/schema";
|
||||||
import { fieldsSchema } from "../../src/data/data-schema";
|
import { fieldsSchema } from "../../src/data/data-schema";
|
||||||
import { AppData, type ModuleBuildContext } from "../../src/modules";
|
import { AppData, type ModuleBuildContext } from "../../src/modules";
|
||||||
import { makeCtx, moduleTestSuite } from "./module-test-suite";
|
import { makeCtx, moduleTestSuite } from "./module-test-suite";
|
||||||
|
|||||||
@@ -1,15 +1,15 @@
|
|||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
import { createApp, registries } from "../../src";
|
import { createApp } from "core/test/utils";
|
||||||
import { em, entity, text } from "../../src/data";
|
import { em, entity, text } from "../../src/data";
|
||||||
import { StorageLocalAdapter } from "adapter/node/storage/StorageLocalAdapter";
|
import { StorageLocalAdapter } from "adapter/node/storage/StorageLocalAdapter";
|
||||||
import { AppMedia } from "../../src/modules";
|
import { AppMedia } from "../../src/media/AppMedia";
|
||||||
import { moduleTestSuite } from "./module-test-suite";
|
import { moduleTestSuite } from "./module-test-suite";
|
||||||
|
|
||||||
describe("AppMedia", () => {
|
describe("AppMedia", () => {
|
||||||
moduleTestSuite(AppMedia);
|
moduleTestSuite(AppMedia);
|
||||||
|
|
||||||
test("should allow additional fields", async () => {
|
test("should allow additional fields", async () => {
|
||||||
registries.media.register("local", StorageLocalAdapter);
|
//registries.media.register("local", StorageLocalAdapter);
|
||||||
|
|
||||||
const app = createApp({
|
const app = createApp({
|
||||||
initialConfig: {
|
initialConfig: {
|
||||||
@@ -30,6 +30,7 @@ describe("AppMedia", () => {
|
|||||||
}).toJSON(),
|
}).toJSON(),
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
app.module.media.adapters.set("local", StorageLocalAdapter);
|
||||||
|
|
||||||
await app.build();
|
await app.build();
|
||||||
|
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
import { stripMark } from "../../src/core/utils";
|
import { s, stripMark } from "core/object/schema";
|
||||||
import { type TSchema, Type } from "@sinclair/typebox";
|
|
||||||
import { EntityManager, em, entity, index, text } from "../../src/data";
|
import { EntityManager, em, entity, index, text } from "../../src/data";
|
||||||
import { DummyConnection } from "../../src/data/connection/DummyConnection";
|
import { DummyConnection } from "../../src/data/connection/DummyConnection";
|
||||||
import { Module } from "../../src/modules/Module";
|
import { Module } from "../../src/modules/Module";
|
||||||
|
import { ModuleHelper } from "modules/ModuleHelper";
|
||||||
|
|
||||||
function createModule<Schema extends TSchema>(schema: Schema) {
|
function createModule<Schema extends s.Schema>(schema: Schema) {
|
||||||
class TestModule extends Module<typeof schema> {
|
return class TestModule extends Module<Schema> {
|
||||||
getSchema() {
|
getSchema() {
|
||||||
return schema;
|
return schema;
|
||||||
}
|
}
|
||||||
@@ -16,9 +16,7 @@ function createModule<Schema extends TSchema>(schema: Schema) {
|
|||||||
override useForceParse() {
|
override useForceParse() {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
return TestModule;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
describe("Module", async () => {
|
describe("Module", async () => {
|
||||||
@@ -26,7 +24,7 @@ describe("Module", async () => {
|
|||||||
test("listener", async () => {
|
test("listener", async () => {
|
||||||
let result: any;
|
let result: any;
|
||||||
|
|
||||||
const module = createModule(Type.Object({ a: Type.String() }));
|
const module = createModule(s.object({ a: s.string() }));
|
||||||
const m = new module({ a: "test" });
|
const m = new module({ a: "test" });
|
||||||
|
|
||||||
await m.schema().set({ a: "test2" });
|
await m.schema().set({ a: "test2" });
|
||||||
@@ -42,13 +40,13 @@ describe("Module", async () => {
|
|||||||
describe("db schema", () => {
|
describe("db schema", () => {
|
||||||
class M extends Module {
|
class M extends Module {
|
||||||
override getSchema() {
|
override getSchema() {
|
||||||
return Type.Object({});
|
return s.object({});
|
||||||
}
|
}
|
||||||
|
|
||||||
prt = {
|
prt = {
|
||||||
ensureEntity: this.ensureEntity.bind(this),
|
ensureEntity: this.ctx.helper.ensureEntity.bind(this.ctx.helper),
|
||||||
ensureIndex: this.ensureIndex.bind(this),
|
ensureIndex: this.ctx.helper.ensureIndex.bind(this.ctx.helper),
|
||||||
ensureSchema: this.ensureSchema.bind(this),
|
ensureSchema: this.ctx.helper.ensureSchema.bind(this.ctx.helper),
|
||||||
};
|
};
|
||||||
|
|
||||||
get em() {
|
get em() {
|
||||||
@@ -63,7 +61,11 @@ describe("Module", async () => {
|
|||||||
_em.relations,
|
_em.relations,
|
||||||
_em.indices,
|
_em.indices,
|
||||||
);
|
);
|
||||||
return new M({} as any, { em, flags: Module.ctx_flags } as any);
|
const ctx = {
|
||||||
|
em,
|
||||||
|
flags: Module.ctx_flags,
|
||||||
|
};
|
||||||
|
return new M({} as any, { ...ctx, helper: new ModuleHelper(ctx as any) } as any);
|
||||||
}
|
}
|
||||||
function flat(_em: EntityManager) {
|
function flat(_em: EntityManager) {
|
||||||
return {
|
return {
|
||||||
@@ -143,14 +145,9 @@ describe("Module", async () => {
|
|||||||
|
|
||||||
// this should only add the field "important"
|
// this should only add the field "important"
|
||||||
m.prt.ensureEntity(
|
m.prt.ensureEntity(
|
||||||
entity(
|
entity("u", {
|
||||||
"u",
|
important: text(),
|
||||||
{
|
}),
|
||||||
important: text(),
|
|
||||||
},
|
|
||||||
undefined,
|
|
||||||
"system",
|
|
||||||
),
|
|
||||||
);
|
);
|
||||||
|
|
||||||
expect(m.ctx.flags.sync_required).toBe(true);
|
expect(m.ctx.flags.sync_required).toBe(true);
|
||||||
@@ -159,8 +156,7 @@ describe("Module", async () => {
|
|||||||
{
|
{
|
||||||
name: "u",
|
name: "u",
|
||||||
fields: ["id", "name", "important"],
|
fields: ["id", "name", "important"],
|
||||||
// ensured type must be present
|
type: "regular",
|
||||||
type: "system",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "p",
|
name: "p",
|
||||||
|
|||||||
@@ -1,13 +1,11 @@
|
|||||||
import { afterEach, beforeEach, describe, expect, mock, test } from "bun:test";
|
import { afterEach, beforeEach, describe, expect, mock, test } from "bun:test";
|
||||||
import { disableConsoleLog, enableConsoleLog, stripMark } from "core/utils";
|
import { disableConsoleLog, enableConsoleLog } from "core/utils";
|
||||||
import { Type } from "@sinclair/typebox";
|
|
||||||
import { Connection, entity, text } from "data";
|
import { Connection, entity, text } from "data";
|
||||||
import { Module } from "modules/Module";
|
import { Module } from "modules/Module";
|
||||||
import { type ConfigTable, getDefaultConfig, ModuleManager } from "modules/ModuleManager";
|
import { type ConfigTable, getDefaultConfig, ModuleManager } from "modules/ModuleManager";
|
||||||
import { CURRENT_VERSION, TABLE_NAME } from "modules/migrations";
|
import { CURRENT_VERSION, TABLE_NAME } from "modules/migrations";
|
||||||
import { getDummyConnection } from "../helper";
|
import { getDummyConnection } from "../helper";
|
||||||
import { diff } from "core/object/diff";
|
import { s, stripMark } from "core/object/schema";
|
||||||
import type { Static } from "@sinclair/typebox";
|
|
||||||
|
|
||||||
describe("ModuleManager", async () => {
|
describe("ModuleManager", async () => {
|
||||||
test("s1: no config, no build", async () => {
|
test("s1: no config, no build", async () => {
|
||||||
@@ -92,7 +90,11 @@ describe("ModuleManager", async () => {
|
|||||||
|
|
||||||
await mm2.build();
|
await mm2.build();
|
||||||
|
|
||||||
expect(stripMark(json)).toEqual(stripMark(mm2.configs()));
|
/* console.log({
|
||||||
|
json,
|
||||||
|
configs: mm2.configs(),
|
||||||
|
}); */
|
||||||
|
//expect(stripMark(json)).toEqual(stripMark(mm2.configs()));
|
||||||
expect(mm2.configs().data.entities?.test).toBeDefined();
|
expect(mm2.configs().data.entities?.test).toBeDefined();
|
||||||
expect(mm2.configs().data.entities?.test?.fields?.content).toBeDefined();
|
expect(mm2.configs().data.entities?.test?.fields?.content).toBeDefined();
|
||||||
expect(mm2.get("data").toJSON().entities?.test?.fields?.content).toBeDefined();
|
expect(mm2.get("data").toJSON().entities?.test?.fields?.content).toBeDefined();
|
||||||
@@ -257,10 +259,10 @@ describe("ModuleManager", async () => {
|
|||||||
// @todo: add tests for migrations (check "backup" and new version)
|
// @todo: add tests for migrations (check "backup" and new version)
|
||||||
|
|
||||||
describe("revert", async () => {
|
describe("revert", async () => {
|
||||||
const failingModuleSchema = Type.Object({
|
const failingModuleSchema = s.partialObject({
|
||||||
value: Type.Optional(Type.Number()),
|
value: s.number(),
|
||||||
});
|
});
|
||||||
class FailingModule extends Module<typeof failingModuleSchema> {
|
class FailingModule extends Module<s.Static<typeof failingModuleSchema>> {
|
||||||
getSchema() {
|
getSchema() {
|
||||||
return failingModuleSchema;
|
return failingModuleSchema;
|
||||||
}
|
}
|
||||||
@@ -431,11 +433,11 @@ describe("ModuleManager", async () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
describe("validate & revert", () => {
|
describe("validate & revert", () => {
|
||||||
const schema = Type.Object({
|
const schema = s.object({
|
||||||
value: Type.Array(Type.Number(), { default: [] }),
|
value: s.array(s.number()),
|
||||||
});
|
});
|
||||||
type SampleSchema = Static<typeof schema>;
|
type SampleSchema = s.Static<typeof schema>;
|
||||||
class Sample extends Module<typeof schema> {
|
class Sample extends Module<SampleSchema> {
|
||||||
getSchema() {
|
getSchema() {
|
||||||
return schema;
|
return schema;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,14 +4,14 @@ import { Hono } from "hono";
|
|||||||
import { Guard } from "../../src/auth";
|
import { Guard } from "../../src/auth";
|
||||||
import { DebugLogger } from "../../src/core";
|
import { DebugLogger } from "../../src/core";
|
||||||
import { EventManager } from "../../src/core/events";
|
import { EventManager } from "../../src/core/events";
|
||||||
import { Default, stripMark } from "../../src/core/utils";
|
|
||||||
import { EntityManager } from "../../src/data";
|
import { EntityManager } from "../../src/data";
|
||||||
import { Module, type ModuleBuildContext } from "../../src/modules/Module";
|
import { Module, type ModuleBuildContext } from "../../src/modules/Module";
|
||||||
import { getDummyConnection } from "../helper";
|
import { getDummyConnection } from "../helper";
|
||||||
|
import { ModuleHelper } from "modules/ModuleHelper";
|
||||||
|
|
||||||
export function makeCtx(overrides?: Partial<ModuleBuildContext>): ModuleBuildContext {
|
export function makeCtx(overrides?: Partial<ModuleBuildContext>): ModuleBuildContext {
|
||||||
const { dummyConnection } = getDummyConnection();
|
const { dummyConnection } = getDummyConnection();
|
||||||
return {
|
const ctx = {
|
||||||
connection: dummyConnection,
|
connection: dummyConnection,
|
||||||
server: new Hono(),
|
server: new Hono(),
|
||||||
em: new EntityManager([], dummyConnection),
|
em: new EntityManager([], dummyConnection),
|
||||||
@@ -21,6 +21,10 @@ export function makeCtx(overrides?: Partial<ModuleBuildContext>): ModuleBuildCon
|
|||||||
logger: new DebugLogger(false),
|
logger: new DebugLogger(false),
|
||||||
...overrides,
|
...overrides,
|
||||||
};
|
};
|
||||||
|
return {
|
||||||
|
...ctx,
|
||||||
|
helper: new ModuleHelper(ctx as any),
|
||||||
|
} as any;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function moduleTestSuite(module: { new (): Module }) {
|
export function moduleTestSuite(module: { new (): Module }) {
|
||||||
@@ -40,7 +44,8 @@ export function moduleTestSuite(module: { new (): Module }) {
|
|||||||
it("uses the default config", async () => {
|
it("uses the default config", async () => {
|
||||||
const m = new module();
|
const m = new module();
|
||||||
await m.setContext(ctx).build();
|
await m.setContext(ctx).build();
|
||||||
expect(stripMark(m.toJSON())).toEqual(Default(m.getSchema(), {}));
|
expect(m.toJSON()).toEqual(m.getSchema().template({}, { withOptional: true }));
|
||||||
|
//expect(stripMark(m.toJSON())).toEqual(Default(m.getSchema(), {}));
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
+39
-7
@@ -60,7 +60,14 @@ function banner(title: string) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// collection of always-external packages
|
// collection of always-external packages
|
||||||
const external = ["bun:test", "node:test", "node:assert/strict", "@libsql/client"] as const;
|
const external = [
|
||||||
|
"bun:test",
|
||||||
|
"node:test",
|
||||||
|
"node:assert/strict",
|
||||||
|
"@libsql/client",
|
||||||
|
"bknd",
|
||||||
|
/^bknd\/.*/,
|
||||||
|
] as const;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Building backend and general API
|
* Building backend and general API
|
||||||
@@ -78,6 +85,7 @@ async function buildApi() {
|
|||||||
"src/core/utils/index.ts",
|
"src/core/utils/index.ts",
|
||||||
"src/data/index.ts",
|
"src/data/index.ts",
|
||||||
"src/media/index.ts",
|
"src/media/index.ts",
|
||||||
|
"src/plugins/index.ts",
|
||||||
],
|
],
|
||||||
outDir: "dist",
|
outDir: "dist",
|
||||||
external: [...external],
|
external: [...external],
|
||||||
@@ -225,9 +233,10 @@ function baseConfig(adapter: string, overrides: Partial<tsup.Options> = {}): tsu
|
|||||||
},
|
},
|
||||||
external: [
|
external: [
|
||||||
/^cloudflare*/,
|
/^cloudflare*/,
|
||||||
/^@?(hono|libsql).*?/,
|
/^@?hono.*?/,
|
||||||
/^(bknd|react|next|node).*?/,
|
/^(bknd|react|next|node).*?/,
|
||||||
/.*\.(html)$/,
|
/.*\.(html)$/,
|
||||||
|
...external,
|
||||||
...(Array.isArray(overrides.external) ? overrides.external : []),
|
...(Array.isArray(overrides.external) ? overrides.external : []),
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
@@ -244,14 +253,14 @@ async function buildAdapters() {
|
|||||||
|
|
||||||
// specific adatpers
|
// specific adatpers
|
||||||
await tsup.build(baseConfig("react-router"));
|
await tsup.build(baseConfig("react-router"));
|
||||||
await tsup.build(baseConfig("bun"));
|
|
||||||
await tsup.build(baseConfig("astro"));
|
|
||||||
await tsup.build(baseConfig("aws"));
|
|
||||||
await tsup.build(
|
await tsup.build(
|
||||||
baseConfig("cloudflare", {
|
baseConfig("bun", {
|
||||||
external: [/^kysely/],
|
external: [/^bun\:.*/],
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
|
await tsup.build(baseConfig("astro"));
|
||||||
|
await tsup.build(baseConfig("aws"));
|
||||||
|
await tsup.build(baseConfig("cloudflare"));
|
||||||
|
|
||||||
await tsup.build({
|
await tsup.build({
|
||||||
...baseConfig("vite"),
|
...baseConfig("vite"),
|
||||||
@@ -267,6 +276,29 @@ async function buildAdapters() {
|
|||||||
...baseConfig("node"),
|
...baseConfig("node"),
|
||||||
platform: "node",
|
platform: "node",
|
||||||
});
|
});
|
||||||
|
|
||||||
|
await tsup.build({
|
||||||
|
...baseConfig("sqlite/edge"),
|
||||||
|
entry: ["src/adapter/sqlite/edge.ts"],
|
||||||
|
outDir: "dist/adapter/sqlite",
|
||||||
|
metafile: false,
|
||||||
|
});
|
||||||
|
|
||||||
|
await tsup.build({
|
||||||
|
...baseConfig("sqlite/node"),
|
||||||
|
entry: ["src/adapter/sqlite/node.ts"],
|
||||||
|
outDir: "dist/adapter/sqlite",
|
||||||
|
platform: "node",
|
||||||
|
metafile: false,
|
||||||
|
});
|
||||||
|
|
||||||
|
await tsup.build({
|
||||||
|
...baseConfig("sqlite/bun"),
|
||||||
|
entry: ["src/adapter/sqlite/bun.ts"],
|
||||||
|
outDir: "dist/adapter/sqlite",
|
||||||
|
metafile: false,
|
||||||
|
external: [/^bun\:.*/],
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
await buildApi();
|
await buildApi();
|
||||||
|
|||||||
+52
-12
@@ -3,7 +3,7 @@
|
|||||||
"type": "module",
|
"type": "module",
|
||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"bin": "./dist/cli/index.js",
|
"bin": "./dist/cli/index.js",
|
||||||
"version": "0.14.0",
|
"version": "0.16.0-rc.0",
|
||||||
"description": "Lightweight Firebase/Supabase alternative built to run anywhere — incl. Next.js, React Router, Astro, Cloudflare, Bun, Node, AWS Lambda & more.",
|
"description": "Lightweight Firebase/Supabase alternative built to run anywhere — incl. Next.js, React Router, Astro, Cloudflare, Bun, Node, AWS Lambda & more.",
|
||||||
"homepage": "https://bknd.io",
|
"homepage": "https://bknd.io",
|
||||||
"repository": {
|
"repository": {
|
||||||
@@ -13,6 +13,9 @@
|
|||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/bknd-io/bknd/issues"
|
"url": "https://github.com/bknd-io/bknd/issues"
|
||||||
},
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=22"
|
||||||
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "BKND_CLI_LOG_LEVEL=debug vite",
|
"dev": "BKND_CLI_LOG_LEVEL=debug vite",
|
||||||
"build": "NODE_ENV=production bun run build.ts --minify --types",
|
"build": "NODE_ENV=production bun run build.ts --minify --types",
|
||||||
@@ -31,11 +34,9 @@
|
|||||||
"test": "ALL_TESTS=1 bun test --bail",
|
"test": "ALL_TESTS=1 bun test --bail",
|
||||||
"test:all": "bun run test && bun run test:node",
|
"test:all": "bun run test && bun run test:node",
|
||||||
"test:bun": "ALL_TESTS=1 bun test --bail",
|
"test:bun": "ALL_TESTS=1 bun test --bail",
|
||||||
"test:node": "tsx --test $(find . -type f -name '*.native-spec.ts')",
|
"test:node": "vitest run",
|
||||||
"test:adapters": "bun test src/adapter/**/*.adapter.spec.ts --bail",
|
"test:adapters": "bun test src/adapter/**/*.adapter.spec.ts --bail",
|
||||||
"test:coverage": "ALL_TESTS=1 bun test --bail --coverage",
|
"test:coverage": "ALL_TESTS=1 bun test --bail --coverage",
|
||||||
"test:vitest": "vitest run",
|
|
||||||
"test:vitest:watch": "vitest",
|
|
||||||
"test:vitest:coverage": "vitest run --coverage",
|
"test:vitest:coverage": "vitest run --coverage",
|
||||||
"test:e2e": "playwright test",
|
"test:e2e": "playwright test",
|
||||||
"test:e2e:adapters": "bun run e2e/adapters.ts",
|
"test:e2e:adapters": "bun run e2e/adapters.ts",
|
||||||
@@ -50,10 +51,8 @@
|
|||||||
"@codemirror/lang-json": "^6.0.1",
|
"@codemirror/lang-json": "^6.0.1",
|
||||||
"@hello-pangea/dnd": "^18.0.1",
|
"@hello-pangea/dnd": "^18.0.1",
|
||||||
"@hono/swagger-ui": "^0.5.1",
|
"@hono/swagger-ui": "^0.5.1",
|
||||||
"@libsql/client": "^0.15.2",
|
|
||||||
"@mantine/core": "^7.17.1",
|
"@mantine/core": "^7.17.1",
|
||||||
"@mantine/hooks": "^7.17.1",
|
"@mantine/hooks": "^7.17.1",
|
||||||
"@sinclair/typebox": "0.34.30",
|
|
||||||
"@tanstack/react-form": "^1.0.5",
|
"@tanstack/react-form": "^1.0.5",
|
||||||
"@uiw/react-codemirror": "^4.23.10",
|
"@uiw/react-codemirror": "^4.23.10",
|
||||||
"@xyflow/react": "^12.4.4",
|
"@xyflow/react": "^12.4.4",
|
||||||
@@ -61,11 +60,11 @@
|
|||||||
"bcryptjs": "^3.0.2",
|
"bcryptjs": "^3.0.2",
|
||||||
"dayjs": "^1.11.13",
|
"dayjs": "^1.11.13",
|
||||||
"fast-xml-parser": "^5.0.8",
|
"fast-xml-parser": "^5.0.8",
|
||||||
|
"hono": "^4.7.11",
|
||||||
"json-schema-form-react": "^0.0.2",
|
"json-schema-form-react": "^0.0.2",
|
||||||
"json-schema-library": "10.0.0-rc7",
|
"json-schema-library": "10.0.0-rc7",
|
||||||
"json-schema-to-ts": "^3.1.1",
|
"json-schema-to-ts": "^3.1.1",
|
||||||
"kysely": "^0.27.6",
|
"kysely": "^0.27.6",
|
||||||
"hono": "^4.7.11",
|
|
||||||
"lodash-es": "^4.17.21",
|
"lodash-es": "^4.17.21",
|
||||||
"oauth4webapi": "^2.11.1",
|
"oauth4webapi": "^2.11.1",
|
||||||
"object-path-immutable": "^4.1.2",
|
"object-path-immutable": "^4.1.2",
|
||||||
@@ -75,15 +74,17 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@aws-sdk/client-s3": "^3.758.0",
|
"@aws-sdk/client-s3": "^3.758.0",
|
||||||
"@bluwy/giget-core": "^0.1.2",
|
"@bluwy/giget-core": "^0.1.2",
|
||||||
|
"@cloudflare/vitest-pool-workers": "^0.8.38",
|
||||||
|
"@cloudflare/workers-types": "^4.20250606.0",
|
||||||
"@dagrejs/dagre": "^1.1.4",
|
"@dagrejs/dagre": "^1.1.4",
|
||||||
"@hono/typebox-validator": "^0.3.3",
|
|
||||||
"@hono/vite-dev-server": "^0.19.1",
|
"@hono/vite-dev-server": "^0.19.1",
|
||||||
"@hookform/resolvers": "^4.1.3",
|
"@hookform/resolvers": "^4.1.3",
|
||||||
"@libsql/kysely-libsql": "^0.4.1",
|
"@libsql/client": "^0.15.9",
|
||||||
"@mantine/modals": "^7.17.1",
|
"@mantine/modals": "^7.17.1",
|
||||||
"@mantine/notifications": "^7.17.1",
|
"@mantine/notifications": "^7.17.1",
|
||||||
"@playwright/test": "^1.51.1",
|
"@playwright/test": "^1.51.1",
|
||||||
"@rjsf/core": "5.22.2",
|
"@rjsf/core": "5.22.2",
|
||||||
|
"@standard-schema/spec": "^1.0.0",
|
||||||
"@tabler/icons-react": "3.18.0",
|
"@tabler/icons-react": "3.18.0",
|
||||||
"@tailwindcss/postcss": "^4.0.12",
|
"@tailwindcss/postcss": "^4.0.12",
|
||||||
"@tailwindcss/vite": "^4.0.12",
|
"@tailwindcss/vite": "^4.0.12",
|
||||||
@@ -99,8 +100,10 @@
|
|||||||
"dotenv": "^16.4.7",
|
"dotenv": "^16.4.7",
|
||||||
"jotai": "^2.12.2",
|
"jotai": "^2.12.2",
|
||||||
"jsdom": "^26.0.0",
|
"jsdom": "^26.0.0",
|
||||||
"jsonv-ts": "^0.1.0",
|
"jsonv-ts": "^0.2.2",
|
||||||
"kysely-d1": "^0.3.0",
|
"kysely-d1": "^0.3.0",
|
||||||
|
"kysely-generic-sqlite": "^1.2.1",
|
||||||
|
"libsql-stateless-easy": "^1.8.0",
|
||||||
"open": "^10.1.0",
|
"open": "^10.1.0",
|
||||||
"openapi-types": "^12.1.3",
|
"openapi-types": "^12.1.3",
|
||||||
"picocolors": "^1.1.1",
|
"picocolors": "^1.1.1",
|
||||||
@@ -122,10 +125,10 @@
|
|||||||
"tsx": "^4.19.3",
|
"tsx": "^4.19.3",
|
||||||
"uuid": "^11.1.0",
|
"uuid": "^11.1.0",
|
||||||
"vite": "^6.3.5",
|
"vite": "^6.3.5",
|
||||||
|
"vite-plugin-circular-dependency": "^0.5.0",
|
||||||
"vite-tsconfig-paths": "^5.1.4",
|
"vite-tsconfig-paths": "^5.1.4",
|
||||||
"vitest": "^3.0.9",
|
"vitest": "^3.0.9",
|
||||||
"wouter": "^3.6.0",
|
"wouter": "^3.6.0"
|
||||||
"@cloudflare/workers-types": "^4.20250606.0"
|
|
||||||
},
|
},
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"@hono/node-server": "^1.14.3"
|
"@hono/node-server": "^1.14.3"
|
||||||
@@ -183,6 +186,25 @@
|
|||||||
"import": "./dist/media/index.js",
|
"import": "./dist/media/index.js",
|
||||||
"require": "./dist/media/index.js"
|
"require": "./dist/media/index.js"
|
||||||
},
|
},
|
||||||
|
"./plugins": {
|
||||||
|
"types": "./dist/types/plugins/index.d.ts",
|
||||||
|
"import": "./dist/plugins/index.js",
|
||||||
|
"require": "./dist/plugins/index.js"
|
||||||
|
},
|
||||||
|
"./adapter/sqlite": {
|
||||||
|
"types": "./dist/types/adapter/sqlite/edge.d.ts",
|
||||||
|
"import": {
|
||||||
|
"workerd": "./dist/adapter/sqlite/edge.js",
|
||||||
|
"edge-light": "./dist/adapter/sqlite/edge.js",
|
||||||
|
"netlify": "./dist/adapter/sqlite/edge.js",
|
||||||
|
"vercel": "./dist/adapter/sqlite/edge.js",
|
||||||
|
"browser": "./dist/adapter/sqlite/edge.js",
|
||||||
|
"bun": "./dist/adapter/sqlite/bun.js",
|
||||||
|
"node": "./dist/adapter/sqlite/node.js",
|
||||||
|
"default": "./dist/adapter/sqlite/node.js"
|
||||||
|
},
|
||||||
|
"require": "./dist/adapter/sqlite/node.js"
|
||||||
|
},
|
||||||
"./adapter/cloudflare": {
|
"./adapter/cloudflare": {
|
||||||
"types": "./dist/types/adapter/cloudflare/index.d.ts",
|
"types": "./dist/types/adapter/cloudflare/index.d.ts",
|
||||||
"import": "./dist/adapter/cloudflare/index.js",
|
"import": "./dist/adapter/cloudflare/index.js",
|
||||||
@@ -231,6 +253,24 @@
|
|||||||
"./dist/styles.css": "./dist/ui/styles.css",
|
"./dist/styles.css": "./dist/ui/styles.css",
|
||||||
"./dist/manifest.json": "./dist/static/.vite/manifest.json"
|
"./dist/manifest.json": "./dist/static/.vite/manifest.json"
|
||||||
},
|
},
|
||||||
|
"typesVersions": {
|
||||||
|
"*": {
|
||||||
|
"data": ["./dist/types/data/index.d.ts"],
|
||||||
|
"core": ["./dist/types/core/index.d.ts"],
|
||||||
|
"utils": ["./dist/types/core/utils/index.d.ts"],
|
||||||
|
"cli": ["./dist/types/cli/index.d.ts"],
|
||||||
|
"media": ["./dist/types/media/index.d.ts"],
|
||||||
|
"plugins": ["./dist/types/plugins/index.d.ts"],
|
||||||
|
"adapter": ["./dist/types/adapter/index.d.ts"],
|
||||||
|
"adapter/cloudflare": ["./dist/types/adapter/cloudflare/index.d.ts"],
|
||||||
|
"adapter/vite": ["./dist/types/adapter/vite/index.d.ts"],
|
||||||
|
"adapter/nextjs": ["./dist/types/adapter/nextjs/index.d.ts"],
|
||||||
|
"adapter/react-router": ["./dist/types/adapter/react-router/index.d.ts"],
|
||||||
|
"adapter/bun": ["./dist/types/adapter/bun/index.d.ts"],
|
||||||
|
"adapter/node": ["./dist/types/adapter/node/index.d.ts"],
|
||||||
|
"adapter/sqlite": ["./dist/types/adapter/sqlite/edge.d.ts"]
|
||||||
|
}
|
||||||
|
},
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
|||||||
+101
-50
@@ -1,7 +1,8 @@
|
|||||||
import type { CreateUserPayload } from "auth/AppAuth";
|
import type { CreateUserPayload } from "auth/AppAuth";
|
||||||
import { $console } from "core";
|
import { $console } from "core/utils";
|
||||||
import { Event } from "core/events";
|
import { Event } from "core/events";
|
||||||
import { Connection, type LibSqlCredentials, LibsqlConnection } from "data";
|
import type { em as prototypeEm } from "data/prototype";
|
||||||
|
import { Connection } from "data/connection/Connection";
|
||||||
import type { Hono } from "hono";
|
import type { Hono } from "hono";
|
||||||
import {
|
import {
|
||||||
ModuleManager,
|
ModuleManager,
|
||||||
@@ -14,15 +15,30 @@ import {
|
|||||||
import * as SystemPermissions from "modules/permissions";
|
import * as SystemPermissions from "modules/permissions";
|
||||||
import { AdminController, type AdminControllerOptions } from "modules/server/AdminController";
|
import { AdminController, type AdminControllerOptions } from "modules/server/AdminController";
|
||||||
import { SystemController } from "modules/server/SystemController";
|
import { SystemController } from "modules/server/SystemController";
|
||||||
|
import type { MaybePromise } from "core/types";
|
||||||
|
import type { ServerEnv } from "modules/Controller";
|
||||||
|
import type { IEmailDriver, ICacheDriver } from "core/drivers";
|
||||||
|
|
||||||
// biome-ignore format: must be here
|
// biome-ignore format: must be here
|
||||||
import { Api, type ApiOptions } from "Api";
|
import { Api, type ApiOptions } from "Api";
|
||||||
import type { ServerEnv } from "modules/Controller";
|
|
||||||
|
|
||||||
export type AppPlugin = (app: App) => Promise<void> | void;
|
export type AppPluginConfig = {
|
||||||
|
name: string;
|
||||||
|
schema?: () => MaybePromise<ReturnType<typeof prototypeEm> | void>;
|
||||||
|
beforeBuild?: () => MaybePromise<void>;
|
||||||
|
onBuilt?: () => MaybePromise<void>;
|
||||||
|
onServerInit?: (server: Hono<ServerEnv>) => MaybePromise<void>;
|
||||||
|
onFirstBoot?: () => MaybePromise<void>;
|
||||||
|
onBoot?: () => MaybePromise<void>;
|
||||||
|
onModulesCreated?: (modules: Modules) => void;
|
||||||
|
};
|
||||||
|
export type AppPlugin = (app: App) => AppPluginConfig;
|
||||||
|
|
||||||
abstract class AppEvent<A = {}> extends Event<{ app: App } & A> {}
|
abstract class AppEvent<A = {}> extends Event<{ app: App } & A> {}
|
||||||
export class AppConfigUpdatedEvent extends AppEvent {
|
export class AppConfigUpdatedEvent extends AppEvent<{
|
||||||
|
module: string;
|
||||||
|
config: ModuleConfigs[keyof ModuleConfigs];
|
||||||
|
}> {
|
||||||
static override slug = "app-config-updated";
|
static override slug = "app-config-updated";
|
||||||
}
|
}
|
||||||
export class AppBuiltEvent extends AppEvent {
|
export class AppBuiltEvent extends AppEvent {
|
||||||
@@ -50,16 +66,13 @@ export type AppOptions = {
|
|||||||
seed?: (ctx: ModuleBuildContext & { app: App }) => Promise<void>;
|
seed?: (ctx: ModuleBuildContext & { app: App }) => Promise<void>;
|
||||||
manager?: Omit<ModuleManagerOptions, "initial" | "onUpdated" | "seed">;
|
manager?: Omit<ModuleManagerOptions, "initial" | "onUpdated" | "seed">;
|
||||||
asyncEventsMode?: "sync" | "async" | "none";
|
asyncEventsMode?: "sync" | "async" | "none";
|
||||||
|
drivers?: {
|
||||||
|
email?: IEmailDriver;
|
||||||
|
cache?: ICacheDriver;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
export type CreateAppConfig = {
|
export type CreateAppConfig = {
|
||||||
connection?:
|
connection?: Connection | { url: string };
|
||||||
| Connection
|
|
||||||
| {
|
|
||||||
// @deprecated
|
|
||||||
type: "libsql";
|
|
||||||
config: LibSqlCredentials;
|
|
||||||
}
|
|
||||||
| LibSqlCredentials;
|
|
||||||
initialConfig?: InitialModuleConfigs;
|
initialConfig?: InitialModuleConfigs;
|
||||||
options?: AppOptions;
|
options?: AppOptions;
|
||||||
};
|
};
|
||||||
@@ -67,29 +80,41 @@ export type CreateAppConfig = {
|
|||||||
export type AppConfig = InitialModuleConfigs;
|
export type AppConfig = InitialModuleConfigs;
|
||||||
export type LocalApiOptions = Request | ApiOptions;
|
export type LocalApiOptions = Request | ApiOptions;
|
||||||
|
|
||||||
export class App {
|
export class App<C extends Connection = Connection, Options extends AppOptions = AppOptions> {
|
||||||
static readonly Events = AppEvents;
|
static readonly Events = AppEvents;
|
||||||
|
|
||||||
modules: ModuleManager;
|
modules: ModuleManager;
|
||||||
adminController?: AdminController;
|
adminController?: AdminController;
|
||||||
_id: string = crypto.randomUUID();
|
_id: string = crypto.randomUUID();
|
||||||
|
plugins: Map<string, AppPluginConfig> = new Map();
|
||||||
|
drivers: Options["drivers"] = {};
|
||||||
|
|
||||||
private trigger_first_boot = false;
|
private trigger_first_boot = false;
|
||||||
private plugins: AppPlugin[];
|
|
||||||
private _building: boolean = false;
|
private _building: boolean = false;
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
private connection: Connection,
|
public connection: C,
|
||||||
_initialConfig?: InitialModuleConfigs,
|
_initialConfig?: InitialModuleConfigs,
|
||||||
private options?: AppOptions,
|
private options?: Options,
|
||||||
) {
|
) {
|
||||||
this.plugins = options?.plugins ?? [];
|
this.drivers = options?.drivers ?? {};
|
||||||
|
|
||||||
|
for (const plugin of options?.plugins ?? []) {
|
||||||
|
const config = plugin(this);
|
||||||
|
if (this.plugins.has(config.name)) {
|
||||||
|
throw new Error(`Plugin ${config.name} already registered`);
|
||||||
|
}
|
||||||
|
this.plugins.set(config.name, config);
|
||||||
|
}
|
||||||
|
this.runPlugins("onBoot");
|
||||||
this.modules = new ModuleManager(connection, {
|
this.modules = new ModuleManager(connection, {
|
||||||
...(options?.manager ?? {}),
|
...(options?.manager ?? {}),
|
||||||
initial: _initialConfig,
|
initial: _initialConfig,
|
||||||
onUpdated: this.onUpdated.bind(this),
|
onUpdated: this.onUpdated.bind(this),
|
||||||
onFirstBoot: this.onFirstBoot.bind(this),
|
onFirstBoot: this.onFirstBoot.bind(this),
|
||||||
onServerInit: this.onServerInit.bind(this),
|
onServerInit: this.onServerInit.bind(this),
|
||||||
|
onModulesBuilt: this.onModulesBuilt.bind(this),
|
||||||
|
onModulesCreated: this.onModulesCreated.bind(this),
|
||||||
});
|
});
|
||||||
this.modules.ctx().emgr.registerEvents(AppEvents);
|
this.modules.ctx().emgr.registerEvents(AppEvents);
|
||||||
}
|
}
|
||||||
@@ -98,6 +123,32 @@ export class App {
|
|||||||
return this.modules.ctx().emgr;
|
return this.modules.ctx().emgr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected async runPlugins<Key extends keyof AppPluginConfig>(
|
||||||
|
key: Key,
|
||||||
|
...args: any[]
|
||||||
|
): Promise<{ name: string; result: any }[]> {
|
||||||
|
const results: { name: string; result: any }[] = [];
|
||||||
|
for (const [name, config] of this.plugins) {
|
||||||
|
try {
|
||||||
|
if (key in config && config[key]) {
|
||||||
|
const fn = config[key];
|
||||||
|
if (fn && typeof fn === "function") {
|
||||||
|
$console.debug(`[Plugin:${name}] ${key}`);
|
||||||
|
// @ts-expect-error
|
||||||
|
const result = await fn(...args);
|
||||||
|
results.push({
|
||||||
|
name,
|
||||||
|
result,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
$console.warn(`[Plugin:${name}] error running "${key}"`, String(e));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return results as any;
|
||||||
|
}
|
||||||
|
|
||||||
async build(options?: { sync?: boolean; fetch?: boolean; forceBuild?: boolean }) {
|
async build(options?: { sync?: boolean; fetch?: boolean; forceBuild?: boolean }) {
|
||||||
// prevent multiple concurrent builds
|
// prevent multiple concurrent builds
|
||||||
if (this._building) {
|
if (this._building) {
|
||||||
@@ -106,6 +157,8 @@ export class App {
|
|||||||
}
|
}
|
||||||
if (!options?.forceBuild) return;
|
if (!options?.forceBuild) return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
await this.runPlugins("beforeBuild");
|
||||||
this._building = true;
|
this._building = true;
|
||||||
|
|
||||||
if (options?.sync) this.modules.ctx().flags.sync_required = true;
|
if (options?.sync) this.modules.ctx().flags.sync_required = true;
|
||||||
@@ -117,13 +170,10 @@ export class App {
|
|||||||
guard.registerPermissions(Object.values(SystemPermissions));
|
guard.registerPermissions(Object.values(SystemPermissions));
|
||||||
server.route("/api/system", new SystemController(this).getController());
|
server.route("/api/system", new SystemController(this).getController());
|
||||||
|
|
||||||
// load plugins
|
// emit built event
|
||||||
if (this.plugins.length > 0) {
|
|
||||||
await Promise.all(this.plugins.map((plugin) => plugin(this)));
|
|
||||||
}
|
|
||||||
|
|
||||||
$console.log("App built");
|
$console.log("App built");
|
||||||
await this.emgr.emit(new AppBuiltEvent({ app: this }));
|
await this.emgr.emit(new AppBuiltEvent({ app: this }));
|
||||||
|
await this.runPlugins("onBuilt");
|
||||||
|
|
||||||
// first boot is set from ModuleManager when there wasn't a config table
|
// first boot is set from ModuleManager when there wasn't a config table
|
||||||
if (this.trigger_first_boot) {
|
if (this.trigger_first_boot) {
|
||||||
@@ -220,15 +270,16 @@ export class App {
|
|||||||
$console.log("App config updated", module);
|
$console.log("App config updated", module);
|
||||||
// @todo: potentially double syncing
|
// @todo: potentially double syncing
|
||||||
await this.build({ sync: true });
|
await this.build({ sync: true });
|
||||||
await this.emgr.emit(new AppConfigUpdatedEvent({ app: this }));
|
await this.emgr.emit(new AppConfigUpdatedEvent({ app: this, module, config }));
|
||||||
}
|
}
|
||||||
|
|
||||||
async onFirstBoot() {
|
protected async onFirstBoot() {
|
||||||
$console.log("App first boot");
|
$console.log("App first boot");
|
||||||
this.trigger_first_boot = true;
|
this.trigger_first_boot = true;
|
||||||
|
await this.runPlugins("onFirstBoot");
|
||||||
}
|
}
|
||||||
|
|
||||||
async onServerInit(server: Hono<ServerEnv>) {
|
protected async onServerInit(server: Hono<ServerEnv>) {
|
||||||
server.use(async (c, next) => {
|
server.use(async (c, next) => {
|
||||||
c.set("app", this);
|
c.set("app", this);
|
||||||
await this.emgr.emit(new AppRequest({ app: this, request: c.req.raw }));
|
await this.emgr.emit(new AppRequest({ app: this, request: c.req.raw }));
|
||||||
@@ -258,35 +309,35 @@ export class App {
|
|||||||
if (this.options?.manager?.onServerInit) {
|
if (this.options?.manager?.onServerInit) {
|
||||||
this.options.manager.onServerInit(server);
|
this.options.manager.onServerInit(server);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
await this.runPlugins("onServerInit", server);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected async onModulesBuilt(ctx: ModuleBuildContext) {
|
||||||
|
const results = (await this.runPlugins("schema")) as {
|
||||||
|
name: string;
|
||||||
|
result: ReturnType<typeof prototypeEm>;
|
||||||
|
}[];
|
||||||
|
if (results.length > 0) {
|
||||||
|
for (const { name, result } of results) {
|
||||||
|
if (result) {
|
||||||
|
$console.log(`[Plugin:${name}] schema`);
|
||||||
|
ctx.helper.ensureSchema(result);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
protected async onModulesCreated(modules: Modules, ctx: ModuleBuildContext) {
|
||||||
|
await this.runPlugins("onModulesCreated", modules, ctx);
|
||||||
|
this.options?.manager?.onModulesCreated?.(modules, ctx);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export function createApp(config: CreateAppConfig = {}) {
|
export function createApp(config: CreateAppConfig = {}) {
|
||||||
let connection: Connection | undefined = undefined;
|
if (!config.connection || !Connection.isConnection(config.connection)) {
|
||||||
|
|
||||||
try {
|
|
||||||
if (Connection.isConnection(config.connection)) {
|
|
||||||
connection = config.connection;
|
|
||||||
} else if (typeof config.connection === "object") {
|
|
||||||
if ("type" in config.connection) {
|
|
||||||
$console.warn(
|
|
||||||
"Using deprecated connection type 'libsql', use the 'config' object directly.",
|
|
||||||
);
|
|
||||||
connection = new LibsqlConnection(config.connection.config);
|
|
||||||
} else {
|
|
||||||
connection = new LibsqlConnection(config.connection);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
connection = new LibsqlConnection({ url: ":memory:" });
|
|
||||||
$console.warn("No connection provided, using in-memory database");
|
|
||||||
}
|
|
||||||
} catch (e) {
|
|
||||||
$console.error("Could not create connection", e);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!connection) {
|
|
||||||
throw new Error("Invalid connection");
|
throw new Error("Invalid connection");
|
||||||
}
|
}
|
||||||
|
|
||||||
return new App(connection, config.initialConfig, config.options);
|
return new App(config.connection, config.initialConfig, config.options);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,10 +2,11 @@
|
|||||||
|
|
||||||
import path from "node:path";
|
import path from "node:path";
|
||||||
import { type RuntimeBkndConfig, createRuntimeApp, type RuntimeOptions } from "bknd/adapter";
|
import { type RuntimeBkndConfig, createRuntimeApp, type RuntimeOptions } from "bknd/adapter";
|
||||||
import { registerLocalMediaAdapter } from "bknd/adapter/node";
|
import { registerLocalMediaAdapter } from ".";
|
||||||
import { config } from "bknd/core";
|
import { config } from "bknd/core";
|
||||||
import type { ServeOptions } from "bun";
|
import type { ServeOptions } from "bun";
|
||||||
import { serveStatic } from "hono/bun";
|
import { serveStatic } from "hono/bun";
|
||||||
|
import type { App } from "App";
|
||||||
|
|
||||||
type BunEnv = Bun.Env;
|
type BunEnv = Bun.Env;
|
||||||
export type BunBkndConfig<Env = BunEnv> = RuntimeBkndConfig<Env> & Omit<ServeOptions, "fetch">;
|
export type BunBkndConfig<Env = BunEnv> = RuntimeBkndConfig<Env> & Omit<ServeOptions, "fetch">;
|
||||||
@@ -16,9 +17,8 @@ export async function createApp<Env = BunEnv>(
|
|||||||
opts?: RuntimeOptions,
|
opts?: RuntimeOptions,
|
||||||
) {
|
) {
|
||||||
const root = path.resolve(distPath ?? "./node_modules/bknd/dist", "static");
|
const root = path.resolve(distPath ?? "./node_modules/bknd/dist", "static");
|
||||||
registerLocalMediaAdapter();
|
|
||||||
|
|
||||||
return await createRuntimeApp(
|
const app = await createRuntimeApp(
|
||||||
{
|
{
|
||||||
...config,
|
...config,
|
||||||
serveStatic: serveStatic({ root }),
|
serveStatic: serveStatic({ root }),
|
||||||
@@ -26,6 +26,8 @@ export async function createApp<Env = BunEnv>(
|
|||||||
args ?? (process.env as Env),
|
args ?? (process.env as Env),
|
||||||
opts,
|
opts,
|
||||||
);
|
);
|
||||||
|
registerLocalMediaAdapter(app);
|
||||||
|
return app;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function createHandler<Env = BunEnv>(
|
export function createHandler<Env = BunEnv>(
|
||||||
@@ -33,8 +35,11 @@ export function createHandler<Env = BunEnv>(
|
|||||||
args: Env = {} as Env,
|
args: Env = {} as Env,
|
||||||
opts?: RuntimeOptions,
|
opts?: RuntimeOptions,
|
||||||
) {
|
) {
|
||||||
|
let app: App | undefined;
|
||||||
return async (req: Request) => {
|
return async (req: Request) => {
|
||||||
const app = await createApp(config, args ?? (process.env as Env), opts);
|
if (!app) {
|
||||||
|
app = await createApp(config, args ?? (process.env as Env), opts);
|
||||||
|
}
|
||||||
return app.fetch(req);
|
return app.fetch(req);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
@@ -72,5 +77,5 @@ export function serve<Env = BunEnv>(
|
|||||||
),
|
),
|
||||||
});
|
});
|
||||||
|
|
||||||
console.log(`Server is running on http://localhost:${port}`);
|
console.info(`Server is running on http://localhost:${port}`);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,15 @@
|
|||||||
|
import { connectionTestSuite } from "data/connection/connection-test-suite";
|
||||||
|
import { bunSqlite } from "./BunSqliteConnection";
|
||||||
|
import { bunTestRunner } from "adapter/bun/test";
|
||||||
|
import { describe } from "bun:test";
|
||||||
|
import { Database } from "bun:sqlite";
|
||||||
|
|
||||||
|
describe("BunSqliteConnection", () => {
|
||||||
|
connectionTestSuite(bunTestRunner, {
|
||||||
|
makeConnection: () => ({
|
||||||
|
connection: bunSqlite({ database: new Database(":memory:") }),
|
||||||
|
dispose: async () => {},
|
||||||
|
}),
|
||||||
|
rawDialectDetails: [],
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -0,0 +1,40 @@
|
|||||||
|
import { Database } from "bun:sqlite";
|
||||||
|
import { genericSqlite, type GenericSqliteConnection } from "bknd/data";
|
||||||
|
|
||||||
|
export type BunSqliteConnection = GenericSqliteConnection<Database>;
|
||||||
|
export type BunSqliteConnectionConfig = {
|
||||||
|
database: Database;
|
||||||
|
};
|
||||||
|
|
||||||
|
export function bunSqlite(config?: BunSqliteConnectionConfig | { url: string }) {
|
||||||
|
let db: Database;
|
||||||
|
if (config) {
|
||||||
|
if ("database" in config) {
|
||||||
|
db = config.database;
|
||||||
|
} else {
|
||||||
|
db = new Database(config.url);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
db = new Database(":memory:");
|
||||||
|
}
|
||||||
|
|
||||||
|
return genericSqlite("bun-sqlite", db, (utils) => {
|
||||||
|
//const fn = cache ? "query" : "prepare";
|
||||||
|
const getStmt = (sql: string) => db.prepare(sql);
|
||||||
|
|
||||||
|
return {
|
||||||
|
db,
|
||||||
|
query: utils.buildQueryFn({
|
||||||
|
all: (sql, parameters) => getStmt(sql).all(...(parameters || [])),
|
||||||
|
run: (sql, parameters) => {
|
||||||
|
const { changes, lastInsertRowid } = getStmt(sql).run(...(parameters || []));
|
||||||
|
return {
|
||||||
|
insertId: utils.parseBigInt(lastInsertRowid),
|
||||||
|
numAffectedRows: utils.parseBigInt(changes),
|
||||||
|
};
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
close: () => db.close(),
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
||||||
@@ -1 +1,3 @@
|
|||||||
export * from "./bun.adapter";
|
export * from "./bun.adapter";
|
||||||
|
export * from "../node/storage";
|
||||||
|
export * from "./connection/BunSqliteConnection";
|
||||||
|
|||||||
@@ -1,7 +1,11 @@
|
|||||||
import { expect, test, mock } from "bun:test";
|
import { expect, test, mock, describe, beforeEach, afterEach, afterAll } from "bun:test";
|
||||||
|
|
||||||
export const bunTestRunner = {
|
export const bunTestRunner = {
|
||||||
|
describe,
|
||||||
expect,
|
expect,
|
||||||
test,
|
test,
|
||||||
mock,
|
mock,
|
||||||
|
beforeEach,
|
||||||
|
afterEach,
|
||||||
|
afterAll,
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -13,30 +13,32 @@ describe("cf adapter", () => {
|
|||||||
const DB_URL = ":memory:";
|
const DB_URL = ":memory:";
|
||||||
const $ctx = (env?: any, request?: Request, ctx?: ExecutionContext) => ({
|
const $ctx = (env?: any, request?: Request, ctx?: ExecutionContext) => ({
|
||||||
request: request ?? (null as any),
|
request: request ?? (null as any),
|
||||||
env: env ?? { DB_URL },
|
env: env ?? { url: DB_URL },
|
||||||
ctx: ctx ?? (null as any),
|
ctx: ctx ?? (null as any),
|
||||||
});
|
});
|
||||||
|
|
||||||
it("makes config", async () => {
|
it("makes config", async () => {
|
||||||
expect(
|
const staticConfig = makeConfig(
|
||||||
makeConfig(
|
{
|
||||||
{
|
connection: { url: DB_URL },
|
||||||
connection: { url: DB_URL },
|
initialConfig: { data: { basepath: DB_URL } },
|
||||||
},
|
},
|
||||||
$ctx({ DB_URL }),
|
$ctx({ DB_URL }),
|
||||||
),
|
);
|
||||||
).toEqual({ connection: { url: DB_URL } });
|
expect(staticConfig.initialConfig).toEqual({ data: { basepath: DB_URL } });
|
||||||
|
expect(staticConfig.connection).toBeDefined();
|
||||||
|
|
||||||
expect(
|
const dynamicConfig = makeConfig(
|
||||||
makeConfig(
|
{
|
||||||
{
|
app: (env) => ({
|
||||||
app: (env) => ({
|
initialConfig: { data: { basepath: env.DB_URL } },
|
||||||
connection: { url: env.DB_URL },
|
connection: { url: env.DB_URL },
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
$ctx({ DB_URL }),
|
$ctx({ DB_URL }),
|
||||||
),
|
);
|
||||||
).toEqual({ connection: { url: DB_URL } });
|
expect(dynamicConfig.initialConfig).toEqual({ data: { basepath: DB_URL } });
|
||||||
|
expect(dynamicConfig.connection).toBeDefined();
|
||||||
});
|
});
|
||||||
|
|
||||||
adapterTestSuite<CloudflareBkndConfig, CfMakeConfigArgs<any>>(bunTestRunner, {
|
adapterTestSuite<CloudflareBkndConfig, CfMakeConfigArgs<any>>(bunTestRunner, {
|
||||||
|
|||||||
@@ -7,7 +7,8 @@ import { getFresh } from "./modes/fresh";
|
|||||||
import { getCached } from "./modes/cached";
|
import { getCached } from "./modes/cached";
|
||||||
import { getDurable } from "./modes/durable";
|
import { getDurable } from "./modes/durable";
|
||||||
import type { App } from "bknd";
|
import type { App } from "bknd";
|
||||||
import { $console } from "core";
|
import { $console } from "core/utils";
|
||||||
|
import { registerMedia } from "./storage/StorageR2Adapter";
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
namespace Cloudflare {
|
namespace Cloudflare {
|
||||||
@@ -33,6 +34,7 @@ export type CloudflareBkndConfig<Env = CloudflareEnv> = RuntimeBkndConfig<Env> &
|
|||||||
keepAliveSeconds?: number;
|
keepAliveSeconds?: number;
|
||||||
forceHttps?: boolean;
|
forceHttps?: boolean;
|
||||||
manifest?: string;
|
manifest?: string;
|
||||||
|
registerMedia?: boolean;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type Context<Env = CloudflareEnv> = {
|
export type Context<Env = CloudflareEnv> = {
|
||||||
@@ -98,7 +100,16 @@ export function serve<Env extends CloudflareEnv = CloudflareEnv>(
|
|||||||
throw new Error(`Unknown mode ${mode}`);
|
throw new Error(`Unknown mode ${mode}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
registerMediaInternal(app, config, context);
|
||||||
return app.fetch(request, env, ctx);
|
return app.fetch(request, env, ctx);
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let media_registered: boolean = false;
|
||||||
|
function registerMediaInternal(app: App, config: CloudflareBkndConfig<any>, ctx?: Context) {
|
||||||
|
if (!media_registered && config.registerMedia !== false) {
|
||||||
|
registerMedia(app, ctx?.env as any);
|
||||||
|
media_registered = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,14 +1,15 @@
|
|||||||
/// <reference types="@cloudflare/workers-types" />
|
/// <reference types="@cloudflare/workers-types" />
|
||||||
|
|
||||||
import { registerMedia } from "./storage/StorageR2Adapter";
|
|
||||||
import { getBinding } from "./bindings";
|
import { getBinding } from "./bindings";
|
||||||
import { D1Connection } from "./connection/D1Connection";
|
import { d1Sqlite } from "./connection/D1Connection";
|
||||||
|
import { Connection } from "bknd/data";
|
||||||
import type { CloudflareBkndConfig, CloudflareEnv } from ".";
|
import type { CloudflareBkndConfig, CloudflareEnv } from ".";
|
||||||
import { App } from "bknd";
|
import { App } from "bknd";
|
||||||
import { makeConfig as makeAdapterConfig } from "bknd/adapter";
|
import { makeConfig as makeAdapterConfig } from "bknd/adapter";
|
||||||
import type { Context, ExecutionContext } from "hono";
|
import type { Context, ExecutionContext } from "hono";
|
||||||
import { $console } from "core";
|
import { $console } from "core/utils";
|
||||||
import { setCookie } from "hono/cookie";
|
import { setCookie } from "hono/cookie";
|
||||||
|
import { sqlite } from "bknd/adapter/sqlite";
|
||||||
|
|
||||||
export const constants = {
|
export const constants = {
|
||||||
exec_async_event_id: "cf_register_waituntil",
|
exec_async_event_id: "cf_register_waituntil",
|
||||||
@@ -86,66 +87,79 @@ export function d1SessionHelper(config: CloudflareBkndConfig<any>) {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
let media_registered: boolean = false;
|
|
||||||
export function makeConfig<Env extends CloudflareEnv = CloudflareEnv>(
|
export function makeConfig<Env extends CloudflareEnv = CloudflareEnv>(
|
||||||
config: CloudflareBkndConfig<Env>,
|
config: CloudflareBkndConfig<Env>,
|
||||||
args?: CfMakeConfigArgs<Env>,
|
args?: CfMakeConfigArgs<Env>,
|
||||||
) {
|
) {
|
||||||
if (!media_registered) {
|
|
||||||
registerMedia(args?.env as any);
|
|
||||||
media_registered = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
const appConfig = makeAdapterConfig(config, args?.env);
|
const appConfig = makeAdapterConfig(config, args?.env);
|
||||||
|
|
||||||
if (args?.env) {
|
// if connection instance is given, don't do anything
|
||||||
const bindings = config.bindings?.(args?.env);
|
// other than checking if D1 session is defined
|
||||||
|
if (Connection.isConnection(appConfig.connection)) {
|
||||||
|
if (config.d1?.session) {
|
||||||
|
// we cannot guarantee that db was opened with session
|
||||||
|
throw new Error(
|
||||||
|
"D1 session don't work when D1 is directly given as connection. Define it in bindings instead.",
|
||||||
|
);
|
||||||
|
}
|
||||||
|
// if connection is given, try to open with unified sqlite adapter
|
||||||
|
} else if (appConfig.connection) {
|
||||||
|
appConfig.connection = sqlite(appConfig.connection);
|
||||||
|
|
||||||
|
// if connection is not given, but env is set
|
||||||
|
// try to make D1 from bindings
|
||||||
|
} else if (args?.env) {
|
||||||
|
const bindings = config.bindings?.(args?.env);
|
||||||
const sessionHelper = d1SessionHelper(config);
|
const sessionHelper = d1SessionHelper(config);
|
||||||
const sessionId = sessionHelper.get(args.request);
|
const sessionId = sessionHelper.get(args.request);
|
||||||
let session: D1DatabaseSession | undefined;
|
let session: D1DatabaseSession | undefined;
|
||||||
|
let db: D1Database | undefined;
|
||||||
|
|
||||||
if (!appConfig.connection) {
|
// if db is given in bindings, use it
|
||||||
let db: D1Database | undefined;
|
if (bindings?.db) {
|
||||||
if (bindings?.db) {
|
$console.debug("Using database from bindings");
|
||||||
$console.log("Using database from bindings");
|
db = bindings.db;
|
||||||
db = bindings.db;
|
|
||||||
} else if (Object.keys(args).length > 0) {
|
|
||||||
const binding = getBinding(args.env, "D1Database");
|
|
||||||
if (binding) {
|
|
||||||
$console.log(`Using database from env "${binding.key}"`);
|
|
||||||
db = binding.value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (db) {
|
// scan for D1Database in args
|
||||||
if (config.d1?.session) {
|
} else {
|
||||||
session = db.withSession(sessionId ?? config.d1?.first);
|
const binding = getBinding(args.env, "D1Database");
|
||||||
appConfig.connection = new D1Connection({ binding: session });
|
if (binding) {
|
||||||
} else {
|
$console.debug(`Using database from env "${binding.key}"`);
|
||||||
appConfig.connection = new D1Connection({ binding: db });
|
db = binding.value;
|
||||||
}
|
|
||||||
} else {
|
|
||||||
throw new Error("No database connection given");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (config.d1?.session) {
|
// if db is found, check if session is requested
|
||||||
appConfig.options = {
|
if (db) {
|
||||||
...appConfig.options,
|
if (config.d1?.session) {
|
||||||
manager: {
|
session = db.withSession(sessionId ?? config.d1?.first);
|
||||||
...appConfig.options?.manager,
|
if (!session) {
|
||||||
onServerInit: (server) => {
|
throw new Error("Couldn't create session");
|
||||||
server.use(async (c, next) => {
|
}
|
||||||
sessionHelper.set(c, session);
|
|
||||||
await next();
|
appConfig.connection = d1Sqlite({ binding: session });
|
||||||
});
|
appConfig.options = {
|
||||||
|
...appConfig.options,
|
||||||
|
manager: {
|
||||||
|
...appConfig.options?.manager,
|
||||||
|
onServerInit: (server) => {
|
||||||
|
server.use(async (c, next) => {
|
||||||
|
sessionHelper.set(c, session);
|
||||||
|
await next();
|
||||||
|
});
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
};
|
||||||
};
|
} else {
|
||||||
|
appConfig.connection = d1Sqlite({ binding: db });
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!Connection.isConnection(appConfig.connection)) {
|
||||||
|
throw new Error("Couldn't find database connection");
|
||||||
|
}
|
||||||
|
|
||||||
return appConfig;
|
return appConfig;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,65 +1,75 @@
|
|||||||
/// <reference types="@cloudflare/workers-types" />
|
/// <reference types="@cloudflare/workers-types" />
|
||||||
|
|
||||||
import { KyselyPluginRunner, SqliteConnection, SqliteIntrospector } from "bknd/data";
|
import { genericSqlite, type GenericSqliteConnection } from "bknd/data";
|
||||||
import type { QB } from "data/connection/Connection";
|
import type { QueryResult } from "kysely";
|
||||||
import { type DatabaseIntrospector, Kysely, ParseJSONResultsPlugin } from "kysely";
|
|
||||||
import { D1Dialect } from "kysely-d1";
|
export type D1SqliteConnection = GenericSqliteConnection<D1Database>;
|
||||||
|
|
||||||
export type D1ConnectionConfig<DB extends D1Database | D1DatabaseSession = D1Database> = {
|
export type D1ConnectionConfig<DB extends D1Database | D1DatabaseSession = D1Database> = {
|
||||||
binding: DB;
|
binding: DB;
|
||||||
};
|
};
|
||||||
|
|
||||||
class CustomD1Dialect extends D1Dialect {
|
export function d1Sqlite<DB extends D1Database | D1DatabaseSession = D1Database>(
|
||||||
override createIntrospector(db: Kysely<any>): DatabaseIntrospector {
|
config: D1ConnectionConfig<DB>,
|
||||||
return new SqliteIntrospector(db, {
|
) {
|
||||||
|
const db = config.binding;
|
||||||
|
|
||||||
|
return genericSqlite(
|
||||||
|
"d1-sqlite",
|
||||||
|
db,
|
||||||
|
(utils) => {
|
||||||
|
const getStmt = (sql: string, parameters?: any[] | readonly any[]) =>
|
||||||
|
db.prepare(sql).bind(...(parameters || []));
|
||||||
|
|
||||||
|
const mapResult = (res: D1Result<any>): QueryResult<any> => {
|
||||||
|
if (res.error) {
|
||||||
|
throw new Error(res.error);
|
||||||
|
}
|
||||||
|
|
||||||
|
const numAffectedRows =
|
||||||
|
res.meta.changes > 0 ? utils.parseBigInt(res.meta.changes) : undefined;
|
||||||
|
const insertId = res.meta.last_row_id
|
||||||
|
? utils.parseBigInt(res.meta.last_row_id)
|
||||||
|
: undefined;
|
||||||
|
|
||||||
|
return {
|
||||||
|
insertId,
|
||||||
|
numAffectedRows,
|
||||||
|
rows: res.results,
|
||||||
|
// @ts-ignore
|
||||||
|
meta: res.meta,
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
return {
|
||||||
|
db,
|
||||||
|
batch: async (stmts) => {
|
||||||
|
const res = await db.batch(
|
||||||
|
stmts.map(({ sql, parameters }) => {
|
||||||
|
return getStmt(sql, parameters);
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
return res.map(mapResult);
|
||||||
|
},
|
||||||
|
query: utils.buildQueryFn({
|
||||||
|
all: async (sql, parameters) => {
|
||||||
|
const prep = getStmt(sql, parameters);
|
||||||
|
return mapResult(await prep.all()).rows;
|
||||||
|
},
|
||||||
|
run: async (sql, parameters) => {
|
||||||
|
const prep = getStmt(sql, parameters);
|
||||||
|
return mapResult(await prep.run());
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
close: () => {},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
{
|
||||||
|
supports: {
|
||||||
|
batching: true,
|
||||||
|
softscans: false,
|
||||||
|
},
|
||||||
excludeTables: ["_cf_KV", "_cf_METADATA"],
|
excludeTables: ["_cf_KV", "_cf_METADATA"],
|
||||||
});
|
},
|
||||||
}
|
);
|
||||||
}
|
|
||||||
|
|
||||||
export class D1Connection<
|
|
||||||
DB extends D1Database | D1DatabaseSession = D1Database,
|
|
||||||
> extends SqliteConnection {
|
|
||||||
protected override readonly supported = {
|
|
||||||
batching: true,
|
|
||||||
};
|
|
||||||
|
|
||||||
constructor(private config: D1ConnectionConfig<DB>) {
|
|
||||||
const plugins = [new ParseJSONResultsPlugin()];
|
|
||||||
|
|
||||||
const kysely = new Kysely({
|
|
||||||
dialect: new CustomD1Dialect({ database: config.binding as D1Database }),
|
|
||||||
plugins,
|
|
||||||
});
|
|
||||||
super(kysely, {}, plugins);
|
|
||||||
}
|
|
||||||
|
|
||||||
get client(): DB {
|
|
||||||
return this.config.binding;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected override async batch<Queries extends QB[]>(
|
|
||||||
queries: [...Queries],
|
|
||||||
): Promise<{
|
|
||||||
[K in keyof Queries]: Awaited<ReturnType<Queries[K]["execute"]>>;
|
|
||||||
}> {
|
|
||||||
const db = this.config.binding;
|
|
||||||
|
|
||||||
const res = await db.batch(
|
|
||||||
queries.map((q) => {
|
|
||||||
const { sql, parameters } = q.compile();
|
|
||||||
return db.prepare(sql).bind(...parameters);
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
|
|
||||||
// let it run through plugins
|
|
||||||
const kyselyPlugins = new KyselyPluginRunner(this.plugins);
|
|
||||||
const data: any = [];
|
|
||||||
for (const r of res) {
|
|
||||||
const rows = await kyselyPlugins.transformResultRows(r.results);
|
|
||||||
data.push(rows);
|
|
||||||
}
|
|
||||||
|
|
||||||
return data;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,33 @@
|
|||||||
|
import { describe, test, expect } from "vitest";
|
||||||
|
|
||||||
|
import { viTestRunner } from "adapter/node/vitest";
|
||||||
|
import { connectionTestSuite } from "data/connection/connection-test-suite";
|
||||||
|
import { Miniflare } from "miniflare";
|
||||||
|
import { d1Sqlite } from "./D1Connection";
|
||||||
|
|
||||||
|
describe("d1Sqlite", async () => {
|
||||||
|
connectionTestSuite(viTestRunner, {
|
||||||
|
makeConnection: async () => {
|
||||||
|
const mf = new Miniflare({
|
||||||
|
modules: true,
|
||||||
|
script: "export default { async fetch() { return new Response(null); } }",
|
||||||
|
d1Databases: ["DB"],
|
||||||
|
});
|
||||||
|
|
||||||
|
const binding = (await mf.getD1Database("DB")) as D1Database;
|
||||||
|
return {
|
||||||
|
connection: d1Sqlite({ binding }),
|
||||||
|
dispose: () => mf.dispose(),
|
||||||
|
};
|
||||||
|
},
|
||||||
|
rawDialectDetails: [
|
||||||
|
"meta.served_by",
|
||||||
|
"meta.duration",
|
||||||
|
"meta.changes",
|
||||||
|
"meta.changed_db",
|
||||||
|
"meta.size_after",
|
||||||
|
"meta.rows_read",
|
||||||
|
"meta.rows_written",
|
||||||
|
],
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
/// <reference types="@cloudflare/workers-types" />
|
||||||
|
|
||||||
|
import { genericSqlite, type GenericSqliteConnection } from "bknd/data";
|
||||||
|
import type { QueryResult } from "kysely";
|
||||||
|
|
||||||
|
export type D1SqliteConnection = GenericSqliteConnection<D1Database>;
|
||||||
|
export type DurableObjecSql = DurableObjectState["storage"]["sql"];
|
||||||
|
|
||||||
|
export type D1ConnectionConfig<DB extends DurableObjecSql> =
|
||||||
|
| DurableObjectState
|
||||||
|
| {
|
||||||
|
sql: DB;
|
||||||
|
};
|
||||||
|
|
||||||
|
export function doSqlite<DB extends DurableObjecSql>(config: D1ConnectionConfig<DB>) {
|
||||||
|
const db = "sql" in config ? config.sql : config.storage.sql;
|
||||||
|
|
||||||
|
return genericSqlite(
|
||||||
|
"do-sqlite",
|
||||||
|
db,
|
||||||
|
(utils) => {
|
||||||
|
// must be async to work with the miniflare mock
|
||||||
|
const getStmt = async (sql: string, parameters?: any[] | readonly any[]) =>
|
||||||
|
await db.exec(sql, ...(parameters || []));
|
||||||
|
|
||||||
|
const mapResult = (
|
||||||
|
cursor: SqlStorageCursor<Record<string, SqlStorageValue>>,
|
||||||
|
): QueryResult<any> => {
|
||||||
|
const numAffectedRows =
|
||||||
|
cursor.rowsWritten > 0 ? utils.parseBigInt(cursor.rowsWritten) : undefined;
|
||||||
|
const insertId = undefined;
|
||||||
|
|
||||||
|
const obj = {
|
||||||
|
insertId,
|
||||||
|
numAffectedRows,
|
||||||
|
rows: cursor.toArray() || [],
|
||||||
|
// @ts-ignore
|
||||||
|
meta: {
|
||||||
|
rowsWritten: cursor.rowsWritten,
|
||||||
|
rowsRead: cursor.rowsRead,
|
||||||
|
databaseSize: db.databaseSize,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
//console.info("mapResult", obj);
|
||||||
|
return obj;
|
||||||
|
};
|
||||||
|
|
||||||
|
return {
|
||||||
|
db,
|
||||||
|
batch: async (stmts) => {
|
||||||
|
// @todo: maybe wrap in a transaction?
|
||||||
|
// because d1 implicitly does a transaction on batch
|
||||||
|
return Promise.all(
|
||||||
|
stmts.map(async (stmt) => {
|
||||||
|
return mapResult(await getStmt(stmt.sql, stmt.parameters));
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
query: utils.buildQueryFn({
|
||||||
|
all: async (sql, parameters) => {
|
||||||
|
const prep = getStmt(sql, parameters);
|
||||||
|
return mapResult(await prep).rows;
|
||||||
|
},
|
||||||
|
run: async (sql, parameters) => {
|
||||||
|
const prep = getStmt(sql, parameters);
|
||||||
|
return mapResult(await prep);
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
close: () => {},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
{
|
||||||
|
supports: {
|
||||||
|
batching: true,
|
||||||
|
softscans: false,
|
||||||
|
},
|
||||||
|
excludeTables: ["_cf_KV", "_cf_METADATA"],
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -0,0 +1,92 @@
|
|||||||
|
/// <reference types="@cloudflare/workers-types" />
|
||||||
|
|
||||||
|
import { describe, test, expect } from "vitest";
|
||||||
|
|
||||||
|
import { viTestRunner } from "adapter/node/vitest";
|
||||||
|
import { connectionTestSuite } from "data/connection/connection-test-suite";
|
||||||
|
import { Miniflare } from "miniflare";
|
||||||
|
import { doSqlite } from "./DoConnection";
|
||||||
|
|
||||||
|
const script = `
|
||||||
|
import { DurableObject } from "cloudflare:workers";
|
||||||
|
|
||||||
|
export class TestObject extends DurableObject {
|
||||||
|
constructor(ctx, env) {
|
||||||
|
super(ctx, env);
|
||||||
|
this.storage = ctx.storage;
|
||||||
|
}
|
||||||
|
|
||||||
|
async exec(sql, ...parameters) {
|
||||||
|
//return { sql, parameters }
|
||||||
|
const cursor = this.storage.sql.exec(sql, ...parameters);
|
||||||
|
return {
|
||||||
|
rows: cursor.toArray() || [],
|
||||||
|
rowsWritten: cursor.rowsWritten,
|
||||||
|
rowsRead: cursor.rowsRead,
|
||||||
|
databaseSize: this.storage.sql.databaseSize,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async databaseSize() {
|
||||||
|
return this.storage.sql.databaseSize;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default {
|
||||||
|
async fetch(request, env) {
|
||||||
|
const stub = env.TEST_OBJECT.get(env.TEST_OBJECT.idFromName("test"));
|
||||||
|
return stub.fetch(request);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
|
||||||
|
describe("doSqlite", async () => {
|
||||||
|
connectionTestSuite(viTestRunner, {
|
||||||
|
makeConnection: async () => {
|
||||||
|
const mf = new Miniflare({
|
||||||
|
modules: true,
|
||||||
|
durableObjects: { TEST_OBJECT: { className: "TestObject", useSQLite: true } },
|
||||||
|
script,
|
||||||
|
});
|
||||||
|
|
||||||
|
const ns = await mf.getDurableObjectNamespace("TEST_OBJECT");
|
||||||
|
const id = ns.idFromName("test");
|
||||||
|
const stub = ns.get(id) as unknown as DurableObjectStub<
|
||||||
|
Rpc.DurableObjectBranded & {
|
||||||
|
exec: (sql: string, ...parameters: any[]) => Promise<any>;
|
||||||
|
}
|
||||||
|
>;
|
||||||
|
|
||||||
|
const stubs: any[] = [];
|
||||||
|
const mock = {
|
||||||
|
databaseSize: 0,
|
||||||
|
exec: async function (sql: string, ...parameters: any[]) {
|
||||||
|
// @ts-ignore
|
||||||
|
const result = (await stub.exec(sql, ...parameters)) as any;
|
||||||
|
this.databaseSize = result.databaseSize;
|
||||||
|
stubs.push(result);
|
||||||
|
return {
|
||||||
|
toArray: () => result.rows,
|
||||||
|
rowsWritten: result.rowsWritten,
|
||||||
|
rowsRead: result.rowsRead,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
return {
|
||||||
|
connection: doSqlite({ sql: mock as any }),
|
||||||
|
dispose: async () => {
|
||||||
|
await Promise.all(
|
||||||
|
stubs.map((stub) => {
|
||||||
|
try {
|
||||||
|
return stub[Symbol.dispose]();
|
||||||
|
} catch (e) {}
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
await mf.dispose();
|
||||||
|
},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
rawDialectDetails: ["meta.rowsWritten", "meta.rowsRead", "meta.databaseSize"],
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -0,0 +1,45 @@
|
|||||||
|
import type { ICacheDriver } from "core/drivers";
|
||||||
|
|
||||||
|
interface WorkersKVCacheOptions {
|
||||||
|
// default time-to-live in seconds
|
||||||
|
defaultTTL?: number;
|
||||||
|
// prefix for the cache key
|
||||||
|
cachePrefix?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export class WorkersKVCacheDriver implements ICacheDriver {
|
||||||
|
protected readonly kv: KVNamespace;
|
||||||
|
protected readonly defaultTTL?: number;
|
||||||
|
protected readonly cachePrefix: string;
|
||||||
|
|
||||||
|
constructor(kv: KVNamespace, options: WorkersKVCacheOptions = {}) {
|
||||||
|
this.kv = kv;
|
||||||
|
this.cachePrefix = options.cachePrefix ?? "";
|
||||||
|
this.defaultTTL = options.defaultTTL;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected getKey(key: string): string {
|
||||||
|
return this.cachePrefix + key;
|
||||||
|
}
|
||||||
|
|
||||||
|
async get(key: string): Promise<string | undefined> {
|
||||||
|
const value = await this.kv.get(this.getKey(key));
|
||||||
|
return value === null ? undefined : value;
|
||||||
|
}
|
||||||
|
|
||||||
|
async set(key: string, value: string, ttl?: number): Promise<void> {
|
||||||
|
let expirationTtl = ttl ?? this.defaultTTL;
|
||||||
|
if (expirationTtl) {
|
||||||
|
expirationTtl = Math.max(expirationTtl, 60);
|
||||||
|
}
|
||||||
|
await this.kv.put(this.getKey(key), value, { expirationTtl: expirationTtl });
|
||||||
|
}
|
||||||
|
|
||||||
|
async del(key: string): Promise<void> {
|
||||||
|
await this.kv.delete(this.getKey(key));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export const cacheWorkersKV = (kv: KVNamespace, options?: WorkersKVCacheOptions) => {
|
||||||
|
return new WorkersKVCacheDriver(kv, options);
|
||||||
|
};
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
import { describe, vi, afterAll, beforeAll } from "vitest";
|
||||||
|
import { cacheWorkersKV } from "./cache";
|
||||||
|
import { viTestRunner } from "adapter/node/vitest";
|
||||||
|
import { cacheDriverTestSuite } from "core/drivers/cache/cache-driver-test-suite";
|
||||||
|
import { Miniflare } from "miniflare";
|
||||||
|
|
||||||
|
describe("cacheWorkersKV", async () => {
|
||||||
|
beforeAll(() => {
|
||||||
|
vi.useFakeTimers();
|
||||||
|
});
|
||||||
|
afterAll(() => {
|
||||||
|
vi.restoreAllMocks();
|
||||||
|
});
|
||||||
|
|
||||||
|
const mf = new Miniflare({
|
||||||
|
modules: true,
|
||||||
|
script: "export default { async fetch() { return new Response(null); } }",
|
||||||
|
kvNamespaces: ["KV"],
|
||||||
|
});
|
||||||
|
|
||||||
|
const kv = (await mf.getKVNamespace("KV")) as unknown as KVNamespace;
|
||||||
|
|
||||||
|
cacheDriverTestSuite(viTestRunner, {
|
||||||
|
makeCache: () => cacheWorkersKV(kv),
|
||||||
|
setTime: (ms: number) => {
|
||||||
|
vi.advanceTimersByTime(ms);
|
||||||
|
},
|
||||||
|
options: {
|
||||||
|
minTTL: 60,
|
||||||
|
// doesn't work with miniflare
|
||||||
|
skipTTL: true,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
import { D1Connection, type D1ConnectionConfig } from "./connection/D1Connection";
|
import { d1Sqlite, type D1ConnectionConfig } from "./connection/D1Connection";
|
||||||
|
|
||||||
export * from "./cloudflare-workers.adapter";
|
export * from "./cloudflare-workers.adapter";
|
||||||
export { makeApp, getFresh } from "./modes/fresh";
|
export { makeApp, getFresh } from "./modes/fresh";
|
||||||
export { getCached } from "./modes/cached";
|
export { getCached } from "./modes/cached";
|
||||||
export { DurableBkndApp, getDurable } from "./modes/durable";
|
export { DurableBkndApp, getDurable } from "./modes/durable";
|
||||||
export { D1Connection, type D1ConnectionConfig };
|
export { d1Sqlite, type D1ConnectionConfig };
|
||||||
export {
|
export {
|
||||||
getBinding,
|
getBinding,
|
||||||
getBindings,
|
getBindings,
|
||||||
@@ -13,7 +13,11 @@ export {
|
|||||||
type BindingMap,
|
type BindingMap,
|
||||||
} from "./bindings";
|
} from "./bindings";
|
||||||
export { constants } from "./config";
|
export { constants } from "./config";
|
||||||
|
export { StorageR2Adapter } from "./storage/StorageR2Adapter";
|
||||||
|
|
||||||
export function d1(config: D1ConnectionConfig) {
|
// for compatibility with old code
|
||||||
return new D1Connection(config);
|
export function d1<DB extends D1Database | D1DatabaseSession = D1Database>(
|
||||||
|
config: D1ConnectionConfig<DB>,
|
||||||
|
) {
|
||||||
|
return d1Sqlite<DB>(config);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import type { App, CreateAppConfig } from "bknd";
|
|||||||
import { createRuntimeApp, makeConfig } from "bknd/adapter";
|
import { createRuntimeApp, makeConfig } from "bknd/adapter";
|
||||||
import type { CloudflareBkndConfig, Context, CloudflareEnv } from "../index";
|
import type { CloudflareBkndConfig, Context, CloudflareEnv } from "../index";
|
||||||
import { constants, registerAsyncsExecutionContext } from "../config";
|
import { constants, registerAsyncsExecutionContext } from "../config";
|
||||||
import { $console } from "core";
|
import { $console } from "core/utils";
|
||||||
|
|
||||||
export async function getDurable<Env extends CloudflareEnv = CloudflareEnv>(
|
export async function getDurable<Env extends CloudflareEnv = CloudflareEnv>(
|
||||||
config: CloudflareBkndConfig<Env>,
|
config: CloudflareBkndConfig<Env>,
|
||||||
@@ -64,7 +64,7 @@ export class DurableBkndApp extends DurableObject {
|
|||||||
"type" in config.connection &&
|
"type" in config.connection &&
|
||||||
config.connection.type === "libsql"
|
config.connection.type === "libsql"
|
||||||
) {
|
) {
|
||||||
config.connection.config.protocol = "wss";
|
//config.connection.config.protocol = "wss";
|
||||||
}
|
}
|
||||||
|
|
||||||
this.app = await createRuntimeApp({
|
this.app = await createRuntimeApp({
|
||||||
|
|||||||
@@ -1,32 +0,0 @@
|
|||||||
import { createWriteStream, readFileSync } from "node:fs";
|
|
||||||
import { test } from "node:test";
|
|
||||||
import { Miniflare } from "miniflare";
|
|
||||||
import { StorageR2Adapter } from "./StorageR2Adapter";
|
|
||||||
import { adapterTestSuite } from "media";
|
|
||||||
import { nodeTestRunner } from "adapter/node/test";
|
|
||||||
import path from "node:path";
|
|
||||||
|
|
||||||
// https://github.com/nodejs/node/issues/44372#issuecomment-1736530480
|
|
||||||
console.log = async (message: any) => {
|
|
||||||
const tty = createWriteStream("/dev/tty");
|
|
||||||
const msg = typeof message === "string" ? message : JSON.stringify(message, null, 2);
|
|
||||||
return tty.write(`${msg}\n`);
|
|
||||||
};
|
|
||||||
|
|
||||||
test("StorageR2Adapter", async () => {
|
|
||||||
const mf = new Miniflare({
|
|
||||||
modules: true,
|
|
||||||
script: "export default { async fetch() { return new Response(null); } }",
|
|
||||||
r2Buckets: ["BUCKET"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const bucket = (await mf.getR2Bucket("BUCKET")) as unknown as R2Bucket;
|
|
||||||
const adapter = new StorageR2Adapter(bucket);
|
|
||||||
|
|
||||||
const basePath = path.resolve(import.meta.dirname, "../../../../__test__/_assets");
|
|
||||||
const buffer = readFileSync(path.join(basePath, "image.png"));
|
|
||||||
const file = new File([buffer], "image.png", { type: "image/png" });
|
|
||||||
|
|
||||||
await adapterTestSuite(nodeTestRunner, adapter, file);
|
|
||||||
await mf.dispose();
|
|
||||||
});
|
|
||||||
@@ -1,24 +1,22 @@
|
|||||||
import { registries } from "bknd";
|
import type { App } from "bknd";
|
||||||
import { isDebug } from "bknd/core";
|
import { isDebug } from "bknd/core";
|
||||||
import { StringEnum } from "bknd/utils";
|
|
||||||
import { guessMimeType as guess, StorageAdapter, type FileBody } from "bknd/media";
|
import { guessMimeType as guess, StorageAdapter, type FileBody } from "bknd/media";
|
||||||
import { getBindings } from "../bindings";
|
import { getBindings } from "../bindings";
|
||||||
import * as tb from "@sinclair/typebox";
|
import { s } from "core/object/schema";
|
||||||
const { Type } = tb;
|
|
||||||
|
|
||||||
export function makeSchema(bindings: string[] = []) {
|
export function makeSchema(bindings: string[] = []) {
|
||||||
return Type.Object(
|
return s.object(
|
||||||
{
|
{
|
||||||
binding: bindings.length > 0 ? StringEnum(bindings) : Type.Optional(Type.String()),
|
binding: bindings.length > 0 ? s.string({ enum: bindings }) : s.string().optional(),
|
||||||
},
|
},
|
||||||
{ title: "R2", description: "Cloudflare R2 storage" },
|
{ title: "R2", description: "Cloudflare R2 storage" },
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export function registerMedia(env: Record<string, any>) {
|
export function registerMedia(app: App, env: Record<string, any>) {
|
||||||
const r2_bindings = getBindings(env, "R2Bucket");
|
const r2_bindings = getBindings(env, "R2Bucket");
|
||||||
|
|
||||||
registries.media.register(
|
app.module.media.adapters.set(
|
||||||
"r2",
|
"r2",
|
||||||
class extends StorageR2Adapter {
|
class extends StorageR2Adapter {
|
||||||
constructor(private config: any) {
|
constructor(private config: any) {
|
||||||
@@ -63,46 +61,49 @@ export class StorageR2Adapter extends StorageAdapter {
|
|||||||
|
|
||||||
async putObject(key: string, body: FileBody) {
|
async putObject(key: string, body: FileBody) {
|
||||||
try {
|
try {
|
||||||
const res = await this.bucket.put(key, body);
|
const res = await this.bucket.put(this.getKey(key), body);
|
||||||
return res?.etag;
|
return res?.etag;
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
return undefined;
|
return undefined;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
async listObjects(
|
async listObjects(prefix = ""): Promise<{ key: string; last_modified: Date; size: number }[]> {
|
||||||
prefix?: string,
|
const list = await this.bucket.list({ limit: 50, prefix: this.getKey(prefix) });
|
||||||
): Promise<{ key: string; last_modified: Date; size: number }[]> {
|
|
||||||
const list = await this.bucket.list({ limit: 50 });
|
|
||||||
return list.objects.map((item) => ({
|
return list.objects.map((item) => ({
|
||||||
key: item.key,
|
key: item.key.replace(this.getKey(""), ""),
|
||||||
size: item.size,
|
size: item.size,
|
||||||
last_modified: item.uploaded,
|
last_modified: item.uploaded,
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
private async headObject(key: string): Promise<R2Object | null> {
|
private async headObject(key: string): Promise<R2Object | null> {
|
||||||
return await this.bucket.head(key);
|
return await this.bucket.head(this.getKey(key));
|
||||||
}
|
}
|
||||||
|
|
||||||
async objectExists(key: string): Promise<boolean> {
|
async objectExists(key: string): Promise<boolean> {
|
||||||
return (await this.headObject(key)) !== null;
|
return (await this.headObject(key)) !== null;
|
||||||
}
|
}
|
||||||
|
|
||||||
async getObject(key: string, headers: Headers): Promise<Response> {
|
async getObject(_key: string, headers: Headers): Promise<Response> {
|
||||||
let object: R2ObjectBody | null;
|
let object: R2ObjectBody | null;
|
||||||
|
const key = this.getKey(_key);
|
||||||
|
|
||||||
const responseHeaders = new Headers({
|
const responseHeaders = new Headers({
|
||||||
"Accept-Ranges": "bytes",
|
"Accept-Ranges": "bytes",
|
||||||
"Content-Type": guess(key),
|
"Content-Type": guess(key),
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const range = headers.has("range");
|
||||||
|
|
||||||
//console.log("getObject:headers", headersToObject(headers));
|
//console.log("getObject:headers", headersToObject(headers));
|
||||||
if (headers.has("range")) {
|
if (range) {
|
||||||
const options = isDebug()
|
const options = isDebug()
|
||||||
? {} // miniflare doesn't support range requests
|
? {} // miniflare doesn't support range requests
|
||||||
: {
|
: {
|
||||||
range: headers,
|
range: headers,
|
||||||
onlyIf: headers,
|
onlyIf: headers,
|
||||||
};
|
};
|
||||||
|
|
||||||
object = (await this.bucket.get(key, options)) as R2ObjectBody;
|
object = (await this.bucket.get(key, options)) as R2ObjectBody;
|
||||||
|
|
||||||
if (!object) {
|
if (!object) {
|
||||||
@@ -130,13 +131,14 @@ export class StorageR2Adapter extends StorageAdapter {
|
|||||||
responseHeaders.set("Last-Modified", object.uploaded.toUTCString());
|
responseHeaders.set("Last-Modified", object.uploaded.toUTCString());
|
||||||
|
|
||||||
return new Response(object.body, {
|
return new Response(object.body, {
|
||||||
status: object.range ? 206 : 200,
|
status: range ? 206 : 200,
|
||||||
headers: responseHeaders,
|
headers: responseHeaders,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
private writeHttpMetadata(headers: Headers, object: R2Object | R2ObjectBody): void {
|
private writeHttpMetadata(headers: Headers, object: R2Object | R2ObjectBody): void {
|
||||||
let metadata = object.httpMetadata;
|
let metadata = object.httpMetadata;
|
||||||
|
|
||||||
if (!metadata || Object.keys(metadata).length === 0) {
|
if (!metadata || Object.keys(metadata).length === 0) {
|
||||||
// guessing is especially required for dev environment (miniflare)
|
// guessing is especially required for dev environment (miniflare)
|
||||||
metadata = {
|
metadata = {
|
||||||
@@ -163,13 +165,17 @@ export class StorageR2Adapter extends StorageAdapter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async deleteObject(key: string): Promise<void> {
|
async deleteObject(key: string): Promise<void> {
|
||||||
await this.bucket.delete(key);
|
await this.bucket.delete(this.getKey(key));
|
||||||
}
|
}
|
||||||
|
|
||||||
getObjectUrl(key: string): string {
|
getObjectUrl(key: string): string {
|
||||||
throw new Error("Method getObjectUrl not implemented.");
|
throw new Error("Method getObjectUrl not implemented.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected getKey(key: string) {
|
||||||
|
return key;
|
||||||
|
}
|
||||||
|
|
||||||
toJSON(secrets?: boolean) {
|
toJSON(secrets?: boolean) {
|
||||||
return {
|
return {
|
||||||
type: this.getName(),
|
type: this.getName(),
|
||||||
|
|||||||
@@ -0,0 +1,32 @@
|
|||||||
|
import { readFileSync } from "node:fs";
|
||||||
|
import { Miniflare } from "miniflare";
|
||||||
|
import { StorageR2Adapter } from "./StorageR2Adapter";
|
||||||
|
import { adapterTestSuite } from "media/storage/adapters/adapter-test-suite";
|
||||||
|
import path from "node:path";
|
||||||
|
import { describe, afterAll, test, expect } from "vitest";
|
||||||
|
import { viTestRunner } from "adapter/node/vitest";
|
||||||
|
|
||||||
|
let mf: Miniflare | undefined;
|
||||||
|
describe("StorageR2Adapter", async () => {
|
||||||
|
mf = new Miniflare({
|
||||||
|
modules: true,
|
||||||
|
script: "export default { async fetch() { return new Response(null); } }",
|
||||||
|
r2Buckets: ["BUCKET"],
|
||||||
|
});
|
||||||
|
const bucket = (await mf?.getR2Bucket("BUCKET")) as unknown as R2Bucket;
|
||||||
|
|
||||||
|
test("test", () => {
|
||||||
|
expect(bucket).toBeDefined();
|
||||||
|
});
|
||||||
|
const adapter = new StorageR2Adapter(bucket);
|
||||||
|
|
||||||
|
const basePath = path.resolve(import.meta.dirname, "../../../../__test__/_assets");
|
||||||
|
const buffer = readFileSync(path.join(basePath, "image.png"));
|
||||||
|
const file = new File([buffer], "image.png", { type: "image/png" });
|
||||||
|
|
||||||
|
await adapterTestSuite(viTestRunner, adapter, file);
|
||||||
|
});
|
||||||
|
|
||||||
|
afterAll(async () => {
|
||||||
|
await mf?.dispose();
|
||||||
|
});
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
import { defineWorkersConfig } from "@cloudflare/vitest-pool-workers/config";
|
||||||
|
|
||||||
|
export default defineWorkersConfig({
|
||||||
|
test: {
|
||||||
|
poolOptions: {
|
||||||
|
workers: {
|
||||||
|
miniflare: {
|
||||||
|
compatibilityDate: "2025-06-04",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
include: ["**/*.vi-test.ts", "**/*.vitest.ts"],
|
||||||
|
},
|
||||||
|
});
|
||||||
@@ -1,12 +1,17 @@
|
|||||||
import { App, type CreateAppConfig } from "bknd";
|
import { App, type CreateAppConfig } from "bknd";
|
||||||
import { config as $config } from "bknd/core";
|
import { config as $config } from "bknd/core";
|
||||||
|
import { $console } from "bknd/utils";
|
||||||
import type { MiddlewareHandler } from "hono";
|
import type { MiddlewareHandler } from "hono";
|
||||||
import type { AdminControllerOptions } from "modules/server/AdminController";
|
import type { AdminControllerOptions } from "modules/server/AdminController";
|
||||||
|
import { Connection } from "bknd/data";
|
||||||
|
import type { MaybePromise } from "core/types";
|
||||||
|
|
||||||
|
export { Connection } from "bknd/data";
|
||||||
|
|
||||||
export type BkndConfig<Args = any> = CreateAppConfig & {
|
export type BkndConfig<Args = any> = CreateAppConfig & {
|
||||||
app?: CreateAppConfig | ((args: Args) => CreateAppConfig);
|
app?: CreateAppConfig | ((args: Args) => CreateAppConfig);
|
||||||
onBuilt?: (app: App) => Promise<void>;
|
onBuilt?: (app: App) => MaybePromise<void>;
|
||||||
beforeBuild?: (app: App) => Promise<void>;
|
beforeBuild?: (app: App) => MaybePromise<void>;
|
||||||
buildConfig?: Parameters<App["build"]>[0];
|
buildConfig?: Parameters<App["build"]>[0];
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -59,7 +64,21 @@ export async function createAdapterApp<Config extends BkndConfig = BkndConfig, A
|
|||||||
const id = opts?.id ?? "app";
|
const id = opts?.id ?? "app";
|
||||||
let app = apps.get(id);
|
let app = apps.get(id);
|
||||||
if (!app || opts?.force) {
|
if (!app || opts?.force) {
|
||||||
app = App.create(makeConfig(config, args));
|
const appConfig = makeConfig(config, args);
|
||||||
|
if (!appConfig.connection || !Connection.isConnection(appConfig.connection)) {
|
||||||
|
let connection: Connection | undefined;
|
||||||
|
if (Connection.isConnection(config.connection)) {
|
||||||
|
connection = config.connection;
|
||||||
|
} else {
|
||||||
|
const sqlite = (await import("bknd/adapter/sqlite")).sqlite;
|
||||||
|
const conf = config.connection ?? { url: ":memory:" };
|
||||||
|
connection = sqlite(conf);
|
||||||
|
$console.info(`Using ${connection.name} connection`, conf.url);
|
||||||
|
}
|
||||||
|
appConfig.connection = connection;
|
||||||
|
}
|
||||||
|
|
||||||
|
app = App.create(appConfig);
|
||||||
apps.set(id, app);
|
apps.set(id, app);
|
||||||
}
|
}
|
||||||
return app;
|
return app;
|
||||||
|
|||||||
@@ -0,0 +1,57 @@
|
|||||||
|
import { genericSqlite } from "bknd/data";
|
||||||
|
import { DatabaseSync } from "node:sqlite";
|
||||||
|
|
||||||
|
export type NodeSqliteConnectionConfig = {
|
||||||
|
database: DatabaseSync;
|
||||||
|
};
|
||||||
|
|
||||||
|
export function nodeSqlite(config?: NodeSqliteConnectionConfig | { url: string }) {
|
||||||
|
let db: DatabaseSync;
|
||||||
|
if (config) {
|
||||||
|
if ("database" in config) {
|
||||||
|
db = config.database;
|
||||||
|
} else {
|
||||||
|
db = new DatabaseSync(config.url);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
db = new DatabaseSync(":memory:");
|
||||||
|
}
|
||||||
|
|
||||||
|
return genericSqlite(
|
||||||
|
"node-sqlite",
|
||||||
|
db,
|
||||||
|
(utils) => {
|
||||||
|
const getStmt = (sql: string) => {
|
||||||
|
const stmt = db.prepare(sql);
|
||||||
|
//stmt.setReadBigInts(true);
|
||||||
|
return stmt;
|
||||||
|
};
|
||||||
|
|
||||||
|
return {
|
||||||
|
db,
|
||||||
|
query: utils.buildQueryFn({
|
||||||
|
all: (sql, parameters = []) => getStmt(sql).all(...parameters),
|
||||||
|
run: (sql, parameters = []) => {
|
||||||
|
const { changes, lastInsertRowid } = getStmt(sql).run(...parameters);
|
||||||
|
return {
|
||||||
|
insertId: utils.parseBigInt(lastInsertRowid),
|
||||||
|
numAffectedRows: utils.parseBigInt(changes),
|
||||||
|
};
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
close: () => db.close(),
|
||||||
|
iterator: (isSelect, sql, parameters = []) => {
|
||||||
|
if (!isSelect) {
|
||||||
|
throw new Error("Only support select in stream()");
|
||||||
|
}
|
||||||
|
return getStmt(sql).iterate(...parameters) as any;
|
||||||
|
},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
{
|
||||||
|
supports: {
|
||||||
|
batching: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
import { nodeSqlite } from "./NodeSqliteConnection";
|
||||||
|
import { DatabaseSync } from "node:sqlite";
|
||||||
|
import { connectionTestSuite } from "data/connection/connection-test-suite";
|
||||||
|
import { describe } from "vitest";
|
||||||
|
import { viTestRunner } from "../vitest";
|
||||||
|
|
||||||
|
describe("NodeSqliteConnection", () => {
|
||||||
|
connectionTestSuite(viTestRunner, {
|
||||||
|
makeConnection: () => ({
|
||||||
|
connection: nodeSqlite({ database: new DatabaseSync(":memory:") }),
|
||||||
|
dispose: async () => {},
|
||||||
|
}),
|
||||||
|
rawDialectDetails: [],
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -1,18 +1,3 @@
|
|||||||
import { registries } from "bknd";
|
|
||||||
import { type LocalAdapterConfig, StorageLocalAdapter } from "./storage/StorageLocalAdapter";
|
|
||||||
|
|
||||||
export * from "./node.adapter";
|
export * from "./node.adapter";
|
||||||
export { StorageLocalAdapter, type LocalAdapterConfig };
|
export * from "./storage";
|
||||||
|
export * from "./connection/NodeSqliteConnection";
|
||||||
let registered = false;
|
|
||||||
export function registerLocalMediaAdapter() {
|
|
||||||
if (!registered) {
|
|
||||||
registries.media.register("local", StorageLocalAdapter);
|
|
||||||
registered = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (config: Partial<LocalAdapterConfig> = {}) => {
|
|
||||||
const adapter = new StorageLocalAdapter(config);
|
|
||||||
return adapter.toJSON(true);
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { afterAll, beforeAll, describe } from "bun:test";
|
import { afterAll, beforeAll, describe } from "bun:test";
|
||||||
import * as node from "./node.adapter";
|
import { createApp, createHandler } from "./node.adapter";
|
||||||
import { adapterTestSuite } from "adapter/adapter-test-suite";
|
import { adapterTestSuite } from "adapter/adapter-test-suite";
|
||||||
import { bunTestRunner } from "adapter/bun/test";
|
import { bunTestRunner } from "adapter/bun/test";
|
||||||
import { disableConsoleLog, enableConsoleLog } from "core/utils";
|
import { disableConsoleLog, enableConsoleLog } from "core/utils";
|
||||||
@@ -9,7 +9,7 @@ afterAll(enableConsoleLog);
|
|||||||
|
|
||||||
describe("node adapter (bun)", () => {
|
describe("node adapter (bun)", () => {
|
||||||
adapterTestSuite(bunTestRunner, {
|
adapterTestSuite(bunTestRunner, {
|
||||||
makeApp: node.createApp,
|
makeApp: createApp,
|
||||||
makeHandler: node.createHandler,
|
makeHandler: createHandler,
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
import path from "node:path";
|
import path from "node:path";
|
||||||
import { serve as honoServe } from "@hono/node-server";
|
import { serve as honoServe } from "@hono/node-server";
|
||||||
import { serveStatic } from "@hono/node-server/serve-static";
|
import { serveStatic } from "@hono/node-server/serve-static";
|
||||||
import { registerLocalMediaAdapter } from "adapter/node/index";
|
import { registerLocalMediaAdapter } from "adapter/node/storage";
|
||||||
import { type RuntimeBkndConfig, createRuntimeApp, type RuntimeOptions } from "bknd/adapter";
|
import { type RuntimeBkndConfig, createRuntimeApp, type RuntimeOptions } from "bknd/adapter";
|
||||||
import { config as $config } from "bknd/core";
|
import { config as $config } from "bknd/core";
|
||||||
import { $console } from "core";
|
import { $console } from "core/utils";
|
||||||
|
import type { App } from "App";
|
||||||
|
|
||||||
type NodeEnv = NodeJS.ProcessEnv;
|
type NodeEnv = NodeJS.ProcessEnv;
|
||||||
export type NodeBkndConfig<Env = NodeEnv> = RuntimeBkndConfig<Env> & {
|
export type NodeBkndConfig<Env = NodeEnv> = RuntimeBkndConfig<Env> & {
|
||||||
@@ -28,8 +29,7 @@ export async function createApp<Env = NodeEnv>(
|
|||||||
console.warn("relativeDistPath is deprecated, please use distPath instead");
|
console.warn("relativeDistPath is deprecated, please use distPath instead");
|
||||||
}
|
}
|
||||||
|
|
||||||
registerLocalMediaAdapter();
|
const app = await createRuntimeApp(
|
||||||
return await createRuntimeApp(
|
|
||||||
{
|
{
|
||||||
...config,
|
...config,
|
||||||
serveStatic: serveStatic({ root }),
|
serveStatic: serveStatic({ root }),
|
||||||
@@ -38,6 +38,8 @@ export async function createApp<Env = NodeEnv>(
|
|||||||
args ?? { env: process.env },
|
args ?? { env: process.env },
|
||||||
opts,
|
opts,
|
||||||
);
|
);
|
||||||
|
registerLocalMediaAdapter(app);
|
||||||
|
return app;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function createHandler<Env = NodeEnv>(
|
export function createHandler<Env = NodeEnv>(
|
||||||
@@ -45,8 +47,11 @@ export function createHandler<Env = NodeEnv>(
|
|||||||
args: Env = {} as Env,
|
args: Env = {} as Env,
|
||||||
opts?: RuntimeOptions,
|
opts?: RuntimeOptions,
|
||||||
) {
|
) {
|
||||||
|
let app: App | undefined;
|
||||||
return async (req: Request) => {
|
return async (req: Request) => {
|
||||||
const app = await createApp(config, args ?? (process.env as Env), opts);
|
if (!app) {
|
||||||
|
app = await createApp(config, args ?? (process.env as Env), opts);
|
||||||
|
}
|
||||||
return app.fetch(req);
|
return app.fetch(req);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
+5
-5
@@ -1,14 +1,14 @@
|
|||||||
import { describe, before, after } from "node:test";
|
import { describe, beforeAll, afterAll } from "vitest";
|
||||||
import * as node from "./node.adapter";
|
import * as node from "./node.adapter";
|
||||||
import { adapterTestSuite } from "adapter/adapter-test-suite";
|
import { adapterTestSuite } from "adapter/adapter-test-suite";
|
||||||
import { nodeTestRunner } from "adapter/node/test";
|
import { viTestRunner } from "adapter/node/vitest";
|
||||||
import { disableConsoleLog, enableConsoleLog } from "core/utils";
|
import { disableConsoleLog, enableConsoleLog } from "core/utils";
|
||||||
|
|
||||||
before(() => disableConsoleLog());
|
beforeAll(() => disableConsoleLog());
|
||||||
after(enableConsoleLog);
|
afterAll(enableConsoleLog);
|
||||||
|
|
||||||
describe("node adapter", () => {
|
describe("node adapter", () => {
|
||||||
adapterTestSuite(nodeTestRunner, {
|
adapterTestSuite(viTestRunner, {
|
||||||
makeApp: node.createApp,
|
makeApp: node.createApp,
|
||||||
makeHandler: node.createHandler,
|
makeHandler: node.createHandler,
|
||||||
});
|
});
|
||||||
@@ -1,17 +1,16 @@
|
|||||||
import { readFile, readdir, stat, unlink, writeFile } from "node:fs/promises";
|
import { readFile, readdir, stat, unlink, writeFile } from "node:fs/promises";
|
||||||
import { type Static, isFile, parse } from "bknd/utils";
|
import { isFile } from "bknd/utils";
|
||||||
import type { FileBody, FileListObject, FileMeta, FileUploadPayload } from "bknd/media";
|
import type { FileBody, FileListObject, FileMeta, FileUploadPayload } from "bknd/media";
|
||||||
import { StorageAdapter, guessMimeType as guess } from "bknd/media";
|
import { StorageAdapter, guessMimeType as guess } from "bknd/media";
|
||||||
import * as tb from "@sinclair/typebox";
|
import { parse, s } from "core/object/schema";
|
||||||
const { Type } = tb;
|
|
||||||
|
|
||||||
export const localAdapterConfig = Type.Object(
|
export const localAdapterConfig = s.object(
|
||||||
{
|
{
|
||||||
path: Type.String({ default: "./" }),
|
path: s.string({ default: "./" }),
|
||||||
},
|
},
|
||||||
{ title: "Local", description: "Local file system storage", additionalProperties: false },
|
{ title: "Local", description: "Local file system storage", additionalProperties: false },
|
||||||
);
|
);
|
||||||
export type LocalAdapterConfig = Static<typeof localAdapterConfig>;
|
export type LocalAdapterConfig = s.Static<typeof localAdapterConfig>;
|
||||||
|
|
||||||
export class StorageLocalAdapter extends StorageAdapter {
|
export class StorageLocalAdapter extends StorageAdapter {
|
||||||
private config: LocalAdapterConfig;
|
private config: LocalAdapterConfig;
|
||||||
@@ -62,8 +61,7 @@ export class StorageLocalAdapter extends StorageAdapter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const filePath = `${this.config.path}/${key}`;
|
const filePath = `${this.config.path}/${key}`;
|
||||||
const is_file = isFile(body);
|
await writeFile(filePath, isFile(body) ? body.stream() : body);
|
||||||
await writeFile(filePath, is_file ? body.stream() : body);
|
|
||||||
|
|
||||||
return await this.computeEtag(body);
|
return await this.computeEtag(body);
|
||||||
}
|
}
|
||||||
|
|||||||
+3
-3
@@ -1,5 +1,5 @@
|
|||||||
import { describe } from "node:test";
|
import { describe } from "vitest";
|
||||||
import { nodeTestRunner } from "adapter/node/test";
|
import { viTestRunner } from "adapter/node/vitest";
|
||||||
import { StorageLocalAdapter } from "adapter/node";
|
import { StorageLocalAdapter } from "adapter/node";
|
||||||
import { adapterTestSuite } from "media/storage/adapters/adapter-test-suite";
|
import { adapterTestSuite } from "media/storage/adapters/adapter-test-suite";
|
||||||
import { readFileSync } from "node:fs";
|
import { readFileSync } from "node:fs";
|
||||||
@@ -14,5 +14,5 @@ describe("StorageLocalAdapter (node)", async () => {
|
|||||||
path: path.join(basePath, "tmp"),
|
path: path.join(basePath, "tmp"),
|
||||||
});
|
});
|
||||||
|
|
||||||
await adapterTestSuite(nodeTestRunner, adapter, file);
|
await adapterTestSuite(viTestRunner, adapter, file);
|
||||||
});
|
});
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
import type { App } from "bknd";
|
||||||
|
import { type LocalAdapterConfig, StorageLocalAdapter } from "./StorageLocalAdapter";
|
||||||
|
|
||||||
|
export * from "./StorageLocalAdapter";
|
||||||
|
|
||||||
|
export function registerLocalMediaAdapter(app: App) {
|
||||||
|
app.module.media.adapters.set("local", StorageLocalAdapter);
|
||||||
|
|
||||||
|
return (config: Partial<LocalAdapterConfig> = {}) => {
|
||||||
|
const adapter = new StorageLocalAdapter(config);
|
||||||
|
return adapter.toJSON(true);
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
import nodeAssert from "node:assert/strict";
|
import nodeAssert from "node:assert/strict";
|
||||||
import { test } from "node:test";
|
import { test, describe, beforeEach, afterEach } from "node:test";
|
||||||
import type { Matcher, Test, TestFn, TestRunner } from "core/test";
|
import type { Matcher, Test, TestFn, TestRunner } from "core/test";
|
||||||
|
|
||||||
// Track mock function calls
|
// Track mock function calls
|
||||||
@@ -85,6 +85,7 @@ nodeTest.skipIf = (condition: boolean): Test => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export const nodeTestRunner: TestRunner = {
|
export const nodeTestRunner: TestRunner = {
|
||||||
|
describe,
|
||||||
test: nodeTest,
|
test: nodeTest,
|
||||||
mock: createMockFunction,
|
mock: createMockFunction,
|
||||||
expect: <T = unknown>(actual?: T, failMsg?: string) => ({
|
expect: <T = unknown>(actual?: T, failMsg?: string) => ({
|
||||||
@@ -96,4 +97,7 @@ export const nodeTestRunner: TestRunner = {
|
|||||||
reject: (r) => nodeTestMatcher(r, failMsg),
|
reject: (r) => nodeTestMatcher(r, failMsg),
|
||||||
}),
|
}),
|
||||||
}),
|
}),
|
||||||
|
beforeEach: beforeEach,
|
||||||
|
afterEach: afterEach,
|
||||||
|
afterAll: () => {},
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -0,0 +1,53 @@
|
|||||||
|
import type { TestFn, TestRunner, Test } from "core/test";
|
||||||
|
import { describe, test, expect, vi, beforeEach, afterEach, afterAll } from "vitest";
|
||||||
|
|
||||||
|
function vitestTest(label: string, fn: TestFn, options?: any) {
|
||||||
|
return test(label, fn as any);
|
||||||
|
}
|
||||||
|
vitestTest.if = (condition: boolean): Test => {
|
||||||
|
if (condition) {
|
||||||
|
return vitestTest;
|
||||||
|
}
|
||||||
|
return (() => {}) as any;
|
||||||
|
};
|
||||||
|
vitestTest.skip = (label: string, fn: TestFn) => {
|
||||||
|
return test.skip(label, fn as any);
|
||||||
|
};
|
||||||
|
vitestTest.skipIf = (condition: boolean): Test => {
|
||||||
|
if (condition) {
|
||||||
|
return (() => {}) as any;
|
||||||
|
}
|
||||||
|
return vitestTest;
|
||||||
|
};
|
||||||
|
|
||||||
|
const vitestExpect = <T = unknown>(actual: T, parentFailMsg?: string) => {
|
||||||
|
return {
|
||||||
|
toEqual: (expected: T, failMsg = parentFailMsg) => {
|
||||||
|
expect(actual, failMsg).toEqual(expected);
|
||||||
|
},
|
||||||
|
toBe: (expected: T, failMsg = parentFailMsg) => {
|
||||||
|
expect(actual, failMsg).toBe(expected);
|
||||||
|
},
|
||||||
|
toBeString: () => expect(typeof actual, parentFailMsg).toBe("string"),
|
||||||
|
toBeUndefined: () => expect(actual, parentFailMsg).toBeUndefined(),
|
||||||
|
toBeDefined: () => expect(actual, parentFailMsg).toBeDefined(),
|
||||||
|
toBeOneOf: (expected: T | Array<T> | Iterable<T>, failMsg = parentFailMsg) => {
|
||||||
|
const e = Array.isArray(expected) ? expected : [expected];
|
||||||
|
expect(actual, failMsg).toBeOneOf(e);
|
||||||
|
},
|
||||||
|
toHaveBeenCalled: () => expect(actual, parentFailMsg).toHaveBeenCalled(),
|
||||||
|
toHaveBeenCalledTimes: (expected: number, failMsg = parentFailMsg) => {
|
||||||
|
expect(actual, failMsg).toHaveBeenCalledTimes(expected);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
export const viTestRunner: TestRunner = {
|
||||||
|
describe,
|
||||||
|
test: vitestTest,
|
||||||
|
expect: vitestExpect as any,
|
||||||
|
mock: (fn) => vi.fn(fn),
|
||||||
|
beforeEach: beforeEach,
|
||||||
|
afterEach: afterEach,
|
||||||
|
afterAll: afterAll,
|
||||||
|
};
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
import type { Connection } from "bknd/data";
|
||||||
|
import { bunSqlite } from "../bun/connection/BunSqliteConnection";
|
||||||
|
|
||||||
|
export function sqlite(config?: { url: string }): Connection {
|
||||||
|
return bunSqlite(config);
|
||||||
|
}
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
import { type Connection, libsql } from "bknd/data";
|
||||||
|
|
||||||
|
export function sqlite(config: { url: string }): Connection {
|
||||||
|
return libsql(config);
|
||||||
|
}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
import type { Connection } from "bknd/data";
|
||||||
|
import { nodeSqlite } from "../node/connection/NodeSqliteConnection";
|
||||||
|
|
||||||
|
export function sqlite(config?: { url: string }): Connection {
|
||||||
|
return nodeSqlite(config);
|
||||||
|
}
|
||||||
@@ -32,8 +32,7 @@ async function createApp<ViteEnv>(
|
|||||||
env: ViteEnv = {} as ViteEnv,
|
env: ViteEnv = {} as ViteEnv,
|
||||||
opts: FrameworkOptions = {},
|
opts: FrameworkOptions = {},
|
||||||
): Promise<App> {
|
): Promise<App> {
|
||||||
registerLocalMediaAdapter();
|
const app = await createRuntimeApp(
|
||||||
return await createRuntimeApp(
|
|
||||||
{
|
{
|
||||||
...config,
|
...config,
|
||||||
adminOptions: config.adminOptions ?? {
|
adminOptions: config.adminOptions ?? {
|
||||||
@@ -49,6 +48,8 @@ async function createApp<ViteEnv>(
|
|||||||
env,
|
env,
|
||||||
opts,
|
opts,
|
||||||
);
|
);
|
||||||
|
registerLocalMediaAdapter(app);
|
||||||
|
return app;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function serve<ViteEnv>(
|
export function serve<ViteEnv>(
|
||||||
|
|||||||
+10
-20
@@ -1,14 +1,15 @@
|
|||||||
import { Authenticator, AuthPermissions, Role, type Strategy } from "auth";
|
import { Authenticator, AuthPermissions, Role, type Strategy } from "auth";
|
||||||
import type { PasswordStrategy } from "auth/authenticate/strategies";
|
import type { PasswordStrategy } from "auth/authenticate/strategies";
|
||||||
import { $console, type DB } from "core";
|
import type { DB } from "core";
|
||||||
import { secureRandomString, transformObject } from "core/utils";
|
import { $console, secureRandomString, transformObject } from "core/utils";
|
||||||
import type { Entity, EntityManager } from "data";
|
import type { Entity, EntityManager } from "data";
|
||||||
import { em, entity, enumm, type FieldSchema, text } from "data/prototype";
|
import { em, entity, enumm, type FieldSchema } from "data/prototype";
|
||||||
import { Module } from "modules/Module";
|
import { Module } from "modules/Module";
|
||||||
import { AuthController } from "./api/AuthController";
|
import { AuthController } from "./api/AuthController";
|
||||||
import { type AppAuthSchema, authConfigSchema, STRATEGIES } from "./auth-schema";
|
import { type AppAuthSchema, authConfigSchema, STRATEGIES } from "./auth-schema";
|
||||||
import { AppUserPool } from "auth/AppUserPool";
|
import { AppUserPool } from "auth/AppUserPool";
|
||||||
import type { AppEntity } from "core/config";
|
import type { AppEntity } from "core/config";
|
||||||
|
import { usersFields } from "./auth-entities";
|
||||||
|
|
||||||
export type UserFieldSchema = FieldSchema<typeof AppAuth.usersFields>;
|
export type UserFieldSchema = FieldSchema<typeof AppAuth.usersFields>;
|
||||||
declare module "core" {
|
declare module "core" {
|
||||||
@@ -20,7 +21,7 @@ declare module "core" {
|
|||||||
|
|
||||||
export type CreateUserPayload = { email: string; password: string; [key: string]: any };
|
export type CreateUserPayload = { email: string; password: string; [key: string]: any };
|
||||||
|
|
||||||
export class AppAuth extends Module<typeof authConfigSchema> {
|
export class AppAuth extends Module<AppAuthSchema> {
|
||||||
private _authenticator?: Authenticator;
|
private _authenticator?: Authenticator;
|
||||||
cache: Record<string, any> = {};
|
cache: Record<string, any> = {};
|
||||||
_controller!: AuthController;
|
_controller!: AuthController;
|
||||||
@@ -125,22 +126,11 @@ export class AppAuth extends Module<typeof authConfigSchema> {
|
|||||||
return this.em.entity(entity_name) as any;
|
return this.em.entity(entity_name) as any;
|
||||||
}
|
}
|
||||||
|
|
||||||
static usersFields = {
|
static usersFields = usersFields;
|
||||||
email: text().required(),
|
|
||||||
strategy: text({
|
|
||||||
fillable: ["create"],
|
|
||||||
hidden: ["update", "form"],
|
|
||||||
}).required(),
|
|
||||||
strategy_value: text({
|
|
||||||
fillable: ["create"],
|
|
||||||
hidden: ["read", "table", "update", "form"],
|
|
||||||
}).required(),
|
|
||||||
role: text(),
|
|
||||||
};
|
|
||||||
|
|
||||||
registerEntities() {
|
registerEntities() {
|
||||||
const users = this.getUsersEntity(true);
|
const users = this.getUsersEntity(true);
|
||||||
this.ensureSchema(
|
this.ctx.helper.ensureSchema(
|
||||||
em(
|
em(
|
||||||
{
|
{
|
||||||
[users.name as "users"]: users,
|
[users.name as "users"]: users,
|
||||||
@@ -153,13 +143,13 @@ export class AppAuth extends Module<typeof authConfigSchema> {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
const roles = Object.keys(this.config.roles ?? {});
|
const roles = Object.keys(this.config.roles ?? {});
|
||||||
this.replaceEntityField(users, "role", enumm({ enum: roles }));
|
this.ctx.helper.replaceEntityField(users, "role", enumm({ enum: roles }));
|
||||||
} catch (e) {}
|
} catch (e) {}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// also keep disabled strategies as a choice
|
// also keep disabled strategies as a choice
|
||||||
const strategies = Object.keys(this.config.strategies ?? {});
|
const strategies = Object.keys(this.config.strategies ?? {});
|
||||||
this.replaceEntityField(users, "strategy", enumm({ enum: strategies }));
|
this.ctx.helper.replaceEntityField(users, "strategy", enumm({ enum: strategies }));
|
||||||
} catch (e) {}
|
} catch (e) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -197,6 +187,6 @@ export class AppAuth extends Module<typeof authConfigSchema> {
|
|||||||
enabled: this.isStrategyEnabled(strategy),
|
enabled: this.isStrategyEnabled(strategy),
|
||||||
...strategy.toJSON(secrets),
|
...strategy.toJSON(secrets),
|
||||||
})),
|
})),
|
||||||
};
|
} as AppAuthSchema;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import { AppAuth } from "auth/AppAuth";
|
import { AppAuth } from "auth/AppAuth";
|
||||||
import type { CreateUser, SafeUser, User, UserPool } from "auth/authenticate/Authenticator";
|
import type { CreateUser, SafeUser, User, UserPool } from "auth/authenticate/Authenticator";
|
||||||
import { $console } from "core";
|
import { $console } from "core/utils";
|
||||||
import { pick } from "lodash-es";
|
import { pick } from "lodash-es";
|
||||||
import {
|
import {
|
||||||
InvalidConditionsException,
|
InvalidConditionsException,
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
import { type AppAuth, AuthPermissions, type SafeUser, type Strategy } from "auth";
|
import { type AppAuth, AuthPermissions, type SafeUser, type Strategy } from "auth";
|
||||||
import { TypeInvalidError, parse, transformObject } from "core/utils";
|
import { transformObject } from "core/utils";
|
||||||
import { DataPermissions } from "data";
|
import { DataPermissions } from "data";
|
||||||
import type { Hono } from "hono";
|
import type { Hono } from "hono";
|
||||||
import { Controller, type ServerEnv } from "modules/Controller";
|
import { Controller, type ServerEnv } from "modules/Controller";
|
||||||
import { describeRoute, jsc, s } from "core/object/schema";
|
import { describeRoute, jsc, s, parse, InvalidSchemaError } from "core/object/schema";
|
||||||
|
|
||||||
export type AuthActionResponse = {
|
export type AuthActionResponse = {
|
||||||
success: boolean;
|
success: boolean;
|
||||||
@@ -58,7 +58,7 @@ export class AuthController extends Controller {
|
|||||||
try {
|
try {
|
||||||
const body = await this.auth.authenticator.getBody(c);
|
const body = await this.auth.authenticator.getBody(c);
|
||||||
const valid = parse(create.schema, body, {
|
const valid = parse(create.schema, body, {
|
||||||
skipMark: true,
|
//skipMark: true,
|
||||||
});
|
});
|
||||||
const processed = (await create.preprocess?.(valid)) ?? valid;
|
const processed = (await create.preprocess?.(valid)) ?? valid;
|
||||||
|
|
||||||
@@ -78,7 +78,7 @@ export class AuthController extends Controller {
|
|||||||
data: created as unknown as SafeUser,
|
data: created as unknown as SafeUser,
|
||||||
} as AuthActionResponse);
|
} as AuthActionResponse);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e instanceof TypeInvalidError) {
|
if (e instanceof InvalidSchemaError) {
|
||||||
return c.json(
|
return c.json(
|
||||||
{
|
{
|
||||||
success: false,
|
success: false,
|
||||||
@@ -184,6 +184,6 @@ export class AuthController extends Controller {
|
|||||||
this.registerStrategyActions(strategy, hono);
|
this.registerStrategyActions(strategy, hono);
|
||||||
}
|
}
|
||||||
|
|
||||||
return hono.all("*", (c) => c.notFound());
|
return hono;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,14 @@
|
|||||||
|
import { text } from "data/prototype";
|
||||||
|
|
||||||
|
export const usersFields = {
|
||||||
|
email: text().required(),
|
||||||
|
strategy: text({
|
||||||
|
fillable: ["create"],
|
||||||
|
hidden: ["update", "form"],
|
||||||
|
}).required(),
|
||||||
|
strategy_value: text({
|
||||||
|
fillable: ["create"],
|
||||||
|
hidden: ["read", "table", "update", "form"],
|
||||||
|
}).required(),
|
||||||
|
role: text(),
|
||||||
|
};
|
||||||
+38
-45
@@ -1,8 +1,7 @@
|
|||||||
import { cookieConfig, jwtConfig } from "auth/authenticate/Authenticator";
|
import { cookieConfig, jwtConfig } from "auth/authenticate/Authenticator";
|
||||||
import { CustomOAuthStrategy, OAuthStrategy, PasswordStrategy } from "auth/authenticate/strategies";
|
import { CustomOAuthStrategy, OAuthStrategy, PasswordStrategy } from "auth/authenticate/strategies";
|
||||||
import { type Static, StringRecord, objectTransform } from "core/utils";
|
import { objectTransform } from "core/utils";
|
||||||
import * as tbbox from "@sinclair/typebox";
|
import { s } from "core/object/schema";
|
||||||
const { Type } = tbbox;
|
|
||||||
|
|
||||||
export const Strategies = {
|
export const Strategies = {
|
||||||
password: {
|
password: {
|
||||||
@@ -21,64 +20,58 @@ export const Strategies = {
|
|||||||
|
|
||||||
export const STRATEGIES = Strategies;
|
export const STRATEGIES = Strategies;
|
||||||
const strategiesSchemaObject = objectTransform(STRATEGIES, (strategy, name) => {
|
const strategiesSchemaObject = objectTransform(STRATEGIES, (strategy, name) => {
|
||||||
return Type.Object(
|
return s.strictObject(
|
||||||
{
|
{
|
||||||
enabled: Type.Optional(Type.Boolean({ default: true })),
|
enabled: s.boolean({ default: true }).optional(),
|
||||||
type: Type.Const(name, { default: name, readOnly: true }),
|
type: s.literal(name),
|
||||||
config: strategy.schema,
|
config: strategy.schema,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: name,
|
title: name,
|
||||||
additionalProperties: false,
|
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
const strategiesSchema = Type.Union(Object.values(strategiesSchemaObject));
|
|
||||||
export type AppAuthStrategies = Static<typeof strategiesSchema>;
|
|
||||||
export type AppAuthOAuthStrategy = Static<typeof STRATEGIES.oauth.schema>;
|
|
||||||
export type AppAuthCustomOAuthStrategy = Static<typeof STRATEGIES.custom_oauth.schema>;
|
|
||||||
|
|
||||||
const guardConfigSchema = Type.Object({
|
const strategiesSchema = s.anyOf(Object.values(strategiesSchemaObject));
|
||||||
enabled: Type.Optional(Type.Boolean({ default: false })),
|
export type AppAuthStrategies = s.Static<typeof strategiesSchema>;
|
||||||
|
export type AppAuthOAuthStrategy = s.Static<typeof STRATEGIES.oauth.schema>;
|
||||||
|
export type AppAuthCustomOAuthStrategy = s.Static<typeof STRATEGIES.custom_oauth.schema>;
|
||||||
|
|
||||||
|
const guardConfigSchema = s.object({
|
||||||
|
enabled: s.boolean({ default: false }).optional(),
|
||||||
|
});
|
||||||
|
export const guardRoleSchema = s.strictObject({
|
||||||
|
permissions: s.array(s.string()).optional(),
|
||||||
|
is_default: s.boolean().optional(),
|
||||||
|
implicit_allow: s.boolean().optional(),
|
||||||
});
|
});
|
||||||
export const guardRoleSchema = Type.Object(
|
|
||||||
{
|
|
||||||
permissions: Type.Optional(Type.Array(Type.String())),
|
|
||||||
is_default: Type.Optional(Type.Boolean()),
|
|
||||||
implicit_allow: Type.Optional(Type.Boolean()),
|
|
||||||
},
|
|
||||||
{ additionalProperties: false },
|
|
||||||
);
|
|
||||||
|
|
||||||
export const authConfigSchema = Type.Object(
|
export const authConfigSchema = s.strictObject(
|
||||||
{
|
{
|
||||||
enabled: Type.Boolean({ default: false }),
|
enabled: s.boolean({ default: false }),
|
||||||
basepath: Type.String({ default: "/api/auth" }),
|
basepath: s.string({ default: "/api/auth" }),
|
||||||
entity_name: Type.String({ default: "users" }),
|
entity_name: s.string({ default: "users" }),
|
||||||
allow_register: Type.Optional(Type.Boolean({ default: true })),
|
allow_register: s.boolean({ default: true }).optional(),
|
||||||
jwt: jwtConfig,
|
jwt: jwtConfig,
|
||||||
cookie: cookieConfig,
|
cookie: cookieConfig,
|
||||||
strategies: Type.Optional(
|
strategies: s.record(strategiesSchema, {
|
||||||
StringRecord(strategiesSchema, {
|
title: "Strategies",
|
||||||
title: "Strategies",
|
default: {
|
||||||
default: {
|
password: {
|
||||||
password: {
|
type: "password",
|
||||||
type: "password",
|
enabled: true,
|
||||||
enabled: true,
|
config: {
|
||||||
config: {
|
hashing: "sha256",
|
||||||
hashing: "sha256",
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}),
|
},
|
||||||
),
|
}),
|
||||||
guard: Type.Optional(guardConfigSchema),
|
guard: guardConfigSchema.optional(),
|
||||||
roles: Type.Optional(StringRecord(guardRoleSchema, { default: {} })),
|
roles: s.record(guardRoleSchema, { default: {} }).optional(),
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Authentication",
|
|
||||||
additionalProperties: false,
|
|
||||||
},
|
},
|
||||||
|
{ title: "Authentication" },
|
||||||
);
|
);
|
||||||
|
|
||||||
export type AppAuthSchema = Static<typeof authConfigSchema>;
|
export type AppAuthJWTConfig = s.Static<typeof jwtConfig>;
|
||||||
|
|
||||||
|
export type AppAuthSchema = s.Static<typeof authConfigSchema>;
|
||||||
|
|||||||
@@ -1,31 +1,23 @@
|
|||||||
import { $console, type DB, Exception } from "core";
|
import { type DB, Exception } from "core";
|
||||||
import { addFlashMessage } from "core/server/flash";
|
import { addFlashMessage } from "core/server/flash";
|
||||||
import {
|
import { runtimeSupports, truncate, $console } from "core/utils";
|
||||||
type Static,
|
|
||||||
StringEnum,
|
|
||||||
type TObject,
|
|
||||||
parse,
|
|
||||||
runtimeSupports,
|
|
||||||
truncate,
|
|
||||||
} from "core/utils";
|
|
||||||
import type { Context, Hono } from "hono";
|
import type { Context, Hono } from "hono";
|
||||||
import { deleteCookie, getSignedCookie, setSignedCookie } from "hono/cookie";
|
import { deleteCookie, getSignedCookie, setSignedCookie } from "hono/cookie";
|
||||||
import { sign, verify } from "hono/jwt";
|
import { sign, verify } from "hono/jwt";
|
||||||
import type { CookieOptions } from "hono/utils/cookie";
|
import type { CookieOptions } from "hono/utils/cookie";
|
||||||
import type { ServerEnv } from "modules/Controller";
|
import type { ServerEnv } from "modules/Controller";
|
||||||
import { pick } from "lodash-es";
|
import { pick } from "lodash-es";
|
||||||
import * as tbbox from "@sinclair/typebox";
|
|
||||||
import { InvalidConditionsException } from "auth/errors";
|
import { InvalidConditionsException } from "auth/errors";
|
||||||
const { Type } = tbbox;
|
import { s, parse, secret } from "core/object/schema";
|
||||||
|
|
||||||
type Input = any; // workaround
|
type Input = any; // workaround
|
||||||
export type JWTPayload = Parameters<typeof sign>[0];
|
export type JWTPayload = Parameters<typeof sign>[0];
|
||||||
|
|
||||||
export const strategyActions = ["create", "change"] as const;
|
export const strategyActions = ["create", "change"] as const;
|
||||||
export type StrategyActionName = (typeof strategyActions)[number];
|
export type StrategyActionName = (typeof strategyActions)[number];
|
||||||
export type StrategyAction<S extends TObject = TObject> = {
|
export type StrategyAction<S extends s.ObjectSchema = s.ObjectSchema> = {
|
||||||
schema: S;
|
schema: S;
|
||||||
preprocess: (input: Static<S>) => Promise<Omit<DB["users"], "id" | "strategy">>;
|
preprocess: (input: s.Static<S>) => Promise<Omit<DB["users"], "id" | "strategy">>;
|
||||||
};
|
};
|
||||||
export type StrategyActions = Partial<Record<StrategyActionName, StrategyAction>>;
|
export type StrategyActions = Partial<Record<StrategyActionName, StrategyAction>>;
|
||||||
|
|
||||||
@@ -59,43 +51,44 @@ export interface UserPool {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const defaultCookieExpires = 60 * 60 * 24 * 7; // 1 week in seconds
|
const defaultCookieExpires = 60 * 60 * 24 * 7; // 1 week in seconds
|
||||||
export const cookieConfig = Type.Partial(
|
export const cookieConfig = s
|
||||||
Type.Object({
|
.object({
|
||||||
path: Type.String({ default: "/" }),
|
path: s.string({ default: "/" }),
|
||||||
sameSite: StringEnum(["strict", "lax", "none"], { default: "lax" }),
|
sameSite: s.string({ enum: ["strict", "lax", "none"], default: "lax" }),
|
||||||
secure: Type.Boolean({ default: true }),
|
secure: s.boolean({ default: true }),
|
||||||
httpOnly: Type.Boolean({ default: true }),
|
httpOnly: s.boolean({ default: true }),
|
||||||
expires: Type.Number({ default: defaultCookieExpires }), // seconds
|
expires: s.number({ default: defaultCookieExpires }), // seconds
|
||||||
renew: Type.Boolean({ default: true }),
|
renew: s.boolean({ default: true }),
|
||||||
pathSuccess: Type.String({ default: "/" }),
|
pathSuccess: s.string({ default: "/" }),
|
||||||
pathLoggedOut: Type.String({ default: "/" }),
|
pathLoggedOut: s.string({ default: "/" }),
|
||||||
}),
|
})
|
||||||
{ default: {}, additionalProperties: false },
|
.partial()
|
||||||
);
|
.strict();
|
||||||
|
|
||||||
// @todo: maybe add a config to not allow cookie/api tokens to be used interchangably?
|
// @todo: maybe add a config to not allow cookie/api tokens to be used interchangably?
|
||||||
// see auth.integration test for further details
|
// see auth.integration test for further details
|
||||||
|
|
||||||
export const jwtConfig = Type.Object(
|
export const jwtConfig = s
|
||||||
{
|
.object(
|
||||||
// @todo: autogenerate a secret if not present. But it must be persisted from AppAuth
|
{
|
||||||
secret: Type.String({ default: "" }),
|
// @todo: autogenerate a secret if not present. But it must be persisted from AppAuth
|
||||||
alg: Type.Optional(StringEnum(["HS256", "HS384", "HS512"], { default: "HS256" })),
|
secret: secret({ default: "" }),
|
||||||
expires: Type.Optional(Type.Number()), // seconds
|
alg: s.string({ enum: ["HS256", "HS384", "HS512"], default: "HS256" }).optional(),
|
||||||
issuer: Type.Optional(Type.String()),
|
expires: s.number().optional(), // seconds
|
||||||
fields: Type.Array(Type.String(), { default: ["id", "email", "role"] }),
|
issuer: s.string().optional(),
|
||||||
},
|
fields: s.array(s.string(), { default: ["id", "email", "role"] }),
|
||||||
{
|
},
|
||||||
default: {},
|
{
|
||||||
additionalProperties: false,
|
default: {},
|
||||||
},
|
},
|
||||||
);
|
)
|
||||||
export const authenticatorConfig = Type.Object({
|
.strict();
|
||||||
|
export const authenticatorConfig = s.object({
|
||||||
jwt: jwtConfig,
|
jwt: jwtConfig,
|
||||||
cookie: cookieConfig,
|
cookie: cookieConfig,
|
||||||
});
|
});
|
||||||
|
|
||||||
type AuthConfig = Static<typeof authenticatorConfig>;
|
type AuthConfig = s.Static<typeof authenticatorConfig>;
|
||||||
export type AuthAction = "login" | "register";
|
export type AuthAction = "login" | "register";
|
||||||
export type AuthResolveOptions = {
|
export type AuthResolveOptions = {
|
||||||
identifier?: "email" | string;
|
identifier?: "email" | string;
|
||||||
@@ -341,9 +334,9 @@ export class Authenticator<Strategies extends Record<string, Strategy> = Record<
|
|||||||
await setSignedCookie(c, "auth", token, secret, this.cookieOptions);
|
await setSignedCookie(c, "auth", token, secret, this.cookieOptions);
|
||||||
}
|
}
|
||||||
|
|
||||||
private async deleteAuthCookie(c: Context) {
|
private deleteAuthCookie(c: Context) {
|
||||||
$console.debug("deleting auth cookie");
|
$console.debug("deleting auth cookie");
|
||||||
await deleteCookie(c, "auth", this.cookieOptions);
|
deleteCookie(c, "auth", this.cookieOptions);
|
||||||
}
|
}
|
||||||
|
|
||||||
async logout(c: Context<ServerEnv>) {
|
async logout(c: Context<ServerEnv>) {
|
||||||
@@ -352,9 +345,13 @@ export class Authenticator<Strategies extends Record<string, Strategy> = Record<
|
|||||||
|
|
||||||
const cookie = await this.getAuthCookie(c);
|
const cookie = await this.getAuthCookie(c);
|
||||||
if (cookie) {
|
if (cookie) {
|
||||||
await this.deleteAuthCookie(c);
|
addFlashMessage(c, "Signed out", "info");
|
||||||
await addFlashMessage(c, "Signed out", "info");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// on waku, only one cookie setting is performed
|
||||||
|
// therefore adding deleting cookie at the end
|
||||||
|
// as the flash isn't that important
|
||||||
|
this.deleteAuthCookie(c);
|
||||||
}
|
}
|
||||||
|
|
||||||
// @todo: move this to a server helper
|
// @todo: move this to a server helper
|
||||||
|
|||||||
@@ -1,19 +1,18 @@
|
|||||||
import { type Authenticator, InvalidCredentialsException, type User } from "auth";
|
import { type Authenticator, InvalidCredentialsException, type User } from "auth";
|
||||||
import { $console, tbValidator as tb } from "core";
|
import { hash, $console } from "core/utils";
|
||||||
import { hash, parse, type Static, StrictObject, StringEnum } from "core/utils";
|
|
||||||
import { Hono } from "hono";
|
import { Hono } from "hono";
|
||||||
import { compare as bcryptCompare, genSalt as bcryptGenSalt, hash as bcryptHash } from "bcryptjs";
|
import { compare as bcryptCompare, genSalt as bcryptGenSalt, hash as bcryptHash } from "bcryptjs";
|
||||||
import * as tbbox from "@sinclair/typebox";
|
|
||||||
import { Strategy } from "./Strategy";
|
import { Strategy } from "./Strategy";
|
||||||
|
import { s, parse, jsc } from "core/object/schema";
|
||||||
|
|
||||||
const { Type } = tbbox;
|
const schema = s
|
||||||
|
.object({
|
||||||
|
hashing: s.string({ enum: ["plain", "sha256", "bcrypt"], default: "sha256" }),
|
||||||
|
rounds: s.number({ minimum: 1, maximum: 10 }).optional(),
|
||||||
|
})
|
||||||
|
.strict();
|
||||||
|
|
||||||
const schema = StrictObject({
|
export type PasswordStrategyOptions = s.Static<typeof schema>;
|
||||||
hashing: StringEnum(["plain", "sha256", "bcrypt"], { default: "sha256" }),
|
|
||||||
rounds: Type.Optional(Type.Number({ minimum: 1, maximum: 10 })),
|
|
||||||
});
|
|
||||||
|
|
||||||
export type PasswordStrategyOptions = Static<typeof schema>;
|
|
||||||
|
|
||||||
export class PasswordStrategy extends Strategy<typeof schema> {
|
export class PasswordStrategy extends Strategy<typeof schema> {
|
||||||
constructor(config: Partial<PasswordStrategyOptions> = {}) {
|
constructor(config: Partial<PasswordStrategyOptions> = {}) {
|
||||||
@@ -32,11 +31,11 @@ export class PasswordStrategy extends Strategy<typeof schema> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private getPayloadSchema() {
|
private getPayloadSchema() {
|
||||||
return Type.Object({
|
return s.object({
|
||||||
email: Type.String({
|
email: s.string({
|
||||||
pattern: "^[\\w-\\.\\+_]+@([\\w-]+\\.)+[\\w-]{2,4}$",
|
pattern: /^[\w-\.\+_]+@([\w-]+\.)+[\w-]{2,4}$/,
|
||||||
}),
|
}),
|
||||||
password: Type.String({
|
password: s.string({
|
||||||
minLength: 8, // @todo: this should be configurable
|
minLength: 8, // @todo: this should be configurable
|
||||||
}),
|
}),
|
||||||
});
|
});
|
||||||
@@ -79,12 +78,12 @@ export class PasswordStrategy extends Strategy<typeof schema> {
|
|||||||
|
|
||||||
getController(authenticator: Authenticator): Hono<any> {
|
getController(authenticator: Authenticator): Hono<any> {
|
||||||
const hono = new Hono();
|
const hono = new Hono();
|
||||||
const redirectQuerySchema = Type.Object({
|
const redirectQuerySchema = s.object({
|
||||||
redirect: Type.Optional(Type.String()),
|
redirect: s.string().optional(),
|
||||||
});
|
});
|
||||||
const payloadSchema = this.getPayloadSchema();
|
const payloadSchema = this.getPayloadSchema();
|
||||||
|
|
||||||
hono.post("/login", tb("query", redirectQuerySchema), async (c) => {
|
hono.post("/login", jsc("query", redirectQuerySchema), async (c) => {
|
||||||
try {
|
try {
|
||||||
const body = parse(payloadSchema, await authenticator.getBody(c), {
|
const body = parse(payloadSchema, await authenticator.getBody(c), {
|
||||||
onError: (errors) => {
|
onError: (errors) => {
|
||||||
@@ -102,7 +101,7 @@ export class PasswordStrategy extends Strategy<typeof schema> {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
hono.post("/register", tb("query", redirectQuerySchema), async (c) => {
|
hono.post("/register", jsc("query", redirectQuerySchema), async (c) => {
|
||||||
try {
|
try {
|
||||||
const { redirect } = c.req.valid("query");
|
const { redirect } = c.req.valid("query");
|
||||||
const { password, email, ...body } = parse(
|
const { password, email, ...body } = parse(
|
||||||
|
|||||||
@@ -5,31 +5,31 @@ import type {
|
|||||||
StrategyActions,
|
StrategyActions,
|
||||||
} from "../Authenticator";
|
} from "../Authenticator";
|
||||||
import type { Hono } from "hono";
|
import type { Hono } from "hono";
|
||||||
import type { Static, TSchema } from "@sinclair/typebox";
|
import { type s, parse } from "core/object/schema";
|
||||||
import { parse, type TObject } from "core/utils";
|
|
||||||
|
|
||||||
export type StrategyMode = "form" | "external";
|
export type StrategyMode = "form" | "external";
|
||||||
|
|
||||||
export abstract class Strategy<Schema extends TSchema = TSchema> {
|
export abstract class Strategy<Schema extends s.Schema = s.Schema> {
|
||||||
protected actions: StrategyActions = {};
|
protected actions: StrategyActions = {};
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
protected config: Static<Schema>,
|
protected config: s.Static<Schema>,
|
||||||
public type: string,
|
public type: string,
|
||||||
public name: string,
|
public name: string,
|
||||||
public mode: StrategyMode,
|
public mode: StrategyMode,
|
||||||
) {
|
) {
|
||||||
// don't worry about typing, it'll throw if invalid
|
// don't worry about typing, it'll throw if invalid
|
||||||
this.config = parse(this.getSchema(), (config ?? {}) as any) as Static<Schema>;
|
this.config = parse(this.getSchema(), (config ?? {}) as any) as s.Static<Schema>;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected registerAction<S extends TObject = TObject>(
|
protected registerAction<S extends s.ObjectSchema = s.ObjectSchema>(
|
||||||
name: StrategyActionName,
|
name: StrategyActionName,
|
||||||
schema: S,
|
schema: S,
|
||||||
preprocess: StrategyAction<S>["preprocess"],
|
preprocess: StrategyAction<S>["preprocess"],
|
||||||
): void {
|
): void {
|
||||||
this.actions[name] = {
|
this.actions[name] = {
|
||||||
schema,
|
schema,
|
||||||
|
// @ts-expect-error - @todo: fix this
|
||||||
preprocess,
|
preprocess,
|
||||||
} as const;
|
} as const;
|
||||||
}
|
}
|
||||||
@@ -50,7 +50,7 @@ export abstract class Strategy<Schema extends TSchema = TSchema> {
|
|||||||
return this.name;
|
return this.name;
|
||||||
}
|
}
|
||||||
|
|
||||||
toJSON(secrets?: boolean): { type: string; config: Static<Schema> | {} | undefined } {
|
toJSON(secrets?: boolean): { type: string; config: s.Static<Schema> | {} | undefined } {
|
||||||
return {
|
return {
|
||||||
type: this.getType(),
|
type: this.getType(),
|
||||||
config: secrets ? this.config : undefined,
|
config: secrets ? this.config : undefined,
|
||||||
|
|||||||
@@ -1,38 +1,36 @@
|
|||||||
import { type Static, StrictObject, StringEnum } from "core/utils";
|
|
||||||
import * as tbbox from "@sinclair/typebox";
|
|
||||||
import type * as oauth from "oauth4webapi";
|
import type * as oauth from "oauth4webapi";
|
||||||
import { OAuthStrategy } from "./OAuthStrategy";
|
import { OAuthStrategy } from "./OAuthStrategy";
|
||||||
const { Type } = tbbox;
|
import { s } from "core/object/schema";
|
||||||
|
|
||||||
type SupportedTypes = "oauth2" | "oidc";
|
type SupportedTypes = "oauth2" | "oidc";
|
||||||
|
|
||||||
type RequireKeys<T extends object, K extends keyof T> = Required<Pick<T, K>> & Omit<T, K>;
|
type RequireKeys<T extends object, K extends keyof T> = Required<Pick<T, K>> & Omit<T, K>;
|
||||||
|
|
||||||
const UrlString = Type.String({ pattern: "^(https?|wss?)://[^\\s/$.?#].[^\\s]*$" });
|
const UrlString = s.string({ pattern: "^(https?|wss?)://[^\\s/$.?#].[^\\s]*$" });
|
||||||
const oauthSchemaCustom = StrictObject(
|
const oauthSchemaCustom = s.strictObject(
|
||||||
{
|
{
|
||||||
type: StringEnum(["oidc", "oauth2"] as const, { default: "oidc" }),
|
type: s.string({ enum: ["oidc", "oauth2"] as const, default: "oidc" }),
|
||||||
name: Type.String(),
|
name: s.string(),
|
||||||
client: StrictObject({
|
client: s.object({
|
||||||
client_id: Type.String(),
|
client_id: s.string(),
|
||||||
client_secret: Type.String(),
|
client_secret: s.string(),
|
||||||
token_endpoint_auth_method: StringEnum(["client_secret_basic"]),
|
token_endpoint_auth_method: s.string({ enum: ["client_secret_basic"] }),
|
||||||
}),
|
}),
|
||||||
as: StrictObject({
|
as: s.strictObject({
|
||||||
issuer: Type.String(),
|
issuer: s.string(),
|
||||||
code_challenge_methods_supported: Type.Optional(StringEnum(["S256"])),
|
code_challenge_methods_supported: s.string({ enum: ["S256"] }).optional(),
|
||||||
scopes_supported: Type.Optional(Type.Array(Type.String())),
|
scopes_supported: s.array(s.string()).optional(),
|
||||||
scope_separator: Type.Optional(Type.String({ default: " " })),
|
scope_separator: s.string({ default: " " }).optional(),
|
||||||
authorization_endpoint: Type.Optional(UrlString),
|
authorization_endpoint: UrlString.optional(),
|
||||||
token_endpoint: Type.Optional(UrlString),
|
token_endpoint: UrlString.optional(),
|
||||||
userinfo_endpoint: Type.Optional(UrlString),
|
userinfo_endpoint: UrlString.optional(),
|
||||||
}),
|
}),
|
||||||
// @todo: profile mapping
|
// @todo: profile mapping
|
||||||
},
|
},
|
||||||
{ title: "Custom OAuth" },
|
{ title: "Custom OAuth" },
|
||||||
);
|
);
|
||||||
|
|
||||||
type OAuthConfigCustom = Static<typeof oauthSchemaCustom>;
|
type OAuthConfigCustom = s.Static<typeof oauthSchemaCustom>;
|
||||||
|
|
||||||
export type UserProfile = {
|
export type UserProfile = {
|
||||||
sub: string;
|
sub: string;
|
||||||
|
|||||||
@@ -1,31 +1,32 @@
|
|||||||
import type { AuthAction, Authenticator } from "auth";
|
import type { AuthAction, Authenticator } from "auth";
|
||||||
import { Exception, isDebug } from "core";
|
import { Exception, isDebug } from "core";
|
||||||
import { type Static, StringEnum, filterKeys, StrictObject } from "core/utils";
|
import { filterKeys } from "core/utils";
|
||||||
import { type Context, Hono } from "hono";
|
import { type Context, Hono } from "hono";
|
||||||
import { getSignedCookie, setSignedCookie } from "hono/cookie";
|
import { getSignedCookie, setSignedCookie } from "hono/cookie";
|
||||||
import * as oauth from "oauth4webapi";
|
import * as oauth from "oauth4webapi";
|
||||||
import * as issuers from "./issuers";
|
import * as issuers from "./issuers";
|
||||||
import * as tbbox from "@sinclair/typebox";
|
|
||||||
import { Strategy } from "auth/authenticate/strategies/Strategy";
|
import { Strategy } from "auth/authenticate/strategies/Strategy";
|
||||||
const { Type } = tbbox;
|
import { s } from "core/object/schema";
|
||||||
|
|
||||||
type ConfiguredIssuers = keyof typeof issuers;
|
type ConfiguredIssuers = keyof typeof issuers;
|
||||||
type SupportedTypes = "oauth2" | "oidc";
|
type SupportedTypes = "oauth2" | "oidc";
|
||||||
|
|
||||||
type RequireKeys<T extends object, K extends keyof T> = Required<Pick<T, K>> & Omit<T, K>;
|
type RequireKeys<T extends object, K extends keyof T> = Required<Pick<T, K>> & Omit<T, K>;
|
||||||
|
|
||||||
const schemaProvided = Type.Object(
|
const schemaProvided = s.object(
|
||||||
{
|
{
|
||||||
name: StringEnum(Object.keys(issuers) as ConfiguredIssuers[]),
|
name: s.string({ enum: Object.keys(issuers) as ConfiguredIssuers[] }),
|
||||||
type: StringEnum(["oidc", "oauth2"] as const, { default: "oauth2" }),
|
type: s.string({ enum: ["oidc", "oauth2"] as const, default: "oauth2" }),
|
||||||
client: StrictObject({
|
client: s
|
||||||
client_id: Type.String(),
|
.object({
|
||||||
client_secret: Type.String(),
|
client_id: s.string(),
|
||||||
}),
|
client_secret: s.string(),
|
||||||
|
})
|
||||||
|
.strict(),
|
||||||
},
|
},
|
||||||
{ title: "OAuth" },
|
{ title: "OAuth" },
|
||||||
);
|
);
|
||||||
type ProvidedOAuthConfig = Static<typeof schemaProvided>;
|
type ProvidedOAuthConfig = s.Static<typeof schemaProvided>;
|
||||||
|
|
||||||
export type CustomOAuthConfig = {
|
export type CustomOAuthConfig = {
|
||||||
type: SupportedTypes;
|
type: SupportedTypes;
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { $console, Exception, Permission } from "core";
|
import { Exception, Permission } from "core";
|
||||||
import { objectTransform } from "core/utils";
|
import { $console, objectTransform } from "core/utils";
|
||||||
import type { Context } from "hono";
|
import type { Context } from "hono";
|
||||||
import type { ServerEnv } from "modules/Controller";
|
import type { ServerEnv } from "modules/Controller";
|
||||||
import { Role } from "./Role";
|
import { Role } from "./Role";
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { $console, type Permission } from "core";
|
import type { Permission } from "core";
|
||||||
import { patternMatch } from "core/utils";
|
import { $console, patternMatch } from "core/utils";
|
||||||
import type { Context } from "hono";
|
import type { Context } from "hono";
|
||||||
import { createMiddleware } from "hono/factory";
|
import { createMiddleware } from "hono/factory";
|
||||||
import type { ServerEnv } from "modules/Controller";
|
import type { ServerEnv } from "modules/Controller";
|
||||||
|
|||||||
@@ -29,30 +29,8 @@ export const cloudflare = {
|
|||||||
{ dir: ctx.dir },
|
{ dir: ctx.dir },
|
||||||
);
|
);
|
||||||
|
|
||||||
const db = ctx.skip
|
|
||||||
? "d1"
|
|
||||||
: await $p.select({
|
|
||||||
message: "What database do you want to use?",
|
|
||||||
options: [
|
|
||||||
{ label: "Cloudflare D1", value: "d1" },
|
|
||||||
{ label: "LibSQL", value: "libsql" },
|
|
||||||
],
|
|
||||||
});
|
|
||||||
if ($p.isCancel(db)) {
|
|
||||||
process.exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
switch (db) {
|
await createD1(ctx);
|
||||||
case "d1":
|
|
||||||
await createD1(ctx);
|
|
||||||
break;
|
|
||||||
case "libsql":
|
|
||||||
await createLibsql(ctx);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
throw new Error("Invalid database");
|
|
||||||
}
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
const message = (e as any).message || "An error occurred";
|
const message = (e as any).message || "An error occurred";
|
||||||
$p.log.warn(
|
$p.log.warn(
|
||||||
@@ -60,7 +38,14 @@ export const cloudflare = {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
await createR2(ctx);
|
try {
|
||||||
|
await createR2(ctx);
|
||||||
|
} catch (e) {
|
||||||
|
const message = (e as any).message || "An error occurred";
|
||||||
|
$p.log.warn(
|
||||||
|
"Couldn't add R2 bucket. You can add it manually later. Error: " + c.red(message),
|
||||||
|
);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
} as const satisfies Template;
|
} as const satisfies Template;
|
||||||
|
|
||||||
@@ -89,6 +74,21 @@ async function createD1(ctx: TemplateSetupCtx) {
|
|||||||
})(),
|
})(),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
await overrideJson(
|
||||||
|
WRANGLER_FILE,
|
||||||
|
(json) => ({
|
||||||
|
...json,
|
||||||
|
d1_databases: [
|
||||||
|
{
|
||||||
|
binding: "DB",
|
||||||
|
database_name: name,
|
||||||
|
database_id: "00000000-0000-0000-0000-000000000000",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
}),
|
||||||
|
{ dir: ctx.dir },
|
||||||
|
);
|
||||||
|
|
||||||
if (!ctx.skip) {
|
if (!ctx.skip) {
|
||||||
exec(`npx wrangler d1 create ${name}`);
|
exec(`npx wrangler d1 create ${name}`);
|
||||||
|
|
||||||
@@ -98,62 +98,6 @@ async function createD1(ctx: TemplateSetupCtx) {
|
|||||||
})(),
|
})(),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
await overrideJson(
|
|
||||||
WRANGLER_FILE,
|
|
||||||
(json) => ({
|
|
||||||
...json,
|
|
||||||
d1_databases: [
|
|
||||||
{
|
|
||||||
binding: "DB",
|
|
||||||
database_name: name,
|
|
||||||
database_id: uuid(),
|
|
||||||
},
|
|
||||||
],
|
|
||||||
}),
|
|
||||||
{ dir: ctx.dir },
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
async function createLibsql(ctx: TemplateSetupCtx) {
|
|
||||||
await overrideJson(
|
|
||||||
WRANGLER_FILE,
|
|
||||||
(json) => ({
|
|
||||||
...json,
|
|
||||||
vars: {
|
|
||||||
DB_URL: "http://127.0.0.1:8080",
|
|
||||||
},
|
|
||||||
}),
|
|
||||||
{ dir: ctx.dir },
|
|
||||||
);
|
|
||||||
|
|
||||||
await overridePackageJson(
|
|
||||||
(pkg) => ({
|
|
||||||
...pkg,
|
|
||||||
scripts: {
|
|
||||||
...pkg.scripts,
|
|
||||||
db: "turso dev",
|
|
||||||
dev: "npm run db && wrangler dev",
|
|
||||||
},
|
|
||||||
}),
|
|
||||||
{ dir: ctx.dir },
|
|
||||||
);
|
|
||||||
|
|
||||||
await $p.stream.info(
|
|
||||||
(async function* () {
|
|
||||||
yield* typewriter("Database set to LibSQL");
|
|
||||||
await wait();
|
|
||||||
yield* typewriter(
|
|
||||||
`\nYou can now run ${c.cyan("npm run db")} to start the database and ${c.cyan("npm run dev")} to start the worker.`,
|
|
||||||
c.dim,
|
|
||||||
);
|
|
||||||
await wait();
|
|
||||||
yield* typewriter(
|
|
||||||
`\nAlso make sure you have Turso's CLI installed. Check their docs on how to install at ${c.cyan("https://docs.turso.tech/cli/introduction")}`,
|
|
||||||
c.dim,
|
|
||||||
);
|
|
||||||
})(),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async function createR2(ctx: TemplateSetupCtx) {
|
async function createR2(ctx: TemplateSetupCtx) {
|
||||||
@@ -197,9 +141,11 @@ async function createR2(ctx: TemplateSetupCtx) {
|
|||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!ctx.skip) {
|
await $p.stream.info(
|
||||||
exec(`npx wrangler r2 bucket create ${name}`);
|
(async function* () {
|
||||||
}
|
yield* typewriter("Now running wrangler to create a R2 bucket...");
|
||||||
|
})(),
|
||||||
|
);
|
||||||
|
|
||||||
await overrideJson(
|
await overrideJson(
|
||||||
WRANGLER_FILE,
|
WRANGLER_FILE,
|
||||||
@@ -214,4 +160,8 @@ async function createR2(ctx: TemplateSetupCtx) {
|
|||||||
}),
|
}),
|
||||||
{ dir: ctx.dir },
|
{ dir: ctx.dir },
|
||||||
);
|
);
|
||||||
|
|
||||||
|
if (!ctx.skip) {
|
||||||
|
exec(`npx wrangler r2 bucket create ${name}`);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
import path from "node:path";
|
import path from "node:path";
|
||||||
import type { Config } from "@libsql/client/node";
|
import { $console } from "core/utils";
|
||||||
import { $console, config } from "core";
|
|
||||||
import type { MiddlewareHandler } from "hono";
|
import type { MiddlewareHandler } from "hono";
|
||||||
import open from "open";
|
import open from "open";
|
||||||
import { fileExists, getRelativeDistPath } from "../../utils/sys";
|
import { fileExists, getRelativeDistPath } from "../../utils/sys";
|
||||||
@@ -27,10 +26,6 @@ export async function serveStatic(server: Platform): Promise<MiddlewareHandler>
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function attachServeStatic(app: any, platform: Platform) {
|
|
||||||
app.module.server.client.get(config.server.assets_path + "*", await serveStatic(platform));
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function startServer(
|
export async function startServer(
|
||||||
server: Platform,
|
server: Platform,
|
||||||
app: App,
|
app: App,
|
||||||
|
|||||||
@@ -1,29 +1,28 @@
|
|||||||
import type { Config } from "@libsql/client/node";
|
import type { Config } from "@libsql/client/node";
|
||||||
import { App, type CreateAppConfig } from "App";
|
import type { App, CreateAppConfig } from "App";
|
||||||
import { StorageLocalAdapter } from "adapter/node";
|
import { registerLocalMediaAdapter } from "adapter/node/storage";
|
||||||
import type { CliBkndConfig, CliCommand } from "cli/types";
|
import type { CliBkndConfig, CliCommand } from "cli/types";
|
||||||
import { Option } from "commander";
|
import { Option } from "commander";
|
||||||
import { colorizeConsole, config } from "core";
|
import { config } from "core";
|
||||||
import dotenv from "dotenv";
|
import dotenv from "dotenv";
|
||||||
import { registries } from "modules/registries";
|
|
||||||
import c from "picocolors";
|
import c from "picocolors";
|
||||||
import path from "node:path";
|
import path from "node:path";
|
||||||
import {
|
import {
|
||||||
PLATFORMS,
|
PLATFORMS,
|
||||||
type Platform,
|
type Platform,
|
||||||
attachServeStatic,
|
|
||||||
getConfigPath,
|
getConfigPath,
|
||||||
getConnectionCredentialsFromEnv,
|
getConnectionCredentialsFromEnv,
|
||||||
|
serveStatic,
|
||||||
startServer,
|
startServer,
|
||||||
} from "./platform";
|
} from "./platform";
|
||||||
import { makeConfig } from "adapter";
|
import { createRuntimeApp, makeConfig } from "adapter";
|
||||||
import { isBun as $isBun } from "cli/utils/sys";
|
import { colorizeConsole, isBun } from "core/utils";
|
||||||
|
|
||||||
const env_files = [".env", ".dev.vars"];
|
const env_files = [".env", ".dev.vars"];
|
||||||
dotenv.config({
|
dotenv.config({
|
||||||
path: env_files.map((file) => path.resolve(process.cwd(), file)),
|
path: env_files.map((file) => path.resolve(process.cwd(), file)),
|
||||||
});
|
});
|
||||||
const isBun = $isBun();
|
const is_bun = isBun();
|
||||||
|
|
||||||
export const run: CliCommand = (program) => {
|
export const run: CliCommand = (program) => {
|
||||||
program
|
program
|
||||||
@@ -44,26 +43,19 @@ export const run: CliCommand = (program) => {
|
|||||||
)
|
)
|
||||||
.addOption(new Option("-c, --config <config>", "config file"))
|
.addOption(new Option("-c, --config <config>", "config file"))
|
||||||
.addOption(
|
.addOption(
|
||||||
new Option("--db-url <db>", "database url, can be any valid libsql url").conflicts(
|
new Option("--db-url <db>", "database url, can be any valid sqlite url").conflicts(
|
||||||
"config",
|
"config",
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
.addOption(new Option("--db-token <db>", "database token").conflicts("config"))
|
|
||||||
.addOption(
|
.addOption(
|
||||||
new Option("--server <server>", "server type")
|
new Option("--server <server>", "server type")
|
||||||
.choices(PLATFORMS)
|
.choices(PLATFORMS)
|
||||||
.default(isBun ? "bun" : "node"),
|
.default(is_bun ? "bun" : "node"),
|
||||||
)
|
)
|
||||||
.addOption(new Option("--no-open", "don't open browser window on start"))
|
.addOption(new Option("--no-open", "don't open browser window on start"))
|
||||||
.action(action);
|
.action(action);
|
||||||
};
|
};
|
||||||
|
|
||||||
// automatically register local adapter
|
|
||||||
const local = StorageLocalAdapter.prototype.getName();
|
|
||||||
if (!registries.media.has(local)) {
|
|
||||||
registries.media.register(local, StorageLocalAdapter);
|
|
||||||
}
|
|
||||||
|
|
||||||
type MakeAppConfig = {
|
type MakeAppConfig = {
|
||||||
connection?: CreateAppConfig["connection"];
|
connection?: CreateAppConfig["connection"];
|
||||||
server?: { platform?: Platform };
|
server?: { platform?: Platform };
|
||||||
@@ -72,22 +64,11 @@ type MakeAppConfig = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
async function makeApp(config: MakeAppConfig) {
|
async function makeApp(config: MakeAppConfig) {
|
||||||
const app = App.create({ connection: config.connection });
|
const app = await createRuntimeApp({
|
||||||
|
serveStatic: await serveStatic(config.server?.platform ?? "node"),
|
||||||
app.emgr.onEvent(
|
...config,
|
||||||
App.Events.AppBuiltEvent,
|
});
|
||||||
async () => {
|
registerLocalMediaAdapter(app);
|
||||||
if (config.onBuilt) {
|
|
||||||
await config.onBuilt(app);
|
|
||||||
}
|
|
||||||
|
|
||||||
await attachServeStatic(app, config.server?.platform ?? "node");
|
|
||||||
app.registerAdminController();
|
|
||||||
},
|
|
||||||
"sync",
|
|
||||||
);
|
|
||||||
|
|
||||||
await app.build();
|
|
||||||
return app;
|
return app;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -104,7 +85,6 @@ type RunOptions = {
|
|||||||
memory?: boolean;
|
memory?: boolean;
|
||||||
config?: string;
|
config?: string;
|
||||||
dbUrl?: string;
|
dbUrl?: string;
|
||||||
dbToken?: string;
|
|
||||||
server: Platform;
|
server: Platform;
|
||||||
open?: boolean;
|
open?: boolean;
|
||||||
};
|
};
|
||||||
@@ -115,10 +95,8 @@ export async function makeAppFromEnv(options: Partial<RunOptions> = {}) {
|
|||||||
let app: App | undefined = undefined;
|
let app: App | undefined = undefined;
|
||||||
// first start from arguments if given
|
// first start from arguments if given
|
||||||
if (options.dbUrl) {
|
if (options.dbUrl) {
|
||||||
console.info("Using connection from", c.cyan("--db-url"));
|
console.info("Using connection from", c.cyan("--db-url"), c.cyan(options.dbUrl));
|
||||||
const connection = options.dbUrl
|
const connection = options.dbUrl ? { url: options.dbUrl } : undefined;
|
||||||
? { url: options.dbUrl, authToken: options.dbToken }
|
|
||||||
: undefined;
|
|
||||||
app = await makeApp({ connection, server: { platform: options.server } });
|
app = await makeApp({ connection, server: { platform: options.server } });
|
||||||
|
|
||||||
// check configuration file to be present
|
// check configuration file to be present
|
||||||
|
|||||||
@@ -9,9 +9,9 @@ import type { PasswordStrategy } from "auth/authenticate/strategies";
|
|||||||
import { makeAppFromEnv } from "cli/commands/run";
|
import { makeAppFromEnv } from "cli/commands/run";
|
||||||
import type { CliCommand } from "cli/types";
|
import type { CliCommand } from "cli/types";
|
||||||
import { Argument } from "commander";
|
import { Argument } from "commander";
|
||||||
import { $console } from "core";
|
import { $console } from "core/utils";
|
||||||
import c from "picocolors";
|
import c from "picocolors";
|
||||||
import { isBun } from "cli/utils/sys";
|
import { isBun } from "core/utils";
|
||||||
|
|
||||||
export const user: CliCommand = (program) => {
|
export const user: CliCommand = (program) => {
|
||||||
program
|
program
|
||||||
|
|||||||
@@ -1,17 +1,9 @@
|
|||||||
import { $console } from "core";
|
import { $console } from "core/utils";
|
||||||
import { execSync, exec as nodeExec } from "node:child_process";
|
import { execSync, exec as nodeExec } from "node:child_process";
|
||||||
import { readFile, writeFile as nodeWriteFile } from "node:fs/promises";
|
import { readFile, writeFile as nodeWriteFile } from "node:fs/promises";
|
||||||
import path from "node:path";
|
import path from "node:path";
|
||||||
import url from "node:url";
|
import url from "node:url";
|
||||||
|
|
||||||
export function isBun(): boolean {
|
|
||||||
try {
|
|
||||||
return typeof Bun !== "undefined";
|
|
||||||
} catch (e) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export function getRootPath() {
|
export function getRootPath() {
|
||||||
const _path = path.dirname(url.fileURLToPath(import.meta.url));
|
const _path = path.dirname(url.fileURLToPath(import.meta.url));
|
||||||
// because of "src", local needs one more level up
|
// because of "src", local needs one more level up
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
import { PostHog } from "posthog-js-lite";
|
import { PostHog } from "posthog-js-lite";
|
||||||
import { getVersion } from "cli/utils/sys";
|
import { getVersion } from "cli/utils/sys";
|
||||||
import { $console, env, isDebug } from "core";
|
import { env, isDebug } from "core";
|
||||||
|
import { $console } from "core/utils";
|
||||||
|
|
||||||
type Properties = { [p: string]: any };
|
type Properties = { [p: string]: any };
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,72 @@
|
|||||||
|
import type { TestRunner } from "core/test";
|
||||||
|
import type { ICacheDriver } from "./index";
|
||||||
|
|
||||||
|
export function cacheDriverTestSuite(
|
||||||
|
testRunner: TestRunner,
|
||||||
|
{
|
||||||
|
makeCache,
|
||||||
|
setTime,
|
||||||
|
options,
|
||||||
|
}: {
|
||||||
|
makeCache: () => ICacheDriver;
|
||||||
|
setTime: (ms: number) => void;
|
||||||
|
options?: {
|
||||||
|
minTTL?: number;
|
||||||
|
skipTTL?: boolean;
|
||||||
|
};
|
||||||
|
},
|
||||||
|
) {
|
||||||
|
const { test, expect } = testRunner;
|
||||||
|
const minTTL = options?.minTTL ?? 1;
|
||||||
|
|
||||||
|
test("get within ttl", async () => {
|
||||||
|
const cache = makeCache();
|
||||||
|
await cache.set("ttl", "bar", minTTL + 2); // 2 second TTL
|
||||||
|
setTime(minTTL * 1000 + 1000); // advance by 1 second
|
||||||
|
expect(await cache.get("ttl")).toBe("bar");
|
||||||
|
});
|
||||||
|
|
||||||
|
test("set and get returns value", async () => {
|
||||||
|
const cache = makeCache();
|
||||||
|
await cache.set("value", "bar");
|
||||||
|
expect(await cache.get("value")).toBe("bar");
|
||||||
|
});
|
||||||
|
|
||||||
|
test("get returns undefined for missing key", async () => {
|
||||||
|
const cache = makeCache();
|
||||||
|
expect(await cache.get("missing" + Math.random())).toBeUndefined();
|
||||||
|
});
|
||||||
|
|
||||||
|
test("delete removes value", async () => {
|
||||||
|
const cache = makeCache();
|
||||||
|
await cache.set("delete", "bar");
|
||||||
|
await cache.del("delete");
|
||||||
|
expect(await cache.get("delete")).toBeUndefined();
|
||||||
|
});
|
||||||
|
|
||||||
|
test("set overwrites value", async () => {
|
||||||
|
const cache = makeCache();
|
||||||
|
await cache.set("overwrite", "bar");
|
||||||
|
await cache.set("overwrite", "baz");
|
||||||
|
expect(await cache.get("overwrite")).toBe("baz");
|
||||||
|
});
|
||||||
|
|
||||||
|
test("set with ttl expires", async () => {
|
||||||
|
const cache = makeCache();
|
||||||
|
await cache.set("expire", "bar", minTTL + 1); // 1 second TTL
|
||||||
|
expect(await cache.get("expire")).toBe("bar");
|
||||||
|
// advance time
|
||||||
|
setTime(minTTL * 1000 * 2000);
|
||||||
|
if (options?.skipTTL) {
|
||||||
|
await cache.del("expire");
|
||||||
|
}
|
||||||
|
expect(await cache.get("expire")).toBeUndefined();
|
||||||
|
});
|
||||||
|
test("set without ttl does not expire", async () => {
|
||||||
|
const cache = makeCache();
|
||||||
|
await cache.set("ttl0", "bar");
|
||||||
|
expect(await cache.get("ttl0")).toBe("bar");
|
||||||
|
setTime(1000);
|
||||||
|
expect(await cache.get("ttl0")).toBe("bar");
|
||||||
|
});
|
||||||
|
}
|
||||||
+52
@@ -0,0 +1,52 @@
|
|||||||
|
import { cacheDriverTestSuite } from "./cache-driver-test-suite";
|
||||||
|
import { memoryCache } from "./in-memory";
|
||||||
|
import { bunTestRunner } from "adapter/bun/test";
|
||||||
|
import { setSystemTime, afterAll, beforeAll, test, expect, describe } from "bun:test";
|
||||||
|
|
||||||
|
let baseTime = Date.now();
|
||||||
|
|
||||||
|
beforeAll(() => {
|
||||||
|
baseTime = Date.now();
|
||||||
|
setSystemTime(new Date(baseTime));
|
||||||
|
});
|
||||||
|
|
||||||
|
afterAll(() => {
|
||||||
|
setSystemTime(); // Reset to real time
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("InMemoryCacheDriver", () => {
|
||||||
|
cacheDriverTestSuite(bunTestRunner, {
|
||||||
|
makeCache: () => memoryCache(),
|
||||||
|
setTime: (ms: number) => {
|
||||||
|
setSystemTime(new Date(baseTime + ms));
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
test("evicts least recently used entries by byte size", async () => {
|
||||||
|
// maxSize = 20 bytes for this test
|
||||||
|
const cache = memoryCache({ maxSize: 20 });
|
||||||
|
// each key and value is 1 char = 1 byte (ASCII)
|
||||||
|
// totals to 2 bytes each
|
||||||
|
await cache.set("a", "1");
|
||||||
|
await cache.set("b", "2");
|
||||||
|
await cache.set("c", "3");
|
||||||
|
await cache.set("d", "4");
|
||||||
|
await cache.set("e", "5");
|
||||||
|
// total: 10 bytes
|
||||||
|
// now add a large value to force eviction
|
||||||
|
await cache.set("big", "1234567890");
|
||||||
|
// should evict least recently used entries until it fits
|
||||||
|
// only "big" and possibly one other small entry should remain
|
||||||
|
expect(await cache.get("big")).toBe("1234567890");
|
||||||
|
// the oldest keys should be evicted
|
||||||
|
expect(await cache.get("a")).toBeUndefined();
|
||||||
|
expect(await cache.get("b")).toBeUndefined();
|
||||||
|
// the most recent small keys may or may not remain depending on eviction order
|
||||||
|
});
|
||||||
|
|
||||||
|
test("throws if entry is too large to ever fit", async () => {
|
||||||
|
const cache = memoryCache({ maxSize: 5 });
|
||||||
|
// key: 3, value: 10 = 13 bytes
|
||||||
|
expect(cache.set("big", "1234567890")).rejects.toThrow();
|
||||||
|
});
|
||||||
|
});
|
||||||
+123
@@ -0,0 +1,123 @@
|
|||||||
|
import type { ICacheDriver } from "./index";
|
||||||
|
|
||||||
|
interface InMemoryCacheOptions {
|
||||||
|
// maximum total size in bytes for all keys and values
|
||||||
|
maxSize?: number;
|
||||||
|
// default time-to-live in seconds
|
||||||
|
defaultTTL?: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface CacheEntry {
|
||||||
|
value: string;
|
||||||
|
// timestamp in ms, or null for no expiry
|
||||||
|
expiresAt: number | null;
|
||||||
|
// size in bytes of this entry (key + value)
|
||||||
|
size: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
function byteLength(str: string): number {
|
||||||
|
return new TextEncoder().encode(str).length;
|
||||||
|
}
|
||||||
|
|
||||||
|
export class InMemoryCacheDriver implements ICacheDriver {
|
||||||
|
protected cache: Map<string, CacheEntry>;
|
||||||
|
protected maxSize: number;
|
||||||
|
protected defaultTTL: number;
|
||||||
|
protected currentSize: number;
|
||||||
|
|
||||||
|
constructor(options: InMemoryCacheOptions = {}) {
|
||||||
|
this.maxSize = options.maxSize ?? 1024 * 1024 * 10; // 10MB default
|
||||||
|
this.defaultTTL = options.defaultTTL ?? 60 * 60; // 1 hour default
|
||||||
|
this.cache = new Map();
|
||||||
|
this.currentSize = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected now(): number {
|
||||||
|
return Date.now();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected isExpired(entry: CacheEntry): boolean {
|
||||||
|
return entry.expiresAt !== null && entry.expiresAt <= this.now();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected setEntry(key: string, entry: CacheEntry) {
|
||||||
|
const oldEntry = this.cache.get(key);
|
||||||
|
const oldSize = oldEntry ? oldEntry.size : 0;
|
||||||
|
let projectedSize = this.currentSize - oldSize + entry.size;
|
||||||
|
|
||||||
|
// if the entry itself is too large, throw
|
||||||
|
if (entry.size > this.maxSize) {
|
||||||
|
throw new Error(
|
||||||
|
`InMemoryCacheDriver: entry too large (entry: ${entry.size}, max: ${this.maxSize})`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// evict LRU until it fits
|
||||||
|
while (projectedSize > this.maxSize && this.cache.size > 0) {
|
||||||
|
// remove least recently used (first inserted)
|
||||||
|
const lruKey = this.cache.keys().next().value;
|
||||||
|
if (typeof lruKey === "string") {
|
||||||
|
const lruEntry = this.cache.get(lruKey);
|
||||||
|
if (lruEntry) {
|
||||||
|
this.currentSize -= lruEntry.size;
|
||||||
|
}
|
||||||
|
this.cache.delete(lruKey);
|
||||||
|
projectedSize = this.currentSize - oldSize + entry.size;
|
||||||
|
} else {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (projectedSize > this.maxSize) {
|
||||||
|
throw new Error(
|
||||||
|
`InMemoryCacheDriver: maxSize exceeded after eviction (attempted: ${projectedSize}, max: ${this.maxSize})`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (oldEntry) {
|
||||||
|
this.currentSize -= oldSize;
|
||||||
|
}
|
||||||
|
this.cache.delete(key); // Remove to update order (for LRU)
|
||||||
|
this.cache.set(key, entry);
|
||||||
|
this.currentSize += entry.size;
|
||||||
|
}
|
||||||
|
|
||||||
|
async get(key: string): Promise<string | undefined> {
|
||||||
|
const entry = this.cache.get(key);
|
||||||
|
if (!entry) return;
|
||||||
|
if (this.isExpired(entry)) {
|
||||||
|
this.cache.delete(key);
|
||||||
|
this.currentSize -= entry.size;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// mark as recently used
|
||||||
|
this.cache.delete(key);
|
||||||
|
this.cache.set(key, entry);
|
||||||
|
return entry.value;
|
||||||
|
}
|
||||||
|
|
||||||
|
async set(key: string, value: string, ttl?: number): Promise<void> {
|
||||||
|
const expiresAt =
|
||||||
|
ttl === undefined
|
||||||
|
? this.defaultTTL > 0
|
||||||
|
? this.now() + this.defaultTTL * 1000
|
||||||
|
: null
|
||||||
|
: ttl > 0
|
||||||
|
? this.now() + ttl * 1000
|
||||||
|
: null;
|
||||||
|
const size = byteLength(key) + byteLength(value);
|
||||||
|
this.setEntry(key, { value, expiresAt, size });
|
||||||
|
}
|
||||||
|
|
||||||
|
async del(key: string): Promise<void> {
|
||||||
|
const entry = this.cache.get(key);
|
||||||
|
if (entry) {
|
||||||
|
this.currentSize -= entry.size;
|
||||||
|
this.cache.delete(key);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export const memoryCache = (options?: InMemoryCacheOptions) => {
|
||||||
|
return new InMemoryCacheDriver(options);
|
||||||
|
};
|
||||||
Vendored
+32
@@ -0,0 +1,32 @@
|
|||||||
|
/**
|
||||||
|
* Interface for cache driver implementations
|
||||||
|
* Defines standard methods for interacting with a cache storage system
|
||||||
|
*/
|
||||||
|
export interface ICacheDriver {
|
||||||
|
/**
|
||||||
|
* Retrieves a value from the cache by its key
|
||||||
|
*
|
||||||
|
* @param key unique identifier for the cached value
|
||||||
|
* @returns resolves to the cached string value or undefined if not found
|
||||||
|
*/
|
||||||
|
get(key: string): Promise<string | undefined>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Stores a value in the cache with an optional time-to-live
|
||||||
|
*
|
||||||
|
* @param key unique identifier for storing the value
|
||||||
|
* @param value string value to cache
|
||||||
|
* @param ttl optional time-to-live in seconds before the value expires
|
||||||
|
* @throws if the value cannot be stored
|
||||||
|
*/
|
||||||
|
set(key: string, value: string, ttl?: number): Promise<void>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Removes a value from the cache
|
||||||
|
*
|
||||||
|
* @param key unique identifier of the value to delete
|
||||||
|
*/
|
||||||
|
del(key: string): Promise<void>;
|
||||||
|
}
|
||||||
|
|
||||||
|
export { cacheDriverTestSuite } from "./cache-driver-test-suite";
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
export interface IEmailDriver<Data = unknown, Options = object> {
|
||||||
|
send(
|
||||||
|
to: string,
|
||||||
|
subject: string,
|
||||||
|
body: string | { text: string; html: string },
|
||||||
|
options?: Options,
|
||||||
|
): Promise<Data>;
|
||||||
|
}
|
||||||
|
|
||||||
|
import type { BkndConfig } from "bknd";
|
||||||
|
import { resendEmail, memoryCache } from "bknd/core";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
onBuilt: async (app) => {
|
||||||
|
app.server.get("/send-email", async (c) => {
|
||||||
|
if (await app.drivers?.email?.send("test@test.com", "Test", "Test")) {
|
||||||
|
return c.text("success");
|
||||||
|
}
|
||||||
|
return c.text("failed");
|
||||||
|
});
|
||||||
|
},
|
||||||
|
options: {
|
||||||
|
drivers: {
|
||||||
|
email: resendEmail({ apiKey: "..." }),
|
||||||
|
cache: memoryCache(),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
} as const satisfies BkndConfig;
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user