project/lib/specifications/extensions/ServerMiddleware.js

  1. import path from "node:path";
  2. import Extension from "../Extension.js";
  3. import {pathToFileURL} from "node:url";
  4. /**
  5. * ServerMiddleware
  6. *
  7. * @public
  8. * @class
  9. * @alias @ui5/project/specifications/extensions/ServerMiddleware
  10. * @extends @ui5/project/specifications/Extension
  11. * @hideconstructor
  12. */
  13. class ServerMiddleware extends Extension {
  14. constructor(parameters) {
  15. super(parameters);
  16. }
  17. /* === Attributes === */
  18. /**
  19. * @public
  20. */
  21. async getMiddleware() {
  22. const middlewarePath = path.join(this.getRootPath(), this._config.middleware.path);
  23. const {default: middleware} = await import(pathToFileURL(middlewarePath));
  24. return middleware;
  25. }
  26. /* === Internals === */
  27. /**
  28. * @private
  29. */
  30. async _validateConfig() {
  31. // TODO: Move to validator
  32. if (/--\d+$/.test(this.getName())) {
  33. throw new Error(`Server middleware name must not end with '--<number>'`);
  34. }
  35. // TODO: Check that paths exist
  36. }
  37. }
  38. export default ServerMiddleware;