@noxfly/noxus 3.0.0-dev.0 → 3.0.0-dev.10

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 (59) hide show
  1. package/README.md +132 -16
  2. package/dist/child.d.mts +118 -4
  3. package/dist/child.d.ts +118 -4
  4. package/dist/child.js +402 -859
  5. package/dist/child.js.map +1 -0
  6. package/dist/child.mjs +389 -847
  7. package/dist/child.mjs.map +1 -0
  8. package/dist/main.d.mts +517 -25
  9. package/dist/main.d.ts +517 -25
  10. package/dist/main.js +1088 -988
  11. package/dist/main.js.map +1 -0
  12. package/dist/main.mjs +983 -884
  13. package/dist/main.mjs.map +1 -0
  14. package/dist/preload.d.mts +28 -0
  15. package/dist/preload.d.ts +28 -0
  16. package/dist/preload.js +95 -0
  17. package/dist/preload.js.map +1 -0
  18. package/dist/preload.mjs +70 -0
  19. package/dist/preload.mjs.map +1 -0
  20. package/dist/renderer.d.mts +186 -23
  21. package/dist/renderer.d.ts +186 -23
  22. package/dist/renderer.js +170 -170
  23. package/dist/renderer.js.map +1 -0
  24. package/dist/renderer.mjs +159 -157
  25. package/dist/renderer.mjs.map +1 -0
  26. package/package.json +35 -21
  27. package/.editorconfig +0 -16
  28. package/.github/copilot-instructions.md +0 -32
  29. package/.vscode/settings.json +0 -3
  30. package/eslint.config.js +0 -109
  31. package/scripts/postbuild.js +0 -31
  32. package/src/DI/app-injector.ts +0 -151
  33. package/src/DI/injector-explorer.ts +0 -143
  34. package/src/DI/token.ts +0 -53
  35. package/src/app.ts +0 -217
  36. package/src/bootstrap.ts +0 -108
  37. package/src/decorators/controller.decorator.ts +0 -58
  38. package/src/decorators/guards.decorator.ts +0 -15
  39. package/src/decorators/injectable.decorator.ts +0 -81
  40. package/src/decorators/method.decorator.ts +0 -66
  41. package/src/decorators/middleware.decorator.ts +0 -15
  42. package/src/exceptions.ts +0 -57
  43. package/src/index.ts +0 -13
  44. package/src/main.ts +0 -26
  45. package/src/non-electron-process.ts +0 -22
  46. package/src/preload-bridge.ts +0 -75
  47. package/src/renderer-client.ts +0 -338
  48. package/src/renderer-events.ts +0 -110
  49. package/src/request.ts +0 -97
  50. package/src/router.ts +0 -353
  51. package/src/routes.ts +0 -78
  52. package/src/socket.ts +0 -73
  53. package/src/utils/forward-ref.ts +0 -31
  54. package/src/utils/logger.ts +0 -430
  55. package/src/utils/radix-tree.ts +0 -210
  56. package/src/utils/types.ts +0 -21
  57. package/src/window/window-manager.ts +0 -255
  58. package/tsconfig.json +0 -29
  59. package/tsup.config.ts +0 -34
package/dist/main.js CHANGED
@@ -86,113 +86,6 @@ var init_token = __esm({
86
86
  }
87
87
  });
88
88
 
89
- // src/DI/app-injector.ts
90
- function keyOf(k) {
91
- return k;
92
- }
93
- function inject(t) {
94
- return RootInjector.resolve(t);
95
- }
96
- var _AppInjector, AppInjector, RootInjector;
97
- var init_app_injector = __esm({
98
- "src/DI/app-injector.ts"() {
99
- "use strict";
100
- init_forward_ref();
101
- init_token();
102
- __name(keyOf, "keyOf");
103
- _AppInjector = class _AppInjector {
104
- constructor(name = null) {
105
- this.name = name;
106
- this.bindings = /* @__PURE__ */ new Map();
107
- this.singletons = /* @__PURE__ */ new Map();
108
- this.scoped = /* @__PURE__ */ new Map();
109
- }
110
- /**
111
- * Creates a child scope for per-request lifetime resolution.
112
- */
113
- createScope() {
114
- const scope = new _AppInjector();
115
- scope.bindings = this.bindings;
116
- scope.singletons = this.singletons;
117
- return scope;
118
- }
119
- /**
120
- * Registers a binding explicitly.
121
- */
122
- register(key, implementation, lifetime, deps = []) {
123
- const k = keyOf(key);
124
- if (!this.bindings.has(k)) {
125
- this.bindings.set(k, { lifetime, implementation, deps });
126
- }
127
- }
128
- /**
129
- * Resolves a dependency by token or class reference.
130
- */
131
- resolve(target) {
132
- if (target instanceof ForwardReference) {
133
- return this._resolveForwardRef(target);
134
- }
135
- const k = keyOf(target);
136
- const binding = this.bindings.get(k);
137
- if (!binding) {
138
- const name = target instanceof Token ? target.description : target.name ?? "unknown";
139
- throw new Error(
140
- `[Noxus DI] No binding found for "${name}".
141
- Did you forget to declare it in @Injectable({ deps }) or in bootstrapApplication({ singletons })?`
142
- );
143
- }
144
- switch (binding.lifetime) {
145
- case "transient":
146
- return this._instantiate(binding);
147
- case "scope": {
148
- if (this.scoped.has(k)) return this.scoped.get(k);
149
- const inst = this._instantiate(binding);
150
- this.scoped.set(k, inst);
151
- return inst;
152
- }
153
- case "singleton": {
154
- if (this.singletons.has(k)) return this.singletons.get(k);
155
- const inst = this._instantiate(binding);
156
- this.singletons.set(k, inst);
157
- if (binding.instance === void 0) {
158
- binding.instance = inst;
159
- }
160
- return inst;
161
- }
162
- }
163
- }
164
- // -------------------------------------------------------------------------
165
- _resolveForwardRef(ref) {
166
- return new Proxy({}, {
167
- get: /* @__PURE__ */ __name((_obj, prop, receiver) => {
168
- const realType = ref.forwardRefFn();
169
- const instance = this.resolve(realType);
170
- const value = Reflect.get(instance, prop, receiver);
171
- return typeof value === "function" ? value.bind(instance) : value;
172
- }, "get"),
173
- set: /* @__PURE__ */ __name((_obj, prop, value, receiver) => {
174
- const realType = ref.forwardRefFn();
175
- const instance = this.resolve(realType);
176
- return Reflect.set(instance, prop, value, receiver);
177
- }, "set"),
178
- getPrototypeOf: /* @__PURE__ */ __name(() => {
179
- const realType = ref.forwardRefFn();
180
- return realType.prototype;
181
- }, "getPrototypeOf")
182
- });
183
- }
184
- _instantiate(binding) {
185
- const resolvedDeps = binding.deps.map((dep) => this.resolve(dep));
186
- return new binding.implementation(...resolvedDeps);
187
- }
188
- };
189
- __name(_AppInjector, "AppInjector");
190
- AppInjector = _AppInjector;
191
- RootInjector = new AppInjector("root");
192
- __name(inject, "inject");
193
- }
194
- });
195
-
196
89
  // src/utils/logger.ts
197
90
  function getPrettyTimestamp() {
198
91
  const now = /* @__PURE__ */ new Date();
@@ -441,6 +334,10 @@ var init_logger = __esm({
441
334
  });
442
335
 
443
336
  // src/DI/injector-explorer.ts
337
+ var injector_explorer_exports = {};
338
+ __export(injector_explorer_exports, {
339
+ InjectorExplorer: () => InjectorExplorer
340
+ });
444
341
  var _InjectorExplorer, InjectorExplorer;
445
342
  var init_injector_explorer = __esm({
446
343
  "src/DI/injector-explorer.ts"() {
@@ -451,6 +348,13 @@ var init_injector_explorer = __esm({
451
348
  // -------------------------------------------------------------------------
452
349
  // Public API
453
350
  // -------------------------------------------------------------------------
351
+ /**
352
+ * Sets the callback used to register controllers.
353
+ * Must be called once before processPending (typically by bootstrapApplication).
354
+ */
355
+ static setControllerRegistrar(registrar) {
356
+ _InjectorExplorer.controllerRegistrar = registrar;
357
+ }
454
358
  static enqueue(reg) {
455
359
  if (_InjectorExplorer.processed && !_InjectorExplorer.accumulating) {
456
360
  _InjectorExplorer._registerImmediate(reg);
@@ -476,16 +380,37 @@ var init_injector_explorer = __esm({
476
380
  /**
477
381
  * Exits accumulation mode and flushes queued registrations
478
382
  * with the same two-phase guarantee as processPending.
383
+ * Serialised through a lock to prevent concurrent lazy loads from corrupting the queue.
479
384
  */
480
385
  static flushAccumulated(routeGuards = [], routeMiddlewares = [], pathPrefix = "") {
481
- _InjectorExplorer.accumulating = false;
482
- const queue = [..._InjectorExplorer.pending];
386
+ _InjectorExplorer.loadingLock = _InjectorExplorer.loadingLock.then(() => {
387
+ _InjectorExplorer.accumulating = false;
388
+ const queue = [..._InjectorExplorer.pending];
389
+ _InjectorExplorer.pending.length = 0;
390
+ _InjectorExplorer._phaseOne(queue);
391
+ for (const reg of queue) {
392
+ if (reg.isController) reg.pathPrefix = pathPrefix;
393
+ }
394
+ _InjectorExplorer._phaseTwo(queue, void 0, routeGuards, routeMiddlewares);
395
+ });
396
+ return _InjectorExplorer.loadingLock;
397
+ }
398
+ /**
399
+ * Returns a Promise that resolves once all pending flushAccumulated calls
400
+ * have completed. Useful for awaiting lazy-load serialisation.
401
+ */
402
+ static waitForFlush() {
403
+ return _InjectorExplorer.loadingLock;
404
+ }
405
+ /**
406
+ * Resets the explorer state. Intended for tests only.
407
+ */
408
+ static reset() {
483
409
  _InjectorExplorer.pending.length = 0;
484
- _InjectorExplorer._phaseOne(queue);
485
- for (const reg of queue) {
486
- if (reg.isController) reg.pathPrefix = pathPrefix;
487
- }
488
- _InjectorExplorer._phaseTwo(queue, void 0, routeGuards, routeMiddlewares);
410
+ _InjectorExplorer.processed = false;
411
+ _InjectorExplorer.accumulating = false;
412
+ _InjectorExplorer.loadingLock = Promise.resolve();
413
+ _InjectorExplorer.controllerRegistrar = null;
489
414
  }
490
415
  // -------------------------------------------------------------------------
491
416
  // Private helpers
@@ -496,8 +421,15 @@ var init_injector_explorer = __esm({
496
421
  RootInjector.register(reg.key, reg.implementation, reg.lifetime, reg.deps);
497
422
  }
498
423
  }
499
- /** Phase 2: resolve singletons and register controllers in the router. */
424
+ /** Phase 2: validate deps, resolve singletons and register controllers via the registrar callback. */
500
425
  static _phaseTwo(queue, overrides, routeGuards = [], routeMiddlewares = []) {
426
+ for (const reg of queue) {
427
+ for (const dep of reg.deps) {
428
+ if (!RootInjector.bindings.has(dep) && !RootInjector.singletons.has(dep)) {
429
+ Logger.warn(`[Noxus DI] "${reg.implementation.name}" declares dep "${dep.name ?? dep}" which has no binding`);
430
+ }
431
+ }
432
+ }
501
433
  for (const reg of queue) {
502
434
  if (overrides?.has(reg.key)) {
503
435
  const override = overrides.get(reg.key);
@@ -509,9 +441,15 @@ var init_injector_explorer = __esm({
509
441
  RootInjector.resolve(reg.key);
510
442
  }
511
443
  if (reg.isController) {
512
- const { Router: Router2 } = (init_router(), __toCommonJS(router_exports));
513
- const router = RootInjector.resolve(Router2);
514
- router.registerController(reg.implementation, reg.pathPrefix ?? "", routeGuards, routeMiddlewares);
444
+ if (!_InjectorExplorer.controllerRegistrar) {
445
+ throw new Error("[Noxus DI] No controller registrar set. Call InjectorExplorer.setControllerRegistrar() before processing.");
446
+ }
447
+ _InjectorExplorer.controllerRegistrar(
448
+ reg.implementation,
449
+ reg.pathPrefix ?? "",
450
+ routeGuards,
451
+ routeMiddlewares
452
+ );
515
453
  } else if (reg.lifetime !== "singleton") {
516
454
  Logger.log(`Registered ${reg.implementation.name} as ${reg.lifetime}`);
517
455
  }
@@ -522,10 +460,8 @@ var init_injector_explorer = __esm({
522
460
  if (reg.lifetime === "singleton") {
523
461
  RootInjector.resolve(reg.key);
524
462
  }
525
- if (reg.isController) {
526
- const { Router: Router2 } = (init_router(), __toCommonJS(router_exports));
527
- const router = RootInjector.resolve(Router2);
528
- router.registerController(reg.implementation);
463
+ if (reg.isController && _InjectorExplorer.controllerRegistrar) {
464
+ _InjectorExplorer.controllerRegistrar(reg.implementation, "", [], []);
529
465
  }
530
466
  }
531
467
  };
@@ -533,904 +469,950 @@ var init_injector_explorer = __esm({
533
469
  _InjectorExplorer.pending = [];
534
470
  _InjectorExplorer.processed = false;
535
471
  _InjectorExplorer.accumulating = false;
472
+ _InjectorExplorer.loadingLock = Promise.resolve();
473
+ _InjectorExplorer.controllerRegistrar = null;
536
474
  InjectorExplorer = _InjectorExplorer;
537
475
  }
538
476
  });
539
477
 
540
- // src/decorators/controller.decorator.ts
541
- function Controller(options = {}) {
542
- return (target) => {
543
- const meta = {
544
- deps: options.deps ?? []
545
- };
546
- controllerMetaMap.set(target, meta);
547
- InjectorExplorer.enqueue({
548
- key: target,
549
- implementation: target,
550
- lifetime: "scope",
551
- deps: options.deps ?? [],
552
- isController: true
553
- });
554
- };
478
+ // src/DI/app-injector.ts
479
+ function keyOf(k) {
480
+ return k;
555
481
  }
556
- function getControllerMetadata(target) {
557
- return controllerMetaMap.get(target);
482
+ function resetRootInjector() {
483
+ RootInjector.bindings.clear();
484
+ RootInjector.singletons.clear();
485
+ RootInjector.scoped.clear();
486
+ const { InjectorExplorer: InjectorExplorer2 } = (init_injector_explorer(), __toCommonJS(injector_explorer_exports));
487
+ InjectorExplorer2.reset();
558
488
  }
559
- var controllerMetaMap;
560
- var init_controller_decorator = __esm({
561
- "src/decorators/controller.decorator.ts"() {
562
- "use strict";
563
- init_injector_explorer();
564
- controllerMetaMap = /* @__PURE__ */ new WeakMap();
565
- __name(Controller, "Controller");
566
- __name(getControllerMetadata, "getControllerMetadata");
567
- }
568
- });
569
-
570
- // src/decorators/injectable.decorator.ts
571
- function Injectable(options = {}) {
572
- const { lifetime = "scope", deps = [] } = options;
573
- return (target) => {
574
- if (typeof target !== "function" || !target.prototype) {
575
- throw new Error(`@Injectable can only be applied to classes, not ${typeof target}`);
576
- }
577
- const key = target;
578
- InjectorExplorer.enqueue({
579
- key,
580
- implementation: key,
581
- lifetime,
582
- deps,
583
- isController: false
584
- });
585
- };
489
+ function inject(t) {
490
+ return RootInjector.resolve(t);
586
491
  }
587
- var init_injectable_decorator = __esm({
588
- "src/decorators/injectable.decorator.ts"() {
492
+ var _AppInjector, AppInjector, RootInjector;
493
+ var init_app_injector = __esm({
494
+ "src/DI/app-injector.ts"() {
589
495
  "use strict";
590
- init_injector_explorer();
496
+ init_forward_ref();
591
497
  init_token();
592
- __name(Injectable, "Injectable");
593
- }
594
- });
595
-
596
- // src/decorators/method.decorator.ts
597
- function isAtomicHttpMethod(m) {
598
- return typeof m === "string" && ATOMIC_METHODS.has(m);
599
- }
600
- function createRouteDecorator(verb) {
601
- return (path2, options = {}) => {
602
- return (target, propertyKey) => {
603
- const ctor = target.constructor;
604
- const existing = routeMetaMap.get(ctor) ?? [];
605
- existing.push({
606
- method: verb,
607
- path: (path2 ?? "").trim().replace(/^\/|\/$/g, ""),
608
- handler: propertyKey,
609
- guards: options.guards ?? [],
610
- middlewares: options.middlewares ?? []
611
- });
612
- routeMetaMap.set(ctor, existing);
613
- };
614
- };
615
- }
616
- function getRouteMetadata(target) {
617
- return routeMetaMap.get(target) ?? [];
618
- }
619
- var ATOMIC_METHODS, routeMetaMap, Get, Post, Put, Patch, Delete;
620
- var init_method_decorator = __esm({
621
- "src/decorators/method.decorator.ts"() {
622
- "use strict";
623
- ATOMIC_METHODS = /* @__PURE__ */ new Set(["GET", "POST", "PUT", "PATCH", "DELETE"]);
624
- __name(isAtomicHttpMethod, "isAtomicHttpMethod");
625
- routeMetaMap = /* @__PURE__ */ new WeakMap();
626
- __name(createRouteDecorator, "createRouteDecorator");
627
- __name(getRouteMetadata, "getRouteMetadata");
628
- Get = createRouteDecorator("GET");
629
- Post = createRouteDecorator("POST");
630
- Put = createRouteDecorator("PUT");
631
- Patch = createRouteDecorator("PATCH");
632
- Delete = createRouteDecorator("DELETE");
633
- }
634
- });
635
-
636
- // src/exceptions.ts
637
- var _ResponseException, ResponseException, _BadRequestException, BadRequestException, _UnauthorizedException, UnauthorizedException, _PaymentRequiredException, PaymentRequiredException, _ForbiddenException, ForbiddenException, _NotFoundException, NotFoundException, _MethodNotAllowedException, MethodNotAllowedException, _NotAcceptableException, NotAcceptableException, _RequestTimeoutException, RequestTimeoutException, _ConflictException, ConflictException, _UpgradeRequiredException, UpgradeRequiredException, _TooManyRequestsException, TooManyRequestsException, _InternalServerException, InternalServerException, _NotImplementedException, NotImplementedException, _BadGatewayException, BadGatewayException, _ServiceUnavailableException, ServiceUnavailableException, _GatewayTimeoutException, GatewayTimeoutException, _HttpVersionNotSupportedException, HttpVersionNotSupportedException, _VariantAlsoNegotiatesException, VariantAlsoNegotiatesException, _InsufficientStorageException, InsufficientStorageException, _LoopDetectedException, LoopDetectedException, _NotExtendedException, NotExtendedException, _NetworkAuthenticationRequiredException, NetworkAuthenticationRequiredException, _NetworkConnectTimeoutException, NetworkConnectTimeoutException;
638
- var init_exceptions = __esm({
639
- "src/exceptions.ts"() {
640
- "use strict";
641
- _ResponseException = class _ResponseException extends Error {
642
- constructor(statusOrMessage, message) {
643
- let statusCode;
644
- if (typeof statusOrMessage === "number") {
645
- statusCode = statusOrMessage;
646
- } else if (typeof statusOrMessage === "string") {
647
- message = statusOrMessage;
648
- }
649
- super(message ?? "");
650
- this.status = 0;
651
- if (statusCode !== void 0) {
652
- this.status = statusCode;
653
- }
654
- this.name = this.constructor.name.replace(/([A-Z])/g, " $1");
655
- }
656
- };
657
- __name(_ResponseException, "ResponseException");
658
- ResponseException = _ResponseException;
659
- _BadRequestException = class _BadRequestException extends ResponseException {
660
- constructor() {
661
- super(...arguments);
662
- this.status = 400;
663
- }
664
- };
665
- __name(_BadRequestException, "BadRequestException");
666
- BadRequestException = _BadRequestException;
667
- _UnauthorizedException = class _UnauthorizedException extends ResponseException {
668
- constructor() {
669
- super(...arguments);
670
- this.status = 401;
671
- }
672
- };
673
- __name(_UnauthorizedException, "UnauthorizedException");
674
- UnauthorizedException = _UnauthorizedException;
675
- _PaymentRequiredException = class _PaymentRequiredException extends ResponseException {
676
- constructor() {
677
- super(...arguments);
678
- this.status = 402;
679
- }
680
- };
681
- __name(_PaymentRequiredException, "PaymentRequiredException");
682
- PaymentRequiredException = _PaymentRequiredException;
683
- _ForbiddenException = class _ForbiddenException extends ResponseException {
684
- constructor() {
685
- super(...arguments);
686
- this.status = 403;
687
- }
688
- };
689
- __name(_ForbiddenException, "ForbiddenException");
690
- ForbiddenException = _ForbiddenException;
691
- _NotFoundException = class _NotFoundException extends ResponseException {
692
- constructor() {
693
- super(...arguments);
694
- this.status = 404;
695
- }
696
- };
697
- __name(_NotFoundException, "NotFoundException");
698
- NotFoundException = _NotFoundException;
699
- _MethodNotAllowedException = class _MethodNotAllowedException extends ResponseException {
700
- constructor() {
701
- super(...arguments);
702
- this.status = 405;
703
- }
704
- };
705
- __name(_MethodNotAllowedException, "MethodNotAllowedException");
706
- MethodNotAllowedException = _MethodNotAllowedException;
707
- _NotAcceptableException = class _NotAcceptableException extends ResponseException {
708
- constructor() {
709
- super(...arguments);
710
- this.status = 406;
711
- }
712
- };
713
- __name(_NotAcceptableException, "NotAcceptableException");
714
- NotAcceptableException = _NotAcceptableException;
715
- _RequestTimeoutException = class _RequestTimeoutException extends ResponseException {
716
- constructor() {
717
- super(...arguments);
718
- this.status = 408;
719
- }
720
- };
721
- __name(_RequestTimeoutException, "RequestTimeoutException");
722
- RequestTimeoutException = _RequestTimeoutException;
723
- _ConflictException = class _ConflictException extends ResponseException {
724
- constructor() {
725
- super(...arguments);
726
- this.status = 409;
727
- }
728
- };
729
- __name(_ConflictException, "ConflictException");
730
- ConflictException = _ConflictException;
731
- _UpgradeRequiredException = class _UpgradeRequiredException extends ResponseException {
732
- constructor() {
733
- super(...arguments);
734
- this.status = 426;
735
- }
736
- };
737
- __name(_UpgradeRequiredException, "UpgradeRequiredException");
738
- UpgradeRequiredException = _UpgradeRequiredException;
739
- _TooManyRequestsException = class _TooManyRequestsException extends ResponseException {
740
- constructor() {
741
- super(...arguments);
742
- this.status = 429;
743
- }
744
- };
745
- __name(_TooManyRequestsException, "TooManyRequestsException");
746
- TooManyRequestsException = _TooManyRequestsException;
747
- _InternalServerException = class _InternalServerException extends ResponseException {
748
- constructor() {
749
- super(...arguments);
750
- this.status = 500;
751
- }
752
- };
753
- __name(_InternalServerException, "InternalServerException");
754
- InternalServerException = _InternalServerException;
755
- _NotImplementedException = class _NotImplementedException extends ResponseException {
756
- constructor() {
757
- super(...arguments);
758
- this.status = 501;
759
- }
760
- };
761
- __name(_NotImplementedException, "NotImplementedException");
762
- NotImplementedException = _NotImplementedException;
763
- _BadGatewayException = class _BadGatewayException extends ResponseException {
764
- constructor() {
765
- super(...arguments);
766
- this.status = 502;
767
- }
768
- };
769
- __name(_BadGatewayException, "BadGatewayException");
770
- BadGatewayException = _BadGatewayException;
771
- _ServiceUnavailableException = class _ServiceUnavailableException extends ResponseException {
772
- constructor() {
773
- super(...arguments);
774
- this.status = 503;
498
+ __name(keyOf, "keyOf");
499
+ _AppInjector = class _AppInjector {
500
+ constructor(name = null) {
501
+ this.name = name;
502
+ this.bindings = /* @__PURE__ */ new Map();
503
+ this.singletons = /* @__PURE__ */ new Map();
504
+ this.scoped = /* @__PURE__ */ new Map();
775
505
  }
776
- };
777
- __name(_ServiceUnavailableException, "ServiceUnavailableException");
778
- ServiceUnavailableException = _ServiceUnavailableException;
779
- _GatewayTimeoutException = class _GatewayTimeoutException extends ResponseException {
780
- constructor() {
781
- super(...arguments);
782
- this.status = 504;
506
+ /**
507
+ * Creates a child scope for per-request lifetime resolution.
508
+ */
509
+ createScope() {
510
+ const scope = new _AppInjector();
511
+ scope.bindings = this.bindings;
512
+ scope.singletons = this.singletons;
513
+ return scope;
783
514
  }
784
- };
785
- __name(_GatewayTimeoutException, "GatewayTimeoutException");
786
- GatewayTimeoutException = _GatewayTimeoutException;
787
- _HttpVersionNotSupportedException = class _HttpVersionNotSupportedException extends ResponseException {
788
- constructor() {
789
- super(...arguments);
790
- this.status = 505;
791
- }
792
- };
793
- __name(_HttpVersionNotSupportedException, "HttpVersionNotSupportedException");
794
- HttpVersionNotSupportedException = _HttpVersionNotSupportedException;
795
- _VariantAlsoNegotiatesException = class _VariantAlsoNegotiatesException extends ResponseException {
796
- constructor() {
797
- super(...arguments);
798
- this.status = 506;
799
- }
800
- };
801
- __name(_VariantAlsoNegotiatesException, "VariantAlsoNegotiatesException");
802
- VariantAlsoNegotiatesException = _VariantAlsoNegotiatesException;
803
- _InsufficientStorageException = class _InsufficientStorageException extends ResponseException {
804
- constructor() {
805
- super(...arguments);
806
- this.status = 507;
807
- }
808
- };
809
- __name(_InsufficientStorageException, "InsufficientStorageException");
810
- InsufficientStorageException = _InsufficientStorageException;
811
- _LoopDetectedException = class _LoopDetectedException extends ResponseException {
812
- constructor() {
813
- super(...arguments);
814
- this.status = 508;
815
- }
816
- };
817
- __name(_LoopDetectedException, "LoopDetectedException");
818
- LoopDetectedException = _LoopDetectedException;
819
- _NotExtendedException = class _NotExtendedException extends ResponseException {
820
- constructor() {
821
- super(...arguments);
822
- this.status = 510;
823
- }
824
- };
825
- __name(_NotExtendedException, "NotExtendedException");
826
- NotExtendedException = _NotExtendedException;
827
- _NetworkAuthenticationRequiredException = class _NetworkAuthenticationRequiredException extends ResponseException {
828
- constructor() {
829
- super(...arguments);
830
- this.status = 511;
831
- }
832
- };
833
- __name(_NetworkAuthenticationRequiredException, "NetworkAuthenticationRequiredException");
834
- NetworkAuthenticationRequiredException = _NetworkAuthenticationRequiredException;
835
- _NetworkConnectTimeoutException = class _NetworkConnectTimeoutException extends ResponseException {
836
- constructor() {
837
- super(...arguments);
838
- this.status = 599;
839
- }
840
- };
841
- __name(_NetworkConnectTimeoutException, "NetworkConnectTimeoutException");
842
- NetworkConnectTimeoutException = _NetworkConnectTimeoutException;
843
- }
844
- });
845
-
846
- // src/request.ts
847
- function createRendererEventMessage(event, payload) {
848
- return {
849
- type: RENDERER_EVENT_TYPE,
850
- event,
851
- payload
852
- };
853
- }
854
- function isRendererEventMessage(value) {
855
- if (value === null || typeof value !== "object") {
856
- return false;
857
- }
858
- const possibleMessage = value;
859
- return possibleMessage.type === RENDERER_EVENT_TYPE && typeof possibleMessage.event === "string";
860
- }
861
- var _Request, Request, RENDERER_EVENT_TYPE;
862
- var init_request = __esm({
863
- "src/request.ts"() {
864
- "use strict";
865
- init_app_injector();
866
- _Request = class _Request {
867
- constructor(event, senderId, id, method, path2, body) {
868
- this.event = event;
869
- this.senderId = senderId;
870
- this.id = id;
871
- this.method = method;
872
- this.path = path2;
873
- this.body = body;
874
- this.context = RootInjector.createScope();
875
- this.params = {};
876
- this.path = path2.replace(/^\/|\/$/g, "");
877
- }
878
- };
879
- __name(_Request, "Request");
880
- Request = _Request;
881
- RENDERER_EVENT_TYPE = "noxus:event";
882
- __name(createRendererEventMessage, "createRendererEventMessage");
883
- __name(isRendererEventMessage, "isRendererEventMessage");
884
- }
885
- });
886
-
887
- // src/utils/radix-tree.ts
888
- var _RadixNode, RadixNode, _RadixTree, RadixTree;
889
- var init_radix_tree = __esm({
890
- "src/utils/radix-tree.ts"() {
891
- "use strict";
892
- _RadixNode = class _RadixNode {
893
- /**
894
- * Creates a new RadixNode.
895
- * @param segment - The segment of the path this node represents.
896
- */
897
- constructor(segment) {
898
- this.children = [];
899
- this.segment = segment;
900
- this.isParam = segment.startsWith(":");
901
- if (this.isParam) {
902
- this.paramName = segment.slice(1);
903
- }
515
+ /**
516
+ * Registers a binding explicitly.
517
+ */
518
+ register(key, implementation, lifetime, deps = []) {
519
+ const k = keyOf(key);
520
+ if (!this.bindings.has(k)) {
521
+ this.bindings.set(k, { lifetime, implementation, deps });
522
+ }
904
523
  }
905
524
  /**
906
- * Matches a child node against a given segment.
907
- * This method checks if the segment matches any of the children nodes.
908
- * @param segment - The segment to match against the children of this node.
909
- * @returns A child node that matches the segment, or undefined if no match is found.
525
+ * Resolves a dependency by token or class reference.
910
526
  */
911
- matchChild(segment) {
912
- for (const child of this.children) {
913
- if (child.isParam || segment.startsWith(child.segment))
914
- return child;
527
+ resolve(target) {
528
+ if (target instanceof ForwardReference) {
529
+ return this._resolveForwardRef(target);
915
530
  }
916
- return void 0;
917
- }
918
- /**
919
- * Finds a child node that matches the segment exactly.
920
- * This method checks if there is a child node that matches the segment exactly.
921
- * @param segment - The segment to find an exact match for among the children of this node.
922
- * @returns A child node that matches the segment exactly, or undefined if no match is found.
923
- */
924
- findExactChild(segment) {
925
- return this.children.find((c) => c.segment === segment);
926
- }
927
- /**
928
- * Adds a child node to this node's children.
929
- * This method adds a new child node to the list of children for this node.
930
- * @param node - The child node to add to this node's children.
931
- */
932
- addChild(node) {
933
- this.children.push(node);
934
- }
935
- };
936
- __name(_RadixNode, "RadixNode");
937
- RadixNode = _RadixNode;
938
- _RadixTree = class _RadixTree {
939
- constructor() {
940
- this.root = new RadixNode("");
941
- }
942
- /**
943
- * Inserts a path and its associated value into the Radix Tree.
944
- * This method normalizes the path and inserts it into the tree, associating it with
945
- * @param path - The path to insert into the tree.
946
- * @param value - The value to associate with the path.
947
- */
948
- insert(path2, value) {
949
- const segments = this.normalize(path2);
950
- this.insertRecursive(this.root, segments, value);
951
- }
952
- /**
953
- * Recursively inserts a path into the Radix Tree.
954
- * This method traverses the tree and inserts the segments of the path, creating new nodes
955
- * @param node - The node to start inserting from.
956
- * @param segments - The segments of the path to insert.
957
- * @param value - The value to associate with the path.
958
- */
959
- insertRecursive(node, segments, value) {
960
- if (segments.length === 0) {
961
- node.value = value;
962
- return;
531
+ const k = keyOf(target);
532
+ if (this.singletons.has(k)) {
533
+ return this.singletons.get(k);
963
534
  }
964
- const segment = segments[0] ?? "";
965
- let child = node.children.find(
966
- (c) => c.isParam === segment.startsWith(":") && (c.isParam || c.segment === segment)
967
- );
968
- if (!child) {
969
- child = new RadixNode(segment);
970
- node.addChild(child);
535
+ const binding = this.bindings.get(k);
536
+ if (!binding) {
537
+ const name = target instanceof Token ? target.description : target.name ?? "unknown";
538
+ throw new Error(
539
+ `[Noxus DI] No binding found for "${name}".
540
+ Did you forget to declare it in @Injectable({ deps }) or in bootstrapApplication({ singletons })?`
541
+ );
971
542
  }
972
- this.insertRecursive(child, segments.slice(1), value);
973
- }
974
- /**
975
- * Searches for a path in the Radix Tree.
976
- * This method normalizes the path and searches for it in the tree, returning the node
977
- * @param path - The path to search for in the Radix Tree.
978
- * @returns An ISearchResult containing the node and parameters if a match is found, otherwise undefined.
979
- */
980
- search(path2) {
981
- const segments = this.normalize(path2);
982
- return this.searchRecursive(this.root, segments, {});
983
- }
984
- /**
985
- * Recursively searches for a path in the Radix Tree.
986
- * This method traverses the tree and searches for the segments of the path, collecting parameters
987
- * @param node - The node to start searching from.
988
- * @param segments - The segments of the path to search for.
989
- * @param params - The parameters collected during the search.
990
- * @returns An ISearchResult containing the node and parameters if a match is found, otherwise undefined.
991
- */
992
- searchRecursive(node, segments, params) {
993
- if (segments.length === 0) {
994
- if (node.value !== void 0) {
995
- return {
996
- node,
997
- params
998
- };
543
+ switch (binding.lifetime) {
544
+ case "transient":
545
+ return this._instantiate(binding);
546
+ case "scope": {
547
+ if (this.scoped.has(k)) return this.scoped.get(k);
548
+ const inst = this._instantiate(binding);
549
+ this.scoped.set(k, inst);
550
+ return inst;
999
551
  }
1000
- return void 0;
1001
- }
1002
- const [segment, ...rest] = segments;
1003
- for (const child of node.children) {
1004
- if (child.isParam) {
1005
- const paramName = child.paramName;
1006
- const childParams = {
1007
- ...params,
1008
- [paramName]: segment ?? ""
1009
- };
1010
- if (rest.length === 0) {
1011
- return {
1012
- node: child,
1013
- params: childParams
1014
- };
1015
- }
1016
- const result = this.searchRecursive(child, rest, childParams);
1017
- if (result)
1018
- return result;
1019
- } else if (segment === child.segment) {
1020
- if (rest.length === 0) {
1021
- return {
1022
- node: child,
1023
- params
1024
- };
552
+ case "singleton": {
553
+ if (this.singletons.has(k)) return this.singletons.get(k);
554
+ const inst = this._instantiate(binding);
555
+ this.singletons.set(k, inst);
556
+ if (binding.instance === void 0) {
557
+ binding.instance = inst;
1025
558
  }
1026
- const result = this.searchRecursive(child, rest, params);
1027
- if (result)
1028
- return result;
559
+ return inst;
1029
560
  }
1030
561
  }
1031
- return void 0;
1032
562
  }
1033
- /**
1034
- * Normalizes a path into an array of segments.
1035
- * This method removes leading and trailing slashes, splits the path by slashes, and
1036
- * @param path - The path to normalize.
1037
- * @returns An array of normalized path segments.
1038
- */
1039
- normalize(path2) {
1040
- const segments = path2.replace(/^\/+|\/+$/g, "").split("/").filter(Boolean);
1041
- return ["", ...segments];
563
+ // -------------------------------------------------------------------------
564
+ _resolveForwardRef(ref) {
565
+ let resolved;
566
+ return new Proxy({}, {
567
+ get: /* @__PURE__ */ __name((_obj, prop, receiver) => {
568
+ resolved ?? (resolved = this.resolve(ref.forwardRefFn()));
569
+ const value = Reflect.get(resolved, prop, receiver);
570
+ return typeof value === "function" ? value.bind(resolved) : value;
571
+ }, "get"),
572
+ set: /* @__PURE__ */ __name((_obj, prop, value, receiver) => {
573
+ resolved ?? (resolved = this.resolve(ref.forwardRefFn()));
574
+ return Reflect.set(resolved, prop, value, receiver);
575
+ }, "set"),
576
+ getPrototypeOf: /* @__PURE__ */ __name(() => {
577
+ resolved ?? (resolved = this.resolve(ref.forwardRefFn()));
578
+ return Object.getPrototypeOf(resolved);
579
+ }, "getPrototypeOf")
580
+ });
581
+ }
582
+ _instantiate(binding) {
583
+ const resolvedDeps = binding.deps.map((dep) => this.resolve(dep));
584
+ return new binding.implementation(...resolvedDeps);
1042
585
  }
1043
586
  };
1044
- __name(_RadixTree, "RadixTree");
1045
- RadixTree = _RadixTree;
587
+ __name(_AppInjector, "AppInjector");
588
+ AppInjector = _AppInjector;
589
+ RootInjector = new AppInjector("root");
590
+ __name(resetRootInjector, "resetRootInjector");
591
+ __name(inject, "inject");
1046
592
  }
1047
593
  });
1048
594
 
1049
- // src/router.ts
1050
- var router_exports = {};
1051
- __export(router_exports, {
1052
- Router: () => Router
595
+ // src/main.ts
596
+ var main_exports = {};
597
+ __export(main_exports, {
598
+ AppInjector: () => AppInjector,
599
+ BadGatewayException: () => BadGatewayException,
600
+ BadRequestException: () => BadRequestException,
601
+ ConflictException: () => ConflictException,
602
+ Controller: () => Controller,
603
+ Delete: () => Delete,
604
+ ForbiddenException: () => ForbiddenException,
605
+ ForwardReference: () => ForwardReference,
606
+ GatewayTimeoutException: () => GatewayTimeoutException,
607
+ Get: () => Get,
608
+ HttpVersionNotSupportedException: () => HttpVersionNotSupportedException,
609
+ Injectable: () => Injectable,
610
+ InsufficientStorageException: () => InsufficientStorageException,
611
+ InternalServerException: () => InternalServerException,
612
+ Logger: () => Logger,
613
+ LoopDetectedException: () => LoopDetectedException,
614
+ MethodNotAllowedException: () => MethodNotAllowedException,
615
+ NetworkAuthenticationRequiredException: () => NetworkAuthenticationRequiredException,
616
+ NetworkConnectTimeoutException: () => NetworkConnectTimeoutException,
617
+ NotAcceptableException: () => NotAcceptableException,
618
+ NotExtendedException: () => NotExtendedException,
619
+ NotFoundException: () => NotFoundException,
620
+ NotImplementedException: () => NotImplementedException,
621
+ NoxApp: () => NoxApp,
622
+ NoxSocket: () => NoxSocket,
623
+ Patch: () => Patch,
624
+ PaymentRequiredException: () => PaymentRequiredException,
625
+ Post: () => Post,
626
+ Put: () => Put,
627
+ RENDERER_EVENT_TYPE: () => RENDERER_EVENT_TYPE,
628
+ Request: () => Request,
629
+ RequestTimeoutException: () => RequestTimeoutException,
630
+ ResponseException: () => ResponseException,
631
+ RootInjector: () => RootInjector,
632
+ Router: () => Router,
633
+ ServiceUnavailableException: () => ServiceUnavailableException,
634
+ Token: () => Token,
635
+ TooManyRequestsException: () => TooManyRequestsException,
636
+ UnauthorizedException: () => UnauthorizedException,
637
+ UpgradeRequiredException: () => UpgradeRequiredException,
638
+ VariantAlsoNegotiatesException: () => VariantAlsoNegotiatesException,
639
+ WindowManager: () => WindowManager,
640
+ bootstrapApplication: () => bootstrapApplication,
641
+ createRendererEventMessage: () => createRendererEventMessage,
642
+ defineRoutes: () => defineRoutes,
643
+ forwardRef: () => forwardRef,
644
+ getControllerMetadata: () => getControllerMetadata,
645
+ getRouteMetadata: () => getRouteMetadata,
646
+ inject: () => inject,
647
+ isAtomicHttpMethod: () => isAtomicHttpMethod,
648
+ isRendererEventMessage: () => isRendererEventMessage,
649
+ resetRootInjector: () => resetRootInjector,
650
+ token: () => token
1053
651
  });
1054
- var Router;
1055
- var init_router = __esm({
1056
- "src/router.ts"() {
1057
- "use strict";
1058
- init_controller_decorator();
1059
- init_injectable_decorator();
1060
- init_method_decorator();
1061
- init_injector_explorer();
1062
- init_exceptions();
1063
- init_request();
1064
- init_logger();
1065
- init_radix_tree();
1066
- Router = class {
1067
- constructor() {
1068
- this.routes = new RadixTree();
1069
- this.rootMiddlewares = [];
1070
- this.lazyRoutes = /* @__PURE__ */ new Map();
1071
- }
1072
- // -------------------------------------------------------------------------
1073
- // Registration
1074
- // -------------------------------------------------------------------------
1075
- registerController(controllerClass, pathPrefix, routeGuards = [], routeMiddlewares = []) {
1076
- const meta = getControllerMetadata(controllerClass);
1077
- if (!meta) {
1078
- throw new Error(`[Noxus] Missing @Controller decorator on ${controllerClass.name}`);
1079
- }
1080
- const routeMeta = getRouteMetadata(controllerClass);
1081
- for (const def of routeMeta) {
1082
- const fullPath = `${pathPrefix}/${def.path}`.replace(/\/+/g, "/").replace(/\/$/, "") || "/";
1083
- const guards = [.../* @__PURE__ */ new Set([...routeGuards, ...def.guards])];
1084
- const middlewares = [.../* @__PURE__ */ new Set([...routeMiddlewares, ...def.middlewares])];
1085
- const routeDef = {
1086
- method: def.method,
1087
- path: fullPath,
1088
- controller: controllerClass,
1089
- handler: def.handler,
1090
- guards,
1091
- middlewares
1092
- };
1093
- this.routes.insert(fullPath + "/" + def.method, routeDef);
1094
- const guardInfo = guards.length ? `<${guards.map((g) => g.name).join("|")}>` : "";
1095
- Logger.log(`Mapped {${def.method} /${fullPath}}${guardInfo} route`);
1096
- }
1097
- const ctrlGuardInfo = routeGuards.length ? `<${routeGuards.map((g) => g.name).join("|")}>` : "";
1098
- Logger.log(`Mapped ${controllerClass.name}${ctrlGuardInfo} controller's routes`);
1099
- return this;
1100
- }
1101
- registerLazyRoute(pathPrefix, load, guards = [], middlewares = []) {
1102
- const normalized = pathPrefix.replace(/^\/+|\/+$/g, "");
1103
- this.lazyRoutes.set(normalized, { load, guards, middlewares, loading: null, loaded: false });
1104
- Logger.log(`Registered lazy route prefix {${normalized}}`);
1105
- return this;
1106
- }
1107
- defineRootMiddleware(middleware) {
1108
- this.rootMiddlewares.push(middleware);
1109
- return this;
1110
- }
1111
- // -------------------------------------------------------------------------
1112
- // Request handling
1113
- // -------------------------------------------------------------------------
1114
- async handle(request) {
1115
- return request.method === "BATCH" ? this.handleBatch(request) : this.handleAtomic(request);
1116
- }
1117
- async handleAtomic(request) {
1118
- Logger.comment(`> ${request.method} /${request.path}`);
1119
- const t0 = performance.now();
1120
- const response = { requestId: request.id, status: 200, body: null };
1121
- let isCritical = false;
1122
- try {
1123
- const routeDef = await this.findRoute(request);
1124
- await this.resolveController(request, response, routeDef);
1125
- if (response.status >= 400) throw new ResponseException(response.status, response.error);
1126
- } catch (error) {
1127
- this.fillErrorResponse(response, error, (c) => {
1128
- isCritical = c;
1129
- });
1130
- } finally {
1131
- this.logResponse(request, response, performance.now() - t0, isCritical);
1132
- return response;
1133
- }
1134
- }
1135
- async handleBatch(request) {
1136
- Logger.comment(`> ${request.method} /${request.path}`);
1137
- const t0 = performance.now();
1138
- const response = {
1139
- requestId: request.id,
1140
- status: 200,
1141
- body: { responses: [] }
652
+ module.exports = __toCommonJS(main_exports);
653
+ init_app_injector();
654
+ init_token();
655
+
656
+ // src/decorators/controller.decorator.ts
657
+ init_injector_explorer();
658
+ var controllerMetaMap = /* @__PURE__ */ new WeakMap();
659
+ function Controller(options = {}) {
660
+ return (target) => {
661
+ const meta = {
662
+ deps: options.deps ?? []
663
+ };
664
+ controllerMetaMap.set(target, meta);
665
+ InjectorExplorer.enqueue({
666
+ key: target,
667
+ implementation: target,
668
+ lifetime: "scope",
669
+ deps: options.deps ?? [],
670
+ isController: true
671
+ });
672
+ };
673
+ }
674
+ __name(Controller, "Controller");
675
+ function getControllerMetadata(target) {
676
+ return controllerMetaMap.get(target);
677
+ }
678
+ __name(getControllerMetadata, "getControllerMetadata");
679
+
680
+ // src/decorators/injectable.decorator.ts
681
+ init_injector_explorer();
682
+ init_token();
683
+ function Injectable(options = {}) {
684
+ const { lifetime = "scope", deps = [] } = options;
685
+ return (target) => {
686
+ if (typeof target !== "function" || !target.prototype) {
687
+ throw new Error(`@Injectable can only be applied to classes, not ${typeof target}`);
688
+ }
689
+ const key = target;
690
+ InjectorExplorer.enqueue({
691
+ key,
692
+ implementation: key,
693
+ lifetime,
694
+ deps,
695
+ isController: false
696
+ });
697
+ };
698
+ }
699
+ __name(Injectable, "Injectable");
700
+
701
+ // src/decorators/method.decorator.ts
702
+ var ATOMIC_METHODS = /* @__PURE__ */ new Set(["GET", "POST", "PUT", "PATCH", "DELETE"]);
703
+ function isAtomicHttpMethod(m) {
704
+ return typeof m === "string" && ATOMIC_METHODS.has(m);
705
+ }
706
+ __name(isAtomicHttpMethod, "isAtomicHttpMethod");
707
+ var routeMetaMap = /* @__PURE__ */ new WeakMap();
708
+ function createRouteDecorator(verb) {
709
+ return (path2, options = {}) => {
710
+ return (target, propertyKey) => {
711
+ const ctor = target.constructor;
712
+ const existing = routeMetaMap.get(ctor) ?? [];
713
+ existing.push({
714
+ method: verb,
715
+ path: (path2 ?? "").trim().replace(/^\/|\/$/g, ""),
716
+ handler: propertyKey,
717
+ guards: options.guards ?? [],
718
+ middlewares: options.middlewares ?? []
719
+ });
720
+ routeMetaMap.set(ctor, existing);
721
+ };
722
+ };
723
+ }
724
+ __name(createRouteDecorator, "createRouteDecorator");
725
+ function getRouteMetadata(target) {
726
+ return routeMetaMap.get(target) ?? [];
727
+ }
728
+ __name(getRouteMetadata, "getRouteMetadata");
729
+ var Get = createRouteDecorator("GET");
730
+ var Post = createRouteDecorator("POST");
731
+ var Put = createRouteDecorator("PUT");
732
+ var Patch = createRouteDecorator("PATCH");
733
+ var Delete = createRouteDecorator("DELETE");
734
+
735
+ // src/internal/router.ts
736
+ init_injector_explorer();
737
+ init_logger();
738
+
739
+ // src/utils/radix-tree.ts
740
+ var _RadixNode = class _RadixNode {
741
+ /**
742
+ * Creates a new RadixNode.
743
+ * @param segment - The segment of the path this node represents.
744
+ */
745
+ constructor(segment) {
746
+ this.children = [];
747
+ this.segment = segment;
748
+ this.isParam = segment.startsWith(":");
749
+ if (this.isParam) {
750
+ this.paramName = segment.slice(1);
751
+ }
752
+ }
753
+ /**
754
+ * Matches a child node against a given segment.
755
+ * This method checks if the segment matches any of the children nodes.
756
+ * @param segment - The segment to match against the children of this node.
757
+ * @returns A child node that matches the segment, or undefined if no match is found.
758
+ */
759
+ matchChild(segment) {
760
+ for (const child of this.children) {
761
+ if (child.isParam || segment.startsWith(child.segment))
762
+ return child;
763
+ }
764
+ return void 0;
765
+ }
766
+ /**
767
+ * Finds a child node that matches the segment exactly.
768
+ * This method checks if there is a child node that matches the segment exactly.
769
+ * @param segment - The segment to find an exact match for among the children of this node.
770
+ * @returns A child node that matches the segment exactly, or undefined if no match is found.
771
+ */
772
+ findExactChild(segment) {
773
+ return this.children.find((c) => c.segment === segment);
774
+ }
775
+ /**
776
+ * Adds a child node to this node's children.
777
+ * This method adds a new child node to the list of children for this node.
778
+ * @param node - The child node to add to this node's children.
779
+ */
780
+ addChild(node) {
781
+ this.children.push(node);
782
+ }
783
+ };
784
+ __name(_RadixNode, "RadixNode");
785
+ var RadixNode = _RadixNode;
786
+ var _RadixTree = class _RadixTree {
787
+ constructor() {
788
+ this.root = new RadixNode("");
789
+ }
790
+ /**
791
+ * Inserts a path and its associated value into the Radix Tree.
792
+ * This method normalizes the path and inserts it into the tree, associating it with
793
+ * @param path - The path to insert into the tree.
794
+ * @param value - The value to associate with the path.
795
+ */
796
+ insert(path2, value) {
797
+ const segments = this.normalize(path2);
798
+ this.insertRecursive(this.root, segments, value);
799
+ }
800
+ /**
801
+ * Recursively inserts a path into the Radix Tree.
802
+ * This method traverses the tree and inserts the segments of the path, creating new nodes
803
+ * @param node - The node to start inserting from.
804
+ * @param segments - The segments of the path to insert.
805
+ * @param value - The value to associate with the path.
806
+ */
807
+ insertRecursive(node, segments, value) {
808
+ if (segments.length === 0) {
809
+ node.value = value;
810
+ return;
811
+ }
812
+ const segment = segments[0] ?? "";
813
+ let child = node.children.find(
814
+ (c) => c.isParam === segment.startsWith(":") && (c.isParam || c.segment === segment)
815
+ );
816
+ if (!child) {
817
+ child = new RadixNode(segment);
818
+ node.addChild(child);
819
+ }
820
+ this.insertRecursive(child, segments.slice(1), value);
821
+ }
822
+ /**
823
+ * Searches for a path in the Radix Tree.
824
+ * This method normalizes the path and searches for it in the tree, returning the node
825
+ * @param path - The path to search for in the Radix Tree.
826
+ * @returns An ISearchResult containing the node and parameters if a match is found, otherwise undefined.
827
+ */
828
+ search(path2) {
829
+ const segments = this.normalize(path2);
830
+ return this.searchRecursive(this.root, segments, {});
831
+ }
832
+ collectValues(node, values = []) {
833
+ if (!node) {
834
+ node = this.root;
835
+ }
836
+ if (node.value !== void 0) {
837
+ values.push(node.value);
838
+ }
839
+ for (const child of node.children) {
840
+ this.collectValues(child, values);
841
+ }
842
+ return values;
843
+ }
844
+ /**
845
+ * Recursively searches for a path in the Radix Tree.
846
+ * This method traverses the tree and searches for the segments of the path, collecting parameters
847
+ * @param node - The node to start searching from.
848
+ * @param segments - The segments of the path to search for.
849
+ * @param params - The parameters collected during the search.
850
+ * @returns An ISearchResult containing the node and parameters if a match is found, otherwise undefined.
851
+ */
852
+ searchRecursive(node, segments, params) {
853
+ if (segments.length === 0) {
854
+ if (node.value !== void 0) {
855
+ return {
856
+ node,
857
+ params
1142
858
  };
1143
- let isCritical = false;
1144
- try {
1145
- const payload = this.normalizeBatchPayload(request.body);
1146
- response.body.responses = await Promise.all(
1147
- payload.requests.map((item, i) => {
1148
- const id = item.requestId ?? `${request.id}:${i}`;
1149
- return this.handleAtomic(new Request(request.event, request.senderId, id, item.method, item.path, item.body));
1150
- })
1151
- );
1152
- } catch (error) {
1153
- this.fillErrorResponse(response, error, (c) => {
1154
- isCritical = c;
1155
- });
1156
- } finally {
1157
- this.logResponse(request, response, performance.now() - t0, isCritical);
1158
- return response;
1159
- }
1160
- }
1161
- // -------------------------------------------------------------------------
1162
- // Route resolution
1163
- // -------------------------------------------------------------------------
1164
- tryFindRoute(request) {
1165
- const matched = this.routes.search(request.path);
1166
- if (!matched?.node || matched.node.children.length === 0) return void 0;
1167
- return matched.node.findExactChild(request.method)?.value;
1168
- }
1169
- async findRoute(request) {
1170
- const direct = this.tryFindRoute(request);
1171
- if (direct) return direct;
1172
- await this.tryLoadLazyRoute(request.path);
1173
- const afterLazy = this.tryFindRoute(request);
1174
- if (afterLazy) return afterLazy;
1175
- throw new NotFoundException(`No route matches ${request.method} ${request.path}`);
1176
859
  }
1177
- async tryLoadLazyRoute(requestPath) {
1178
- const firstSegment = requestPath.replace(/^\/+/, "").split("/")[0] ?? "";
1179
- for (const [prefix, entry] of this.lazyRoutes) {
1180
- if (entry.loaded) continue;
1181
- const normalized = requestPath.replace(/^\/+/, "");
1182
- if (normalized === prefix || normalized.startsWith(prefix + "/") || firstSegment === prefix) {
1183
- if (!entry.loading) entry.loading = this.loadLazyModule(prefix, entry);
1184
- await entry.loading;
1185
- return;
1186
- }
1187
- }
1188
- }
1189
- async loadLazyModule(prefix, entry) {
1190
- const t0 = performance.now();
1191
- InjectorExplorer.beginAccumulate();
1192
- await entry.load?.();
1193
- entry.loading = null;
1194
- entry.load = null;
1195
- InjectorExplorer.flushAccumulated(entry.guards, entry.middlewares, prefix);
1196
- entry.loaded = true;
1197
- Logger.info(`Lazy-loaded module for prefix {${prefix}} in ${Math.round(performance.now() - t0)}ms`);
1198
- }
1199
- // -------------------------------------------------------------------------
1200
- // Pipeline
1201
- // -------------------------------------------------------------------------
1202
- async resolveController(request, response, routeDef) {
1203
- const instance = request.context.resolve(routeDef.controller);
1204
- Object.assign(request.params, this.extractParams(request.path, routeDef.path));
1205
- await this.runPipeline(request, response, routeDef, instance);
1206
- }
1207
- async runPipeline(request, response, routeDef, controllerInstance) {
1208
- const middlewares = [.../* @__PURE__ */ new Set([...this.rootMiddlewares, ...routeDef.middlewares])];
1209
- const mwMax = middlewares.length - 1;
1210
- const guardMax = mwMax + routeDef.guards.length;
1211
- let index = -1;
1212
- const dispatch = /* @__PURE__ */ __name(async (i) => {
1213
- if (i <= index) throw new Error("next() called multiple times");
1214
- index = i;
1215
- if (i <= mwMax) {
1216
- await this.runMiddleware(request, response, dispatch.bind(null, i + 1), middlewares[i]);
1217
- if (response.status >= 400) throw new ResponseException(response.status, response.error);
1218
- return;
1219
- }
1220
- if (i <= guardMax) {
1221
- await this.runGuard(request, routeDef.guards[i - middlewares.length]);
1222
- await dispatch(i + 1);
1223
- return;
1224
- }
1225
- const action = controllerInstance[routeDef.handler];
1226
- response.body = await action.call(controllerInstance, request, response);
1227
- if (response.body === void 0) response.body = {};
1228
- }, "dispatch");
1229
- await dispatch(0);
1230
- }
1231
- async runMiddleware(request, response, next, middleware) {
1232
- await middleware(request, response, next);
1233
- }
1234
- async runGuard(request, guard) {
1235
- if (!await guard(request)) {
1236
- throw new UnauthorizedException(`Unauthorized for ${request.method} ${request.path}`);
1237
- }
1238
- }
1239
- // -------------------------------------------------------------------------
1240
- // Utilities
1241
- // -------------------------------------------------------------------------
1242
- extractParams(actual, template) {
1243
- const aParts = actual.split("/");
1244
- const tParts = template.split("/");
1245
- const params = {};
1246
- tParts.forEach((part, i) => {
1247
- if (part.startsWith(":")) params[part.slice(1)] = aParts[i] ?? "";
1248
- });
1249
- return params;
1250
- }
1251
- normalizeBatchPayload(body) {
1252
- if (body === null || typeof body !== "object") {
1253
- throw new BadRequestException("Batch payload must be an object containing a requests array.");
1254
- }
1255
- const { requests } = body;
1256
- if (!Array.isArray(requests)) throw new BadRequestException("Batch payload must define a requests array.");
1257
- return { requests: requests.map((e, i) => this.normalizeBatchItem(e, i)) };
1258
- }
1259
- normalizeBatchItem(entry, index) {
1260
- if (entry === null || typeof entry !== "object") throw new BadRequestException(`Batch request at index ${index} must be an object.`);
1261
- const { requestId, path: path2, method, body } = entry;
1262
- if (requestId !== void 0 && typeof requestId !== "string") throw new BadRequestException(`Batch request at index ${index} has an invalid requestId.`);
1263
- if (typeof path2 !== "string" || !path2.length) throw new BadRequestException(`Batch request at index ${index} must define a non-empty path.`);
1264
- if (typeof method !== "string") throw new BadRequestException(`Batch request at index ${index} must define an HTTP method.`);
1265
- const normalized = method.toUpperCase();
1266
- if (!isAtomicHttpMethod(normalized)) throw new BadRequestException(`Batch request at index ${index} uses unsupported method ${method}.`);
1267
- return { requestId, path: path2, method: normalized, body };
860
+ return void 0;
861
+ }
862
+ const [segment, ...rest] = segments;
863
+ const staticChildren = [];
864
+ const paramChildren = [];
865
+ for (const child of node.children) {
866
+ if (child.isParam) {
867
+ paramChildren.push(child);
868
+ } else if (segment === child.segment) {
869
+ staticChildren.push(child);
1268
870
  }
1269
- fillErrorResponse(response, error, setCritical) {
1270
- response.body = void 0;
1271
- if (error instanceof ResponseException) {
1272
- response.status = error.status;
1273
- response.error = error.message;
1274
- response.stack = error.stack;
1275
- } else if (error instanceof Error) {
1276
- setCritical(true);
1277
- response.status = 500;
1278
- response.error = error.message || "Internal Server Error";
1279
- response.stack = error.stack;
1280
- } else {
1281
- setCritical(true);
1282
- response.status = 500;
1283
- response.error = "Unknown error occurred";
871
+ }
872
+ for (const child of staticChildren) {
873
+ if (rest.length === 0) {
874
+ if (child.value !== void 0 || child.children.length > 0) {
875
+ return { node: child, params };
1284
876
  }
1285
877
  }
1286
- logResponse(request, response, ms, isCritical) {
1287
- const msg = `< ${response.status} ${request.method} /${request.path} ${Logger.colors.yellow}${Math.round(ms)}ms${Logger.colors.initial}`;
1288
- if (response.status < 400) Logger.log(msg);
1289
- else if (response.status < 500) Logger.warn(msg);
1290
- else isCritical ? Logger.critical(msg) : Logger.error(msg);
1291
- if (response.error) {
1292
- isCritical ? Logger.critical(response.error) : Logger.error(response.error);
1293
- if (response.stack) Logger.errorStack(response.stack);
878
+ const result = this.searchRecursive(child, rest, params);
879
+ if (result) return result;
880
+ }
881
+ for (const child of paramChildren) {
882
+ const paramName = child.paramName;
883
+ const childParams = {
884
+ ...params,
885
+ [paramName]: segment ?? ""
886
+ };
887
+ if (rest.length === 0) {
888
+ if (child.value !== void 0 || child.children.length > 0) {
889
+ return { node: child, params: childParams };
1294
890
  }
1295
891
  }
1296
- };
1297
- __name(Router, "Router");
1298
- Router = __decorateClass([
1299
- Injectable({ lifetime: "singleton" })
1300
- ], Router);
892
+ const result = this.searchRecursive(child, rest, childParams);
893
+ if (result) return result;
894
+ }
895
+ return void 0;
896
+ }
897
+ /**
898
+ * Normalizes a path into an array of segments.
899
+ * This method removes leading and trailing slashes, splits the path by slashes, and
900
+ * @param path - The path to normalize.
901
+ * @returns An array of normalized path segments.
902
+ */
903
+ normalize(path2) {
904
+ const segments = path2.replace(/^\/+|\/+$/g, "").split("/").filter(Boolean);
905
+ return ["", ...segments];
906
+ }
907
+ };
908
+ __name(_RadixTree, "RadixTree");
909
+ var RadixTree = _RadixTree;
910
+
911
+ // src/internal/exceptions.ts
912
+ var _ResponseException = class _ResponseException extends Error {
913
+ constructor(statusOrMessage, message) {
914
+ let statusCode;
915
+ if (typeof statusOrMessage === "number") {
916
+ statusCode = statusOrMessage;
917
+ } else if (typeof statusOrMessage === "string") {
918
+ message = statusOrMessage;
919
+ }
920
+ super(message ?? "");
921
+ this.status = 0;
922
+ if (statusCode !== void 0) {
923
+ this.status = statusCode;
924
+ }
925
+ this.name = this.constructor.name.replace(/([A-Z])/g, " $1");
926
+ }
927
+ };
928
+ __name(_ResponseException, "ResponseException");
929
+ var ResponseException = _ResponseException;
930
+ var _BadRequestException = class _BadRequestException extends ResponseException {
931
+ constructor() {
932
+ super(...arguments);
933
+ this.status = 400;
934
+ }
935
+ };
936
+ __name(_BadRequestException, "BadRequestException");
937
+ var BadRequestException = _BadRequestException;
938
+ var _UnauthorizedException = class _UnauthorizedException extends ResponseException {
939
+ constructor() {
940
+ super(...arguments);
941
+ this.status = 401;
942
+ }
943
+ };
944
+ __name(_UnauthorizedException, "UnauthorizedException");
945
+ var UnauthorizedException = _UnauthorizedException;
946
+ var _PaymentRequiredException = class _PaymentRequiredException extends ResponseException {
947
+ constructor() {
948
+ super(...arguments);
949
+ this.status = 402;
950
+ }
951
+ };
952
+ __name(_PaymentRequiredException, "PaymentRequiredException");
953
+ var PaymentRequiredException = _PaymentRequiredException;
954
+ var _ForbiddenException = class _ForbiddenException extends ResponseException {
955
+ constructor() {
956
+ super(...arguments);
957
+ this.status = 403;
958
+ }
959
+ };
960
+ __name(_ForbiddenException, "ForbiddenException");
961
+ var ForbiddenException = _ForbiddenException;
962
+ var _NotFoundException = class _NotFoundException extends ResponseException {
963
+ constructor() {
964
+ super(...arguments);
965
+ this.status = 404;
966
+ }
967
+ };
968
+ __name(_NotFoundException, "NotFoundException");
969
+ var NotFoundException = _NotFoundException;
970
+ var _MethodNotAllowedException = class _MethodNotAllowedException extends ResponseException {
971
+ constructor() {
972
+ super(...arguments);
973
+ this.status = 405;
974
+ }
975
+ };
976
+ __name(_MethodNotAllowedException, "MethodNotAllowedException");
977
+ var MethodNotAllowedException = _MethodNotAllowedException;
978
+ var _NotAcceptableException = class _NotAcceptableException extends ResponseException {
979
+ constructor() {
980
+ super(...arguments);
981
+ this.status = 406;
982
+ }
983
+ };
984
+ __name(_NotAcceptableException, "NotAcceptableException");
985
+ var NotAcceptableException = _NotAcceptableException;
986
+ var _RequestTimeoutException = class _RequestTimeoutException extends ResponseException {
987
+ constructor() {
988
+ super(...arguments);
989
+ this.status = 408;
990
+ }
991
+ };
992
+ __name(_RequestTimeoutException, "RequestTimeoutException");
993
+ var RequestTimeoutException = _RequestTimeoutException;
994
+ var _ConflictException = class _ConflictException extends ResponseException {
995
+ constructor() {
996
+ super(...arguments);
997
+ this.status = 409;
998
+ }
999
+ };
1000
+ __name(_ConflictException, "ConflictException");
1001
+ var ConflictException = _ConflictException;
1002
+ var _UpgradeRequiredException = class _UpgradeRequiredException extends ResponseException {
1003
+ constructor() {
1004
+ super(...arguments);
1005
+ this.status = 426;
1006
+ }
1007
+ };
1008
+ __name(_UpgradeRequiredException, "UpgradeRequiredException");
1009
+ var UpgradeRequiredException = _UpgradeRequiredException;
1010
+ var _TooManyRequestsException = class _TooManyRequestsException extends ResponseException {
1011
+ constructor() {
1012
+ super(...arguments);
1013
+ this.status = 429;
1014
+ }
1015
+ };
1016
+ __name(_TooManyRequestsException, "TooManyRequestsException");
1017
+ var TooManyRequestsException = _TooManyRequestsException;
1018
+ var _InternalServerException = class _InternalServerException extends ResponseException {
1019
+ constructor() {
1020
+ super(...arguments);
1021
+ this.status = 500;
1022
+ }
1023
+ };
1024
+ __name(_InternalServerException, "InternalServerException");
1025
+ var InternalServerException = _InternalServerException;
1026
+ var _NotImplementedException = class _NotImplementedException extends ResponseException {
1027
+ constructor() {
1028
+ super(...arguments);
1029
+ this.status = 501;
1030
+ }
1031
+ };
1032
+ __name(_NotImplementedException, "NotImplementedException");
1033
+ var NotImplementedException = _NotImplementedException;
1034
+ var _BadGatewayException = class _BadGatewayException extends ResponseException {
1035
+ constructor() {
1036
+ super(...arguments);
1037
+ this.status = 502;
1301
1038
  }
1302
- });
1303
-
1304
- // src/main.ts
1305
- var main_exports = {};
1306
- __export(main_exports, {
1307
- AppInjector: () => AppInjector,
1308
- BadGatewayException: () => BadGatewayException,
1309
- BadRequestException: () => BadRequestException,
1310
- ConflictException: () => ConflictException,
1311
- Controller: () => Controller,
1312
- Delete: () => Delete,
1313
- ForbiddenException: () => ForbiddenException,
1314
- ForwardReference: () => ForwardReference,
1315
- GatewayTimeoutException: () => GatewayTimeoutException,
1316
- Get: () => Get,
1317
- HttpVersionNotSupportedException: () => HttpVersionNotSupportedException,
1318
- Injectable: () => Injectable,
1319
- InsufficientStorageException: () => InsufficientStorageException,
1320
- InternalServerException: () => InternalServerException,
1321
- Logger: () => Logger,
1322
- LoopDetectedException: () => LoopDetectedException,
1323
- MethodNotAllowedException: () => MethodNotAllowedException,
1324
- NetworkAuthenticationRequiredException: () => NetworkAuthenticationRequiredException,
1325
- NetworkConnectTimeoutException: () => NetworkConnectTimeoutException,
1326
- NotAcceptableException: () => NotAcceptableException,
1327
- NotExtendedException: () => NotExtendedException,
1328
- NotFoundException: () => NotFoundException,
1329
- NotImplementedException: () => NotImplementedException,
1330
- NoxApp: () => NoxApp,
1331
- NoxSocket: () => NoxSocket,
1332
- Patch: () => Patch,
1333
- PaymentRequiredException: () => PaymentRequiredException,
1334
- Post: () => Post,
1335
- Put: () => Put,
1336
- RENDERER_EVENT_TYPE: () => RENDERER_EVENT_TYPE,
1337
- Request: () => Request,
1338
- RequestTimeoutException: () => RequestTimeoutException,
1339
- ResponseException: () => ResponseException,
1340
- RootInjector: () => RootInjector,
1341
- Router: () => Router,
1342
- ServiceUnavailableException: () => ServiceUnavailableException,
1343
- Token: () => Token,
1344
- TooManyRequestsException: () => TooManyRequestsException,
1345
- UnauthorizedException: () => UnauthorizedException,
1346
- UpgradeRequiredException: () => UpgradeRequiredException,
1347
- VariantAlsoNegotiatesException: () => VariantAlsoNegotiatesException,
1348
- WindowManager: () => WindowManager,
1349
- bootstrapApplication: () => bootstrapApplication,
1350
- createRendererEventMessage: () => createRendererEventMessage,
1351
- defineRoutes: () => defineRoutes,
1352
- forwardRef: () => forwardRef,
1353
- getControllerMetadata: () => getControllerMetadata,
1354
- getRouteMetadata: () => getRouteMetadata,
1355
- inject: () => inject,
1356
- isAtomicHttpMethod: () => isAtomicHttpMethod,
1357
- isRendererEventMessage: () => isRendererEventMessage,
1358
- token: () => token
1359
- });
1360
- module.exports = __toCommonJS(main_exports);
1361
- init_app_injector();
1362
- init_token();
1363
- init_router();
1039
+ };
1040
+ __name(_BadGatewayException, "BadGatewayException");
1041
+ var BadGatewayException = _BadGatewayException;
1042
+ var _ServiceUnavailableException = class _ServiceUnavailableException extends ResponseException {
1043
+ constructor() {
1044
+ super(...arguments);
1045
+ this.status = 503;
1046
+ }
1047
+ };
1048
+ __name(_ServiceUnavailableException, "ServiceUnavailableException");
1049
+ var ServiceUnavailableException = _ServiceUnavailableException;
1050
+ var _GatewayTimeoutException = class _GatewayTimeoutException extends ResponseException {
1051
+ constructor() {
1052
+ super(...arguments);
1053
+ this.status = 504;
1054
+ }
1055
+ };
1056
+ __name(_GatewayTimeoutException, "GatewayTimeoutException");
1057
+ var GatewayTimeoutException = _GatewayTimeoutException;
1058
+ var _HttpVersionNotSupportedException = class _HttpVersionNotSupportedException extends ResponseException {
1059
+ constructor() {
1060
+ super(...arguments);
1061
+ this.status = 505;
1062
+ }
1063
+ };
1064
+ __name(_HttpVersionNotSupportedException, "HttpVersionNotSupportedException");
1065
+ var HttpVersionNotSupportedException = _HttpVersionNotSupportedException;
1066
+ var _VariantAlsoNegotiatesException = class _VariantAlsoNegotiatesException extends ResponseException {
1067
+ constructor() {
1068
+ super(...arguments);
1069
+ this.status = 506;
1070
+ }
1071
+ };
1072
+ __name(_VariantAlsoNegotiatesException, "VariantAlsoNegotiatesException");
1073
+ var VariantAlsoNegotiatesException = _VariantAlsoNegotiatesException;
1074
+ var _InsufficientStorageException = class _InsufficientStorageException extends ResponseException {
1075
+ constructor() {
1076
+ super(...arguments);
1077
+ this.status = 507;
1078
+ }
1079
+ };
1080
+ __name(_InsufficientStorageException, "InsufficientStorageException");
1081
+ var InsufficientStorageException = _InsufficientStorageException;
1082
+ var _LoopDetectedException = class _LoopDetectedException extends ResponseException {
1083
+ constructor() {
1084
+ super(...arguments);
1085
+ this.status = 508;
1086
+ }
1087
+ };
1088
+ __name(_LoopDetectedException, "LoopDetectedException");
1089
+ var LoopDetectedException = _LoopDetectedException;
1090
+ var _NotExtendedException = class _NotExtendedException extends ResponseException {
1091
+ constructor() {
1092
+ super(...arguments);
1093
+ this.status = 510;
1094
+ }
1095
+ };
1096
+ __name(_NotExtendedException, "NotExtendedException");
1097
+ var NotExtendedException = _NotExtendedException;
1098
+ var _NetworkAuthenticationRequiredException = class _NetworkAuthenticationRequiredException extends ResponseException {
1099
+ constructor() {
1100
+ super(...arguments);
1101
+ this.status = 511;
1102
+ }
1103
+ };
1104
+ __name(_NetworkAuthenticationRequiredException, "NetworkAuthenticationRequiredException");
1105
+ var NetworkAuthenticationRequiredException = _NetworkAuthenticationRequiredException;
1106
+ var _NetworkConnectTimeoutException = class _NetworkConnectTimeoutException extends ResponseException {
1107
+ constructor() {
1108
+ super(...arguments);
1109
+ this.status = 599;
1110
+ }
1111
+ };
1112
+ __name(_NetworkConnectTimeoutException, "NetworkConnectTimeoutException");
1113
+ var NetworkConnectTimeoutException = _NetworkConnectTimeoutException;
1364
1114
 
1365
- // src/app.ts
1366
- var import_main2 = require("electron/main");
1367
- init_injectable_decorator();
1115
+ // src/internal/request.ts
1368
1116
  init_app_injector();
1369
- init_injector_explorer();
1370
- init_request();
1371
- init_router();
1117
+ var _Request = class _Request {
1118
+ constructor(event, senderId, id, method, path2, body, query) {
1119
+ this.event = event;
1120
+ this.senderId = senderId;
1121
+ this.id = id;
1122
+ this.method = method;
1123
+ this.path = path2;
1124
+ this.body = body;
1125
+ this.context = RootInjector.createScope();
1126
+ this.params = {};
1127
+ this.path = path2.replace(/^\/|\/$/g, "");
1128
+ this.query = query ?? {};
1129
+ }
1130
+ };
1131
+ __name(_Request, "Request");
1132
+ var Request = _Request;
1133
+ var RENDERER_EVENT_TYPE = "noxus:event";
1134
+ function createRendererEventMessage(event, payload) {
1135
+ return {
1136
+ type: RENDERER_EVENT_TYPE,
1137
+ event,
1138
+ payload
1139
+ };
1140
+ }
1141
+ __name(createRendererEventMessage, "createRendererEventMessage");
1142
+ function isRendererEventMessage(value) {
1143
+ if (value === null || typeof value !== "object") {
1144
+ return false;
1145
+ }
1146
+ const possibleMessage = value;
1147
+ return possibleMessage.type === RENDERER_EVENT_TYPE && typeof possibleMessage.event === "string";
1148
+ }
1149
+ __name(isRendererEventMessage, "isRendererEventMessage");
1372
1150
 
1373
- // src/socket.ts
1374
- init_injectable_decorator();
1375
- init_request();
1376
- init_logger();
1377
- var NoxSocket = class {
1151
+ // src/internal/router.ts
1152
+ var Router = class {
1378
1153
  constructor() {
1379
- this.channels = /* @__PURE__ */ new Map();
1154
+ this.routes = new RadixTree();
1155
+ this.rootMiddlewares = [];
1156
+ this.lazyRoutes = /* @__PURE__ */ new Map();
1157
+ this.lazyLoadLock = Promise.resolve();
1380
1158
  }
1381
- register(senderId, requestChannel, socketChannel) {
1382
- this.channels.set(senderId, { request: requestChannel, socket: socketChannel });
1159
+ // -------------------------------------------------------------------------
1160
+ // Registration
1161
+ // -------------------------------------------------------------------------
1162
+ registerController(controllerClass, pathPrefix, routeGuards = [], routeMiddlewares = []) {
1163
+ const meta = getControllerMetadata(controllerClass);
1164
+ if (!meta) {
1165
+ throw new Error(`[Noxus] Missing @Controller decorator on ${controllerClass.name}`);
1166
+ }
1167
+ const routeMeta = getRouteMetadata(controllerClass);
1168
+ for (const def of routeMeta) {
1169
+ const fullPath = `${pathPrefix}/${def.path}`.replace(/\/+/g, "/").replace(/\/$/, "") || "/";
1170
+ const guards = [.../* @__PURE__ */ new Set([...routeGuards, ...def.guards])];
1171
+ const middlewares = [.../* @__PURE__ */ new Set([...routeMiddlewares, ...def.middlewares])];
1172
+ const routeDef = {
1173
+ method: def.method,
1174
+ path: fullPath,
1175
+ controller: controllerClass,
1176
+ handler: def.handler,
1177
+ guards,
1178
+ middlewares
1179
+ };
1180
+ this.routes.insert(fullPath + "/" + def.method, routeDef);
1181
+ const guardInfo = guards.length ? `<${guards.map((g) => g.name).join("|")}>` : "";
1182
+ Logger.log(`Mapped {${def.method} /${fullPath}}${guardInfo} route`);
1183
+ }
1184
+ const ctrlGuardInfo = routeGuards.length ? `<${routeGuards.map((g) => g.name).join("|")}>` : "";
1185
+ Logger.log(`Mapped ${controllerClass.name}${ctrlGuardInfo} controller's routes`);
1186
+ return this;
1383
1187
  }
1384
- get(senderId) {
1385
- return this.channels.get(senderId);
1188
+ registerLazyRoute(pathPrefix, load, guards = [], middlewares = []) {
1189
+ const normalized = pathPrefix.replace(/^\/+|\/+$/g, "");
1190
+ this.lazyRoutes.set(normalized, { load, guards, middlewares, loading: null, loaded: false });
1191
+ Logger.log(`Registered lazy route prefix {${normalized}}`);
1192
+ return this;
1386
1193
  }
1387
- unregister(senderId) {
1388
- this.channels.delete(senderId);
1194
+ defineRootMiddleware(middleware) {
1195
+ this.rootMiddlewares.push(middleware);
1196
+ return this;
1389
1197
  }
1390
- getSenderIds() {
1391
- return [...this.channels.keys()];
1198
+ getRegisteredRoutes() {
1199
+ const allRoutes = this.routes.collectValues();
1200
+ return allRoutes.map((r) => ({ method: r.method, path: r.path }));
1392
1201
  }
1393
- emit(eventName, payload, targetSenderIds) {
1394
- const normalizedEvent = eventName.trim();
1395
- if (normalizedEvent.length === 0) {
1396
- throw new Error("Renderer event name must be a non-empty string.");
1202
+ getLazyRoutes() {
1203
+ return [...this.lazyRoutes.entries()].map(([prefix, entry]) => ({
1204
+ prefix,
1205
+ loaded: entry.loaded
1206
+ }));
1207
+ }
1208
+ // -------------------------------------------------------------------------
1209
+ // Request handling
1210
+ // -------------------------------------------------------------------------
1211
+ async handle(request) {
1212
+ return request.method === "BATCH" ? this.handleBatch(request) : this.handleAtomic(request);
1213
+ }
1214
+ async handleAtomic(request) {
1215
+ Logger.comment(`> ${request.method} /${request.path}`);
1216
+ const t0 = performance.now();
1217
+ const response = { requestId: request.id, status: 200, body: null };
1218
+ let isCritical = false;
1219
+ try {
1220
+ const routeDef = await this.findRoute(request);
1221
+ await this.resolveController(request, response, routeDef);
1222
+ if (response.status >= 400) throw new ResponseException(response.status, response.error);
1223
+ } catch (error) {
1224
+ this.fillErrorResponse(response, error, (c) => {
1225
+ isCritical = c;
1226
+ });
1227
+ } finally {
1228
+ this.logResponse(request, response, performance.now() - t0, isCritical);
1229
+ return response;
1397
1230
  }
1398
- const recipients = targetSenderIds ?? this.getSenderIds();
1399
- let delivered = 0;
1400
- for (const senderId of recipients) {
1401
- const channel = this.channels.get(senderId);
1402
- if (!channel) {
1403
- Logger.warn(`No message channel found for sender ID: ${senderId} while emitting "${normalizedEvent}".`);
1404
- continue;
1231
+ }
1232
+ async handleBatch(request) {
1233
+ Logger.comment(`> ${request.method} /${request.path}`);
1234
+ const t0 = performance.now();
1235
+ const response = {
1236
+ requestId: request.id,
1237
+ status: 200,
1238
+ body: { responses: [] }
1239
+ };
1240
+ let isCritical = false;
1241
+ try {
1242
+ const payload = this.normalizeBatchPayload(request.body);
1243
+ response.body.responses = await Promise.all(
1244
+ payload.requests.map((item, i) => {
1245
+ const id = item.requestId ?? `${request.id}:${i}`;
1246
+ return this.handleAtomic(new Request(request.event, request.senderId, id, item.method, item.path, item.body, item.query));
1247
+ })
1248
+ );
1249
+ } catch (error) {
1250
+ this.fillErrorResponse(response, error, (c) => {
1251
+ isCritical = c;
1252
+ });
1253
+ } finally {
1254
+ this.logResponse(request, response, performance.now() - t0, isCritical);
1255
+ return response;
1256
+ }
1257
+ }
1258
+ // -------------------------------------------------------------------------
1259
+ // Route resolution
1260
+ // -------------------------------------------------------------------------
1261
+ tryFindRoute(request) {
1262
+ const matched = this.routes.search(request.path);
1263
+ if (!matched?.node || matched.node.children.length === 0) return void 0;
1264
+ return matched.node.findExactChild(request.method)?.value;
1265
+ }
1266
+ async findRoute(request) {
1267
+ const direct = this.tryFindRoute(request);
1268
+ if (direct) return direct;
1269
+ await this.tryLoadLazyRoute(request.path);
1270
+ const afterLazy = this.tryFindRoute(request);
1271
+ if (afterLazy) return afterLazy;
1272
+ throw new NotFoundException(`No route matches ${request.method} ${request.path}`);
1273
+ }
1274
+ async tryLoadLazyRoute(requestPath) {
1275
+ const firstSegment = requestPath.replace(/^\/+/, "").split("/")[0] ?? "";
1276
+ for (const [prefix, entry] of this.lazyRoutes) {
1277
+ if (entry.loaded) continue;
1278
+ const normalized = requestPath.replace(/^\/+/, "");
1279
+ if (normalized === prefix || normalized.startsWith(prefix + "/") || firstSegment === prefix) {
1280
+ if (!entry.loading) entry.loading = this.loadLazyModule(prefix, entry);
1281
+ await entry.loading;
1282
+ return;
1405
1283
  }
1406
- try {
1407
- channel.socket.port1.postMessage(createRendererEventMessage(normalizedEvent, payload));
1408
- delivered++;
1409
- } catch (error) {
1410
- Logger.error(`[Noxus] Failed to emit "${normalizedEvent}" to sender ${senderId}.`, error);
1284
+ }
1285
+ }
1286
+ loadLazyModule(prefix, entry) {
1287
+ const task = this.lazyLoadLock.then(async () => {
1288
+ const t0 = performance.now();
1289
+ InjectorExplorer.beginAccumulate();
1290
+ await entry.load?.();
1291
+ entry.load = null;
1292
+ await InjectorExplorer.flushAccumulated(entry.guards, entry.middlewares, prefix);
1293
+ entry.loaded = true;
1294
+ entry.loading = null;
1295
+ Logger.info(`Lazy-loaded module for prefix {${prefix}} in ${Math.round(performance.now() - t0)}ms`);
1296
+ });
1297
+ this.lazyLoadLock = task;
1298
+ return task;
1299
+ }
1300
+ // -------------------------------------------------------------------------
1301
+ // Pipeline
1302
+ // -------------------------------------------------------------------------
1303
+ async resolveController(request, response, routeDef) {
1304
+ const instance = request.context.resolve(routeDef.controller);
1305
+ Object.assign(request.params, this.extractParams(request.path, routeDef.path));
1306
+ await this.runPipeline(request, response, routeDef, instance);
1307
+ }
1308
+ async runPipeline(request, response, routeDef, controllerInstance) {
1309
+ const middlewares = [.../* @__PURE__ */ new Set([...this.rootMiddlewares, ...routeDef.middlewares])];
1310
+ const mwMax = middlewares.length - 1;
1311
+ const guardMax = mwMax + routeDef.guards.length;
1312
+ let index = -1;
1313
+ const dispatch = /* @__PURE__ */ __name(async (i) => {
1314
+ if (i <= index) throw new Error("next() called multiple times");
1315
+ index = i;
1316
+ if (i <= mwMax) {
1317
+ await this.runMiddleware(request, response, dispatch.bind(null, i + 1), middlewares[i]);
1318
+ if (response.status >= 400) throw new ResponseException(response.status, response.error);
1319
+ return;
1411
1320
  }
1321
+ if (i <= guardMax) {
1322
+ await this.runGuard(request, routeDef.guards[i - middlewares.length]);
1323
+ await dispatch(i + 1);
1324
+ return;
1325
+ }
1326
+ const action = controllerInstance[routeDef.handler];
1327
+ response.body = await action.call(controllerInstance, request, response);
1328
+ if (response.body === void 0) response.body = {};
1329
+ }, "dispatch");
1330
+ await dispatch(0);
1331
+ }
1332
+ async runMiddleware(request, response, next, middleware) {
1333
+ await middleware(request, response, next);
1334
+ }
1335
+ async runGuard(request, guard) {
1336
+ if (!await guard(request)) {
1337
+ throw new UnauthorizedException(`Unauthorized for ${request.method} ${request.path}`);
1412
1338
  }
1413
- return delivered;
1414
1339
  }
1415
- emitToRenderer(senderId, eventName, payload) {
1416
- return this.emit(eventName, payload, [senderId]) > 0;
1340
+ // -------------------------------------------------------------------------
1341
+ // Utilities
1342
+ // -------------------------------------------------------------------------
1343
+ extractParams(actual, template) {
1344
+ const aParts = actual.split("/");
1345
+ const tParts = template.split("/");
1346
+ const params = {};
1347
+ tParts.forEach((part, i) => {
1348
+ if (part.startsWith(":")) params[part.slice(1)] = aParts[i] ?? "";
1349
+ });
1350
+ return params;
1351
+ }
1352
+ normalizeBatchPayload(body) {
1353
+ if (body === null || typeof body !== "object") {
1354
+ throw new BadRequestException("Batch payload must be an object containing a requests array.");
1355
+ }
1356
+ const { requests } = body;
1357
+ if (!Array.isArray(requests)) throw new BadRequestException("Batch payload must define a requests array.");
1358
+ return { requests: requests.map((e, i) => this.normalizeBatchItem(e, i)) };
1359
+ }
1360
+ normalizeBatchItem(entry, index) {
1361
+ if (entry === null || typeof entry !== "object") throw new BadRequestException(`Batch request at index ${index} must be an object.`);
1362
+ const { requestId, path: path2, method, body, query } = entry;
1363
+ if (requestId !== void 0 && typeof requestId !== "string") throw new BadRequestException(`Batch request at index ${index} has an invalid requestId.`);
1364
+ if (typeof path2 !== "string" || !path2.length) throw new BadRequestException(`Batch request at index ${index} must define a non-empty path.`);
1365
+ if (typeof method !== "string") throw new BadRequestException(`Batch request at index ${index} must define an HTTP method.`);
1366
+ const normalized = method.toUpperCase();
1367
+ if (!isAtomicHttpMethod(normalized)) throw new BadRequestException(`Batch request at index ${index} uses unsupported method ${method}.`);
1368
+ return { requestId, path: path2, method: normalized, body, query };
1369
+ }
1370
+ fillErrorResponse(response, error, setCritical) {
1371
+ response.body = void 0;
1372
+ if (error instanceof ResponseException) {
1373
+ response.status = error.status;
1374
+ response.error = error.message;
1375
+ response.stack = error.stack;
1376
+ } else if (error instanceof Error) {
1377
+ setCritical(true);
1378
+ response.status = 500;
1379
+ response.error = error.message || "Internal Server Error";
1380
+ response.stack = error.stack;
1381
+ } else {
1382
+ setCritical(true);
1383
+ response.status = 500;
1384
+ response.error = "Unknown error occurred";
1385
+ }
1386
+ }
1387
+ logResponse(request, response, ms, isCritical) {
1388
+ const msg = `< ${response.status} ${request.method} /${request.path} ${Logger.colors.yellow}${Math.round(ms)}ms${Logger.colors.initial}`;
1389
+ if (response.status < 400) Logger.log(msg);
1390
+ else if (response.status < 500) Logger.warn(msg);
1391
+ else isCritical ? Logger.critical(msg) : Logger.error(msg);
1392
+ if (response.error) {
1393
+ isCritical ? Logger.critical(response.error) : Logger.error(response.error);
1394
+ if (response.stack) Logger.errorStack(response.stack);
1395
+ }
1417
1396
  }
1418
1397
  };
1419
- __name(NoxSocket, "NoxSocket");
1420
- NoxSocket = __decorateClass([
1398
+ __name(Router, "Router");
1399
+ Router = __decorateClass([
1421
1400
  Injectable({ lifetime: "singleton" })
1422
- ], NoxSocket);
1401
+ ], Router);
1423
1402
 
1424
- // src/app.ts
1403
+ // src/internal/app.ts
1404
+ var import_main2 = require("electron/main");
1405
+ init_app_injector();
1406
+ init_injector_explorer();
1425
1407
  init_logger();
1426
1408
 
1427
1409
  // src/window/window-manager.ts
1428
1410
  var import_main = require("electron/main");
1429
- init_injectable_decorator();
1430
1411
  init_logger();
1431
1412
  var WindowManager = class {
1432
1413
  constructor() {
1433
1414
  this._windows = /* @__PURE__ */ new Map();
1415
+ this.listeners = /* @__PURE__ */ new Map();
1434
1416
  }
1435
1417
  // -------------------------------------------------------------------------
1436
1418
  // Creation
@@ -1480,18 +1462,24 @@ var WindowManager = class {
1480
1462
  * win.loadFile('index.html');
1481
1463
  */
1482
1464
  async createSplash(options = {}) {
1483
- const { animationDuration = 600, ...bwOptions } = options;
1465
+ const {
1466
+ animationDuration = 10,
1467
+ expandToWorkArea = true,
1468
+ ...bwOptions
1469
+ } = options;
1484
1470
  const win = new import_main.BrowserWindow({
1485
1471
  width: 600,
1486
1472
  height: 600,
1487
1473
  center: true,
1488
- frame: false,
1489
1474
  show: true,
1490
1475
  ...bwOptions
1491
1476
  });
1492
1477
  this._register(win, true);
1493
1478
  Logger.log(`[WindowManager] Splash window #${win.id} created`);
1494
- await this._expandToWorkArea(win, animationDuration);
1479
+ if (expandToWorkArea) {
1480
+ await (() => new Promise((r) => setTimeout(r, 500)))();
1481
+ await this._expandToWorkArea(win, animationDuration);
1482
+ }
1495
1483
  return win;
1496
1484
  }
1497
1485
  // -------------------------------------------------------------------------
@@ -1550,10 +1538,24 @@ var WindowManager = class {
1550
1538
  */
1551
1539
  broadcast(channel, ...args) {
1552
1540
  for (const win of this._windows.values()) {
1553
- if (!win.isDestroyed()) win.webContents.send(channel, ...args);
1541
+ if (!win.isDestroyed()) {
1542
+ win.webContents.send(channel, ...args);
1543
+ }
1554
1544
  }
1555
1545
  }
1556
1546
  // -------------------------------------------------------------------------
1547
+ // Events
1548
+ // -------------------------------------------------------------------------
1549
+ on(event, handler) {
1550
+ const set = this.listeners.get(event) ?? /* @__PURE__ */ new Set();
1551
+ set.add(handler);
1552
+ this.listeners.set(event, set);
1553
+ return () => set.delete(handler);
1554
+ }
1555
+ _emit(event, win) {
1556
+ this.listeners.get(event)?.forEach((h) => h(win));
1557
+ }
1558
+ // -------------------------------------------------------------------------
1557
1559
  // Private
1558
1560
  // -------------------------------------------------------------------------
1559
1561
  _register(win, isMain) {
@@ -1561,10 +1563,16 @@ var WindowManager = class {
1561
1563
  if (isMain && this._mainWindowId === void 0) {
1562
1564
  this._mainWindowId = win.id;
1563
1565
  }
1566
+ this._emit("created", win);
1567
+ win.on("focus", () => this._emit("focused", win));
1568
+ win.on("blur", () => this._emit("blurred", win));
1564
1569
  win.once("closed", () => {
1565
1570
  this._windows.delete(win.id);
1566
- if (this._mainWindowId === win.id) this._mainWindowId = void 0;
1571
+ if (this._mainWindowId === win.id) {
1572
+ this._mainWindowId = void 0;
1573
+ }
1567
1574
  Logger.log(`[WindowManager] Window #${win.id} closed`);
1575
+ this._emit("closed", win);
1568
1576
  });
1569
1577
  }
1570
1578
  /**
@@ -1574,17 +1582,18 @@ var WindowManager = class {
1574
1582
  */
1575
1583
  _expandToWorkArea(win, animationDuration) {
1576
1584
  return new Promise((resolve) => {
1577
- const { x, y, width, height } = import_main.screen.getPrimaryDisplay().workArea;
1578
- win.setBounds({ x, y, width, height }, true);
1585
+ win.maximize();
1579
1586
  let resolved = false;
1580
1587
  const done = /* @__PURE__ */ __name(() => {
1581
- if (resolved) return;
1588
+ if (resolved) {
1589
+ return;
1590
+ }
1582
1591
  resolved = true;
1583
1592
  win.removeListener("resize", done);
1584
1593
  resolve();
1585
1594
  }, "done");
1586
1595
  win.once("resize", done);
1587
- setTimeout(done, animationDuration + 100);
1596
+ setTimeout(done, animationDuration);
1588
1597
  });
1589
1598
  }
1590
1599
  };
@@ -1593,24 +1602,74 @@ WindowManager = __decorateClass([
1593
1602
  Injectable({ lifetime: "singleton" })
1594
1603
  ], WindowManager);
1595
1604
 
1596
- // src/app.ts
1597
- var NoxApp = class {
1605
+ // src/internal/socket.ts
1606
+ init_logger();
1607
+ var NoxSocket = class {
1598
1608
  constructor() {
1599
- this.router = inject(Router);
1600
- this.socket = inject(NoxSocket);
1601
- this.windowManager = inject(WindowManager);
1609
+ this.channels = /* @__PURE__ */ new Map();
1610
+ }
1611
+ register(senderId, requestChannel, socketChannel) {
1612
+ this.channels.set(senderId, { request: requestChannel, socket: socketChannel });
1613
+ }
1614
+ get(senderId) {
1615
+ return this.channels.get(senderId);
1616
+ }
1617
+ unregister(senderId) {
1618
+ this.channels.delete(senderId);
1619
+ }
1620
+ getSenderIds() {
1621
+ return [...this.channels.keys()];
1622
+ }
1623
+ emit(eventName, payload, targetSenderIds) {
1624
+ const normalizedEvent = eventName.trim();
1625
+ if (normalizedEvent.length === 0) {
1626
+ throw new Error("Renderer event name must be a non-empty string.");
1627
+ }
1628
+ const recipients = targetSenderIds ?? this.getSenderIds();
1629
+ for (const senderId of recipients) {
1630
+ const channel = this.channels.get(senderId);
1631
+ if (!channel) {
1632
+ Logger.warn(`No message channel found for sender ID: ${senderId} while emitting "${normalizedEvent}".`);
1633
+ continue;
1634
+ }
1635
+ try {
1636
+ channel.socket.port1.postMessage(createRendererEventMessage(normalizedEvent, payload));
1637
+ } catch (error) {
1638
+ Logger.error(`[Noxus] Failed to emit "${normalizedEvent}" to sender ${senderId}.`, error);
1639
+ }
1640
+ }
1641
+ }
1642
+ emitToRenderer(senderId, eventName, payload) {
1643
+ if (!this.channels.has(senderId)) {
1644
+ return false;
1645
+ }
1646
+ this.emit(eventName, payload, [senderId]);
1647
+ return true;
1648
+ }
1649
+ };
1650
+ __name(NoxSocket, "NoxSocket");
1651
+ NoxSocket = __decorateClass([
1652
+ Injectable({ lifetime: "singleton" })
1653
+ ], NoxSocket);
1654
+
1655
+ // src/internal/app.ts
1656
+ var NoxApp = class {
1657
+ constructor(router, socket, windowManager) {
1658
+ this.router = router;
1659
+ this.socket = socket;
1660
+ this.windowManager = windowManager;
1602
1661
  // -------------------------------------------------------------------------
1603
1662
  // IPC
1604
1663
  // -------------------------------------------------------------------------
1605
1664
  this.onRendererMessage = /* @__PURE__ */ __name(async (event) => {
1606
- const { senderId, requestId, path: path2, method, body } = event.data;
1665
+ const { senderId, requestId, path: path2, method, body, query } = event.data;
1607
1666
  const channels = this.socket.get(senderId);
1608
1667
  if (!channels) {
1609
1668
  Logger.error(`No message channel found for sender ID: ${senderId}`);
1610
1669
  return;
1611
1670
  }
1612
1671
  try {
1613
- const request = new Request(event, senderId, requestId, method, path2, body);
1672
+ const request = new Request(event, senderId, requestId, method, path2, body, query);
1614
1673
  const response = await this.router.handle(request);
1615
1674
  channels.request.port1.postMessage(response);
1616
1675
  } catch (err) {
@@ -1661,7 +1720,7 @@ var NoxApp = class {
1661
1720
  async load(importFns) {
1662
1721
  InjectorExplorer.beginAccumulate();
1663
1722
  await Promise.all(importFns.map((fn) => fn()));
1664
- InjectorExplorer.flushAccumulated();
1723
+ await InjectorExplorer.flushAccumulated();
1665
1724
  return this;
1666
1725
  }
1667
1726
  /**
@@ -1735,22 +1794,38 @@ NoxApp = __decorateClass([
1735
1794
  Injectable({ lifetime: "singleton", deps: [Router, NoxSocket, WindowManager] })
1736
1795
  ], NoxApp);
1737
1796
 
1738
- // src/bootstrap.ts
1797
+ // src/internal/bootstrap.ts
1739
1798
  var import_main3 = require("electron/main");
1740
1799
  init_app_injector();
1741
1800
  init_injector_explorer();
1801
+ init_logger();
1742
1802
  async function bootstrapApplication(config = {}) {
1743
1803
  await import_main3.app.whenReady();
1804
+ if (config.logLevel !== void 0) {
1805
+ if (config.logLevel === "none") {
1806
+ Logger.setLogLevel([]);
1807
+ } else if (Array.isArray(config.logLevel)) {
1808
+ Logger.setLogLevel(config.logLevel);
1809
+ } else {
1810
+ Logger.setLogLevel(config.logLevel);
1811
+ }
1812
+ }
1744
1813
  const overrides = /* @__PURE__ */ new Map();
1745
1814
  for (const { token: token2, useValue } of config.singletons ?? []) {
1746
1815
  overrides.set(token2, useValue);
1747
1816
  RootInjector.singletons.set(token2, useValue);
1748
1817
  }
1818
+ InjectorExplorer.setControllerRegistrar((controllerClass, pathPrefix, routeGuards, routeMiddlewares) => {
1819
+ const router = inject(Router);
1820
+ router.registerController(controllerClass, pathPrefix, routeGuards, routeMiddlewares);
1821
+ });
1749
1822
  InjectorExplorer.processPending(overrides);
1750
1823
  const noxApp = inject(NoxApp);
1751
1824
  if (config.routes?.length) {
1752
1825
  for (const route of config.routes) {
1753
- noxApp.lazy(route.path, route.load, route.guards, route.middlewares);
1826
+ if (route.load) {
1827
+ noxApp.lazy(route.path, route.load, route.guards, route.middlewares);
1828
+ }
1754
1829
  }
1755
1830
  }
1756
1831
  if (config.eagerLoad?.length) {
@@ -1762,29 +1837,53 @@ async function bootstrapApplication(config = {}) {
1762
1837
  __name(bootstrapApplication, "bootstrapApplication");
1763
1838
 
1764
1839
  // src/main.ts
1765
- init_exceptions();
1766
- init_controller_decorator();
1767
- init_injectable_decorator();
1768
- init_method_decorator();
1769
1840
  init_logger();
1770
1841
  init_forward_ref();
1771
- init_request();
1772
1842
 
1773
- // src/routes.ts
1843
+ // src/internal/routes.ts
1774
1844
  function defineRoutes(routes) {
1775
- const paths = routes.map((r) => r.path.replace(/^\/+|\/+$/g, ""));
1845
+ const flat = flattenRoutes(routes);
1846
+ const paths = flat.map((r) => r.path);
1776
1847
  const duplicates = paths.filter((p, i) => paths.indexOf(p) !== i);
1777
1848
  if (duplicates.length > 0) {
1778
1849
  throw new Error(
1779
1850
  `[Noxus] Duplicate route prefixes detected: ${[...new Set(duplicates)].map((d) => `"${d}"`).join(", ")}`
1780
1851
  );
1781
1852
  }
1782
- return routes.map((r) => ({
1783
- ...r,
1784
- path: r.path.replace(/^\/+|\/+$/g, "")
1785
- }));
1853
+ const sorted = [...paths].sort();
1854
+ for (let i = 0; i < sorted.length - 1; i++) {
1855
+ const a = sorted[i];
1856
+ const b = sorted[i + 1];
1857
+ if (b.startsWith(a + "/")) {
1858
+ throw new Error(
1859
+ `[Noxus] Overlapping route prefixes detected: "${a}" and "${b}". Use nested children under "${a}" instead of declaring both as top-level routes.`
1860
+ );
1861
+ }
1862
+ }
1863
+ return flat;
1786
1864
  }
1787
1865
  __name(defineRoutes, "defineRoutes");
1866
+ function flattenRoutes(routes, parentPath = "", parentGuards = [], parentMiddlewares = []) {
1867
+ const result = [];
1868
+ for (const route of routes) {
1869
+ const path2 = [parentPath, route.path.replace(/^\/+|\/+$/g, "")].filter(Boolean).join("/");
1870
+ const guards = [.../* @__PURE__ */ new Set([...parentGuards, ...route.guards ?? []])];
1871
+ const middlewares = [.../* @__PURE__ */ new Set([...parentMiddlewares, ...route.middlewares ?? []])];
1872
+ if (route.load) {
1873
+ result.push({ ...route, path: path2, guards, middlewares });
1874
+ }
1875
+ if (route.children?.length) {
1876
+ result.push(...flattenRoutes(route.children, path2, guards, middlewares));
1877
+ }
1878
+ if (!route.load && !route.children?.length) {
1879
+ throw new Error(
1880
+ `[Noxus] Route "${path2}" has neither a load function nor children. It must have at least one of them.`
1881
+ );
1882
+ }
1883
+ }
1884
+ return result;
1885
+ }
1886
+ __name(flattenRoutes, "flattenRoutes");
1788
1887
  // Annotate the CommonJS export names for ESM import in node:
1789
1888
  0 && (module.exports = {
1790
1889
  AppInjector,
@@ -1838,6 +1937,7 @@ __name(defineRoutes, "defineRoutes");
1838
1937
  inject,
1839
1938
  isAtomicHttpMethod,
1840
1939
  isRendererEventMessage,
1940
+ resetRootInjector,
1841
1941
  token
1842
1942
  });
1843
1943
  /**