@docstack/client 0.0.3 → 0.0.5

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.
Files changed (53) hide show
  1. package/lib/core/attribute.js +406 -0
  2. package/lib/core/attribute.js.map +1 -0
  3. package/lib/core/class.d.ts +13 -14
  4. package/lib/core/class.js +761 -0
  5. package/lib/core/class.js.map +1 -0
  6. package/lib/core/crypto-engine/index.js +229 -0
  7. package/lib/core/crypto-engine/index.js.map +1 -0
  8. package/lib/core/crypto-engine/utils.js +88 -0
  9. package/lib/core/crypto-engine/utils.js.map +1 -0
  10. package/lib/core/datamodel/index.js +1308 -0
  11. package/lib/core/datamodel/index.js.map +1 -0
  12. package/lib/core/domain.js +423 -0
  13. package/lib/core/domain.js.map +1 -0
  14. package/lib/core/index.js +520 -0
  15. package/lib/core/index.js.map +1 -0
  16. package/lib/core/job-engine/index.js +220 -0
  17. package/lib/core/job-engine/index.js.map +1 -0
  18. package/lib/core/policy-engine/index.js +232 -0
  19. package/lib/core/policy-engine/index.js.map +1 -0
  20. package/lib/core/query-engine/accumulators.js +258 -0
  21. package/lib/core/query-engine/accumulators.js.map +1 -0
  22. package/lib/core/query-engine/evaluator.js +179 -0
  23. package/lib/core/query-engine/evaluator.js.map +1 -0
  24. package/lib/core/query-engine/executor.js +405 -0
  25. package/lib/core/query-engine/executor.js.map +1 -0
  26. package/lib/core/query-engine/index.js +4 -0
  27. package/lib/core/query-engine/index.js.map +1 -0
  28. package/lib/core/query-engine/parser.js +515 -0
  29. package/lib/core/query-engine/parser.js.map +1 -0
  30. package/lib/core/query-engine/planner.js +330 -0
  31. package/lib/core/query-engine/planner.js.map +1 -0
  32. package/lib/core/stack.js +1817 -0
  33. package/lib/core/stack.js.map +1 -0
  34. package/lib/core/test-utils/docstack.js +222 -0
  35. package/lib/core/test-utils/docstack.js.map +1 -0
  36. package/lib/core/trigger/index.js +81 -0
  37. package/lib/core/trigger/index.js.map +1 -0
  38. package/lib/index.js +10 -4
  39. package/lib/index.js.map +1 -1
  40. package/lib/index.umd.js +10 -4
  41. package/lib/plugins/pouchdb.js +368 -0
  42. package/lib/plugins/pouchdb.js.map +1 -0
  43. package/lib/utils/crypto/index.js +34 -0
  44. package/lib/utils/crypto/index.js.map +1 -0
  45. package/lib/utils/index.js +58 -0
  46. package/lib/utils/index.js.map +1 -0
  47. package/lib/utils/logger/index.js +20 -0
  48. package/lib/utils/logger/index.js.map +1 -0
  49. package/lib/utils/logger/transport.js +28 -0
  50. package/lib/utils/logger/transport.js.map +1 -0
  51. package/lib/workers/dataModel.js +48 -0
  52. package/lib/workers/dataModel.js.map +1 -0
  53. package/package.json +2 -2
@@ -0,0 +1,520 @@
1
+ // import express, {Express} from 'express'
2
+ // import { static as exStatic } from 'express';
3
+ // import * as dotenv from "dotenv";
4
+ // import cors from "cors";
5
+ // dotenv.config({ path: './.env' })
6
+ import createlogger from "../utils/logger/index";
7
+ // import test from '../../../server/src//utils/dbManager/test';
8
+ // import { generateJwtKeys, generatePswKeys } from '../../../server/src/utils/crypto';
9
+ import ClientStack from './stack';
10
+ // import { login, JWTAuthPayload, setupAdminUser } from '../../../server/src//utils/auth';
11
+ // import memoryAdapter from "pouchdb-adapter-memory"
12
+ // import cookieParser from 'cookie-parser';
13
+ // import jwt from 'jsonwebtoken';
14
+ import Class from "./class";
15
+ import Domain from './domain';
16
+ import { Trigger } from "./trigger/index";
17
+ import { JobEngine } from "./job-engine/index";
18
+ // import AbstractClass from '../../shared/src//utils/stack/class';
19
+ import Attribute from './attribute';
20
+ // import { EventTarget } from 'node:events';
21
+ // let envPath = process.env.ENVFILE || "./.env";
22
+ // envPath = resolve(process.cwd(), envPath);
23
+ // dotenv.config({ path: envPath });
24
+ // [TODO] Implement DocStack.type in "remote" | "local"
25
+ // When is remote, open a websocket (socket.io) connection to given remote
26
+ // implement cases in each of stack methods (queries and doc creation)
27
+ // to actually send and receive messages
28
+ // [TODO][HARD] Think about authentication mechanism
29
+ // Probably support same rest authentication (jwtToken)
30
+ // but also api tokens
31
+ // Remote connection that require auth can be opened but
32
+ // cannot send or receive messages until authentication
33
+ /**
34
+ * The main entry point for the DocStack client library.
35
+ *
36
+ * DocStack manages multiple {@link ClientStack} instances and provides
37
+ * a unified interface for database operations, authentication, and
38
+ * class/attribute creation.
39
+ *
40
+ * The client emits a `ready` event when all stacks are initialized.
41
+ *
42
+ * @example
43
+ * ```typescript
44
+ * // Initialize DocStack with a single database
45
+ * const docstack = new DocStack({ name: 'my-app' });
46
+ *
47
+ * // Wait for ready
48
+ * docstack.addEventListener('ready', async () => {
49
+ * const stack = docstack.getStack('my-app');
50
+ * const taskClass = await stack.getClass('Task');
51
+ * });
52
+ *
53
+ * // Initialize with credentials for automatic authentication
54
+ * const docstack = new DocStack({
55
+ * name: 'my-app',
56
+ * credentials: { username: 'admin', password: 'secret' }
57
+ * });
58
+ * ```
59
+ *
60
+ * @extends EventTarget
61
+ */
62
+ class DocStack extends EventTarget {
63
+ async addStack(config) {
64
+ let stack;
65
+ if (typeof config == "object" && config.name) {
66
+ stack = await ClientStack.create(`db-${config.name}`, {
67
+ // defaults to leveldb
68
+ // adapter: 'memory',
69
+ plugins: [
70
+ // https://www.npmjs.com/package/pouchdb-adapter-memory
71
+ // memoryAdapter
72
+ ],
73
+ patches: config.patches,
74
+ credentials: config.credentials,
75
+ disableCryptoEngine: config.disableCryptoEngine,
76
+ });
77
+ }
78
+ else if (typeof config === "string") {
79
+ stack = await ClientStack.create(`db-${config}`, {
80
+ // defaults to leveldb
81
+ // adapter: 'memory',
82
+ plugins: [
83
+ // https://www.npmjs.com/package/pouchdb-adapter-memory
84
+ // memoryAdapter
85
+ ]
86
+ });
87
+ }
88
+ if (stack) {
89
+ this.stacks.push(stack);
90
+ // let window_ = window as Window & typeof globalThis & {
91
+ // stacks: ClientStack[]
92
+ // }
93
+ // if (window_.stacks) {
94
+ // window_.stacks.push(stack)
95
+ // }
96
+ return stack;
97
+ }
98
+ // await setupAdminUser();
99
+ }
100
+ async resetAll() {
101
+ try {
102
+ for (const stack of this.stacks) {
103
+ await stack.reset();
104
+ }
105
+ }
106
+ catch (e) {
107
+ throw new Error(e);
108
+ }
109
+ }
110
+ /**
111
+ * Returns all initialized stacks.
112
+ * @returns Array of ClientStack instances
113
+ */
114
+ getStacks() {
115
+ return this.stacks;
116
+ }
117
+ /**
118
+ * Authenticates a user on a specific stack.
119
+ *
120
+ * @param name - The stack name to authenticate against
121
+ * @param credentials - The user's login credentials
122
+ * @returns The authentication session proof
123
+ * @throws Error if the stack is not found
124
+ *
125
+ * @example
126
+ * ```typescript
127
+ * const proof = await docstack.authenticateStack('my-app', {
128
+ * username: 'user@example.com',
129
+ * password: 'password123'
130
+ * });
131
+ * ```
132
+ */
133
+ async authenticateStack(name, credentials) {
134
+ const stack = this.getStack(name);
135
+ if (!stack) {
136
+ throw new Error(`Stack '${name}' not found`);
137
+ }
138
+ return stack.authenticate(credentials);
139
+ }
140
+ /**
141
+ * Returns whether all stacks have been initialized.
142
+ * @returns `true` if ready, `false` otherwise
143
+ */
144
+ getReadyState() {
145
+ return this.readyState;
146
+ }
147
+ /**
148
+ * Resets all stacks and re-initializes them.
149
+ * Useful for testing or clearing all data.
150
+ */
151
+ async reset() {
152
+ try {
153
+ await this.resetAll();
154
+ await this.initStacks(this.config);
155
+ }
156
+ catch (e) {
157
+ throw new Error(e);
158
+ }
159
+ }
160
+ /**
161
+ * Creates a new DocStack client instance.
162
+ * Initializes all configured stacks asynchronously.
163
+ * Listen for the `ready` event to know when initialization is complete.
164
+ *
165
+ * @param config - One or more stack configurations
166
+ *
167
+ * @example
168
+ * ```typescript
169
+ * const docstack = new DocStack(
170
+ * { name: 'primary-db' },
171
+ * { name: 'backup-db' }
172
+ * );
173
+ *
174
+ * docstack.addEventListener('ready', () => {
175
+ * console.log('All stacks ready!');
176
+ * });
177
+ * ```
178
+ */
179
+ constructor(...config) {
180
+ super();
181
+ /** Array of stack configurations used for initialization. */
182
+ this.config = [];
183
+ /** Array of all initialized ClientStack instances. */
184
+ this.stacks = [];
185
+ this.logger = createlogger().child({ module: "client" });
186
+ this.initStacks = async (configs) => {
187
+ // TODO: Consider changing to Promise.all for concurrency
188
+ for (const config of configs) {
189
+ const stack = await this.addStack(config);
190
+ }
191
+ this.readyState = true;
192
+ this.dispatchEvent(new CustomEvent("ready", {
193
+ detail: {
194
+ stacks: this.stacks
195
+ }
196
+ }));
197
+ };
198
+ /**
199
+ * Gets a stack by its name or connection string.
200
+ *
201
+ * @param name - The stack name or connection identifier
202
+ * @returns The matching ClientStack, or `undefined` if not found
203
+ *
204
+ * @example
205
+ * ```typescript
206
+ * const stack = docstack.getStack('my-app');
207
+ * if (stack) {
208
+ * const users = await stack.query('SELECT * FROM User');
209
+ * }
210
+ * ```
211
+ */
212
+ this.getStack = (name) => {
213
+ return this.stacks.find(s => s.name == name || s.connection == name);
214
+ };
215
+ this.clearConnection = async (conn) => {
216
+ const fnLogger = this.logger.child({ method: 'clearConnection' });
217
+ try {
218
+ // const conn = req.params.conn;
219
+ if (!conn) {
220
+ throw new Error("Connection name not provided");
221
+ }
222
+ await ClientStack.clear(conn);
223
+ fnLogger.info('Internal database cleared');
224
+ // return res.status(200).json({ success: true, message: 'Internal database cleared' });
225
+ }
226
+ catch (e) {
227
+ throw new Error(e);
228
+ // return res.status(500).json({ success: false, error: 'An error occurred' });
229
+ }
230
+ };
231
+ /**
232
+ * Exports all documents from a stack.
233
+ *
234
+ * @param stackName - The name of the stack to export
235
+ * @returns All documents from the stack
236
+ * @throws Error if the stack is not found
237
+ */
238
+ this.export = async (stackName) => {
239
+ const stack = this.getStack(stackName);
240
+ if (stack) {
241
+ const dump = await stack.dump();
242
+ return dump;
243
+ }
244
+ else {
245
+ throw new Error(`Did not find any stack for name '${stackName}'`);
246
+ }
247
+ };
248
+ /**
249
+ * Creates a new Class in the specified stack.
250
+ *
251
+ * @param stackName - The name of the stack to create the class in
252
+ * @param name - The class name
253
+ * @param config - Configuration with type and description
254
+ * @throws Error if the stack is not found
255
+ *
256
+ * @example
257
+ * ```typescript
258
+ * await docstack.createClass('my-app', 'Product', {
259
+ * type: 'class',
260
+ * description: 'Product catalog items'
261
+ * });
262
+ * ```
263
+ */
264
+ this.createClass = async (stackName, name, config) => {
265
+ const fnLogger = this.logger.child({ method: 'createClass' });
266
+ const stack = this.getStack(stackName);
267
+ if (!stack) {
268
+ throw new Error(`Stack '${stackName}' not found`);
269
+ }
270
+ const { type, description } = config;
271
+ fnLogger.info("Args", {
272
+ stackName, name, config
273
+ });
274
+ try {
275
+ const newClass = await Class.create(stack, name, "class", description, {});
276
+ fnLogger.info(`class '${name}' created successfully.`, { classModel: newClass.getModel() });
277
+ }
278
+ catch (e) {
279
+ throw new Error(`Error during class '${name}' creation. ${e}`);
280
+ }
281
+ fnLogger.info('Class created successfully');
282
+ };
283
+ /**
284
+ * Creates a new Attribute on a Class in the specified stack.
285
+ *
286
+ * @param stackName - The name of the stack containing the class
287
+ * @param className - The class to add the attribute to
288
+ * @param params - Attribute configuration
289
+ * @throws Error if the stack or class is not found
290
+ *
291
+ * @example
292
+ * ```typescript
293
+ * await docstack.createAttribute('my-app', 'Product', {
294
+ * name: 'price',
295
+ * type: 'number',
296
+ * description: 'Product price in cents'
297
+ * });
298
+ * ```
299
+ */
300
+ this.createAttribute = async (stackName, className, params) => {
301
+ const fnLogger = this.logger.child({ method: 'createAttribute' });
302
+ const stack = this.getStack(stackName);
303
+ if (!stack) {
304
+ throw new Error(`Stack '${stackName}' not found`);
305
+ }
306
+ const { name, type, description, config } = params;
307
+ fnLogger.info(`Creating attribute for class '${className}' in stack '${stackName}'`, {
308
+ name, type, config
309
+ });
310
+ try {
311
+ // Loads the class object
312
+ let classObj = await stack.getClass(className);
313
+ if (classObj) {
314
+ let newAttribute = await Attribute.create(classObj, name, type, description, config);
315
+ fnLogger.info(`Attribute '${name}' added to class '${className}'`, { attributeModel: newAttribute.getModel() });
316
+ }
317
+ else {
318
+ throw new Error(`Failed to retrieve Class '${className}'`);
319
+ }
320
+ }
321
+ catch (e) {
322
+ fnLogger.error(`Error during attribute '${name}' creation: ${e}`);
323
+ throw new Error(`Error during attribute '${name}' creation: ${e}`);
324
+ }
325
+ };
326
+ this.readyState = false;
327
+ const fnLogger = this.logger.child({ method: "constructor" });
328
+ /*
329
+ this.app.use(logRequest)
330
+ // Enable CORS for all routes
331
+ if (process.env.NODE_ENV === 'development') {
332
+ logger.info("Development environment. Enabling CORS for :8080");
333
+ this.app.use(cors({
334
+ origin: 'http://localhost:8080',
335
+ // Replace with the origin of webpack dev server
336
+ methods: ['GET', 'POST'],
337
+ credentials: true,
338
+ }));
339
+ }
340
+ */
341
+ /*
342
+ // Use built-in middleware for parsing JSON and URL-encoded data
343
+ this.app.use(express.json());
344
+ this.app.use(express.urlencoded({ extended: true }));
345
+ this.app.use(cookieParser());
346
+ this.app.use((req, res, next) => {
347
+ if (!this.readyState) {
348
+ return res.status(503); // Service Unavailable.
349
+ }
350
+ // Server is ready to receive requests
351
+ next()
352
+ })
353
+ */
354
+ /*
355
+ this.app.use('/api/private', (req, res, next) => {
356
+ const token = req.cookies.jwtToken
357
+ if (!token) {
358
+ logger.error("No token provided")
359
+ return res.status(403).json({
360
+ success: false,
361
+ message: 'No token provided',
362
+ });
363
+ }
364
+ const secretKey = process.env.JWT_PUBLIC_KEY;
365
+ if (!secretKey || secretKey === '') {
366
+ logger.error("No secret key found")
367
+ return res.status(500).json({
368
+ success: false,
369
+ message: 'No secret key found',
370
+ });
371
+ }
372
+ jwt.verify(token, secretKey, async (err, payload: JWTAuthPayload) => {
373
+ if (err) {
374
+ logger.error("Invalid token", err)
375
+ return res.status(403).json({
376
+ success: false,
377
+ message: 'Invalid token',
378
+ });
379
+ } else {
380
+ // Check whether the session is still valid
381
+ const { sessionId } = payload;
382
+ const UserSessionClass = await this.store.getClass("UserSession");
383
+ const sessionCards = await UserSessionClass.getCards({
384
+ sessionId: { $eq: sessionId },
385
+ sessionStatus: { $eq: "active" }
386
+ }, null, 0, 1);
387
+ if (sessionCards.length === 0) {
388
+ return res.status(403).json({
389
+ success: false,
390
+ message: 'Session expired',
391
+ });
392
+ }
393
+ // TODO: Consider passing the session card to the next middleware
394
+ next();
395
+ }
396
+ });
397
+ })
398
+ */
399
+ // TODO: Serve the dashboard to a specific route, i.e.: admin
400
+ // this.app.use(exStatic('./dist'));
401
+ // TODO: Serve the static files from the build folder
402
+ // of the UI application
403
+ // this.app.get('*', (req, res) => {
404
+ // const templatePath = resolve(__dirname, './dist', 'index.html');
405
+ // res.sendFile(templatePath);
406
+ // });
407
+ /*
408
+ this.app.post('/login', async (req, res) => {
409
+ try {
410
+ const { username, password } = req.body;
411
+ const { responseCode, body, token } = await login(username, password);
412
+ // Append also the token to the response
413
+ let cookieOptions = {}
414
+ if (process.env.NODE_ENV === 'development') {
415
+ cookieOptions = { sameSite: 'None', secure: true, maxAge: 1000 * 60 * 15 };
416
+ logger.warn("Development mode: setting cookie options to SameSite=None; Secure=true for JWT token");
417
+ } else cookieOptions = { sameSite: 'Strict', httpOnly: true, maxAge: 1000 * 60 * 15 };
418
+
419
+ res.cookie('jwtToken', token, cookieOptions);
420
+ return res.status(responseCode).json(body);
421
+ } catch (error) {
422
+ console.error("Error during login", error);
423
+ return res.status(500).json({ success: false, error: 'An error occurred' });
424
+ }
425
+ });
426
+ */
427
+ /*
428
+ this.app.get('/api/private/reset', async (req, res) => {
429
+ try {
430
+ await this.reset();
431
+ return res.status(200).json({ success: true, message: 'Internal database reset' });
432
+ } catch (e) {
433
+ return res.status(500).json({ success: false, error: 'An error occurred' });
434
+ }
435
+ });
436
+ */
437
+ /*
438
+ this.app.get('/api/private/clear:conn', async (req, res) => {
439
+ try {
440
+ const conn = req.params.conn;
441
+ if (!conn) {
442
+ throw new Error("Connection name not provided");
443
+ }
444
+ await ClientStack.clear(conn);
445
+ return res.status(200).json({ success: true, message: 'Internal database cleared' });
446
+ } catch (e) {
447
+ logger.error("Error during database clear", e);
448
+ return res.status(500).json({ success: false, error: 'An error occurred' });
449
+ }
450
+ });
451
+ */
452
+ /*
453
+ this.app.get('/api/private/test', (req, res) => {
454
+ return res.status(200).json({ message: 'Hello from the server! This is a private route' });
455
+ });
456
+ */
457
+ /*
458
+ this.app.post('/api/private/create-class/:name', async (req, res) => {
459
+ const { name } = req.params;
460
+ const { type, description } = req.query;
461
+ logger.info("create-class - received request", {
462
+ params: req.params,
463
+ query: req.query
464
+ })
465
+
466
+ try {
467
+ const newClass = await Class.create(
468
+ this.store, name, type as string, description as string
469
+ );
470
+ logger.info("create-class", `class '${name}' created successfully.`,
471
+ {classModel: newClass.getModel()}
472
+ )
473
+ } catch (e) {
474
+ logger.error(`Error during class '${name} creation: ${e}`);
475
+ return res.status(500).json({ success: false, error: 'An error occurred' });
476
+ }
477
+
478
+ return res.status(200).json({ success: true, message: 'Class created successfully' });
479
+ })
480
+ */
481
+ /*
482
+ this.app.put('/api/private/create-attribute/:name', async (req, res) => {
483
+ const className = req.params.name;
484
+ const { name, type, config } = req.body;
485
+ logger.info(`create-attribute - for class '${className}'`, {
486
+ name, type, config
487
+ });
488
+
489
+ try {
490
+ // Loads the class object
491
+ let classObj = await this.store.getClass(className);
492
+ let newAttribute = await Attribute.create(classObj, name, type, config);
493
+ logger.info(`create-attribute - Attribute '${name}' added to class '${className}'`,
494
+ {attributeModel: newAttribute.getModel()}
495
+ );
496
+ } catch (e) {
497
+ logger.error(`Error during attribute '${name}' creation: ${e}`)
498
+ }
499
+ })
500
+ */
501
+ // const port = process.env.SERVER_PORT || 5000;
502
+ // const server = this.app.listen(port, () => logger.info(`Listening on port ${port}`));
503
+ // Procedure that should run once only
504
+ // can be considered "setup procedures"
505
+ //generatePswKeys()
506
+ // generateJwtKeys()
507
+ // Server "startup procedures"
508
+ // setTimeout(test, 1000)
509
+ this.initStacks(config);
510
+ this.addEventListener("ready", () => fnLogger.info("DocStack client successfully initialized"));
511
+ }
512
+ }
513
+ /**
514
+ * Core exports from the DocStack client library.
515
+ *
516
+ * @module @docstack/client
517
+ */
518
+ export { ClientStack, Trigger, Class, Attribute, Domain, JobEngine };
519
+ export { DocStack };
520
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/core/index.ts"],"names":[],"mappings":"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"}