mirror of
https://github.com/bknd-io/bknd/
synced 2026-08-02 16:16:02 +00:00
Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7a046fa18e | |||
| 786d1d1bd4 | |||
| c384bf4dd4 | |||
| db2a994a01 | |||
| 166ea4a71b | |||
| 0d3bb3b7d6 | |||
| cfbec5b6ea | |||
| 5143ee5726 | |||
| fe1716ed01 | |||
| 0c31dcdb95 | |||
| 4cc0f8e172 | |||
| c161a26ec0 | |||
| 6e78a4c238 | |||
| 42edce904f |
@@ -20,7 +20,7 @@ jobs:
|
|||||||
- name: Setup Bun
|
- name: Setup Bun
|
||||||
uses: oven-sh/setup-bun@v1
|
uses: oven-sh/setup-bun@v1
|
||||||
with:
|
with:
|
||||||
bun-version: "1.2.19"
|
bun-version: "1.2.14"
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
working-directory: ./app
|
working-directory: ./app
|
||||||
|
|||||||
@@ -32,5 +32,3 @@ packages/media/.env
|
|||||||
docker/tmp
|
docker/tmp
|
||||||
.debug
|
.debug
|
||||||
.history
|
.history
|
||||||
.aider*
|
|
||||||
.vercel
|
|
||||||
|
|||||||
@@ -1,2 +1 @@
|
|||||||
tmp/*
|
tmp/*
|
||||||
!tmp/.gitkeep
|
|
||||||
@@ -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/authorize/Guard";
|
import { Guard } from "../../src/auth";
|
||||||
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/utils/schema";
|
import { parse } from "core/object/schema";
|
||||||
|
|
||||||
beforeAll(disableConsoleLog);
|
beforeAll(disableConsoleLog);
|
||||||
afterAll(enableConsoleLog);
|
afterAll(enableConsoleLog);
|
||||||
@@ -202,7 +202,7 @@ describe("DataApi", () => {
|
|||||||
{
|
{
|
||||||
// create many
|
// create many
|
||||||
const res = await api.createMany("posts", payload);
|
const res = await api.createMany("posts", payload);
|
||||||
expect(res.data?.length).toEqual(4);
|
expect(res.data.length).toEqual(4);
|
||||||
expect(res.ok).toBeTrue();
|
expect(res.ok).toBeTrue();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,6 @@ describe("AppServer", () => {
|
|||||||
expect(server).toBeDefined();
|
expect(server).toBeDefined();
|
||||||
expect(server.config).toEqual({
|
expect(server.config).toEqual({
|
||||||
cors: {
|
cors: {
|
||||||
allow_credentials: true,
|
|
||||||
origin: "*",
|
origin: "*",
|
||||||
allow_methods: ["GET", "POST", "PATCH", "PUT", "DELETE"],
|
allow_methods: ["GET", "POST", "PATCH", "PUT", "DELETE"],
|
||||||
allow_headers: ["Content-Type", "Content-Length", "Authorization", "Accept"],
|
allow_headers: ["Content-Type", "Content-Length", "Authorization", "Accept"],
|
||||||
@@ -26,7 +25,6 @@ describe("AppServer", () => {
|
|||||||
expect(server).toBeDefined();
|
expect(server).toBeDefined();
|
||||||
expect(server.config).toEqual({
|
expect(server.config).toEqual({
|
||||||
cors: {
|
cors: {
|
||||||
allow_credentials: true,
|
|
||||||
origin: "https",
|
origin: "https",
|
||||||
allow_methods: ["GET", "POST"],
|
allow_methods: ["GET", "POST"],
|
||||||
allow_headers: ["Content-Type", "Content-Length", "Authorization", "Accept"],
|
allow_headers: ["Content-Type", "Content-Length", "Authorization", "Accept"],
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
import { registries } from "../../src";
|
|
||||||
import { createApp } from "core/test/utils";
|
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";
|
||||||
@@ -14,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();
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,3 +1,45 @@
|
|||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
|
import { Authenticator, type User, type UserPool } from "../../src/auth";
|
||||||
|
import { cookieConfig } from "../../src/auth/authenticate/Authenticator";
|
||||||
|
import { PasswordStrategy } from "../../src/auth/authenticate/strategies/PasswordStrategy";
|
||||||
|
import { parse } from "core/object/schema";
|
||||||
|
|
||||||
describe("Authenticator", async () => {});
|
/*class MemoryUserPool implements UserPool {
|
||||||
|
constructor(private users: User[] = []) {}
|
||||||
|
|
||||||
|
async findBy(prop: "id" | "email" | "username", value: string | number) {
|
||||||
|
return this.users.find((user) => user[prop] === value);
|
||||||
|
}
|
||||||
|
|
||||||
|
async create(user: Pick<User, "email" | "password">) {
|
||||||
|
const id = this.users.length + 1;
|
||||||
|
const newUser = { ...user, id, username: user.email };
|
||||||
|
this.users.push(newUser);
|
||||||
|
return newUser;
|
||||||
|
}
|
||||||
|
}*/
|
||||||
|
|
||||||
|
describe("Authenticator", async () => {
|
||||||
|
test("cookie options", async () => {
|
||||||
|
console.log("parsed", parse(cookieConfig, undefined));
|
||||||
|
console.log(cookieConfig.template({}));
|
||||||
|
});
|
||||||
|
/*const userpool = new MemoryUserPool([
|
||||||
|
{ id: 1, email: "d", username: "test", password: await hash.sha256("test") },
|
||||||
|
]);
|
||||||
|
|
||||||
|
test("sha256 login", async () => {
|
||||||
|
const auth = new Authenticator(userpool, {
|
||||||
|
password: new PasswordStrategy({
|
||||||
|
hashing: "sha256",
|
||||||
|
}),
|
||||||
|
});
|
||||||
|
|
||||||
|
const { token } = await auth.login("password", { email: "d", password: "test" });
|
||||||
|
expect(token).toBeDefined();
|
||||||
|
|
||||||
|
const { iat, ...decoded } = decodeJwt<any>(token);
|
||||||
|
expect(decoded).toEqual({ id: 1, email: "d", username: "test" });
|
||||||
|
expect(await auth.verify(token)).toBe(true);
|
||||||
|
});*/
|
||||||
|
});
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
import { Guard } from "../../../src/auth/authorize/Guard";
|
import { Guard } from "../../../src/auth";
|
||||||
|
|
||||||
describe("authorize", () => {
|
describe("authorize", () => {
|
||||||
test("basic", async () => {
|
test("basic", async () => {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
import { Registry } from "core/registry/Registry";
|
import { Registry } from "core";
|
||||||
import { s } from "core/utils/schema";
|
import { s } from "core/object/schema";
|
||||||
|
|
||||||
type Constructor<T> = new (...args: any[]) => T;
|
type Constructor<T> = new (...args: any[]) => T;
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
import { s } from "core/utils/schema";
|
import { SchemaObject } from "../../../src/core";
|
||||||
import { SchemaObject } from "core/object/SchemaObject";
|
import { s } from "core/object/schema";
|
||||||
|
|
||||||
describe("SchemaObject", async () => {
|
describe("SchemaObject", async () => {
|
||||||
test("basic", async () => {
|
test("basic", async () => {
|
||||||
|
|||||||
@@ -1,16 +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/authorize/Guard";
|
import { Guard } from "../../src/auth";
|
||||||
import { parse } from "core/utils/schema";
|
import { parse } from "core/object/schema";
|
||||||
|
import {
|
||||||
|
Entity,
|
||||||
|
type EntityData,
|
||||||
|
EntityManager,
|
||||||
|
ManyToOneRelation,
|
||||||
|
TextField,
|
||||||
|
} 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 { RepositoryResultJSON } from "data/entities/query/RepositoryResult";
|
||||||
import type { MutatorResultJSON } from "data/entities/mutation/MutatorResult";
|
import type { MutatorResultJSON } from "data/entities/mutation/MutatorResult";
|
||||||
import { Entity, EntityManager, type EntityData } from "data/entities";
|
|
||||||
import { TextField } from "data/fields";
|
|
||||||
import { ManyToOneRelation } from "data/relations";
|
|
||||||
|
|
||||||
const { dummyConnection, afterAllCleanup } = getDummyConnection();
|
const { dummyConnection, afterAllCleanup } = getDummyConnection();
|
||||||
beforeAll(() => disableConsoleLog(["log", "warn"]));
|
beforeAll(() => disableConsoleLog(["log", "warn"]));
|
||||||
|
|||||||
@@ -1,6 +1,12 @@
|
|||||||
import { afterAll, describe, expect, test } from "bun:test";
|
import { afterAll, describe, expect, test } from "bun:test";
|
||||||
import { Entity, EntityManager } from "data/entities";
|
import {
|
||||||
import { TextField, PrimaryField, NumberField } from "data/fields";
|
Entity,
|
||||||
|
EntityManager,
|
||||||
|
NumberField,
|
||||||
|
PrimaryField,
|
||||||
|
Repository,
|
||||||
|
TextField,
|
||||||
|
} from "../../src/data";
|
||||||
import { getDummyConnection } from "./helper";
|
import { getDummyConnection } from "./helper";
|
||||||
|
|
||||||
const { dummyConnection, afterAllCleanup } = getDummyConnection();
|
const { dummyConnection, afterAllCleanup } = getDummyConnection();
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ import { unlink } from "node:fs/promises";
|
|||||||
import type { SqliteDatabase } from "kysely";
|
import type { SqliteDatabase } from "kysely";
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
import Database from "libsql";
|
import Database from "libsql";
|
||||||
import { SqliteLocalConnection } from "data/connection/sqlite/SqliteLocalConnection";
|
import { SqliteLocalConnection } from "../../src/data";
|
||||||
|
|
||||||
export function getDummyDatabase(memory: boolean = true): {
|
export function getDummyDatabase(memory: boolean = true): {
|
||||||
dummyDb: SqliteDatabase;
|
dummyDb: SqliteDatabase;
|
||||||
|
|||||||
@@ -1,10 +1,13 @@
|
|||||||
// eslint-disable-next-line import/no-unresolved
|
// eslint-disable-next-line import/no-unresolved
|
||||||
import { afterAll, describe, expect, test } from "bun:test";
|
import { afterAll, describe, expect, test } from "bun:test";
|
||||||
import { Entity } from "data/entities";
|
import {
|
||||||
import { EntityManager } from "data/entities/EntityManager";
|
Entity,
|
||||||
import { ManyToOneRelation } from "data/relations";
|
EntityManager,
|
||||||
import { NumberField, TextField } from "data/fields";
|
ManyToOneRelation,
|
||||||
import { SchemaManager } from "data/schema/SchemaManager";
|
NumberField,
|
||||||
|
SchemaManager,
|
||||||
|
TextField,
|
||||||
|
} from "../../src/data";
|
||||||
import { getDummyConnection } from "./helper";
|
import { getDummyConnection } from "./helper";
|
||||||
|
|
||||||
const { dummyConnection, afterAllCleanup } = getDummyConnection();
|
const { dummyConnection, afterAllCleanup } = getDummyConnection();
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
// eslint-disable-next-line import/no-unresolved
|
// eslint-disable-next-line import/no-unresolved
|
||||||
import { afterAll, describe, expect, test } from "bun:test";
|
import { afterAll, describe, expect, test } from "bun:test";
|
||||||
import { Entity, EntityManager } from "data/entities";
|
import { Entity, EntityManager, Mutator, NumberField, TextField } from "../../src/data";
|
||||||
import { NumberField, TextField } from "data/fields";
|
import { TransformPersistFailedException } from "../../src/data/errors";
|
||||||
import { TransformPersistFailedException } from "data/errors";
|
|
||||||
import { getDummyConnection } from "./helper";
|
import { getDummyConnection } from "./helper";
|
||||||
|
|
||||||
const { dummyConnection, afterAllCleanup } = getDummyConnection();
|
const { dummyConnection, afterAllCleanup } = getDummyConnection();
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
import { afterAll, expect as bunExpect, describe, test } from "bun:test";
|
import { afterAll, expect as bunExpect, describe, test } from "bun:test";
|
||||||
import { stripMark } from "core/utils/schema";
|
import { stripMark } from "core/object/schema";
|
||||||
import { Entity, EntityManager } from "data/entities";
|
import { Entity, EntityManager, PolymorphicRelation, TextField } from "../../src/data";
|
||||||
import { TextField } from "data/fields";
|
|
||||||
import { PolymorphicRelation } from "data/relations";
|
|
||||||
import { getDummyConnection } from "./helper";
|
import { getDummyConnection } from "./helper";
|
||||||
|
|
||||||
const { dummyConnection, afterAllCleanup } = getDummyConnection();
|
const { dummyConnection, afterAllCleanup } = getDummyConnection();
|
||||||
|
|||||||
@@ -2,20 +2,19 @@ import { describe, expect, test } from "bun:test";
|
|||||||
import {
|
import {
|
||||||
BooleanField,
|
BooleanField,
|
||||||
DateField,
|
DateField,
|
||||||
|
Entity,
|
||||||
|
EntityIndex,
|
||||||
|
EntityManager,
|
||||||
EnumField,
|
EnumField,
|
||||||
JsonField,
|
JsonField,
|
||||||
NumberField,
|
|
||||||
TextField,
|
|
||||||
EntityIndex,
|
|
||||||
} from "data/fields";
|
|
||||||
import { Entity, EntityManager } from "data/entities";
|
|
||||||
import {
|
|
||||||
ManyToManyRelation,
|
ManyToManyRelation,
|
||||||
ManyToOneRelation,
|
ManyToOneRelation,
|
||||||
|
NumberField,
|
||||||
OneToOneRelation,
|
OneToOneRelation,
|
||||||
PolymorphicRelation,
|
PolymorphicRelation,
|
||||||
} from "data/relations";
|
TextField,
|
||||||
import { DummyConnection } from "data/connection/DummyConnection";
|
} from "../../src/data";
|
||||||
|
import { DummyConnection } from "../../src/data/connection/DummyConnection";
|
||||||
import {
|
import {
|
||||||
FieldPrototype,
|
FieldPrototype,
|
||||||
type FieldSchema,
|
type FieldSchema,
|
||||||
@@ -33,8 +32,8 @@ import {
|
|||||||
number,
|
number,
|
||||||
relation,
|
relation,
|
||||||
text,
|
text,
|
||||||
} from "data/prototype";
|
} from "../../src/data/prototype";
|
||||||
import { MediaField } from "media/MediaField";
|
import { MediaField } from "../../src/media/MediaField";
|
||||||
|
|
||||||
describe("prototype", () => {
|
describe("prototype", () => {
|
||||||
test("...", () => {
|
test("...", () => {
|
||||||
@@ -297,9 +296,9 @@ describe("prototype", () => {
|
|||||||
new Entity("posts", [new TextField("name"), new TextField("slug", { required: true })]),
|
new Entity("posts", [new TextField("name"), new TextField("slug", { required: true })]),
|
||||||
new Entity("comments", [new TextField("some")]),
|
new Entity("comments", [new TextField("some")]),
|
||||||
new Entity("users", [new TextField("email")]),
|
new Entity("users", [new TextField("email")]),
|
||||||
] as const;
|
];
|
||||||
const _em2 = new EntityManager(
|
const _em2 = new EntityManager(
|
||||||
[...es],
|
es,
|
||||||
new DummyConnection(),
|
new DummyConnection(),
|
||||||
[new ManyToOneRelation(es[0], es[1]), new ManyToOneRelation(es[0], es[2])],
|
[new ManyToOneRelation(es[0], es[1]), new ManyToOneRelation(es[0], es[2])],
|
||||||
[
|
[
|
||||||
|
|||||||
@@ -1,14 +1,13 @@
|
|||||||
// eslint-disable-next-line import/no-unresolved
|
// eslint-disable-next-line import/no-unresolved
|
||||||
import { afterAll, describe, expect, test } from "bun:test";
|
import { afterAll, describe, expect, test } from "bun:test";
|
||||||
import { Entity, EntityManager } from "data/entities";
|
import { Entity, EntityManager, TextField } from "../../src/data";
|
||||||
import { TextField } from "data/fields";
|
|
||||||
import {
|
import {
|
||||||
ManyToManyRelation,
|
ManyToManyRelation,
|
||||||
ManyToOneRelation,
|
ManyToOneRelation,
|
||||||
OneToOneRelation,
|
OneToOneRelation,
|
||||||
PolymorphicRelation,
|
PolymorphicRelation,
|
||||||
RelationField,
|
RelationField,
|
||||||
} from "data/relations";
|
} from "../../src/data/relations";
|
||||||
import { getDummyConnection } from "./helper";
|
import { getDummyConnection } from "./helper";
|
||||||
|
|
||||||
const { dummyConnection, afterAllCleanup } = getDummyConnection();
|
const { dummyConnection, afterAllCleanup } = getDummyConnection();
|
||||||
@@ -78,7 +77,7 @@ describe("Relations", async () => {
|
|||||||
const em = new EntityManager(entities, dummyConnection, relations);
|
const em = new EntityManager(entities, dummyConnection, relations);
|
||||||
|
|
||||||
// verify naming
|
// verify naming
|
||||||
const rel = em.relations.all[0]!;
|
const rel = em.relations.all[0];
|
||||||
expect(rel.source.entity.name).toBe(posts.name);
|
expect(rel.source.entity.name).toBe(posts.name);
|
||||||
expect(rel.source.reference).toBe(posts.name);
|
expect(rel.source.reference).toBe(posts.name);
|
||||||
expect(rel.target.entity.name).toBe(users.name);
|
expect(rel.target.entity.name).toBe(users.name);
|
||||||
@@ -90,11 +89,11 @@ describe("Relations", async () => {
|
|||||||
// verify low level relation
|
// verify low level relation
|
||||||
expect(em.relationsOf(users.name).length).toBe(1);
|
expect(em.relationsOf(users.name).length).toBe(1);
|
||||||
expect(em.relationsOf(users.name).length).toBe(1);
|
expect(em.relationsOf(users.name).length).toBe(1);
|
||||||
expect(em.relationsOf(users.name)[0]!.source.entity).toBe(posts);
|
expect(em.relationsOf(users.name)[0].source.entity).toBe(posts);
|
||||||
expect(posts.field("author_id")).toBeInstanceOf(RelationField);
|
expect(posts.field("author_id")).toBeInstanceOf(RelationField);
|
||||||
expect(em.relationsOf(users.name).length).toBe(1);
|
expect(em.relationsOf(users.name).length).toBe(1);
|
||||||
expect(em.relationsOf(users.name).length).toBe(1);
|
expect(em.relationsOf(users.name).length).toBe(1);
|
||||||
expect(em.relationsOf(users.name)[0]!.source.entity).toBe(posts);
|
expect(em.relationsOf(users.name)[0].source.entity).toBe(posts);
|
||||||
|
|
||||||
// verify high level relation (from users)
|
// verify high level relation (from users)
|
||||||
const userPostsRel = em.relationOf(users.name, "posts");
|
const userPostsRel = em.relationOf(users.name, "posts");
|
||||||
@@ -192,7 +191,7 @@ describe("Relations", async () => {
|
|||||||
const em = new EntityManager(entities, dummyConnection, relations);
|
const em = new EntityManager(entities, dummyConnection, relations);
|
||||||
|
|
||||||
// verify naming
|
// verify naming
|
||||||
const rel = em.relations.all[0]!;
|
const rel = em.relations.all[0];
|
||||||
expect(rel.source.entity.name).toBe(users.name);
|
expect(rel.source.entity.name).toBe(users.name);
|
||||||
expect(rel.source.reference).toBe(users.name);
|
expect(rel.source.reference).toBe(users.name);
|
||||||
expect(rel.target.entity.name).toBe(settings.name);
|
expect(rel.target.entity.name).toBe(settings.name);
|
||||||
@@ -203,8 +202,8 @@ describe("Relations", async () => {
|
|||||||
|
|
||||||
expect(em.relationsOf(users.name).length).toBe(1);
|
expect(em.relationsOf(users.name).length).toBe(1);
|
||||||
expect(em.relationsOf(users.name).length).toBe(1);
|
expect(em.relationsOf(users.name).length).toBe(1);
|
||||||
expect(em.relationsOf(users.name)[0]!.source.entity).toBe(users);
|
expect(em.relationsOf(users.name)[0].source.entity).toBe(users);
|
||||||
expect(em.relationsOf(users.name)[0]!.target.entity).toBe(settings);
|
expect(em.relationsOf(users.name)[0].target.entity).toBe(settings);
|
||||||
|
|
||||||
// verify high level relation (from users)
|
// verify high level relation (from users)
|
||||||
const userSettingRel = em.relationOf(users.name, settings.name);
|
const userSettingRel = em.relationOf(users.name, settings.name);
|
||||||
@@ -324,7 +323,7 @@ describe("Relations", async () => {
|
|||||||
);
|
);
|
||||||
|
|
||||||
// mutation info
|
// mutation info
|
||||||
expect(relations[0]!.helper(posts.name)!.getMutationInfo()).toEqual({
|
expect(relations[0].helper(posts.name)!.getMutationInfo()).toEqual({
|
||||||
reference: "categories",
|
reference: "categories",
|
||||||
local_field: undefined,
|
local_field: undefined,
|
||||||
$set: false,
|
$set: false,
|
||||||
@@ -335,7 +334,7 @@ describe("Relations", async () => {
|
|||||||
cardinality: undefined,
|
cardinality: undefined,
|
||||||
relation_type: "m:n",
|
relation_type: "m:n",
|
||||||
});
|
});
|
||||||
expect(relations[0]!.helper(categories.name)!.getMutationInfo()).toEqual({
|
expect(relations[0].helper(categories.name)!.getMutationInfo()).toEqual({
|
||||||
reference: "posts",
|
reference: "posts",
|
||||||
local_field: undefined,
|
local_field: undefined,
|
||||||
$set: false,
|
$set: false,
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
import { Entity } from "data/entities";
|
import { Entity, NumberField, TextField } from "data";
|
||||||
import { NumberField, TextField } from "data/fields";
|
import * as p from "data/prototype";
|
||||||
|
|
||||||
describe("[data] Entity", async () => {
|
describe("[data] Entity", async () => {
|
||||||
const entity = new Entity("test", [
|
const entity = new Entity("test", [
|
||||||
|
|||||||
@@ -1,8 +1,12 @@
|
|||||||
import { afterAll, describe, expect, test } from "bun:test";
|
import { afterAll, describe, expect, test } from "bun:test";
|
||||||
import { Entity, EntityManager } from "data/entities";
|
import {
|
||||||
import { ManyToManyRelation, ManyToOneRelation } from "data/relations";
|
Entity,
|
||||||
import { SchemaManager } from "data/schema/SchemaManager";
|
EntityManager,
|
||||||
import { UnableToConnectException } from "data/errors";
|
ManyToManyRelation,
|
||||||
|
ManyToOneRelation,
|
||||||
|
SchemaManager,
|
||||||
|
} from "../../../src/data";
|
||||||
|
import { UnableToConnectException } from "../../../src/data/errors";
|
||||||
import { getDummyConnection } from "../helper";
|
import { getDummyConnection } from "../helper";
|
||||||
|
|
||||||
const { dummyConnection, afterAllCleanup } = getDummyConnection();
|
const { dummyConnection, afterAllCleanup } = getDummyConnection();
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
import { afterAll, describe, expect, test } from "bun:test";
|
import { afterAll, describe, expect, test } from "bun:test";
|
||||||
import { Entity, EntityManager } from "data/entities";
|
import { Entity, EntityManager, ManyToOneRelation, TextField } from "../../../src/data";
|
||||||
import { ManyToOneRelation } from "data/relations";
|
import { JoinBuilder } from "../../../src/data/entities/query/JoinBuilder";
|
||||||
import { TextField } from "data/fields";
|
|
||||||
import { JoinBuilder } from "data/entities/query/JoinBuilder";
|
|
||||||
import { getDummyConnection } from "../helper";
|
import { getDummyConnection } from "../helper";
|
||||||
|
|
||||||
const { dummyConnection, afterAllCleanup } = getDummyConnection();
|
const { dummyConnection, afterAllCleanup } = getDummyConnection();
|
||||||
|
|||||||
@@ -1,16 +1,18 @@
|
|||||||
import { afterAll, beforeAll, 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 { Entity, EntityManager } from "data/entities";
|
|
||||||
import {
|
import {
|
||||||
|
Entity,
|
||||||
|
EntityManager,
|
||||||
ManyToOneRelation,
|
ManyToOneRelation,
|
||||||
|
MutatorEvents,
|
||||||
|
NumberField,
|
||||||
OneToOneRelation,
|
OneToOneRelation,
|
||||||
RelationField,
|
type RelationField,
|
||||||
RelationMutator,
|
RelationMutator,
|
||||||
} from "data/relations";
|
TextField,
|
||||||
import { NumberField, TextField } from "data/fields";
|
} from "../../../src/data";
|
||||||
import * as proto from "data/prototype";
|
import * as proto from "../../../src/data/prototype";
|
||||||
import { getDummyConnection, disableConsoleLog, enableConsoleLog } from "../../helper";
|
import { getDummyConnection, disableConsoleLog, enableConsoleLog } from "../../helper";
|
||||||
import { MutatorEvents } from "data/events";
|
|
||||||
|
|
||||||
const { dummyConnection, afterAllCleanup } = getDummyConnection();
|
const { dummyConnection, afterAllCleanup } = getDummyConnection();
|
||||||
afterAll(afterAllCleanup);
|
afterAll(afterAllCleanup);
|
||||||
|
|||||||
@@ -1,10 +1,17 @@
|
|||||||
import { afterAll, describe, expect, test } from "bun:test";
|
import { afterAll, describe, expect, test } from "bun:test";
|
||||||
import type { Kysely, Transaction } from "kysely";
|
import type { Kysely, Transaction } from "kysely";
|
||||||
import { TextField } from "data/fields";
|
import { Perf } from "core/utils";
|
||||||
import { em as $em, entity as $entity, text as $text } from "data/prototype";
|
import {
|
||||||
import { Entity, EntityManager } from "data/entities";
|
Entity,
|
||||||
import { ManyToOneRelation } from "data/relations";
|
EntityManager,
|
||||||
import { RepositoryEvents } from "data/events";
|
LibsqlConnection,
|
||||||
|
ManyToOneRelation,
|
||||||
|
RepositoryEvents,
|
||||||
|
TextField,
|
||||||
|
entity as $entity,
|
||||||
|
text as $text,
|
||||||
|
em as $em,
|
||||||
|
} from "data";
|
||||||
import { getDummyConnection } from "../helper";
|
import { getDummyConnection } from "../helper";
|
||||||
|
|
||||||
type E = Kysely<any> | Transaction<any>;
|
type E = Kysely<any> | Transaction<any>;
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
// eslint-disable-next-line import/no-unresolved
|
// eslint-disable-next-line import/no-unresolved
|
||||||
import { afterAll, describe, expect, test } from "bun:test";
|
import { afterAll, describe, expect, test } from "bun:test";
|
||||||
import { randomString } from "core/utils";
|
import { randomString } from "../../../src/core/utils";
|
||||||
import { Entity, EntityManager } from "data/entities";
|
import { Entity, EntityIndex, EntityManager, SchemaManager, TextField } from "../../../src/data";
|
||||||
import { TextField, EntityIndex } from "data/fields";
|
|
||||||
import { SchemaManager } from "data/schema/SchemaManager";
|
|
||||||
import { getDummyConnection } from "../helper";
|
import { getDummyConnection } from "../helper";
|
||||||
|
|
||||||
const { dummyConnection, afterAllCleanup } = getDummyConnection();
|
const { dummyConnection, afterAllCleanup } = getDummyConnection();
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import { describe, test, expect } from "bun:test";
|
import { describe, test, expect } from "bun:test";
|
||||||
import { getDummyConnection } from "../helper";
|
import { getDummyConnection } from "../helper";
|
||||||
import { WhereBuilder, type WhereQuery } from "data/entities/query/WhereBuilder";
|
import { type WhereQuery, WhereBuilder } from "data";
|
||||||
|
|
||||||
function qb() {
|
function qb() {
|
||||||
const c = getDummyConnection();
|
const c = getDummyConnection();
|
||||||
|
|||||||
@@ -1,9 +1,14 @@
|
|||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
import { Entity, EntityManager } from "data/entities";
|
import {
|
||||||
import { ManyToManyRelation, ManyToOneRelation, PolymorphicRelation } from "data/relations";
|
Entity,
|
||||||
import { TextField } from "data/fields";
|
EntityManager,
|
||||||
import * as proto from "data/prototype";
|
ManyToManyRelation,
|
||||||
import { WithBuilder } from "data/entities/query/WithBuilder";
|
ManyToOneRelation,
|
||||||
|
PolymorphicRelation,
|
||||||
|
TextField,
|
||||||
|
WithBuilder,
|
||||||
|
} from "../../../src/data";
|
||||||
|
import * as proto from "../../../src/data/prototype";
|
||||||
import { schemaToEm } from "../../helper";
|
import { schemaToEm } from "../../helper";
|
||||||
import { getDummyConnection } from "../helper";
|
import { getDummyConnection } from "../helper";
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { afterAll, describe, expect, test } from "bun:test";
|
import { afterAll, describe, expect, test } from "bun:test";
|
||||||
import { EntityManager } from "data/entities/EntityManager";
|
import { EntityManager } from "../../../../src/data";
|
||||||
import { getDummyConnection } from "../../helper";
|
import { getDummyConnection } from "../../helper";
|
||||||
|
|
||||||
const { dummyConnection, afterAllCleanup } = getDummyConnection();
|
const { dummyConnection, afterAllCleanup } = getDummyConnection();
|
||||||
|
|||||||
@@ -1,10 +1,9 @@
|
|||||||
import { bunTestRunner } from "adapter/bun/test";
|
|
||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
import { BooleanField } from "data/fields";
|
import { BooleanField } from "../../../../src/data";
|
||||||
import { fieldTestSuite, transformPersist } from "data/fields/field-test-suite";
|
import { fieldTestSuite, transformPersist } from "data/fields/field-test-suite";
|
||||||
|
|
||||||
describe("[data] BooleanField", async () => {
|
describe("[data] BooleanField", async () => {
|
||||||
fieldTestSuite(bunTestRunner, BooleanField, { defaultValue: true, schemaType: "boolean" });
|
fieldTestSuite({ expect, test }, BooleanField, { defaultValue: true, schemaType: "boolean" });
|
||||||
|
|
||||||
test("transformRetrieve", async () => {
|
test("transformRetrieve", async () => {
|
||||||
const field = new BooleanField("test");
|
const field = new BooleanField("test");
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { describe, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
import { DateField } from "data/fields";
|
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";
|
import { bunTestRunner } from "adapter/bun/test";
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
import { bunTestRunner } from "adapter/bun/test";
|
|
||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
import { EnumField } from "data/fields";
|
import { EnumField } from "../../../../src/data";
|
||||||
import { fieldTestSuite, transformPersist } from "data/fields/field-test-suite";
|
import { fieldTestSuite, transformPersist } from "data/fields/field-test-suite";
|
||||||
|
|
||||||
function options(strings: string[]) {
|
function options(strings: string[]) {
|
||||||
@@ -9,7 +8,7 @@ function options(strings: string[]) {
|
|||||||
|
|
||||||
describe("[data] EnumField", async () => {
|
describe("[data] EnumField", async () => {
|
||||||
fieldTestSuite(
|
fieldTestSuite(
|
||||||
bunTestRunner,
|
{ expect, test },
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
EnumField,
|
EnumField,
|
||||||
{ defaultValue: "a", schemaType: "text" },
|
{ defaultValue: "a", schemaType: "text" },
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ import { describe, expect, test } from "bun:test";
|
|||||||
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 { bunTestRunner } from "adapter/bun/test";
|
||||||
import { stripMark } from "core/utils/schema";
|
import { stripMark } from "core/object/schema";
|
||||||
|
|
||||||
describe("[data] Field", async () => {
|
describe("[data] Field", async () => {
|
||||||
class FieldSpec extends Field {
|
class FieldSpec extends Field {
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
import { Entity } from "data/entities";
|
import { Entity, EntityIndex, Field } from "../../../../src/data";
|
||||||
import { Field, EntityIndex } from "data/fields";
|
import { s } from "core/object/schema";
|
||||||
import { s } from "core/utils/schema";
|
|
||||||
|
|
||||||
class TestField extends Field {
|
class TestField extends Field {
|
||||||
protected getSchema(): any {
|
protected getSchema(): any {
|
||||||
|
|||||||
@@ -1,11 +1,10 @@
|
|||||||
import { bunTestRunner } from "adapter/bun/test";
|
|
||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
import { JsonField } from "data/fields";
|
import { JsonField } from "../../../../src/data";
|
||||||
import { fieldTestSuite, transformPersist } from "data/fields/field-test-suite";
|
import { fieldTestSuite, transformPersist } from "data/fields/field-test-suite";
|
||||||
|
|
||||||
describe("[data] JsonField", async () => {
|
describe("[data] JsonField", async () => {
|
||||||
const field = new JsonField("test");
|
const field = new JsonField("test");
|
||||||
fieldTestSuite(bunTestRunner, JsonField, {
|
fieldTestSuite({ expect, test }, JsonField, {
|
||||||
defaultValue: { a: 1 },
|
defaultValue: { a: 1 },
|
||||||
sampleValues: ["string", { test: 1 }, 1],
|
sampleValues: ["string", { test: 1 }, 1],
|
||||||
schemaType: "text",
|
schemaType: "text",
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
import { JsonSchemaField } from "data/fields";
|
import { JsonSchemaField } from "../../../../src/data";
|
||||||
import { fieldTestSuite } from "data/fields/field-test-suite";
|
import { fieldTestSuite } from "data/fields/field-test-suite";
|
||||||
|
|
||||||
describe("[data] JsonSchemaField", async () => {
|
describe("[data] JsonSchemaField", async () => {
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
import { bunTestRunner } from "adapter/bun/test";
|
|
||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
import { NumberField } from "data/fields";
|
import { NumberField } from "../../../../src/data";
|
||||||
import { fieldTestSuite, transformPersist } from "data/fields/field-test-suite";
|
import { fieldTestSuite, transformPersist } from "data/fields/field-test-suite";
|
||||||
|
|
||||||
describe("[data] NumberField", async () => {
|
describe("[data] NumberField", async () => {
|
||||||
@@ -16,5 +15,5 @@ describe("[data] NumberField", async () => {
|
|||||||
expect(transformPersist(field2, 10000)).resolves.toBe(10000);
|
expect(transformPersist(field2, 10000)).resolves.toBe(10000);
|
||||||
});
|
});
|
||||||
|
|
||||||
fieldTestSuite(bunTestRunner, NumberField, { defaultValue: 12, schemaType: "integer" });
|
fieldTestSuite({ expect, test }, NumberField, { defaultValue: 12, schemaType: "integer" });
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
import { PrimaryField } from "data/fields";
|
import { PrimaryField } from "../../../../src/data";
|
||||||
|
|
||||||
describe("[data] PrimaryField", async () => {
|
describe("[data] PrimaryField", async () => {
|
||||||
const field = new PrimaryField("primary");
|
const field = new PrimaryField("primary");
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
import { TextField } from "data/fields";
|
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";
|
import { bunTestRunner } from "adapter/bun/test";
|
||||||
|
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
import { describe, expect, it, test } from "bun:test";
|
import { describe, expect, it, test } from "bun:test";
|
||||||
import { Entity, type EntityManager } from "data/entities";
|
import { Entity, type EntityManager } from "../../../../src/data";
|
||||||
import {
|
import {
|
||||||
type BaseRelationConfig,
|
type BaseRelationConfig,
|
||||||
EntityRelation,
|
EntityRelation,
|
||||||
EntityRelationAnchor,
|
EntityRelationAnchor,
|
||||||
RelationTypes,
|
RelationTypes,
|
||||||
} from "data/relations";
|
} from "../../../../src/data/relations";
|
||||||
|
|
||||||
class TestEntityRelation extends EntityRelation {
|
class TestEntityRelation extends EntityRelation {
|
||||||
constructor(config?: BaseRelationConfig) {
|
constructor(config?: BaseRelationConfig) {
|
||||||
@@ -24,11 +24,11 @@ class TestEntityRelation extends EntityRelation {
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
buildWith(): any {
|
buildWith(a: any, b: any, c: any): any {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
buildJoin(): any {
|
buildJoin(a: any, b: any): any {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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 { s } from "core/utils/schema";
|
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,
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
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/utils/schema";
|
import { s } from "core/object/schema";
|
||||||
|
|
||||||
describe.skip("Task", async () => {
|
describe.skip("Task", async () => {
|
||||||
test("resolveParams: template with parse", async () => {
|
test("resolveParams: template with parse", async () => {
|
||||||
|
|||||||
@@ -1,7 +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 { s, parse } from "core/utils/schema";
|
import { s, parse } from "core/object/schema";
|
||||||
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";
|
||||||
|
|
||||||
|
|||||||
@@ -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 { s } from "core/utils/schema";
|
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);
|
||||||
|
|||||||
@@ -2,12 +2,11 @@ import { unlink } from "node:fs/promises";
|
|||||||
import type { SelectQueryBuilder, SqliteDatabase } from "kysely";
|
import type { SelectQueryBuilder, SqliteDatabase } from "kysely";
|
||||||
import Database from "libsql";
|
import Database from "libsql";
|
||||||
import { format as sqlFormat } from "sql-formatter";
|
import { format as sqlFormat } from "sql-formatter";
|
||||||
|
import { type Connection, EntityManager, SqliteLocalConnection } from "../src/data";
|
||||||
import type { em as protoEm } from "../src/data/prototype";
|
import type { em as protoEm } from "../src/data/prototype";
|
||||||
import { writeFile } from "node:fs/promises";
|
import { writeFile } from "node:fs/promises";
|
||||||
import { join } from "node:path";
|
import { join } from "node:path";
|
||||||
import { slugify } from "core/utils/strings";
|
import { slugify } from "core/utils/strings";
|
||||||
import { type Connection, SqliteLocalConnection } from "data/connection";
|
|
||||||
import { EntityManager } from "data/entities/EntityManager";
|
|
||||||
|
|
||||||
export function getDummyDatabase(memory: boolean = true): {
|
export function getDummyDatabase(memory: boolean = true): {
|
||||||
dummyDb: SqliteDatabase;
|
dummyDb: SqliteDatabase;
|
||||||
|
|||||||
@@ -1,17 +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 { registries } from "../../src";
|
|
||||||
import { createApp } from "core/test/utils";
|
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> = {}) {
|
||||||
@@ -32,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;
|
||||||
}
|
}
|
||||||
@@ -54,6 +51,7 @@ describe("MediaController", () => {
|
|||||||
body: file,
|
body: file,
|
||||||
});
|
});
|
||||||
const result = (await res.json()) as any;
|
const result = (await res.json()) as any;
|
||||||
|
console.log(result);
|
||||||
expect(result.name).toBe(name);
|
expect(result.name).toBe(name);
|
||||||
|
|
||||||
const destFile = Bun.file(assetsTmpPath + "/" + name);
|
const destFile = Bun.file(assetsTmpPath + "/" + name);
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
import { type FileBody, Storage } from "../../src/media/storage/Storage";
|
import { type FileBody, Storage } from "../../src/media/storage/Storage";
|
||||||
import * as StorageEvents from "../../src/media/storage/events";
|
import * as StorageEvents from "../../src/media/storage/events";
|
||||||
import { StorageAdapter } from "media/storage/StorageAdapter";
|
import { StorageAdapter } from "media";
|
||||||
|
|
||||||
class TestAdapter extends StorageAdapter {
|
class TestAdapter extends StorageAdapter {
|
||||||
files: Record<string, FileBody> = {};
|
files: Record<string, FileBody> = {};
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
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 "core/test/utils";
|
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 "data/prototype";
|
import { em, entity, make, text } from "../../src/data";
|
||||||
import { AppAuth, type ModuleBuildContext } from "modules";
|
import { AppAuth, type ModuleBuildContext } from "../../src/modules";
|
||||||
import { disableConsoleLog, enableConsoleLog } from "../helper";
|
import { disableConsoleLog, enableConsoleLog } from "../helper";
|
||||||
|
// @ts-ignore
|
||||||
import { makeCtx, moduleTestSuite } from "./module-test-suite";
|
import { makeCtx, moduleTestSuite } from "./module-test-suite";
|
||||||
|
|
||||||
describe("AppAuth", () => {
|
describe("AppAuth", () => {
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { beforeEach, describe, expect, test } from "bun:test";
|
import { beforeEach, describe, expect, test } from "bun:test";
|
||||||
import { parse } from "core/utils/schema";
|
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,21 +1,15 @@
|
|||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
import { createApp } from "core/test/utils";
|
import { createApp } from "core/test/utils";
|
||||||
import { em, entity, text } from "data/prototype";
|
import { em, entity, text } from "../../src/data";
|
||||||
import { registries } from "modules/registries";
|
|
||||||
import { StorageLocalAdapter } from "adapter/node/storage/StorageLocalAdapter";
|
import { StorageLocalAdapter } from "adapter/node/storage/StorageLocalAdapter";
|
||||||
import { AppMedia } from "../../src/media/AppMedia";
|
import { AppMedia } from "../../src/media/AppMedia";
|
||||||
import { moduleTestSuite } from "./module-test-suite";
|
import { moduleTestSuite } from "./module-test-suite";
|
||||||
|
|
||||||
describe("AppMedia", () => {
|
describe("AppMedia", () => {
|
||||||
test.only("...", () => {
|
|
||||||
const media = new AppMedia();
|
|
||||||
console.log(media.toJSON());
|
|
||||||
});
|
|
||||||
|
|
||||||
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: {
|
||||||
@@ -36,6 +30,7 @@ describe("AppMedia", () => {
|
|||||||
}).toJSON(),
|
}).toJSON(),
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
app.module.media.adapters.set("local", StorageLocalAdapter);
|
||||||
|
|
||||||
await app.build();
|
await app.build();
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
import { s, stripMark } from "core/utils/schema";
|
import { s, stripMark } from "core/object/schema";
|
||||||
import { em, entity, index, text } from "data/prototype";
|
import { EntityManager, em, entity, index, text } from "../../src/data";
|
||||||
import { EntityManager } from "data/entities/EntityManager";
|
|
||||||
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";
|
import { ModuleHelper } from "modules/ModuleHelper";
|
||||||
|
|||||||
@@ -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 } from "core/utils";
|
import { disableConsoleLog, enableConsoleLog } from "core/utils";
|
||||||
|
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 { s, stripMark } from "core/utils/schema";
|
import { s, stripMark } from "core/object/schema";
|
||||||
import { Connection } from "data/connection/Connection";
|
|
||||||
import { entity, text } from "data/prototype";
|
|
||||||
|
|
||||||
describe("ModuleManager", async () => {
|
describe("ModuleManager", async () => {
|
||||||
test("s1: no config, no build", async () => {
|
test("s1: no config, no build", async () => {
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
import { beforeEach, describe, expect, it } from "bun:test";
|
import { beforeEach, describe, expect, it } from "bun:test";
|
||||||
|
|
||||||
import { Hono } from "hono";
|
import { Hono } from "hono";
|
||||||
import { Guard } from "auth/authorize/Guard";
|
import { Guard } from "../../src/auth";
|
||||||
import { DebugLogger } from "core/utils/DebugLogger";
|
import { DebugLogger } from "../../src/core";
|
||||||
import { EventManager } from "core/events";
|
import { EventManager } from "../../src/core/events";
|
||||||
import { EntityManager } from "data/entities/EntityManager";
|
import { EntityManager } from "../../src/data";
|
||||||
import { Module, type ModuleBuildContext } from "modules/Module";
|
import { Module, type ModuleBuildContext } from "../../src/modules/Module";
|
||||||
import { getDummyConnection } from "../helper";
|
import { getDummyConnection } from "../helper";
|
||||||
import { ModuleHelper } from "modules/ModuleHelper";
|
import { ModuleHelper } from "modules/ModuleHelper";
|
||||||
|
|
||||||
|
|||||||
+82
-76
@@ -1,7 +1,6 @@
|
|||||||
import { $ } from "bun";
|
import { $ } from "bun";
|
||||||
import * as tsup from "tsup";
|
import * as tsup from "tsup";
|
||||||
import pkg from "./package.json" with { type: "json" };
|
import pkg from "./package.json" with { type: "json" };
|
||||||
import c from "picocolors";
|
|
||||||
|
|
||||||
const args = process.argv.slice(2);
|
const args = process.argv.slice(2);
|
||||||
const watch = args.includes("--watch");
|
const watch = args.includes("--watch");
|
||||||
@@ -10,14 +9,6 @@ const types = args.includes("--types");
|
|||||||
const sourcemap = args.includes("--sourcemap");
|
const sourcemap = args.includes("--sourcemap");
|
||||||
const clean = args.includes("--clean");
|
const clean = args.includes("--clean");
|
||||||
|
|
||||||
// silence tsup
|
|
||||||
const oldConsole = {
|
|
||||||
log: console.log,
|
|
||||||
warn: console.warn,
|
|
||||||
};
|
|
||||||
console.log = () => {};
|
|
||||||
console.warn = () => {};
|
|
||||||
|
|
||||||
const define = {
|
const define = {
|
||||||
__isDev: "0",
|
__isDev: "0",
|
||||||
__version: JSON.stringify(pkg.version),
|
__version: JSON.stringify(pkg.version),
|
||||||
@@ -36,11 +27,11 @@ function buildTypes() {
|
|||||||
Bun.spawn(["bun", "build:types"], {
|
Bun.spawn(["bun", "build:types"], {
|
||||||
stdout: "inherit",
|
stdout: "inherit",
|
||||||
onExit: () => {
|
onExit: () => {
|
||||||
oldConsole.log(c.cyan("[Types]"), c.green("built"));
|
console.info("Types built");
|
||||||
Bun.spawn(["bun", "tsc-alias"], {
|
Bun.spawn(["bun", "tsc-alias"], {
|
||||||
stdout: "inherit",
|
stdout: "inherit",
|
||||||
onExit: () => {
|
onExit: () => {
|
||||||
oldConsole.log(c.cyan("[Types]"), c.green("aliased"));
|
console.info("Types aliased");
|
||||||
types_running = false;
|
types_running = false;
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
@@ -48,10 +39,6 @@ function buildTypes() {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
if (types && !watch) {
|
|
||||||
buildTypes();
|
|
||||||
}
|
|
||||||
|
|
||||||
let watcher_timeout: any;
|
let watcher_timeout: any;
|
||||||
function delayTypes() {
|
function delayTypes() {
|
||||||
if (!watch || !types) return;
|
if (!watch || !types) return;
|
||||||
@@ -61,6 +48,17 @@ function delayTypes() {
|
|||||||
watcher_timeout = setTimeout(buildTypes, 1000);
|
watcher_timeout = setTimeout(buildTypes, 1000);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (types && !watch) {
|
||||||
|
buildTypes();
|
||||||
|
}
|
||||||
|
|
||||||
|
function banner(title: string) {
|
||||||
|
console.info("");
|
||||||
|
console.info("=".repeat(40));
|
||||||
|
console.info(title.toUpperCase());
|
||||||
|
console.info("-".repeat(40));
|
||||||
|
}
|
||||||
|
|
||||||
// collection of always-external packages
|
// collection of always-external packages
|
||||||
const external = [
|
const external = [
|
||||||
"bun:test",
|
"bun:test",
|
||||||
@@ -75,12 +73,20 @@ const external = [
|
|||||||
* Building backend and general API
|
* Building backend and general API
|
||||||
*/
|
*/
|
||||||
async function buildApi() {
|
async function buildApi() {
|
||||||
|
banner("Building API");
|
||||||
await tsup.build({
|
await tsup.build({
|
||||||
minify,
|
minify,
|
||||||
sourcemap,
|
sourcemap,
|
||||||
watch,
|
watch,
|
||||||
define,
|
define,
|
||||||
entry: ["src/index.ts", "src/core/utils/index.ts", "src/plugins/index.ts"],
|
entry: [
|
||||||
|
"src/index.ts",
|
||||||
|
"src/core/index.ts",
|
||||||
|
"src/core/utils/index.ts",
|
||||||
|
"src/data/index.ts",
|
||||||
|
"src/media/index.ts",
|
||||||
|
"src/plugins/index.ts",
|
||||||
|
],
|
||||||
outDir: "dist",
|
outDir: "dist",
|
||||||
external: [...external],
|
external: [...external],
|
||||||
metafile: true,
|
metafile: true,
|
||||||
@@ -93,7 +99,6 @@ async function buildApi() {
|
|||||||
},
|
},
|
||||||
onSuccess: async () => {
|
onSuccess: async () => {
|
||||||
delayTypes();
|
delayTypes();
|
||||||
oldConsole.log(c.cyan("[API]"), c.green("built"));
|
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -137,6 +142,7 @@ async function buildUi() {
|
|||||||
},
|
},
|
||||||
} satisfies tsup.Options;
|
} satisfies tsup.Options;
|
||||||
|
|
||||||
|
banner("Building UI");
|
||||||
await tsup.build({
|
await tsup.build({
|
||||||
...base,
|
...base,
|
||||||
entry: ["src/ui/index.ts", "src/ui/main.css", "src/ui/styles.css"],
|
entry: ["src/ui/index.ts", "src/ui/main.css", "src/ui/styles.css"],
|
||||||
@@ -144,10 +150,10 @@ async function buildUi() {
|
|||||||
onSuccess: async () => {
|
onSuccess: async () => {
|
||||||
await rewriteClient("./dist/ui/index.js");
|
await rewriteClient("./dist/ui/index.js");
|
||||||
delayTypes();
|
delayTypes();
|
||||||
oldConsole.log(c.cyan("[UI]"), c.green("built"));
|
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
banner("Building Client");
|
||||||
await tsup.build({
|
await tsup.build({
|
||||||
...base,
|
...base,
|
||||||
entry: ["src/ui/client/index.ts"],
|
entry: ["src/ui/client/index.ts"],
|
||||||
@@ -155,7 +161,6 @@ async function buildUi() {
|
|||||||
onSuccess: async () => {
|
onSuccess: async () => {
|
||||||
await rewriteClient("./dist/ui/client/index.js");
|
await rewriteClient("./dist/ui/client/index.js");
|
||||||
delayTypes();
|
delayTypes();
|
||||||
oldConsole.log(c.cyan("[UI]"), "Client", c.green("built"));
|
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -166,6 +171,7 @@ async function buildUi() {
|
|||||||
* - ui/client is external, and after built replaced with "bknd/client"
|
* - ui/client is external, and after built replaced with "bknd/client"
|
||||||
*/
|
*/
|
||||||
async function buildUiElements() {
|
async function buildUiElements() {
|
||||||
|
banner("Building UI Elements");
|
||||||
await tsup.build({
|
await tsup.build({
|
||||||
minify,
|
minify,
|
||||||
sourcemap,
|
sourcemap,
|
||||||
@@ -199,7 +205,6 @@ async function buildUiElements() {
|
|||||||
onSuccess: async () => {
|
onSuccess: async () => {
|
||||||
await rewriteClient("./dist/ui/elements/index.js");
|
await rewriteClient("./dist/ui/elements/index.js");
|
||||||
delayTypes();
|
delayTypes();
|
||||||
oldConsole.log(c.cyan("[UI]"), "Elements", c.green("built"));
|
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -220,7 +225,6 @@ function baseConfig(adapter: string, overrides: Partial<tsup.Options> = {}): tsu
|
|||||||
splitting: false,
|
splitting: false,
|
||||||
onSuccess: async () => {
|
onSuccess: async () => {
|
||||||
delayTypes();
|
delayTypes();
|
||||||
oldConsole.log(c.cyan("[Adapter]"), adapter || "base", c.green("built"));
|
|
||||||
},
|
},
|
||||||
...overrides,
|
...overrides,
|
||||||
define: {
|
define: {
|
||||||
@@ -239,63 +243,65 @@ function baseConfig(adapter: string, overrides: Partial<tsup.Options> = {}): tsu
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function buildAdapters() {
|
async function buildAdapters() {
|
||||||
await Promise.all([
|
banner("Building Adapters");
|
||||||
// base adapter handles
|
// base adapter handles
|
||||||
tsup.build({
|
await tsup.build({
|
||||||
...baseConfig(""),
|
...baseConfig(""),
|
||||||
entry: ["src/adapter/index.ts"],
|
entry: ["src/adapter/index.ts"],
|
||||||
outDir: "dist/adapter",
|
outDir: "dist/adapter",
|
||||||
}),
|
});
|
||||||
|
|
||||||
// specific adatpers
|
// specific adatpers
|
||||||
tsup.build(baseConfig("react-router")),
|
await tsup.build(baseConfig("react-router"));
|
||||||
tsup.build(
|
await tsup.build(
|
||||||
baseConfig("bun", {
|
baseConfig("bun", {
|
||||||
external: [/^bun\:.*/],
|
|
||||||
}),
|
|
||||||
),
|
|
||||||
tsup.build(baseConfig("astro")),
|
|
||||||
tsup.build(baseConfig("aws")),
|
|
||||||
tsup.build(baseConfig("cloudflare")),
|
|
||||||
|
|
||||||
tsup.build({
|
|
||||||
...baseConfig("vite"),
|
|
||||||
platform: "node",
|
|
||||||
}),
|
|
||||||
|
|
||||||
tsup.build({
|
|
||||||
...baseConfig("nextjs"),
|
|
||||||
platform: "node",
|
|
||||||
}),
|
|
||||||
|
|
||||||
tsup.build({
|
|
||||||
...baseConfig("node"),
|
|
||||||
platform: "node",
|
|
||||||
}),
|
|
||||||
|
|
||||||
tsup.build({
|
|
||||||
...baseConfig("sqlite/edge"),
|
|
||||||
entry: ["src/adapter/sqlite/edge.ts"],
|
|
||||||
outDir: "dist/adapter/sqlite",
|
|
||||||
metafile: false,
|
|
||||||
}),
|
|
||||||
|
|
||||||
tsup.build({
|
|
||||||
...baseConfig("sqlite/node"),
|
|
||||||
entry: ["src/adapter/sqlite/node.ts"],
|
|
||||||
outDir: "dist/adapter/sqlite",
|
|
||||||
platform: "node",
|
|
||||||
metafile: false,
|
|
||||||
}),
|
|
||||||
|
|
||||||
tsup.build({
|
|
||||||
...baseConfig("sqlite/bun"),
|
|
||||||
entry: ["src/adapter/sqlite/bun.ts"],
|
|
||||||
outDir: "dist/adapter/sqlite",
|
|
||||||
metafile: false,
|
|
||||||
external: [/^bun\:.*/],
|
external: [/^bun\:.*/],
|
||||||
}),
|
}),
|
||||||
]);
|
);
|
||||||
|
await tsup.build(baseConfig("astro"));
|
||||||
|
await tsup.build(baseConfig("aws"));
|
||||||
|
await tsup.build(baseConfig("cloudflare"));
|
||||||
|
|
||||||
|
await tsup.build({
|
||||||
|
...baseConfig("vite"),
|
||||||
|
platform: "node",
|
||||||
|
});
|
||||||
|
|
||||||
|
await tsup.build({
|
||||||
|
...baseConfig("nextjs"),
|
||||||
|
platform: "node",
|
||||||
|
});
|
||||||
|
|
||||||
|
await tsup.build({
|
||||||
|
...baseConfig("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 Promise.all([buildApi(), buildUi(), buildUiElements(), buildAdapters()]);
|
await buildApi();
|
||||||
|
await buildUi();
|
||||||
|
await buildUiElements();
|
||||||
|
await buildAdapters();
|
||||||
|
|||||||
+23
-6
@@ -3,7 +3,7 @@
|
|||||||
"type": "module",
|
"type": "module",
|
||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"bin": "./dist/cli/index.js",
|
"bin": "./dist/cli/index.js",
|
||||||
"version": "0.16.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,7 +13,6 @@
|
|||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/bknd-io/bknd/issues"
|
"url": "https://github.com/bknd-io/bknd/issues"
|
||||||
},
|
},
|
||||||
"packageManager": "bun@1.2.19",
|
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=22"
|
"node": ">=22"
|
||||||
},
|
},
|
||||||
@@ -61,7 +60,8 @@
|
|||||||
"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.8.3",
|
"hono": "^4.7.11",
|
||||||
|
"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",
|
||||||
@@ -100,7 +100,7 @@
|
|||||||
"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.3.2",
|
"jsonv-ts": "^0.2.2",
|
||||||
"kysely-d1": "^0.3.0",
|
"kysely-d1": "^0.3.0",
|
||||||
"kysely-generic-sqlite": "^1.2.1",
|
"kysely-generic-sqlite": "^1.2.1",
|
||||||
"libsql-stateless-easy": "^1.8.0",
|
"libsql-stateless-easy": "^1.8.0",
|
||||||
@@ -161,6 +161,16 @@
|
|||||||
"import": "./dist/ui/client/index.js",
|
"import": "./dist/ui/client/index.js",
|
||||||
"require": "./dist/ui/client/index.js"
|
"require": "./dist/ui/client/index.js"
|
||||||
},
|
},
|
||||||
|
"./data": {
|
||||||
|
"types": "./dist/types/data/index.d.ts",
|
||||||
|
"import": "./dist/data/index.js",
|
||||||
|
"require": "./dist/data/index.js"
|
||||||
|
},
|
||||||
|
"./core": {
|
||||||
|
"types": "./dist/types/core/index.d.ts",
|
||||||
|
"import": "./dist/core/index.js",
|
||||||
|
"require": "./dist/core/index.js"
|
||||||
|
},
|
||||||
"./utils": {
|
"./utils": {
|
||||||
"types": "./dist/types/core/utils/index.d.ts",
|
"types": "./dist/types/core/utils/index.d.ts",
|
||||||
"import": "./dist/core/utils/index.js",
|
"import": "./dist/core/utils/index.js",
|
||||||
@@ -171,6 +181,11 @@
|
|||||||
"import": "./dist/cli/index.js",
|
"import": "./dist/cli/index.js",
|
||||||
"require": "./dist/cli/index.js"
|
"require": "./dist/cli/index.js"
|
||||||
},
|
},
|
||||||
|
"./media": {
|
||||||
|
"types": "./dist/types/media/index.d.ts",
|
||||||
|
"import": "./dist/media/index.js",
|
||||||
|
"require": "./dist/media/index.js"
|
||||||
|
},
|
||||||
"./plugins": {
|
"./plugins": {
|
||||||
"types": "./dist/types/plugins/index.d.ts",
|
"types": "./dist/types/plugins/index.d.ts",
|
||||||
"import": "./dist/plugins/index.js",
|
"import": "./dist/plugins/index.js",
|
||||||
@@ -236,13 +251,15 @@
|
|||||||
},
|
},
|
||||||
"./dist/main.css": "./dist/ui/main.css",
|
"./dist/main.css": "./dist/ui/main.css",
|
||||||
"./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"
|
||||||
"./static/*": "./dist/static/*"
|
|
||||||
},
|
},
|
||||||
"typesVersions": {
|
"typesVersions": {
|
||||||
"*": {
|
"*": {
|
||||||
|
"data": ["./dist/types/data/index.d.ts"],
|
||||||
|
"core": ["./dist/types/core/index.d.ts"],
|
||||||
"utils": ["./dist/types/core/utils/index.d.ts"],
|
"utils": ["./dist/types/core/utils/index.d.ts"],
|
||||||
"cli": ["./dist/types/cli/index.d.ts"],
|
"cli": ["./dist/types/cli/index.d.ts"],
|
||||||
|
"media": ["./dist/types/media/index.d.ts"],
|
||||||
"plugins": ["./dist/types/plugins/index.d.ts"],
|
"plugins": ["./dist/types/plugins/index.d.ts"],
|
||||||
"adapter": ["./dist/types/adapter/index.d.ts"],
|
"adapter": ["./dist/types/adapter/index.d.ts"],
|
||||||
"adapter/cloudflare": ["./dist/types/adapter/cloudflare/index.d.ts"],
|
"adapter/cloudflare": ["./dist/types/adapter/cloudflare/index.d.ts"],
|
||||||
|
|||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
import type { SafeUser } from "bknd";
|
import type { SafeUser } from "auth";
|
||||||
import { AuthApi, type AuthApiOptions } from "auth/api/AuthApi";
|
import { AuthApi, type AuthApiOptions } from "auth/api/AuthApi";
|
||||||
import { DataApi, type DataApiOptions } from "data/api/DataApi";
|
import { DataApi, type DataApiOptions } from "data/api/DataApi";
|
||||||
import { decode } from "hono/jwt";
|
import { decode } from "hono/jwt";
|
||||||
|
|||||||
+7
-6
@@ -30,6 +30,7 @@ export type AppPluginConfig = {
|
|||||||
onServerInit?: (server: Hono<ServerEnv>) => MaybePromise<void>;
|
onServerInit?: (server: Hono<ServerEnv>) => MaybePromise<void>;
|
||||||
onFirstBoot?: () => MaybePromise<void>;
|
onFirstBoot?: () => MaybePromise<void>;
|
||||||
onBoot?: () => MaybePromise<void>;
|
onBoot?: () => MaybePromise<void>;
|
||||||
|
onModulesCreated?: (modules: Modules) => void;
|
||||||
};
|
};
|
||||||
export type AppPlugin = (app: App) => AppPluginConfig;
|
export type AppPlugin = (app: App) => AppPluginConfig;
|
||||||
|
|
||||||
@@ -40,9 +41,6 @@ export class AppConfigUpdatedEvent extends AppEvent<{
|
|||||||
}> {
|
}> {
|
||||||
static override slug = "app-config-updated";
|
static override slug = "app-config-updated";
|
||||||
}
|
}
|
||||||
/**
|
|
||||||
* @type {Event<{ app: App }>}
|
|
||||||
*/
|
|
||||||
export class AppBuiltEvent extends AppEvent {
|
export class AppBuiltEvent extends AppEvent {
|
||||||
static override slug = "app-built";
|
static override slug = "app-built";
|
||||||
}
|
}
|
||||||
@@ -74,9 +72,6 @@ export type AppOptions = {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
export type CreateAppConfig = {
|
export type CreateAppConfig = {
|
||||||
/**
|
|
||||||
* bla
|
|
||||||
*/
|
|
||||||
connection?: Connection | { url: string };
|
connection?: Connection | { url: string };
|
||||||
initialConfig?: InitialModuleConfigs;
|
initialConfig?: InitialModuleConfigs;
|
||||||
options?: AppOptions;
|
options?: AppOptions;
|
||||||
@@ -119,6 +114,7 @@ export class App<C extends Connection = Connection, Options extends AppOptions =
|
|||||||
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),
|
onModulesBuilt: this.onModulesBuilt.bind(this),
|
||||||
|
onModulesCreated: this.onModulesCreated.bind(this),
|
||||||
});
|
});
|
||||||
this.modules.ctx().emgr.registerEvents(AppEvents);
|
this.modules.ctx().emgr.registerEvents(AppEvents);
|
||||||
}
|
}
|
||||||
@@ -331,6 +327,11 @@ export class App<C extends Connection = Connection, Options extends AppOptions =
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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 = {}) {
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
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 ".";
|
import { registerLocalMediaAdapter } from ".";
|
||||||
import { config, type App } from "bknd";
|
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,16 +17,17 @@ 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(
|
||||||
{
|
{
|
||||||
serveStatic: serveStatic({ root }),
|
|
||||||
...config,
|
...config,
|
||||||
|
serveStatic: serveStatic({ root }),
|
||||||
},
|
},
|
||||||
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>(
|
||||||
@@ -52,7 +54,6 @@ export function serve<Env = BunEnv>(
|
|||||||
onBuilt,
|
onBuilt,
|
||||||
buildConfig,
|
buildConfig,
|
||||||
adminOptions,
|
adminOptions,
|
||||||
serveStatic,
|
|
||||||
...serveOptions
|
...serveOptions
|
||||||
}: BunBkndConfig<Env> = {},
|
}: BunBkndConfig<Env> = {},
|
||||||
args: Env = {} as Env,
|
args: Env = {} as Env,
|
||||||
@@ -70,7 +71,6 @@ export function serve<Env = BunEnv>(
|
|||||||
buildConfig,
|
buildConfig,
|
||||||
adminOptions,
|
adminOptions,
|
||||||
distPath,
|
distPath,
|
||||||
serveStatic,
|
|
||||||
},
|
},
|
||||||
args,
|
args,
|
||||||
opts,
|
opts,
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { Database } from "bun:sqlite";
|
import { Database } from "bun:sqlite";
|
||||||
import { genericSqlite, type GenericSqliteConnection } from "bknd";
|
import { genericSqlite, type GenericSqliteConnection } from "bknd/data";
|
||||||
|
|
||||||
export type BunSqliteConnection = GenericSqliteConnection<Database>;
|
export type BunSqliteConnection = GenericSqliteConnection<Database>;
|
||||||
export type BunSqliteConnectionConfig = {
|
export type BunSqliteConnectionConfig = {
|
||||||
|
|||||||
@@ -12,10 +12,7 @@ export function getBindings<T extends GetBindingType>(env: any, type: T): Bindin
|
|||||||
const bindings: BindingMap<T>[] = [];
|
const bindings: BindingMap<T>[] = [];
|
||||||
for (const key in env) {
|
for (const key in env) {
|
||||||
try {
|
try {
|
||||||
if (
|
if (env[key] && (env[key] as any).constructor.name === type) {
|
||||||
env[key] &&
|
|
||||||
((env[key] as any).constructor.name === type || String(env[key]) === `[object ${type}]`)
|
|
||||||
) {
|
|
||||||
bindings.push({
|
bindings.push({
|
||||||
key,
|
key,
|
||||||
value: env[key] as BindingTypeMap[T],
|
value: env[key] as BindingTypeMap[T],
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ 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/utils";
|
import { $console } from "core/utils";
|
||||||
|
import { registerMedia } from "./storage/StorageR2Adapter";
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
namespace Cloudflare {
|
namespace Cloudflare {
|
||||||
@@ -33,7 +34,7 @@ export type CloudflareBkndConfig<Env = CloudflareEnv> = RuntimeBkndConfig<Env> &
|
|||||||
keepAliveSeconds?: number;
|
keepAliveSeconds?: number;
|
||||||
forceHttps?: boolean;
|
forceHttps?: boolean;
|
||||||
manifest?: string;
|
manifest?: string;
|
||||||
registerMedia?: boolean | ((env: Env) => void);
|
registerMedia?: boolean;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type Context<Env = CloudflareEnv> = {
|
export type Context<Env = CloudflareEnv> = {
|
||||||
@@ -99,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,16 +1,15 @@
|
|||||||
/// <reference types="@cloudflare/workers-types" />
|
/// <reference types="@cloudflare/workers-types" />
|
||||||
|
|
||||||
import { Connection } from "bknd";
|
|
||||||
import { sqlite } from "bknd/adapter/sqlite";
|
|
||||||
import { makeConfig as makeAdapterConfig } from "bknd/adapter";
|
|
||||||
import { registerMedia } from "./storage/StorageR2Adapter";
|
|
||||||
import { getBinding } from "./bindings";
|
import { getBinding } from "./bindings";
|
||||||
import { d1Sqlite } 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 type { Context, ExecutionContext } from "hono";
|
import type { Context, ExecutionContext } from "hono";
|
||||||
import { $console } from "core/utils";
|
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",
|
||||||
@@ -88,20 +87,10 @@ 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 && config.registerMedia !== false) {
|
|
||||||
if (typeof config.registerMedia === "function") {
|
|
||||||
config.registerMedia(args?.env as any);
|
|
||||||
} else {
|
|
||||||
registerMedia(args?.env as any);
|
|
||||||
}
|
|
||||||
media_registered = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
const appConfig = makeAdapterConfig(config, args?.env);
|
const appConfig = makeAdapterConfig(config, args?.env);
|
||||||
|
|
||||||
// if connection instance is given, don't do anything
|
// if connection instance is given, don't do anything
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/// <reference types="@cloudflare/workers-types" />
|
/// <reference types="@cloudflare/workers-types" />
|
||||||
|
|
||||||
import { genericSqlite, type GenericSqliteConnection } from "bknd";
|
import { genericSqlite, type GenericSqliteConnection } from "bknd/data";
|
||||||
import type { QueryResult } from "kysely";
|
import type { QueryResult } from "kysely";
|
||||||
|
|
||||||
export type D1SqliteConnection = GenericSqliteConnection<D1Database>;
|
export type D1SqliteConnection = GenericSqliteConnection<D1Database>;
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/// <reference types="@cloudflare/workers-types" />
|
/// <reference types="@cloudflare/workers-types" />
|
||||||
|
|
||||||
import { genericSqlite, type GenericSqliteConnection } from "bknd";
|
import { genericSqlite, type GenericSqliteConnection } from "bknd/data";
|
||||||
import type { QueryResult } from "kysely";
|
import type { QueryResult } from "kysely";
|
||||||
|
|
||||||
export type D1SqliteConnection = GenericSqliteConnection<D1Database>;
|
export type D1SqliteConnection = GenericSqliteConnection<D1Database>;
|
||||||
|
|||||||
@@ -13,8 +13,7 @@ export {
|
|||||||
type BindingMap,
|
type BindingMap,
|
||||||
} from "./bindings";
|
} from "./bindings";
|
||||||
export { constants } from "./config";
|
export { constants } from "./config";
|
||||||
export { StorageR2Adapter, registerMedia } from "./storage/StorageR2Adapter";
|
export { StorageR2Adapter } from "./storage/StorageR2Adapter";
|
||||||
export { registries } from "bknd";
|
|
||||||
|
|
||||||
// for compatibility with old code
|
// for compatibility with old code
|
||||||
export function d1<DB extends D1Database | D1DatabaseSession = D1Database>(
|
export function d1<DB extends D1Database | D1DatabaseSession = D1Database>(
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
import { registries, isDebug, guessMimeType } from "bknd";
|
import type { App } from "bknd";
|
||||||
|
import { isDebug } from "bknd/core";
|
||||||
|
import { guessMimeType as guess, StorageAdapter, type FileBody } from "bknd/media";
|
||||||
import { getBindings } from "../bindings";
|
import { getBindings } from "../bindings";
|
||||||
import { s } from "bknd/utils";
|
import { s } from "core/object/schema";
|
||||||
import { StorageAdapter, type FileBody } from "bknd";
|
|
||||||
|
|
||||||
export function makeSchema(bindings: string[] = []) {
|
export function makeSchema(bindings: string[] = []) {
|
||||||
return s.object(
|
return s.object(
|
||||||
@@ -12,10 +13,10 @@ export function makeSchema(bindings: string[] = []) {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
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) {
|
||||||
@@ -89,7 +90,7 @@ export class StorageR2Adapter extends StorageAdapter {
|
|||||||
|
|
||||||
const responseHeaders = new Headers({
|
const responseHeaders = new Headers({
|
||||||
"Accept-Ranges": "bytes",
|
"Accept-Ranges": "bytes",
|
||||||
"Content-Type": guessMimeType(key),
|
"Content-Type": guess(key),
|
||||||
});
|
});
|
||||||
|
|
||||||
const range = headers.has("range");
|
const range = headers.has("range");
|
||||||
@@ -141,7 +142,7 @@ export class StorageR2Adapter extends StorageAdapter {
|
|||||||
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 = {
|
||||||
contentType: guessMimeType(object.key),
|
contentType: guess(object.key),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -158,7 +159,7 @@ export class StorageR2Adapter extends StorageAdapter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
type: String(head.httpMetadata?.contentType ?? guessMimeType(key)),
|
type: String(head.httpMetadata?.contentType ?? guess(key)),
|
||||||
size: head.size,
|
size: head.size,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
+11
-58
@@ -1,13 +1,17 @@
|
|||||||
import { config as $config, App, type CreateAppConfig, Connection, guessMimeType } from "bknd";
|
import { App, type CreateAppConfig } from "bknd";
|
||||||
|
import { config as $config } from "bknd/core";
|
||||||
import { $console } from "bknd/utils";
|
import { $console } from "bknd/utils";
|
||||||
import type { Context, MiddlewareHandler, Next } from "hono";
|
import type { MiddlewareHandler } from "hono";
|
||||||
import type { AdminControllerOptions } from "modules/server/AdminController";
|
import type { AdminControllerOptions } from "modules/server/AdminController";
|
||||||
import type { Manifest } from "vite";
|
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];
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -67,9 +71,9 @@ export async function createAdapterApp<Config extends BkndConfig = BkndConfig, A
|
|||||||
connection = config.connection;
|
connection = config.connection;
|
||||||
} else {
|
} else {
|
||||||
const sqlite = (await import("bknd/adapter/sqlite")).sqlite;
|
const sqlite = (await import("bknd/adapter/sqlite")).sqlite;
|
||||||
const conf = appConfig.connection ?? { url: ":memory:" };
|
const conf = config.connection ?? { url: ":memory:" };
|
||||||
connection = sqlite(conf);
|
connection = sqlite(conf);
|
||||||
$console.info(`Using ${connection!.name} connection`, conf.url);
|
$console.info(`Using ${connection.name} connection`, conf.url);
|
||||||
}
|
}
|
||||||
appConfig.connection = connection;
|
appConfig.connection = connection;
|
||||||
}
|
}
|
||||||
@@ -137,54 +141,3 @@ export async function createRuntimeApp<Args = DefaultArgs>(
|
|||||||
|
|
||||||
return app;
|
return app;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a middleware handler to serve static assets via dynamic imports.
|
|
||||||
* This is useful for environments where filesystem access is limited but bundled assets can be imported.
|
|
||||||
*
|
|
||||||
* @param manifest - Vite manifest object containing asset information
|
|
||||||
* @returns Hono middleware handler for serving static assets
|
|
||||||
*
|
|
||||||
* @example
|
|
||||||
* ```typescript
|
|
||||||
* import { serveStaticViaImport } from "bknd/adapter";
|
|
||||||
*
|
|
||||||
* serve({
|
|
||||||
* serveStatic: serveStaticViaImport(),
|
|
||||||
* });
|
|
||||||
* ```
|
|
||||||
*/
|
|
||||||
export function serveStaticViaImport(opts?: { manifest?: Manifest }) {
|
|
||||||
let files: string[] | undefined;
|
|
||||||
|
|
||||||
// @ts-ignore
|
|
||||||
return async (c: Context, next: Next) => {
|
|
||||||
if (!files) {
|
|
||||||
const manifest =
|
|
||||||
opts?.manifest || ((await import("bknd/dist/manifest.json")).default as Manifest);
|
|
||||||
files = Object.values(manifest).flatMap((asset) => [asset.file, ...(asset.css || [])]);
|
|
||||||
}
|
|
||||||
|
|
||||||
const path = c.req.path.substring(1);
|
|
||||||
if (files.includes(path)) {
|
|
||||||
try {
|
|
||||||
const content = await import(/* @vite-ignore */ `bknd/static/${path}?raw`, {
|
|
||||||
assert: { type: "text" },
|
|
||||||
}).then((m) => m.default);
|
|
||||||
|
|
||||||
if (content) {
|
|
||||||
return c.body(content, {
|
|
||||||
headers: {
|
|
||||||
"Content-Type": guessMimeType(path),
|
|
||||||
"Cache-Control": "public, max-age=31536000, immutable",
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
} catch (e) {
|
|
||||||
console.error("Error serving static file:", e);
|
|
||||||
return c.text("File not found", 404);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
await next();
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { genericSqlite } from "bknd";
|
import { genericSqlite } from "bknd/data";
|
||||||
import { DatabaseSync } from "node:sqlite";
|
import { DatabaseSync } from "node:sqlite";
|
||||||
|
|
||||||
export type NodeSqliteConnectionConfig = {
|
export type NodeSqliteConnectionConfig = {
|
||||||
|
|||||||
@@ -3,8 +3,9 @@ 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/storage";
|
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, type App } from "bknd";
|
import { config as $config } from "bknd/core";
|
||||||
import { $console } from "bknd/utils";
|
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,16 +29,17 @@ 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(
|
|
||||||
{
|
{
|
||||||
serveStatic: serveStatic({ root }),
|
|
||||||
...config,
|
...config,
|
||||||
|
serveStatic: serveStatic({ root }),
|
||||||
},
|
},
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
args ?? { env: process.env },
|
args ?? { env: process.env },
|
||||||
opts,
|
opts,
|
||||||
);
|
);
|
||||||
|
registerLocalMediaAdapter(app);
|
||||||
|
return app;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function createHandler<Env = NodeEnv>(
|
export function createHandler<Env = NodeEnv>(
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
import { readFile, readdir, stat, unlink, writeFile } from "node:fs/promises";
|
import { readFile, readdir, stat, unlink, writeFile } from "node:fs/promises";
|
||||||
import type { FileBody, FileListObject, FileMeta, FileUploadPayload } from "bknd";
|
import { isFile } from "bknd/utils";
|
||||||
import { StorageAdapter, guessMimeType } from "bknd";
|
import type { FileBody, FileListObject, FileMeta, FileUploadPayload } from "bknd/media";
|
||||||
import { parse, s, isFile } from "bknd/utils";
|
import { StorageAdapter, guessMimeType as guess } from "bknd/media";
|
||||||
|
import { parse, s } from "core/object/schema";
|
||||||
|
|
||||||
export const localAdapterConfig = s.object(
|
export const localAdapterConfig = s.object(
|
||||||
{
|
{
|
||||||
@@ -83,7 +84,7 @@ export class StorageLocalAdapter extends StorageAdapter {
|
|||||||
async getObject(key: string, headers: Headers): Promise<Response> {
|
async getObject(key: string, headers: Headers): Promise<Response> {
|
||||||
try {
|
try {
|
||||||
const content = await readFile(`${this.config.path}/${key}`);
|
const content = await readFile(`${this.config.path}/${key}`);
|
||||||
const mimeType = guessMimeType(key);
|
const mimeType = guess(key);
|
||||||
|
|
||||||
return new Response(content, {
|
return new Response(content, {
|
||||||
status: 200,
|
status: 200,
|
||||||
@@ -105,7 +106,7 @@ export class StorageLocalAdapter extends StorageAdapter {
|
|||||||
async getObjectMeta(key: string): Promise<FileMeta> {
|
async getObjectMeta(key: string): Promise<FileMeta> {
|
||||||
const stats = await stat(`${this.config.path}/${key}`);
|
const stats = await stat(`${this.config.path}/${key}`);
|
||||||
return {
|
return {
|
||||||
type: guessMimeType(key) || "application/octet-stream",
|
type: guess(key) || "application/octet-stream",
|
||||||
size: stats.size,
|
size: stats.size,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,14 +1,10 @@
|
|||||||
import { registries } from "bknd";
|
import type { App } from "bknd";
|
||||||
import { type LocalAdapterConfig, StorageLocalAdapter } from "./StorageLocalAdapter";
|
import { type LocalAdapterConfig, StorageLocalAdapter } from "./StorageLocalAdapter";
|
||||||
|
|
||||||
export * from "./StorageLocalAdapter";
|
export * from "./StorageLocalAdapter";
|
||||||
|
|
||||||
let registered = false;
|
export function registerLocalMediaAdapter(app: App) {
|
||||||
export function registerLocalMediaAdapter() {
|
app.module.media.adapters.set("local", StorageLocalAdapter);
|
||||||
if (!registered) {
|
|
||||||
registries.media.register("local", StorageLocalAdapter);
|
|
||||||
registered = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (config: Partial<LocalAdapterConfig> = {}) => {
|
return (config: Partial<LocalAdapterConfig> = {}) => {
|
||||||
const adapter = new StorageLocalAdapter(config);
|
const adapter = new StorageLocalAdapter(config);
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { Connection } from "bknd";
|
import type { Connection } from "bknd/data";
|
||||||
import { bunSqlite } from "../bun/connection/BunSqliteConnection";
|
import { bunSqlite } from "../bun/connection/BunSqliteConnection";
|
||||||
|
|
||||||
export function sqlite(config?: { url: string }): Connection {
|
export function sqlite(config?: { url: string }): Connection {
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { type Connection, libsql } from "bknd";
|
import { type Connection, libsql } from "bknd/data";
|
||||||
|
|
||||||
export function sqlite(config: { url: string }): Connection {
|
export function sqlite(config: { url: string }): Connection {
|
||||||
return libsql(config);
|
return libsql(config);
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { Connection } from "bknd";
|
import type { Connection } from "bknd/data";
|
||||||
import { nodeSqlite } from "../node/connection/NodeSqliteConnection";
|
import { nodeSqlite } from "../node/connection/NodeSqliteConnection";
|
||||||
|
|
||||||
export function sqlite(config?: { url: string }): Connection {
|
export function sqlite(config?: { url: string }): Connection {
|
||||||
|
|||||||
@@ -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>(
|
||||||
|
|||||||
@@ -1,9 +1,8 @@
|
|||||||
import type { DB } from "bknd";
|
import { Authenticator, AuthPermissions, Role, type Strategy } from "auth";
|
||||||
import * as AuthPermissions from "auth/auth-permissions";
|
import type { PasswordStrategy } from "auth/authenticate/strategies";
|
||||||
import type { AuthStrategy } from "auth/authenticate/strategies/Strategy";
|
import type { DB } from "core";
|
||||||
import type { PasswordStrategy } from "auth/authenticate/strategies/PasswordStrategy";
|
|
||||||
import { $console, secureRandomString, transformObject } from "core/utils";
|
import { $console, secureRandomString, transformObject } from "core/utils";
|
||||||
import type { Entity, EntityManager } from "data/entities";
|
import type { Entity, EntityManager } from "data";
|
||||||
import { em, entity, enumm, type FieldSchema } 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";
|
||||||
@@ -11,11 +10,9 @@ 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";
|
import { usersFields } from "./auth-entities";
|
||||||
import { Authenticator } from "./authenticate/Authenticator";
|
|
||||||
import { Role } from "./authorize/Role";
|
|
||||||
|
|
||||||
export type UserFieldSchema = FieldSchema<typeof AppAuth.usersFields>;
|
export type UserFieldSchema = FieldSchema<typeof AppAuth.usersFields>;
|
||||||
declare module "bknd" {
|
declare module "core" {
|
||||||
interface Users extends AppEntity, UserFieldSchema {}
|
interface Users extends AppEntity, UserFieldSchema {}
|
||||||
interface DB {
|
interface DB {
|
||||||
users: Users;
|
users: Users;
|
||||||
@@ -91,7 +88,7 @@ export class AppAuth extends Module<AppAuthSchema> {
|
|||||||
this.ctx.guard.registerPermissions(AuthPermissions);
|
this.ctx.guard.registerPermissions(AuthPermissions);
|
||||||
}
|
}
|
||||||
|
|
||||||
isStrategyEnabled(strategy: AuthStrategy | string) {
|
isStrategyEnabled(strategy: Strategy | string) {
|
||||||
const name = typeof strategy === "string" ? strategy : strategy.getName();
|
const name = typeof strategy === "string" ? strategy : strategy.getName();
|
||||||
// for now, password is always active
|
// for now, password is always active
|
||||||
if (name === "password") return true;
|
if (name === "password") return true;
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import type { AuthActionResponse } from "auth/api/AuthController";
|
import type { AuthActionResponse } from "auth/api/AuthController";
|
||||||
import type { AppAuthSchema } from "auth/auth-schema";
|
import type { AppAuthSchema } from "auth/auth-schema";
|
||||||
import type { AuthResponse, SafeUser, AuthStrategy } from "bknd";
|
import type { AuthResponse, SafeUser, Strategy } from "auth/authenticate/Authenticator";
|
||||||
import { type BaseModuleApiOptions, ModuleApi } from "modules/ModuleApi";
|
import { type BaseModuleApiOptions, ModuleApi } from "modules/ModuleApi";
|
||||||
|
|
||||||
export type AuthApiOptions = BaseModuleApiOptions & {
|
export type AuthApiOptions = BaseModuleApiOptions & {
|
||||||
@@ -39,7 +39,7 @@ export class AuthApi extends ModuleApi<AuthApiOptions> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async actionSchema(strategy: string, action: string) {
|
async actionSchema(strategy: string, action: string) {
|
||||||
return this.get<AuthStrategy>([strategy, "actions", action, "schema.json"]);
|
return this.get<Strategy>([strategy, "actions", action, "schema.json"]);
|
||||||
}
|
}
|
||||||
|
|
||||||
async action(strategy: string, action: string, input: any) {
|
async action(strategy: string, action: string, input: any) {
|
||||||
|
|||||||
@@ -1,11 +1,9 @@
|
|||||||
import type { SafeUser } from "bknd";
|
import { type AppAuth, AuthPermissions, type SafeUser, type Strategy } from "auth";
|
||||||
import type { AuthStrategy } from "auth/authenticate/strategies/Strategy";
|
import { transformObject } from "core/utils";
|
||||||
import type { AppAuth } from "auth/AppAuth";
|
import { DataPermissions } from "data";
|
||||||
import * as AuthPermissions from "auth/auth-permissions";
|
|
||||||
import * as DataPermissions from "data/permissions";
|
|
||||||
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, parse, InvalidSchemaError, transformObject } from "bknd/utils";
|
import { describeRoute, jsc, s, parse, InvalidSchemaError } from "core/object/schema";
|
||||||
|
|
||||||
export type AuthActionResponse = {
|
export type AuthActionResponse = {
|
||||||
success: boolean;
|
success: boolean;
|
||||||
@@ -32,7 +30,7 @@ export class AuthController extends Controller {
|
|||||||
return this.em.repo(entity_name as "users");
|
return this.em.repo(entity_name as "users");
|
||||||
}
|
}
|
||||||
|
|
||||||
private registerStrategyActions(strategy: AuthStrategy, mainHono: Hono<ServerEnv>) {
|
private registerStrategyActions(strategy: Strategy, mainHono: Hono<ServerEnv>) {
|
||||||
if (!this.auth.isStrategyEnabled(strategy)) {
|
if (!this.auth.isStrategyEnabled(strategy)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { Permission } from "core/security/Permission";
|
import { Permission } from "core";
|
||||||
|
|
||||||
export const createUser = new Permission("auth.user.create");
|
export const createUser = new Permission("auth.user.create");
|
||||||
//export const updateUser = new Permission("auth.user.update");
|
//export const updateUser = new Permission("auth.user.update");
|
||||||
|
|||||||
@@ -1,6 +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 { objectTransform, s } from "bknd/utils";
|
import { objectTransform } from "core/utils";
|
||||||
|
import { s } from "core/object/schema";
|
||||||
|
|
||||||
export const Strategies = {
|
export const Strategies = {
|
||||||
password: {
|
password: {
|
||||||
|
|||||||
@@ -1,15 +1,14 @@
|
|||||||
import type { DB } from "bknd";
|
import { type DB, Exception } from "core";
|
||||||
import { Exception } from "core/errors";
|
|
||||||
import { addFlashMessage } from "core/server/flash";
|
import { addFlashMessage } from "core/server/flash";
|
||||||
import type { Context } from "hono";
|
import { runtimeSupports, truncate, $console } from "core/utils";
|
||||||
|
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, serializeSigned } 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 { InvalidConditionsException } from "auth/errors";
|
import { InvalidConditionsException } from "auth/errors";
|
||||||
import { s, parse, secret, runtimeSupports, truncate, $console } from "bknd/utils";
|
import { s, parse, secret } from "core/object/schema";
|
||||||
import type { AuthStrategy } from "./strategies/Strategy";
|
|
||||||
|
|
||||||
type Input = any; // workaround
|
type Input = any; // workaround
|
||||||
export type JWTPayload = Parameters<typeof sign>[0];
|
export type JWTPayload = Parameters<typeof sign>[0];
|
||||||
@@ -22,6 +21,17 @@ export type StrategyAction<S extends s.ObjectSchema = s.ObjectSchema> = {
|
|||||||
};
|
};
|
||||||
export type StrategyActions = Partial<Record<StrategyActionName, StrategyAction>>;
|
export type StrategyActions = Partial<Record<StrategyActionName, StrategyAction>>;
|
||||||
|
|
||||||
|
// @todo: add schema to interface to ensure proper inference
|
||||||
|
// @todo: add tests (e.g. invalid strategy_value)
|
||||||
|
export interface Strategy {
|
||||||
|
getController: (auth: Authenticator) => Hono<any>;
|
||||||
|
getType: () => string;
|
||||||
|
getMode: () => "form" | "external";
|
||||||
|
getName: () => string;
|
||||||
|
toJSON: (secrets?: boolean) => any;
|
||||||
|
getActions?: () => StrategyActions;
|
||||||
|
}
|
||||||
|
|
||||||
export type User = DB["users"];
|
export type User = DB["users"];
|
||||||
|
|
||||||
export type ProfileExchange = {
|
export type ProfileExchange = {
|
||||||
@@ -48,7 +58,6 @@ export const cookieConfig = s
|
|||||||
secure: s.boolean({ default: true }),
|
secure: s.boolean({ default: true }),
|
||||||
httpOnly: s.boolean({ default: true }),
|
httpOnly: s.boolean({ default: true }),
|
||||||
expires: s.number({ default: defaultCookieExpires }), // seconds
|
expires: s.number({ default: defaultCookieExpires }), // seconds
|
||||||
partitioned: s.boolean({ default: false }),
|
|
||||||
renew: s.boolean({ default: true }),
|
renew: s.boolean({ default: true }),
|
||||||
pathSuccess: s.string({ default: "/" }),
|
pathSuccess: s.string({ default: "/" }),
|
||||||
pathLoggedOut: s.string({ default: "/" }),
|
pathLoggedOut: s.string({ default: "/" }),
|
||||||
@@ -88,7 +97,7 @@ export type AuthResolveOptions = {
|
|||||||
};
|
};
|
||||||
export type AuthUserResolver = (
|
export type AuthUserResolver = (
|
||||||
action: AuthAction,
|
action: AuthAction,
|
||||||
strategy: AuthStrategy,
|
strategy: Strategy,
|
||||||
profile: ProfileExchange,
|
profile: ProfileExchange,
|
||||||
opts?: AuthResolveOptions,
|
opts?: AuthResolveOptions,
|
||||||
) => Promise<ProfileExchange | undefined>;
|
) => Promise<ProfileExchange | undefined>;
|
||||||
@@ -98,9 +107,7 @@ type AuthClaims = SafeUser & {
|
|||||||
exp?: number;
|
exp?: number;
|
||||||
};
|
};
|
||||||
|
|
||||||
export class Authenticator<
|
export class Authenticator<Strategies extends Record<string, Strategy> = Record<string, Strategy>> {
|
||||||
Strategies extends Record<string, AuthStrategy> = Record<string, AuthStrategy>,
|
|
||||||
> {
|
|
||||||
private readonly config: AuthConfig;
|
private readonly config: AuthConfig;
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
@@ -113,7 +120,7 @@ export class Authenticator<
|
|||||||
|
|
||||||
async resolveLogin(
|
async resolveLogin(
|
||||||
c: Context,
|
c: Context,
|
||||||
strategy: AuthStrategy,
|
strategy: Strategy,
|
||||||
profile: Partial<SafeUser>,
|
profile: Partial<SafeUser>,
|
||||||
verify: (user: User) => Promise<void>,
|
verify: (user: User) => Promise<void>,
|
||||||
opts?: AuthResolveOptions,
|
opts?: AuthResolveOptions,
|
||||||
@@ -151,7 +158,7 @@ export class Authenticator<
|
|||||||
|
|
||||||
async resolveRegister(
|
async resolveRegister(
|
||||||
c: Context,
|
c: Context,
|
||||||
strategy: AuthStrategy,
|
strategy: Strategy,
|
||||||
profile: CreateUser,
|
profile: CreateUser,
|
||||||
verify: (user: User) => Promise<void>,
|
verify: (user: User) => Promise<void>,
|
||||||
opts?: AuthResolveOptions,
|
opts?: AuthResolveOptions,
|
||||||
@@ -210,7 +217,7 @@ export class Authenticator<
|
|||||||
|
|
||||||
await addFlashMessage(c, String(error), "error");
|
await addFlashMessage(c, String(error), "error");
|
||||||
|
|
||||||
const referer = this.getSafeUrl(c, c.req.header("Referer") ?? "/");
|
const referer = this.getSafeUrl(c, opts?.redirect ?? c.req.header("Referer") ?? "/");
|
||||||
return c.redirect(referer);
|
return c.redirect(referer);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -220,7 +227,7 @@ export class Authenticator<
|
|||||||
|
|
||||||
strategy<
|
strategy<
|
||||||
StrategyName extends keyof Strategies,
|
StrategyName extends keyof Strategies,
|
||||||
Strat extends AuthStrategy = Strategies[StrategyName],
|
Strat extends Strategy = Strategies[StrategyName],
|
||||||
>(strategy: StrategyName): Strat {
|
>(strategy: StrategyName): Strat {
|
||||||
try {
|
try {
|
||||||
return this.strategies[strategy] as unknown as Strat;
|
return this.strategies[strategy] as unknown as Strat;
|
||||||
@@ -327,11 +334,6 @@ export class Authenticator<
|
|||||||
await setSignedCookie(c, "auth", token, secret, this.cookieOptions);
|
await setSignedCookie(c, "auth", token, secret, this.cookieOptions);
|
||||||
}
|
}
|
||||||
|
|
||||||
async unsafeGetAuthCookie(token: string): Promise<string | undefined> {
|
|
||||||
// this works for as long as cookieOptions.prefix is not set
|
|
||||||
return serializeSigned("auth", token, this.config.jwt.secret, this.cookieOptions);
|
|
||||||
}
|
|
||||||
|
|
||||||
private deleteAuthCookie(c: Context) {
|
private deleteAuthCookie(c: Context) {
|
||||||
$console.debug("deleting auth cookie");
|
$console.debug("deleting auth cookie");
|
||||||
deleteCookie(c, "auth", this.cookieOptions);
|
deleteCookie(c, "auth", this.cookieOptions);
|
||||||
|
|||||||
@@ -1,11 +1,9 @@
|
|||||||
import type { User } from "bknd";
|
import { type Authenticator, InvalidCredentialsException, type User } from "auth";
|
||||||
import type { Authenticator } from "auth/authenticate/Authenticator";
|
|
||||||
import { InvalidCredentialsException } from "auth/errors";
|
|
||||||
import { hash, $console } from "core/utils";
|
import { hash, $console } 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 { AuthStrategy } from "./Strategy";
|
import { Strategy } from "./Strategy";
|
||||||
import { s, parse, jsc } from "bknd/utils";
|
import { s, parse, jsc } from "core/object/schema";
|
||||||
|
|
||||||
const schema = s
|
const schema = s
|
||||||
.object({
|
.object({
|
||||||
@@ -16,7 +14,7 @@ const schema = s
|
|||||||
|
|
||||||
export type PasswordStrategyOptions = s.Static<typeof schema>;
|
export type PasswordStrategyOptions = s.Static<typeof schema>;
|
||||||
|
|
||||||
export class PasswordStrategy extends AuthStrategy<typeof schema> {
|
export class PasswordStrategy extends Strategy<typeof schema> {
|
||||||
constructor(config: Partial<PasswordStrategyOptions> = {}) {
|
constructor(config: Partial<PasswordStrategyOptions> = {}) {
|
||||||
super(config as any, "password", "password", "form");
|
super(config as any, "password", "password", "form");
|
||||||
|
|
||||||
@@ -35,7 +33,7 @@ export class PasswordStrategy extends AuthStrategy<typeof schema> {
|
|||||||
private getPayloadSchema() {
|
private getPayloadSchema() {
|
||||||
return s.object({
|
return s.object({
|
||||||
email: s.string({
|
email: s.string({
|
||||||
format: "email",
|
pattern: /^[\w-\.\+_]+@([\w-]+\.)+[\w-]{2,4}$/,
|
||||||
}),
|
}),
|
||||||
password: s.string({
|
password: s.string({
|
||||||
minLength: 8, // @todo: this should be configurable
|
minLength: 8, // @todo: this should be configurable
|
||||||
|
|||||||
@@ -5,11 +5,11 @@ import type {
|
|||||||
StrategyActions,
|
StrategyActions,
|
||||||
} from "../Authenticator";
|
} from "../Authenticator";
|
||||||
import type { Hono } from "hono";
|
import type { Hono } from "hono";
|
||||||
import { type s, parse } from "bknd/utils";
|
import { type s, parse } from "core/object/schema";
|
||||||
|
|
||||||
export type StrategyMode = "form" | "external";
|
export type StrategyMode = "form" | "external";
|
||||||
|
|
||||||
export abstract class AuthStrategy<Schema extends s.Schema = s.Schema> {
|
export abstract class Strategy<Schema extends s.Schema = s.Schema> {
|
||||||
protected actions: StrategyActions = {};
|
protected actions: StrategyActions = {};
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import type * as oauth from "oauth4webapi";
|
import type * as oauth from "oauth4webapi";
|
||||||
import { OAuthStrategy } from "./OAuthStrategy";
|
import { OAuthStrategy } from "./OAuthStrategy";
|
||||||
import { s } from "bknd/utils";
|
import { s } from "core/object/schema";
|
||||||
|
|
||||||
type SupportedTypes = "oauth2" | "oidc";
|
type SupportedTypes = "oauth2" | "oidc";
|
||||||
|
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
import type { Authenticator, AuthAction } from "auth/authenticate/Authenticator";
|
import type { AuthAction, Authenticator } from "auth";
|
||||||
|
import { Exception, isDebug } from "core";
|
||||||
|
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 { s, filterKeys } from "bknd/utils";
|
import { Strategy } from "auth/authenticate/strategies/Strategy";
|
||||||
import { Exception } from "core/errors";
|
import { s } from "core/object/schema";
|
||||||
import { isDebug } from "core/env";
|
|
||||||
import { AuthStrategy } from "../Strategy";
|
|
||||||
|
|
||||||
type ConfiguredIssuers = keyof typeof issuers;
|
type ConfiguredIssuers = keyof typeof issuers;
|
||||||
type SupportedTypes = "oauth2" | "oidc";
|
type SupportedTypes = "oauth2" | "oidc";
|
||||||
@@ -70,7 +70,7 @@ export class OAuthCallbackException extends Exception {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export class OAuthStrategy extends AuthStrategy<typeof schemaProvided> {
|
export class OAuthStrategy extends Strategy<typeof schemaProvided> {
|
||||||
constructor(config: ProvidedOAuthConfig) {
|
constructor(config: ProvidedOAuthConfig) {
|
||||||
super(config, "oauth", config.name, "external");
|
super(config, "oauth", config.name, "external");
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
import { Exception } from "core/errors";
|
import { Exception, Permission } from "core";
|
||||||
import { $console, objectTransform } from "core/utils";
|
import { $console, objectTransform } from "core/utils";
|
||||||
import { Permission } from "core/security/Permission";
|
|
||||||
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,4 +1,4 @@
|
|||||||
import { Permission } from "core/security/Permission";
|
import { Permission } from "core";
|
||||||
|
|
||||||
export class RolePermission {
|
export class RolePermission {
|
||||||
constructor(
|
constructor(
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
import { Exception } from "core/errors";
|
import { Exception, isDebug } from "core";
|
||||||
import { isDebug } from "core/env";
|
import { HttpStatus } from "core/utils";
|
||||||
import { HttpStatus } from "bknd/utils";
|
|
||||||
|
|
||||||
export class AuthException extends Exception {
|
export class AuthException extends Exception {
|
||||||
getSafeErrorAndCode() {
|
getSafeErrorAndCode() {
|
||||||
|
|||||||
@@ -0,0 +1,22 @@
|
|||||||
|
export { UserExistsException, UserNotFoundException, InvalidCredentialsException } from "./errors";
|
||||||
|
export {
|
||||||
|
type ProfileExchange,
|
||||||
|
type Strategy,
|
||||||
|
type User,
|
||||||
|
type SafeUser,
|
||||||
|
type CreateUser,
|
||||||
|
type AuthResponse,
|
||||||
|
type UserPool,
|
||||||
|
type AuthAction,
|
||||||
|
type AuthUserResolver,
|
||||||
|
Authenticator,
|
||||||
|
authenticatorConfig,
|
||||||
|
jwtConfig,
|
||||||
|
} from "./authenticate/Authenticator";
|
||||||
|
|
||||||
|
export { AppAuth, type UserFieldSchema } from "./AppAuth";
|
||||||
|
|
||||||
|
export { Guard, type GuardUserContext, type GuardConfig } from "./authorize/Guard";
|
||||||
|
export { Role } from "./authorize/Role";
|
||||||
|
|
||||||
|
export * as AuthPermissions from "./auth-permissions";
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
import type { Permission } from "core/security/Permission";
|
import type { Permission } from "core";
|
||||||
import { $console, patternMatch } from "bknd/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";
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import type { CliCommand } from "cli/types";
|
|||||||
import { typewriter, wait } from "cli/utils/cli";
|
import { typewriter, wait } from "cli/utils/cli";
|
||||||
import { execAsync, getVersion } from "cli/utils/sys";
|
import { execAsync, getVersion } from "cli/utils/sys";
|
||||||
import { Option } from "commander";
|
import { Option } from "commander";
|
||||||
import { env } from "bknd";
|
import { env } from "core";
|
||||||
import color from "picocolors";
|
import color from "picocolors";
|
||||||
import { overridePackageJson, updateBkndPackages } from "./npm";
|
import { overridePackageJson, updateBkndPackages } from "./npm";
|
||||||
import { type Template, templates, type TemplateSetupCtx } from "./templates";
|
import { type Template, templates, type TemplateSetupCtx } from "./templates";
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
import type { Config } from "@libsql/client/node";
|
import type { Config } from "@libsql/client/node";
|
||||||
import { StorageLocalAdapter } from "adapter/node/storage";
|
import type { App, CreateAppConfig } from "App";
|
||||||
|
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 { config, type App, type CreateAppConfig } from "bknd";
|
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 {
|
||||||
@@ -15,8 +15,8 @@ import {
|
|||||||
serveStatic,
|
serveStatic,
|
||||||
startServer,
|
startServer,
|
||||||
} from "./platform";
|
} from "./platform";
|
||||||
import { createRuntimeApp, makeConfig } from "bknd/adapter";
|
import { createRuntimeApp, makeConfig } from "adapter";
|
||||||
import { colorizeConsole, isBun } from "bknd/utils";
|
import { colorizeConsole, isBun } from "core/utils";
|
||||||
|
|
||||||
const env_files = [".env", ".dev.vars"];
|
const env_files = [".env", ".dev.vars"];
|
||||||
dotenv.config({
|
dotenv.config({
|
||||||
@@ -56,12 +56,6 @@ export const run: CliCommand = (program) => {
|
|||||||
.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 };
|
||||||
@@ -70,10 +64,12 @@ type MakeAppConfig = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
async function makeApp(config: MakeAppConfig) {
|
async function makeApp(config: MakeAppConfig) {
|
||||||
return await createRuntimeApp({
|
const app = await createRuntimeApp({
|
||||||
serveStatic: await serveStatic(config.server?.platform ?? "node"),
|
serveStatic: await serveStatic(config.server?.platform ?? "node"),
|
||||||
...config,
|
...config,
|
||||||
});
|
});
|
||||||
|
registerLocalMediaAdapter(app);
|
||||||
|
return app;
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function makeConfigApp(_config: CliBkndConfig, platform?: Platform) {
|
export async function makeConfigApp(_config: CliBkndConfig, platform?: Platform) {
|
||||||
|
|||||||
@@ -1,7 +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 { env, isDebug } from "bknd";
|
import { env, isDebug } from "core";
|
||||||
import { $console } from "bknd/utils";
|
import { $console } from "core/utils";
|
||||||
|
|
||||||
type Properties = { [p: string]: any };
|
type Properties = { [p: string]: any };
|
||||||
|
|
||||||
|
|||||||
@@ -6,3 +6,23 @@ export interface IEmailDriver<Data = unknown, Options = object> {
|
|||||||
options?: Options,
|
options?: Options,
|
||||||
): Promise<Data>;
|
): 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;
|
||||||
|
|||||||
@@ -0,0 +1,47 @@
|
|||||||
|
import type { Hono, MiddlewareHandler } from "hono";
|
||||||
|
|
||||||
|
export { Exception, BkndError } from "./errors";
|
||||||
|
export { isDebug, env } from "./env";
|
||||||
|
export { type PrimaryFieldType, config, type DB, type AppEntity } from "./config";
|
||||||
|
export { AwsClient } from "./clients/aws/AwsClient";
|
||||||
|
export {
|
||||||
|
SimpleRenderer,
|
||||||
|
type TemplateObject,
|
||||||
|
type TemplateTypes,
|
||||||
|
type SimpleRendererOptions,
|
||||||
|
} from "./template/SimpleRenderer";
|
||||||
|
export { SchemaObject } from "./object/SchemaObject";
|
||||||
|
export { DebugLogger } from "./utils/DebugLogger";
|
||||||
|
export { Permission } from "./security/Permission";
|
||||||
|
export {
|
||||||
|
exp,
|
||||||
|
makeValidator,
|
||||||
|
type FilterQuery,
|
||||||
|
type Primitive,
|
||||||
|
isPrimitive,
|
||||||
|
type TExpression,
|
||||||
|
type BooleanLike,
|
||||||
|
isBooleanLike,
|
||||||
|
} from "./object/query/query";
|
||||||
|
export { Registry, type Constructor } from "./registry/Registry";
|
||||||
|
export { getFlashMessage } from "./server/flash";
|
||||||
|
/* export {
|
||||||
|
s,
|
||||||
|
parse,
|
||||||
|
jsc,
|
||||||
|
describeRoute,
|
||||||
|
schemaToSpec,
|
||||||
|
openAPISpecs,
|
||||||
|
type ParseOptions,
|
||||||
|
InvalidSchemaError,
|
||||||
|
} from "./object/schema"; */
|
||||||
|
|
||||||
|
export * from "./drivers";
|
||||||
|
export * from "./events";
|
||||||
|
|
||||||
|
// compatibility
|
||||||
|
export type Middleware = MiddlewareHandler<any, any, any>;
|
||||||
|
export interface ClassController {
|
||||||
|
getController: () => Hono<any, any, any>;
|
||||||
|
getMiddleware?: MiddlewareHandler<any, any, any>;
|
||||||
|
}
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
import { get, has, omit, set } from "lodash-es";
|
import { get, has, omit, set } from "lodash-es";
|
||||||
import { type s, parse, stripMark, getFullPathKeys, mergeObjectWith, deepFreeze } from "bknd/utils";
|
import { getFullPathKeys, mergeObjectWith } from "../utils";
|
||||||
|
import { type s, parse, stripMark } from "core/object/schema";
|
||||||
|
|
||||||
export type SchemaObjectOptions<Schema extends s.Schema> = {
|
export type SchemaObjectOptions<Schema extends s.Schema> = {
|
||||||
onUpdate?: (config: s.Static<Schema>) => void | Promise<void>;
|
onUpdate?: (config: s.Static<Schema>) => void | Promise<void>;
|
||||||
@@ -25,16 +26,14 @@ export class SchemaObject<Schema extends TSchema = TSchema> {
|
|||||||
initial?: Partial<s.Static<Schema>>,
|
initial?: Partial<s.Static<Schema>>,
|
||||||
private options?: SchemaObjectOptions<Schema>,
|
private options?: SchemaObjectOptions<Schema>,
|
||||||
) {
|
) {
|
||||||
this._default = deepFreeze(_schema.template({}, { withOptional: true }) as any);
|
this._default = _schema.template({}, { withOptional: true }) as any;
|
||||||
this._value = deepFreeze(
|
this._value = parse(_schema, structuredClone(initial ?? {}), {
|
||||||
parse(_schema, structuredClone(initial ?? {}), {
|
withDefaults: true,
|
||||||
withDefaults: true,
|
//withExtendedDefaults: true,
|
||||||
//withExtendedDefaults: true,
|
forceParse: this.isForceParse(),
|
||||||
forceParse: this.isForceParse(),
|
skipMark: this.isForceParse(),
|
||||||
skipMark: this.isForceParse(),
|
});
|
||||||
}),
|
this._config = Object.freeze(this._value);
|
||||||
);
|
|
||||||
this._config = deepFreeze(this._value);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected isForceParse(): boolean {
|
protected isForceParse(): boolean {
|
||||||
@@ -77,8 +76,8 @@ export class SchemaObject<Schema extends TSchema = TSchema> {
|
|||||||
// regardless of "noEmit" – this should always be triggered
|
// regardless of "noEmit" – this should always be triggered
|
||||||
const updatedConfig = await this.onBeforeUpdate(this._config, valid);
|
const updatedConfig = await this.onBeforeUpdate(this._config, valid);
|
||||||
|
|
||||||
this._value = deepFreeze(updatedConfig);
|
this._value = updatedConfig;
|
||||||
this._config = deepFreeze(updatedConfig);
|
this._config = Object.freeze(updatedConfig);
|
||||||
|
|
||||||
if (noEmit !== true) {
|
if (noEmit !== true) {
|
||||||
await this.options?.onUpdate?.(this._config);
|
await this.options?.onUpdate?.(this._config);
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { PrimaryFieldType } from "core/config";
|
import type { PrimaryFieldType } from "core";
|
||||||
|
|
||||||
export type Primitive = PrimaryFieldType | string | number | boolean;
|
export type Primitive = PrimaryFieldType | string | number | boolean;
|
||||||
export function isPrimitive(value: any): value is Primitive {
|
export function isPrimitive(value: any): value is Primitive {
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import * as s from "jsonv-ts";
|
|||||||
export { validator as jsc, type Options } from "jsonv-ts/hono";
|
export { validator as jsc, type Options } from "jsonv-ts/hono";
|
||||||
export { describeRoute, schemaToSpec, openAPISpecs } from "jsonv-ts/hono";
|
export { describeRoute, schemaToSpec, openAPISpecs } from "jsonv-ts/hono";
|
||||||
|
|
||||||
export { secret, SecretSchema } from "./secret";
|
export { secret } from "./secret";
|
||||||
|
|
||||||
export { s };
|
export { s };
|
||||||
|
|
||||||
@@ -42,7 +42,6 @@ export type ParseOptions = {
|
|||||||
withDefaults?: boolean;
|
withDefaults?: boolean;
|
||||||
withExtendedDefaults?: boolean;
|
withExtendedDefaults?: boolean;
|
||||||
coerce?: boolean;
|
coerce?: boolean;
|
||||||
coerceDropUnknown?: boolean;
|
|
||||||
clone?: boolean;
|
clone?: boolean;
|
||||||
skipMark?: boolean; // @todo: do something with this
|
skipMark?: boolean; // @todo: do something with this
|
||||||
forceParse?: boolean; // @todo: do something with this
|
forceParse?: boolean; // @todo: do something with this
|
||||||
@@ -60,10 +59,7 @@ export function parse<S extends s.Schema, Options extends ParseOptions = ParseOp
|
|||||||
opts?: Options,
|
opts?: Options,
|
||||||
): Options extends { coerce: true } ? s.StaticCoerced<S> : s.Static<S> {
|
): Options extends { coerce: true } ? s.StaticCoerced<S> : s.Static<S> {
|
||||||
const schema = (opts?.clone ? cloneSchema(_schema as any) : _schema) as s.Schema;
|
const schema = (opts?.clone ? cloneSchema(_schema as any) : _schema) as s.Schema;
|
||||||
let value =
|
let value = opts?.coerce !== false ? schema.coerce(v) : v;
|
||||||
opts?.coerce !== false
|
|
||||||
? schema.coerce(v, { dropUnknown: opts?.coerceDropUnknown ?? false })
|
|
||||||
: v;
|
|
||||||
if (opts?.withDefaults !== false) {
|
if (opts?.withDefaults !== false) {
|
||||||
value = schema.template(value, {
|
value = schema.template(value, {
|
||||||
withOptional: true,
|
withOptional: true,
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
import { describe, expect, test } from "bun:test";
|
import { describe, expect, test } from "bun:test";
|
||||||
import { SimpleRenderer } from "./SimpleRenderer";
|
import { SimpleRenderer } from "core";
|
||||||
|
|
||||||
describe(SimpleRenderer, () => {
|
describe(SimpleRenderer, () => {
|
||||||
const renderer = new SimpleRenderer(
|
const renderer = new SimpleRenderer(
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import { datetimeStringLocal } from "./dates";
|
import { datetimeStringLocal } from "core/utils";
|
||||||
import colors from "picocolors";
|
import colors from "picocolors";
|
||||||
import { env } from "core/env";
|
import { env } from "core";
|
||||||
|
|
||||||
function hasColors() {
|
function hasColors() {
|
||||||
try {
|
try {
|
||||||
|
|||||||
@@ -13,18 +13,3 @@ export * from "./uuid";
|
|||||||
export * from "./test";
|
export * from "./test";
|
||||||
export * from "./runtime";
|
export * from "./runtime";
|
||||||
export * from "./numbers";
|
export * from "./numbers";
|
||||||
export {
|
|
||||||
s,
|
|
||||||
stripMark,
|
|
||||||
mark,
|
|
||||||
stringIdentifier,
|
|
||||||
SecretSchema,
|
|
||||||
secret,
|
|
||||||
parse,
|
|
||||||
jsc,
|
|
||||||
describeRoute,
|
|
||||||
schemaToSpec,
|
|
||||||
openAPISpecs,
|
|
||||||
type ParseOptions,
|
|
||||||
InvalidSchemaError,
|
|
||||||
} from "./schema";
|
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user