restricted-resource-loader.js 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /**
  2. * Copyright 2024 Google LLC
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. var fs = require('fs');
  17. module.exports = function(source) {
  18. // Set this loader to cacheable
  19. this.cacheable();
  20. // Whitelist files in the current project
  21. var whitelisted_folders = [this.options.context];
  22. // Whitelist files from the SDK-appended search paths
  23. whitelisted_folders = whitelisted_folders.concat(this.options.resolve.root);
  24. // Iterate over whitelisted file paths
  25. for (var i=0; i<whitelisted_folders.length; i++) {
  26. // If resource file is from a whitelisted path, return source
  27. if (~this.resourcePath.indexOf(fs.realpathSync(whitelisted_folders[i]))) {
  28. return source;
  29. }
  30. }
  31. // If the resource file is not from a whitelisted path, emit an error and fail the build
  32. this.emitError("Requiring a file outside of the current project folder is not permitted.");
  33. return "";
  34. };