@hatk/hatk 0.0.1-alpha.40 → 0.0.1-alpha.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +16 -553
- package/dist/database/adapters/sqlite.d.ts.map +1 -1
- package/dist/database/adapters/sqlite.js +2 -1
- package/dist/database/db.d.ts +23 -0
- package/dist/database/db.d.ts.map +1 -1
- package/dist/database/db.js +81 -4
- package/dist/dev-entry.d.ts.map +1 -1
- package/dist/dev-entry.js +2 -1
- package/dist/hooks.d.ts +24 -3
- package/dist/hooks.d.ts.map +1 -1
- package/dist/hooks.js +34 -7
- package/dist/indexer.d.ts +2 -0
- package/dist/indexer.d.ts.map +1 -1
- package/dist/indexer.js +17 -0
- package/dist/labels.d.ts +2 -0
- package/dist/labels.d.ts.map +1 -1
- package/dist/labels.js +5 -0
- package/dist/lexicon-resolve.d.ts.map +1 -1
- package/dist/lexicon-resolve.js +27 -112
- package/dist/lexicons/com/atproto/label/defs.json +75 -0
- package/dist/lexicons/com/atproto/moderation/defs.json +30 -0
- package/dist/lexicons/com/atproto/repo/strongRef.json +24 -0
- package/dist/lexicons/dev/hatk/createRecord.json +40 -0
- package/dist/lexicons/dev/hatk/createReport.json +48 -0
- package/dist/lexicons/dev/hatk/deleteRecord.json +25 -0
- package/dist/lexicons/dev/hatk/describeCollections.json +41 -0
- package/dist/lexicons/dev/hatk/describeFeeds.json +29 -0
- package/dist/lexicons/dev/hatk/describeLabels.json +31 -0
- package/dist/lexicons/dev/hatk/getFeed.json +30 -0
- package/dist/lexicons/dev/hatk/getPreferences.json +19 -0
- package/dist/lexicons/dev/hatk/getRecord.json +26 -0
- package/dist/lexicons/dev/hatk/getRecords.json +32 -0
- package/dist/lexicons/dev/hatk/putPreference.json +28 -0
- package/dist/lexicons/dev/hatk/putRecord.json +41 -0
- package/dist/lexicons/dev/hatk/searchRecords.json +32 -0
- package/dist/lexicons/dev/hatk/uploadBlob.json +23 -0
- package/dist/main.js +2 -1
- package/dist/oauth/server.d.ts.map +1 -1
- package/dist/oauth/server.js +3 -2
- package/dist/pds-proxy.d.ts.map +1 -1
- package/dist/pds-proxy.js +15 -0
- package/dist/server-init.d.ts.map +1 -1
- package/dist/server-init.js +3 -2
- package/dist/server.d.ts.map +1 -1
- package/dist/server.js +91 -13
- package/dist/templates/feed.tpl +14 -0
- package/dist/templates/hook.tpl +5 -0
- package/dist/templates/label.tpl +15 -0
- package/dist/templates/og.tpl +17 -0
- package/dist/templates/seed.tpl +11 -0
- package/dist/templates/setup.tpl +5 -0
- package/dist/templates/test-feed.tpl +19 -0
- package/dist/templates/test-xrpc.tpl +19 -0
- package/dist/templates/xrpc.tpl +41 -0
- package/dist/xrpc.d.ts +14 -0
- package/dist/xrpc.d.ts.map +1 -1
- package/dist/xrpc.js +27 -0
- package/package.json +3 -2
- package/public/admin.html +133 -0
- package/dist/cloudflare/container.d.ts +0 -73
- package/dist/cloudflare/container.d.ts.map +0 -1
- package/dist/cloudflare/container.js +0 -232
- package/dist/cloudflare/hooks.d.ts +0 -33
- package/dist/cloudflare/hooks.d.ts.map +0 -1
- package/dist/cloudflare/hooks.js +0 -40
- package/dist/cloudflare/init.d.ts +0 -27
- package/dist/cloudflare/init.d.ts.map +0 -1
- package/dist/cloudflare/init.js +0 -103
- package/dist/cloudflare/worker.d.ts +0 -27
- package/dist/cloudflare/worker.d.ts.map +0 -1
- package/dist/cloudflare/worker.js +0 -54
- package/dist/database/adapters/d1.d.ts +0 -56
- package/dist/database/adapters/d1.d.ts.map +0 -1
- package/dist/database/adapters/d1.js +0 -108
- package/dist/db.d.ts +0 -134
- package/dist/db.d.ts.map +0 -1
- package/dist/db.js +0 -1327
- package/dist/fts.d.ts +0 -20
- package/dist/fts.d.ts.map +0 -1
- package/dist/fts.js +0 -767
- package/dist/oauth/hooks.d.ts +0 -10
- package/dist/oauth/hooks.d.ts.map +0 -1
- package/dist/oauth/hooks.js +0 -40
- package/dist/schema.d.ts +0 -59
- package/dist/schema.d.ts.map +0 -1
- package/dist/schema.js +0 -387
- package/dist/test-browser.d.ts +0 -14
- package/dist/test-browser.d.ts.map +0 -1
- package/dist/test-browser.js +0 -26
|
@@ -1,108 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Translate DuckDB-style $1, $2 placeholders to ? placeholders.
|
|
3
|
-
* Same logic as the SQLite adapter — D1 uses ? style.
|
|
4
|
-
*/
|
|
5
|
-
function translateParams(sql, params) {
|
|
6
|
-
if (params.length === 0)
|
|
7
|
-
return { sql, params };
|
|
8
|
-
const expandedParams = [];
|
|
9
|
-
const translated = sql.replace(/\$(\d+)/g, (_match, numStr) => {
|
|
10
|
-
const idx = parseInt(numStr) - 1;
|
|
11
|
-
expandedParams.push(params[idx]);
|
|
12
|
-
return '?';
|
|
13
|
-
});
|
|
14
|
-
return { sql: translated, params: expandedParams };
|
|
15
|
-
}
|
|
16
|
-
export class D1Adapter {
|
|
17
|
-
dialect = 'd1';
|
|
18
|
-
db;
|
|
19
|
-
txBuffer = null;
|
|
20
|
-
/**
|
|
21
|
-
* Initialize with an existing D1 binding (from env.DB in Worker/Container).
|
|
22
|
-
* The `path` argument is ignored — D1 bindings are configured in wrangler.jsonc.
|
|
23
|
-
*/
|
|
24
|
-
async open(_path) {
|
|
25
|
-
// D1 binding is injected via initWithBinding(), not opened by path.
|
|
26
|
-
// This is a no-op if already initialized.
|
|
27
|
-
if (!this.db) {
|
|
28
|
-
throw new Error('D1Adapter requires initWithBinding(db) before use');
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
/** Set the D1 binding directly (called before open). */
|
|
32
|
-
initWithBinding(db) {
|
|
33
|
-
this.db = db;
|
|
34
|
-
}
|
|
35
|
-
close() {
|
|
36
|
-
// D1 bindings don't need explicit cleanup
|
|
37
|
-
}
|
|
38
|
-
async query(sql, params = []) {
|
|
39
|
-
const t = translateParams(sql, params);
|
|
40
|
-
const stmt = t.params.length > 0 ? this.db.prepare(t.sql).bind(...t.params) : this.db.prepare(t.sql);
|
|
41
|
-
const result = await stmt.all();
|
|
42
|
-
return result.results;
|
|
43
|
-
}
|
|
44
|
-
async execute(sql, params = []) {
|
|
45
|
-
const t = translateParams(sql, params);
|
|
46
|
-
const stmt = t.params.length > 0 ? this.db.prepare(t.sql).bind(...t.params) : this.db.prepare(t.sql);
|
|
47
|
-
// If inside a transaction, buffer instead of executing
|
|
48
|
-
if (this.txBuffer !== null) {
|
|
49
|
-
this.txBuffer.push(stmt);
|
|
50
|
-
return;
|
|
51
|
-
}
|
|
52
|
-
await stmt.run();
|
|
53
|
-
}
|
|
54
|
-
async executeMultiple(sql) {
|
|
55
|
-
// D1's exec() can be unreliable with multi-statement SQL.
|
|
56
|
-
// Split on semicolons and run each statement via prepare().run().
|
|
57
|
-
const statements = sql
|
|
58
|
-
.split(';')
|
|
59
|
-
.map((s) => s.trim())
|
|
60
|
-
.filter((s) => s.length > 0);
|
|
61
|
-
for (const stmt of statements) {
|
|
62
|
-
await this.db.prepare(stmt).run();
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
async beginTransaction() {
|
|
66
|
-
this.txBuffer = [];
|
|
67
|
-
}
|
|
68
|
-
async commit() {
|
|
69
|
-
if (this.txBuffer === null)
|
|
70
|
-
return;
|
|
71
|
-
const statements = this.txBuffer;
|
|
72
|
-
this.txBuffer = null;
|
|
73
|
-
if (statements.length > 0) {
|
|
74
|
-
await this.db.batch(statements);
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
async rollback() {
|
|
78
|
-
this.txBuffer = null;
|
|
79
|
-
}
|
|
80
|
-
async createBulkInserter(table, columns, options) {
|
|
81
|
-
const placeholders = columns.map(() => '?').join(', ');
|
|
82
|
-
const conflict = options?.onConflict === 'ignore' ? ' OR IGNORE' : options?.onConflict === 'replace' ? ' OR REPLACE' : '';
|
|
83
|
-
const sqlTemplate = `INSERT${conflict} INTO ${table} (${columns.join(', ')}) VALUES (${placeholders})`;
|
|
84
|
-
const buffer = [];
|
|
85
|
-
const batchSize = options?.batchSize ?? 200; // smaller batches for D1 CPU limits
|
|
86
|
-
const db = this.db;
|
|
87
|
-
const flush = async () => {
|
|
88
|
-
if (buffer.length > 0) {
|
|
89
|
-
await db.batch(buffer);
|
|
90
|
-
buffer.length = 0;
|
|
91
|
-
}
|
|
92
|
-
};
|
|
93
|
-
return {
|
|
94
|
-
append(values) {
|
|
95
|
-
buffer.push(db.prepare(sqlTemplate).bind(...values));
|
|
96
|
-
if (buffer.length >= batchSize) {
|
|
97
|
-
flush();
|
|
98
|
-
}
|
|
99
|
-
},
|
|
100
|
-
async flush() {
|
|
101
|
-
await flush();
|
|
102
|
-
},
|
|
103
|
-
async close() {
|
|
104
|
-
await flush();
|
|
105
|
-
},
|
|
106
|
-
};
|
|
107
|
-
}
|
|
108
|
-
}
|
package/dist/db.d.ts
DELETED
|
@@ -1,134 +0,0 @@
|
|
|
1
|
-
import { type TableSchema } from './schema.ts';
|
|
2
|
-
import type { Row } from './lex-types.ts';
|
|
3
|
-
export declare function closeDatabase(): void;
|
|
4
|
-
export declare function runBatch(operations: Array<{
|
|
5
|
-
sql: string;
|
|
6
|
-
params: any[];
|
|
7
|
-
}>): Promise<void>;
|
|
8
|
-
export declare function initDatabase(dbPath: string, tableSchemas: TableSchema[], ddlStatements: string[]): Promise<void>;
|
|
9
|
-
export declare function getCursor(key: string): Promise<string | null>;
|
|
10
|
-
export declare function setCursor(key: string, value: string): Promise<void>;
|
|
11
|
-
export declare function getRepoStatus(did: string): Promise<string | null>;
|
|
12
|
-
export declare function setRepoStatus(did: string, status: string, rev?: string, opts?: {
|
|
13
|
-
retryCount?: number;
|
|
14
|
-
retryAfter?: number;
|
|
15
|
-
handle?: string | null;
|
|
16
|
-
}): Promise<void>;
|
|
17
|
-
export declare function getRepoRev(did: string): Promise<string | null>;
|
|
18
|
-
export declare function getRepoRetryInfo(did: string): Promise<{
|
|
19
|
-
retryCount: number;
|
|
20
|
-
retryAfter: number;
|
|
21
|
-
} | null>;
|
|
22
|
-
export declare function listRetryEligibleRepos(maxRetries: number): Promise<string[]>;
|
|
23
|
-
export declare function listPendingRepos(): Promise<string[]>;
|
|
24
|
-
export declare function listAllRepoStatuses(): Promise<Array<{
|
|
25
|
-
did: string;
|
|
26
|
-
status: string;
|
|
27
|
-
}>>;
|
|
28
|
-
export declare function listReposPaginated(opts?: {
|
|
29
|
-
limit?: number;
|
|
30
|
-
offset?: number;
|
|
31
|
-
status?: string;
|
|
32
|
-
q?: string;
|
|
33
|
-
}): Promise<{
|
|
34
|
-
repos: any[];
|
|
35
|
-
total: number;
|
|
36
|
-
}>;
|
|
37
|
-
export declare function getCollectionCounts(): Promise<Record<string, number>>;
|
|
38
|
-
export declare function getSchemaDump(): Promise<string>;
|
|
39
|
-
export declare function buildInsertOp(collection: string, uri: string, cid: string, authorDid: string, record: Record<string, any>): {
|
|
40
|
-
sql: string;
|
|
41
|
-
params: any[];
|
|
42
|
-
};
|
|
43
|
-
export declare function insertRecord(collection: string, uri: string, cid: string, authorDid: string, record: Record<string, any>): Promise<void>;
|
|
44
|
-
export declare function deleteRecord(collection: string, uri: string): Promise<void>;
|
|
45
|
-
export declare function insertLabels(labels: Array<{
|
|
46
|
-
src: string;
|
|
47
|
-
uri: string;
|
|
48
|
-
val: string;
|
|
49
|
-
neg?: boolean;
|
|
50
|
-
cts?: string;
|
|
51
|
-
exp?: string;
|
|
52
|
-
}>): Promise<void>;
|
|
53
|
-
export declare function queryLabelsForUris(uris: string[]): Promise<Map<string, Array<{
|
|
54
|
-
src: string;
|
|
55
|
-
uri: string;
|
|
56
|
-
val: string;
|
|
57
|
-
neg: boolean;
|
|
58
|
-
cts: string;
|
|
59
|
-
exp: string | null;
|
|
60
|
-
}>>>;
|
|
61
|
-
export interface BulkRecord {
|
|
62
|
-
collection: string;
|
|
63
|
-
uri: string;
|
|
64
|
-
cid: string;
|
|
65
|
-
did: string;
|
|
66
|
-
record: Record<string, any>;
|
|
67
|
-
}
|
|
68
|
-
export declare function bulkInsertRecords(records: BulkRecord[]): Promise<number>;
|
|
69
|
-
interface QueryOpts {
|
|
70
|
-
limit?: number;
|
|
71
|
-
cursor?: string;
|
|
72
|
-
filters?: Record<string, string>;
|
|
73
|
-
sort?: string;
|
|
74
|
-
order?: 'asc' | 'desc';
|
|
75
|
-
}
|
|
76
|
-
export declare function queryRecords(collection: string, opts?: QueryOpts): Promise<{
|
|
77
|
-
records: any[];
|
|
78
|
-
cursor?: string;
|
|
79
|
-
}>;
|
|
80
|
-
export declare function getRecordByUri(uri: string): Promise<any | null>;
|
|
81
|
-
export declare function getRecordsByUris(collection: string, uris: string[]): Promise<any[]>;
|
|
82
|
-
/**
|
|
83
|
-
* Multi-phase search across any collection's records.
|
|
84
|
-
*
|
|
85
|
-
* 1. **BM25** — Full-text search via DuckDB FTS. Multi-word queries use conjunctive
|
|
86
|
-
* mode (ALL terms required) to avoid spurious single-token matches.
|
|
87
|
-
* 2. **Exact substring** — ILIKE scan on all TEXT/JSON columns catches phrase matches
|
|
88
|
-
* that BM25 missed or ranked low (e.g. "bad bunny"). Results are prepended to BM25.
|
|
89
|
-
* 3. **Recent rows** — ILIKE scan of rows ingested since the last FTS rebuild, so newly
|
|
90
|
-
* written records are immediately searchable before the index catches up.
|
|
91
|
-
* 4. **Fuzzy** — Jaro-Winkler similarity fallback for typo tolerance when earlier phases
|
|
92
|
-
* return fewer than `limit` results.
|
|
93
|
-
*
|
|
94
|
-
* All phases derive searchable columns generically from the collection schema — no
|
|
95
|
-
* column names are hardcoded.
|
|
96
|
-
*/
|
|
97
|
-
export declare function searchRecords(collection: string, query: string, opts?: {
|
|
98
|
-
limit?: number;
|
|
99
|
-
cursor?: string;
|
|
100
|
-
fuzzy?: boolean;
|
|
101
|
-
}): Promise<{
|
|
102
|
-
records: any[];
|
|
103
|
-
cursor?: string;
|
|
104
|
-
}>;
|
|
105
|
-
export declare function querySQL(sql: string, params?: any[]): Promise<any[]>;
|
|
106
|
-
export declare function runSQL(sql: string, ...params: any[]): Promise<void>;
|
|
107
|
-
export declare function getSchema(collection: string): TableSchema | undefined;
|
|
108
|
-
export declare function countByField(collection: string, field: string, value: string): Promise<number>;
|
|
109
|
-
export declare function countByFieldBatch(collection: string, field: string, values: string[]): Promise<Map<string, number>>;
|
|
110
|
-
export declare function findByField(collection: string, field: string, value: string): Promise<any | null>;
|
|
111
|
-
export declare function findByFieldBatch(collection: string, field: string, values: string[]): Promise<Map<string, any[]>>;
|
|
112
|
-
export declare function lookupByFieldBatch(collection: string, field: string, values: string[]): Promise<Map<string, Row<unknown>>>;
|
|
113
|
-
export declare function findUriByFields(collection: string, conditions: {
|
|
114
|
-
field: string;
|
|
115
|
-
value: string;
|
|
116
|
-
}[]): Promise<string | null>;
|
|
117
|
-
export declare function normalizeValue(v: any): any;
|
|
118
|
-
export declare function getChildRows(childTableName: string, parentUris: string[]): Promise<Map<string, any[]>>;
|
|
119
|
-
export declare function reshapeRow(row: any, childData?: Map<string, Map<string, any[]>>, unionData?: Map<string, Map<string, Map<string, any[]>>>): Row<unknown> | null;
|
|
120
|
-
export declare function packCursor(sortVal: unknown, cid: string): string;
|
|
121
|
-
export declare function unpackCursor(cursor: string): {
|
|
122
|
-
primary: string;
|
|
123
|
-
cid: string;
|
|
124
|
-
} | null;
|
|
125
|
-
export declare function queryLabelsByDid(did: string): Promise<any[]>;
|
|
126
|
-
export declare function searchAccounts(query: string, limit?: number): Promise<any[]>;
|
|
127
|
-
export declare function getAccountRecordCount(did: string): Promise<number>;
|
|
128
|
-
export declare function getAllRecordUrisForDid(did: string): Promise<string[]>;
|
|
129
|
-
export declare function isTakendownDid(did: string): Promise<boolean>;
|
|
130
|
-
export declare function getPreferences(did: string): Promise<Record<string, any>>;
|
|
131
|
-
export declare function putPreference(did: string, key: string, value: any): Promise<void>;
|
|
132
|
-
export declare function filterTakendownDids(dids: string[]): Promise<Set<string>>;
|
|
133
|
-
export {};
|
|
134
|
-
//# sourceMappingURL=db.d.ts.map
|
package/dist/db.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"db.d.ts","sourceRoot":"","sources":["../src/db.ts"],"names":[],"mappings":"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"}
|