jsExecutor.ts 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. ///
  2. /// Copyright © 2016-2023 The Thingsboard Authors
  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. import vm, { Script } from 'vm';
  17. export type TbScript = Script | Function;
  18. export class JsExecutor {
  19. useSandbox: boolean;
  20. constructor(useSandbox: boolean) {
  21. this.useSandbox = useSandbox;
  22. }
  23. compileScript(code: string): Promise<TbScript> {
  24. if (this.useSandbox) {
  25. return this.createScript(code);
  26. } else {
  27. return this.createFunction(code);
  28. }
  29. }
  30. executeScript(script: TbScript, args: string[], timeout?: number): Promise<any> {
  31. if (this.useSandbox) {
  32. return this.invokeScript(script as Script, args, timeout);
  33. } else {
  34. return this.invokeFunction(script as Function, args);
  35. }
  36. }
  37. private createScript(code: string): Promise<Script> {
  38. return new Promise((resolve, reject) => {
  39. try {
  40. code = "("+code+")(...args)";
  41. const script = new vm.Script(code);
  42. resolve(script);
  43. } catch (err) {
  44. reject(err);
  45. }
  46. });
  47. }
  48. private invokeScript(script: Script, args: string[], timeout: number | undefined): Promise<any> {
  49. return new Promise((resolve, reject) => {
  50. try {
  51. const sandbox = Object.create(null);
  52. sandbox.args = args;
  53. const result = script.runInNewContext(sandbox, {timeout: timeout});
  54. resolve(result);
  55. } catch (err) {
  56. reject(err);
  57. }
  58. });
  59. }
  60. private createFunction(code: string): Promise<Function> {
  61. return new Promise((resolve, reject) => {
  62. try {
  63. code = "return ("+code+")(...args)";
  64. const parsingContext = vm.createContext({});
  65. const func = vm.compileFunction(code, ['args'], {parsingContext: parsingContext});
  66. resolve(func);
  67. } catch (err) {
  68. reject(err);
  69. }
  70. });
  71. }
  72. private invokeFunction(func: Function, args: string[]): Promise<any> {
  73. return new Promise((resolve, reject) => {
  74. try {
  75. const result = func(args);
  76. resolve(result);
  77. } catch (err) {
  78. reject(err);
  79. }
  80. });
  81. }
  82. }