builder/lib/tasks/replaceCopyright.js

  1. import stringReplacer from "../processors/stringReplacer.js";
  2. /**
  3. * @public
  4. * @module @ui5/builder/tasks/replaceCopyright
  5. */
  6. /**
  7. * Task to to replace the copyright.
  8. *
  9. * The following placeholders are replaced with corresponding values:
  10. * <ul>
  11. * <li>${copyright}</li>
  12. * <li>@copyright@</li>
  13. * </ul>
  14. *
  15. * If the copyright string contains the optional placeholder ${currentYear}
  16. * it will be replaced with the current year.
  17. * If no copyright string is given, no replacement is being done.
  18. *
  19. * @public
  20. * @function default
  21. * @static
  22. *
  23. * @param {object} parameters Parameters
  24. * @param {@ui5/fs/DuplexCollection} parameters.workspace DuplexCollection to read and write files
  25. * @param {object} parameters.options Options
  26. * @param {string} parameters.options.copyright Replacement copyright
  27. * @param {string} parameters.options.pattern Pattern to locate the files to be processed
  28. * @returns {Promise<undefined>} Promise resolving with <code>undefined</code> once data has been written
  29. */
  30. export default function({workspace, options: {copyright, pattern}}) {
  31. if (!copyright) {
  32. return Promise.resolve();
  33. }
  34. // Replace optional placeholder ${currentYear} with the current year
  35. copyright = copyright.replace(/(?:\$\{currentYear\})/, new Date().getFullYear());
  36. return workspace.byGlob(pattern)
  37. .then((processedResources) => {
  38. return stringReplacer({
  39. resources: processedResources,
  40. options: {
  41. pattern: /(?:\$\{copyright\}|@copyright@)/g,
  42. replacement: copyright
  43. }
  44. });
  45. })
  46. .then((processedResources) => {
  47. return Promise.all(processedResources.map((resource) => {
  48. return workspace.write(resource);
  49. }));
  50. });
  51. }