zcatalyst-cli 1.20.2 → 1.22.0

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 (654) hide show
  1. package/README.md +7 -5
  2. package/lib/api-timer.d.ts +17 -0
  3. package/lib/api-timer.js +2 -2
  4. package/lib/apig-utils.d.ts +41 -0
  5. package/lib/apig-utils.js +32 -32
  6. package/lib/appsail-utils.d.ts +3 -0
  7. package/lib/appsail-utils.js +116 -12
  8. package/lib/archiver.d.ts +47 -0
  9. package/lib/archiver.js +6 -6
  10. package/lib/authentication/constants/auth.d.ts +21 -0
  11. package/lib/authentication/constants/auth.js +37 -0
  12. package/lib/authentication/constants/scopes.d.ts +81 -0
  13. package/lib/{util_modules/constants/lib → authentication/constants}/scopes.js +4 -1
  14. package/lib/authentication/credential.d.ts +39 -0
  15. package/lib/{internal → authentication}/credential.js +63 -46
  16. package/lib/authentication/crypt.d.ts +13 -0
  17. package/lib/authentication/error.d.ts +4 -0
  18. package/lib/authentication/error.js +14 -0
  19. package/lib/authentication/index.d.ts +5 -0
  20. package/lib/authentication/index.js +65 -63
  21. package/lib/authentication/login.d.ts +46 -0
  22. package/lib/authentication/login.js +147 -105
  23. package/lib/authentication/revoke.d.ts +9 -0
  24. package/lib/bin/catalyst.d.ts +2 -0
  25. package/lib/bin/catalyst.js +80 -36
  26. package/lib/cli_table/index.js +3 -2
  27. package/lib/client-utils.d.ts +16 -0
  28. package/lib/client-utils.js +57 -50
  29. package/lib/client.d.ts +21 -0
  30. package/lib/client.js +93 -6
  31. package/lib/code-deck.d.ts +21 -0
  32. package/lib/command_needs/auth.d.ts +2 -0
  33. package/lib/command_needs/auth.js +25 -24
  34. package/lib/command_needs/config.d.ts +4 -0
  35. package/lib/command_needs/rc.d.ts +8 -0
  36. package/lib/command_needs/rc.js +24 -24
  37. package/lib/commands/apig/disable.d.ts +3 -0
  38. package/lib/commands/apig/disable.js +8 -8
  39. package/lib/commands/apig/enable.d.ts +3 -0
  40. package/lib/commands/apig/enable.js +8 -8
  41. package/lib/commands/apig/status.d.ts +18 -0
  42. package/lib/commands/apig/status.js +12 -12
  43. package/lib/commands/appsail/add.d.ts +3 -0
  44. package/lib/commands/appsail/add.js +7 -6
  45. package/lib/commands/appsail/unlink.d.ts +3 -0
  46. package/lib/commands/appsail/unlink.js +43 -0
  47. package/lib/commands/client/delete.d.ts +3 -0
  48. package/lib/commands/client/delete.js +19 -19
  49. package/lib/commands/client/setup.d.ts +3 -0
  50. package/lib/commands/client/setup.js +6 -5
  51. package/lib/commands/codelib/install.d.ts +3 -0
  52. package/lib/commands/codelib/install.js +15 -15
  53. package/lib/commands/config/delete.d.ts +3 -0
  54. package/lib/commands/config/delete.js +2 -2
  55. package/lib/commands/config/get.d.ts +3 -0
  56. package/lib/commands/config/get.js +2 -2
  57. package/lib/commands/config/list.d.ts +3 -0
  58. package/lib/commands/config/list.js +2 -2
  59. package/lib/commands/config/set.d.ts +3 -0
  60. package/lib/commands/config/set.js +2 -2
  61. package/lib/commands/deploy/appsail.d.ts +3 -0
  62. package/lib/commands/deploy/appsail.js +11 -9
  63. package/lib/commands/deploy/index.d.ts +3 -0
  64. package/lib/commands/deploy/index.js +45 -26
  65. package/lib/commands/deploy/slate.d.ts +3 -0
  66. package/lib/commands/deploy/slate.js +2 -2
  67. package/lib/commands/ds/export.d.ts +3 -0
  68. package/lib/commands/ds/export.js +9 -9
  69. package/lib/commands/ds/import.d.ts +3 -0
  70. package/lib/commands/ds/import.js +13 -13
  71. package/lib/commands/ds/status.d.ts +23 -0
  72. package/lib/commands/ds/status.js +12 -11
  73. package/lib/commands/event/generate/index.d.ts +3 -0
  74. package/lib/commands/event/generate/index.js +5 -186
  75. package/lib/commands/event/generate/integ.d.ts +3 -0
  76. package/lib/commands/event/generate/integ.js +4 -4
  77. package/lib/commands/event/generate/job.d.ts +3 -0
  78. package/lib/commands/functions/add.d.ts +3 -0
  79. package/lib/commands/functions/add.js +6 -5
  80. package/lib/commands/functions/config.d.ts +3 -0
  81. package/lib/commands/functions/config.js +5 -5
  82. package/lib/commands/functions/delete.d.ts +3 -0
  83. package/lib/commands/functions/delete.js +19 -18
  84. package/lib/commands/functions/execute.d.ts +3 -0
  85. package/lib/commands/functions/execute.js +202 -0
  86. package/lib/commands/functions/setup.d.ts +3 -0
  87. package/lib/commands/functions/setup.js +6 -5
  88. package/lib/commands/functions/shell.d.ts +3 -0
  89. package/lib/commands/functions/shell.js +32 -28
  90. package/lib/commands/help.d.ts +3 -0
  91. package/lib/commands/help.js +4 -4
  92. package/lib/commands/iac/export.d.ts +3 -0
  93. package/lib/commands/iac/export.js +9 -8
  94. package/lib/commands/iac/import.d.ts +6 -0
  95. package/lib/commands/iac/import.js +23 -22
  96. package/lib/commands/iac/pack.d.ts +3 -0
  97. package/lib/commands/iac/pack.js +13 -13
  98. package/lib/commands/iac/status.d.ts +3 -0
  99. package/lib/commands/iac/status.js +4 -4
  100. package/lib/commands/index.d.ts +3 -0
  101. package/lib/commands/index.js +74 -61
  102. package/lib/commands/init.d.ts +3 -0
  103. package/lib/commands/init.js +17 -11
  104. package/lib/commands/login.d.ts +3 -0
  105. package/lib/commands/login.js +2 -2
  106. package/lib/commands/logout.d.ts +3 -0
  107. package/lib/commands/logout.js +1 -1
  108. package/lib/commands/project/list.d.ts +3 -0
  109. package/lib/commands/project/list.js +7 -6
  110. package/lib/commands/project/reset.d.ts +3 -0
  111. package/lib/commands/project/reset.js +5 -5
  112. package/lib/commands/project/use.d.ts +3 -0
  113. package/lib/commands/project/use.js +13 -11
  114. package/lib/commands/pull.d.ts +3 -0
  115. package/lib/commands/pull.js +16 -15
  116. package/lib/commands/run.d.ts +3 -0
  117. package/lib/commands/run.js +9 -9
  118. package/lib/commands/serve.d.ts +3 -0
  119. package/lib/commands/signals/generate/index.d.ts +3 -0
  120. package/lib/commands/slate/create.d.ts +3 -0
  121. package/lib/commands/slate/create.js +2 -2
  122. package/lib/commands/slate/link.d.ts +3 -0
  123. package/lib/commands/slate/link.js +5 -5
  124. package/lib/commands/slate/unlink.d.ts +3 -0
  125. package/lib/commands/slate/unlink.js +2 -2
  126. package/lib/commands/token/generate.d.ts +3 -0
  127. package/lib/commands/token/generate.js +4 -3
  128. package/lib/commands/token/list.d.ts +3 -0
  129. package/lib/commands/token/list.js +4 -3
  130. package/lib/commands/token/revoke.d.ts +3 -0
  131. package/lib/commands/token/revoke.js +3 -3
  132. package/lib/commands/whoami.d.ts +3 -0
  133. package/lib/commands/whoami.js +8 -8
  134. package/lib/commands/zest/generate/index.d.ts +14 -0
  135. package/lib/commands/zest/generate/index.js +1 -2
  136. package/lib/deploy/features/apig.d.ts +2 -0
  137. package/lib/deploy/features/apig.js +11 -11
  138. package/lib/deploy/features/appsail/index.d.ts +3 -0
  139. package/lib/deploy/features/appsail/index.js +82 -194
  140. package/lib/deploy/features/appsail/pack.d.ts +14 -0
  141. package/lib/deploy/features/appsail/pack.js +130 -0
  142. package/lib/deploy/features/appsail/utils.d.ts +15 -0
  143. package/lib/deploy/features/appsail/utils.js +163 -17
  144. package/lib/deploy/features/client.d.ts +2 -0
  145. package/lib/deploy/features/client.js +5 -4
  146. package/lib/deploy/features/functions/index.d.ts +2 -0
  147. package/lib/deploy/features/functions/index.js +41 -32
  148. package/lib/deploy/features/functions/languages/index.d.ts +4 -0
  149. package/lib/deploy/features/functions/languages/index.js +14 -1
  150. package/lib/deploy/features/functions/utils.d.ts +1 -0
  151. package/lib/deploy/features/functions/utils.js +136 -0
  152. package/lib/deploy/features/index.d.ts +8 -0
  153. package/lib/deploy/features/slate.d.ts +5 -0
  154. package/lib/deploy/features/slate.js +15 -8
  155. package/lib/deploy/index.d.ts +6 -0
  156. package/lib/deploy/index.js +12 -11
  157. package/lib/deploy/util.d.ts +7 -0
  158. package/lib/deploy/util.js +22 -0
  159. package/lib/docs/commands/functions/execute.toml +29 -0
  160. package/lib/docs/endpoints/lib/git-hub.toml +3 -0
  161. package/lib/docs/fn-utils/lib/java/classpath.toml +9 -0
  162. package/lib/docs/fn-utils/lib/java/ensure-java-userconfig.toml +24 -0
  163. package/lib/docs/fn-utils/lib/java/index.toml +15 -0
  164. package/{docs → lib/docs}/option-filter.toml +12 -3
  165. package/lib/docs/util_modules/container.toml +6 -0
  166. package/{docs → lib/docs}/util_modules/project.toml +1 -1
  167. package/lib/endpoints/index.d.ts +119 -0
  168. package/lib/endpoints/index.js +32 -25
  169. package/lib/endpoints/lib/apig.d.ts +17 -0
  170. package/lib/endpoints/lib/apig.js +12 -12
  171. package/lib/endpoints/lib/applogic.d.ts +21 -0
  172. package/lib/endpoints/lib/applogic.js +10 -10
  173. package/lib/endpoints/lib/appsail.d.ts +64 -0
  174. package/lib/endpoints/lib/appsail.js +94 -5
  175. package/lib/endpoints/lib/cache.d.ts +12 -0
  176. package/lib/endpoints/lib/cache.js +8 -8
  177. package/lib/endpoints/lib/catalyst-details.d.ts +8 -0
  178. package/lib/endpoints/lib/catalyst-details.js +2 -2
  179. package/lib/endpoints/lib/client.d.ts +16 -0
  180. package/lib/endpoints/lib/client.js +12 -12
  181. package/lib/endpoints/lib/code-deck.d.ts +10 -0
  182. package/lib/endpoints/lib/code-deck.js +3 -3
  183. package/lib/endpoints/lib/common.d.ts +5 -0
  184. package/lib/endpoints/lib/common.js +2 -2
  185. package/lib/endpoints/lib/datastore.d.ts +11 -0
  186. package/lib/endpoints/lib/datastore.js +6 -6
  187. package/lib/endpoints/lib/ds-bulk.d.ts +46 -0
  188. package/lib/endpoints/lib/ds-bulk.js +12 -12
  189. package/lib/endpoints/lib/env.d.ts +8 -0
  190. package/lib/endpoints/lib/env.js +5 -5
  191. package/lib/endpoints/lib/event-bus.d.ts +10 -0
  192. package/lib/endpoints/lib/event-bus.js +4 -4
  193. package/lib/endpoints/lib/filestore.d.ts +13 -0
  194. package/lib/endpoints/lib/filestore.js +6 -6
  195. package/lib/endpoints/lib/functions.d.ts +24 -0
  196. package/lib/endpoints/lib/functions.js +14 -14
  197. package/lib/endpoints/lib/git-hub.d.ts +16 -0
  198. package/lib/endpoints/lib/git-hub.js +15 -2
  199. package/lib/endpoints/lib/iac.d.ts +43 -0
  200. package/lib/endpoints/lib/iac.js +20 -20
  201. package/lib/endpoints/lib/job-scheduling.d.ts +43 -0
  202. package/lib/endpoints/lib/job-scheduling.js +2 -2
  203. package/lib/endpoints/lib/log.d.ts +10 -0
  204. package/lib/endpoints/lib/org.d.ts +13 -0
  205. package/lib/endpoints/lib/org.js +2 -2
  206. package/lib/endpoints/lib/project.d.ts +18 -0
  207. package/lib/endpoints/lib/project.js +11 -11
  208. package/lib/endpoints/lib/queue.d.ts +14 -0
  209. package/lib/endpoints/lib/queue.js +8 -8
  210. package/lib/endpoints/lib/sdk.d.ts +10 -0
  211. package/lib/endpoints/lib/sdk.js +5 -5
  212. package/lib/endpoints/lib/slate.d.ts +16 -0
  213. package/lib/endpoints/lib/slate.js +8 -24
  214. package/lib/endpoints/lib/stratus.d.ts +15 -0
  215. package/lib/endpoints/lib/tunnel.d.ts +38 -0
  216. package/lib/endpoints/lib/tunnel.js +5 -5
  217. package/lib/endpoints/lib/user.d.ts +8 -0
  218. package/lib/endpoints/lib/user.js +46 -0
  219. package/lib/endpoints/lib/zcql.d.ts +12 -0
  220. package/lib/endpoints/lib/zcql.js +4 -4
  221. package/lib/endpoints/lib/zest.d.ts +73 -0
  222. package/lib/error/context-help.d.ts +1 -0
  223. package/lib/{util_modules → error}/context-help.js +15 -18
  224. package/lib/error/index.d.ts +27 -0
  225. package/lib/{error.js → error/index.js} +18 -14
  226. package/lib/error/utils.d.ts +2 -0
  227. package/lib/error/utils.js +8 -0
  228. package/lib/errorOut.d.ts +3 -0
  229. package/lib/errorOut.js +10 -9
  230. package/lib/errorResponse.d.ts +4 -0
  231. package/lib/event_generate/cache.d.ts +2 -0
  232. package/lib/event_generate/cache.js +3 -3
  233. package/lib/event_generate/custom.d.ts +1 -0
  234. package/lib/event_generate/custom.js +2 -2
  235. package/lib/event_generate/datastore.d.ts +7 -0
  236. package/lib/event_generate/datastore.js +6 -6
  237. package/lib/event_generate/filestore.d.ts +2 -0
  238. package/lib/event_generate/filestore.js +2 -2
  239. package/lib/event_generate/github.d.ts +2 -0
  240. package/lib/event_generate/index.d.ts +2 -0
  241. package/lib/event_generate/index.js +196 -0
  242. package/lib/event_generate/integration/cliq.d.ts +2 -0
  243. package/lib/event_generate/integration/cliq.js +4 -4
  244. package/lib/event_generate/stratus.d.ts +2 -0
  245. package/lib/event_generate/user.d.ts +2 -0
  246. package/lib/event_generate/webapp.d.ts +2 -0
  247. package/lib/execute/caller.d.ts +14 -0
  248. package/lib/execute/caller.js +155 -0
  249. package/lib/execute/index.d.ts +3 -0
  250. package/lib/execute/index.js +87 -0
  251. package/lib/execute-script.d.ts +6 -0
  252. package/lib/execute-script.js +62 -32
  253. package/lib/express_middlewares/apig-matcher.d.ts +3 -0
  254. package/lib/express_middlewares/auth-checker.d.ts +3 -0
  255. package/lib/express_middlewares/authenticator.d.ts +3 -0
  256. package/lib/express_middlewares/authenticator.js +3 -2
  257. package/lib/express_middlewares/cookie-parser.d.ts +3 -0
  258. package/lib/express_middlewares/error-handler.d.ts +3 -0
  259. package/lib/express_middlewares/logger.d.ts +5 -0
  260. package/lib/express_middlewares/logger.js +3 -2
  261. package/lib/express_middlewares/project.d.ts +6 -0
  262. package/lib/express_middlewares/url-rewriter.d.ts +3 -0
  263. package/lib/fn-utils/index.d.ts +10 -0
  264. package/lib/fn-utils/lib/browserLogic.d.ts +2 -0
  265. package/lib/fn-utils/lib/browserLogic.js +7 -6
  266. package/lib/fn-utils/lib/common.d.ts +85 -0
  267. package/lib/fn-utils/lib/common.js +79 -90
  268. package/lib/fn-utils/lib/integ.d.ts +2 -0
  269. package/lib/fn-utils/lib/integ.js +10 -4
  270. package/lib/fn-utils/lib/java/classpath.d.ts +2 -0
  271. package/lib/fn-utils/lib/java/classpath.js +107 -0
  272. package/lib/fn-utils/lib/java/compile.d.ts +4 -0
  273. package/lib/fn-utils/lib/java/compile.js +222 -0
  274. package/lib/fn-utils/lib/java/ensure-java-userconfig.d.ts +22 -0
  275. package/lib/fn-utils/lib/java/ensure-java-userconfig.js +264 -0
  276. package/lib/fn-utils/lib/java/index.d.ts +16 -0
  277. package/lib/fn-utils/lib/java/index.js +254 -0
  278. package/lib/fn-utils/lib/java/keywords.d.ts +2 -0
  279. package/lib/fn-utils/lib/java/keywords.js +71 -0
  280. package/lib/fn-utils/lib/node.d.ts +5 -0
  281. package/lib/fn-utils/lib/node.js +30 -10
  282. package/lib/fn-utils/lib/python.d.ts +3 -0
  283. package/lib/fn-utils/lib/python.js +9 -4
  284. package/lib/fn-watcher.d.ts +8 -0
  285. package/lib/fn-watcher.js +18 -23
  286. package/lib/iac/status/bundle.d.ts +2 -0
  287. package/lib/iac/status/bundle.js +10 -7
  288. package/lib/iac/status/deploy.d.ts +2 -0
  289. package/lib/iac/status/deploy.js +10 -10
  290. package/lib/iac/status/util/index.d.ts +2 -0
  291. package/lib/index.d.ts +2 -0
  292. package/lib/index.js +15 -4
  293. package/lib/init/dependencies/npm-install.d.ts +3 -0
  294. package/lib/init/dependencies/npm-install.js +4 -3
  295. package/lib/init/dependencies/package-json.d.ts +2 -0
  296. package/lib/init/dependencies/package-json.js +3 -3
  297. package/lib/init/dependencies/python/ensure-python.d.ts +2 -0
  298. package/lib/init/dependencies/python/pip-install.d.ts +7 -0
  299. package/lib/init/dependencies/python/pip-install.js +3 -3
  300. package/lib/init/features/appsail/index.d.ts +2 -0
  301. package/lib/init/features/appsail/index.js +48 -124
  302. package/lib/init/features/appsail/utils.d.ts +16 -0
  303. package/lib/init/features/appsail/utils.js +264 -0
  304. package/lib/init/features/client/index.d.ts +2 -0
  305. package/lib/init/features/client/index.js +1 -0
  306. package/lib/init/features/client/initializers/angular.d.ts +2 -0
  307. package/lib/init/features/client/initializers/angular.js +42 -12
  308. package/lib/init/features/client/initializers/basic.d.ts +2 -0
  309. package/lib/init/features/client/initializers/basic.js +2 -2
  310. package/lib/init/features/client/initializers/lyte.d.ts +2 -0
  311. package/lib/init/features/client/initializers/lyte.js +1 -1
  312. package/lib/init/features/client/initializers/react.d.ts +2 -0
  313. package/lib/init/features/client/initializers/react.js +5 -4
  314. package/lib/init/features/client/types.d.ts +10 -0
  315. package/lib/init/features/client/types.js +2 -0
  316. package/lib/init/features/functions/index.d.ts +17 -0
  317. package/lib/init/features/functions/index.js +60 -8
  318. package/lib/init/features/functions/languages/index.d.ts +6 -0
  319. package/lib/init/features/functions/languages/java.d.ts +2 -0
  320. package/lib/init/features/functions/languages/java.js +9 -7
  321. package/lib/init/features/functions/languages/node.d.ts +2 -0
  322. package/lib/init/features/functions/languages/node.js +6 -4
  323. package/lib/init/features/functions/languages/python.d.ts +2 -0
  324. package/lib/init/features/functions/languages/python.js +9 -7
  325. package/lib/init/features/index.d.ts +14 -0
  326. package/lib/init/features/index.js +15 -14
  327. package/lib/init/features/project.d.ts +2 -0
  328. package/lib/init/features/project.js +19 -22
  329. package/lib/init/features/slate/index.d.ts +2 -0
  330. package/lib/init/features/slate/index.js +109 -36
  331. package/lib/init/index.d.ts +2 -0
  332. package/lib/init/index.js +5 -5
  333. package/lib/init/util/client.d.ts +8 -0
  334. package/lib/init/util/client.js +10 -10
  335. package/lib/init/util/common.d.ts +12 -0
  336. package/lib/init/util/common.js +17 -16
  337. package/lib/init/util/functions.d.ts +7 -0
  338. package/lib/init/util/functions.js +3 -3
  339. package/lib/init/util/project.d.ts +3 -0
  340. package/lib/init/util/project.js +4 -4
  341. package/lib/internal/api.d.ts +78 -0
  342. package/lib/internal/api.js +32 -22
  343. package/lib/internal/command.d.ts +40 -0
  344. package/lib/internal/command.js +27 -11
  345. package/lib/internal/config.d.ts +19 -0
  346. package/lib/internal/config.js +4 -5
  347. package/lib/internal/rc.d.ts +44 -0
  348. package/lib/internal/rc.js +9 -9
  349. package/lib/migration/global/1.4.0.d.ts +2 -0
  350. package/lib/migration/global/1.4.0.js +4 -4
  351. package/lib/migration/global/1.6.2.d.ts +2 -0
  352. package/lib/migration/global/1.6.2.js +13 -13
  353. package/lib/migration/index.d.ts +6 -0
  354. package/lib/migration/index.js +19 -18
  355. package/lib/option-filter.d.ts +5 -0
  356. package/lib/option-filter.js +65 -32
  357. package/lib/optional-import.d.ts +2 -0
  358. package/lib/optional-import.js +3 -3
  359. package/lib/plugin-loader.d.ts +6 -0
  360. package/lib/plugin-loader.js +2 -2
  361. package/lib/port-resolver.d.ts +24 -0
  362. package/lib/port-resolver.js +14 -13
  363. package/lib/progress.d.ts +34 -0
  364. package/lib/prompt/index.d.ts +34 -0
  365. package/lib/prompt/index.js +49 -9
  366. package/lib/prompt/types/file-path.d.ts +25 -0
  367. package/lib/prompt/types/search-box.d.ts +56 -0
  368. package/lib/prompt/types/search-box.js +84 -46
  369. package/lib/prompt/types/tree.d.ts +65 -0
  370. package/lib/prompt/types/with-description.d.ts +15 -0
  371. package/lib/prompt/types/with-description.js +74 -0
  372. package/lib/pull/features/apig.d.ts +2 -0
  373. package/lib/pull/features/apig.js +10 -10
  374. package/lib/pull/features/client.d.ts +2 -0
  375. package/lib/pull/features/client.js +11 -10
  376. package/lib/pull/features/functions/index.d.ts +2 -0
  377. package/lib/pull/features/functions/index.js +38 -41
  378. package/lib/pull/features/functions/languages.d.ts +4 -0
  379. package/lib/pull/features/functions/languages.js +3 -3
  380. package/lib/pull/features/index.d.ts +6 -0
  381. package/lib/pull/index.d.ts +2 -0
  382. package/lib/pull/index.js +8 -8
  383. package/lib/repl-server.d.ts +32 -0
  384. package/lib/repl-server.js +8 -8
  385. package/lib/runtime-store.d.ts +3 -0
  386. package/lib/runtime-store.js +6 -12
  387. package/lib/serve/features/apig.d.ts +3 -0
  388. package/lib/serve/features/apig.js +3 -3
  389. package/lib/serve/features/appsail.d.ts +16 -0
  390. package/lib/serve/features/appsail.js +52 -10
  391. package/lib/serve/features/client.d.ts +2 -0
  392. package/lib/serve/features/client.js +1 -1
  393. package/lib/serve/features/index.d.ts +7 -0
  394. package/lib/serve/features/index.js +4 -4
  395. package/lib/serve/features/slate.d.ts +12 -0
  396. package/lib/serve/index.d.ts +2 -0
  397. package/lib/serve/index.js +82 -65
  398. package/lib/serve/server/index.d.ts +37 -0
  399. package/lib/serve/server/index.js +215 -121
  400. package/lib/serve/server/lib/appsail/index.d.ts +6 -0
  401. package/lib/serve/server/lib/appsail/index.js +214 -117
  402. package/lib/serve/server/lib/appsail/start.js +14 -5
  403. package/lib/serve/server/lib/java/index.d.ts +6 -0
  404. package/lib/serve/server/lib/java/index.js +52 -22
  405. package/lib/serve/server/lib/master/appsail.d.ts +5 -0
  406. package/lib/serve/server/lib/master/appsail.js +16 -5
  407. package/lib/serve/server/lib/master/functions.d.ts +5 -0
  408. package/lib/serve/server/lib/master/functions.js +27 -0
  409. package/lib/serve/server/lib/master/index.d.ts +10 -0
  410. package/lib/serve/server/lib/master/index.js +12 -4
  411. package/lib/serve/server/lib/master/slate.d.ts +5 -0
  412. package/lib/serve/server/lib/master/slate.js +4 -17
  413. package/lib/serve/server/lib/master/unknown-req-proxy.d.ts +4 -0
  414. package/lib/serve/server/lib/master/unknown-req-proxy.js +3 -5
  415. package/lib/serve/server/lib/master/utils.d.ts +24 -0
  416. package/lib/serve/server/lib/master/utils.js +12 -6
  417. package/lib/serve/server/lib/master/web-client.d.ts +5 -0
  418. package/lib/serve/server/lib/node/index.d.ts +6 -0
  419. package/lib/serve/server/lib/node/index.js +54 -43
  420. package/lib/serve/server/lib/node/server/bio.js +133 -0
  421. package/lib/serve/server/lib/node/server/browserlogic/browserlogic-puppeteer.js +1 -1
  422. package/lib/serve/server/lib/node/server/index.js +22 -1
  423. package/lib/serve/server/lib/python/index.d.ts +6 -0
  424. package/lib/serve/server/lib/python/index.js +63 -8
  425. package/lib/serve/server/lib/slate/index.d.ts +6 -0
  426. package/lib/serve/server/lib/slate/index.js +30 -33
  427. package/lib/serve/server/lib/slate/static-server.d.ts +7 -0
  428. package/lib/serve/server/lib/slate/static-server.js +24 -24
  429. package/lib/serve/server/lib/web_client/index.d.ts +5 -0
  430. package/lib/serve/server/lib/web_client/index.js +11 -8
  431. package/lib/serve/server/lib/web_client/server.d.ts +7 -0
  432. package/lib/serve/server/lib/web_client/server.js +22 -22
  433. package/lib/serve/server/lib/web_client/types.d.ts +15 -0
  434. package/lib/serve/server/lib/web_client/types.js +2 -0
  435. package/lib/shell/dependencies/http-functions.d.ts +35 -0
  436. package/lib/shell/dependencies/http-functions.js +59 -26
  437. package/lib/shell/dependencies/invoker/cron/java/JavacronInvoker.java +1 -1
  438. package/lib/shell/dependencies/invoker/job/java/JavajobInvoker.java +51 -10
  439. package/lib/shell/dependencies/invoker/job/node.mjs +2 -2
  440. package/lib/shell/dependencies/non-http-function/fn-execution-handler.d.ts +13 -0
  441. package/lib/shell/dependencies/non-http-function/fn-execution-handler.js +260 -0
  442. package/lib/shell/dependencies/non-http-function/fn-handler.d.ts +30 -0
  443. package/lib/shell/dependencies/non-http-function/fn-handler.js +258 -0
  444. package/lib/shell/dependencies/non-http-function/index.d.ts +20 -0
  445. package/lib/shell/dependencies/non-http-function/index.js +62 -0
  446. package/lib/shell/dependencies/non-http-function/java.d.ts +9 -0
  447. package/lib/shell/dependencies/non-http-function/java.js +42 -0
  448. package/lib/shell/dependencies/non-http-function/node.d.ts +8 -0
  449. package/lib/shell/dependencies/non-http-function/node.js +36 -0
  450. package/lib/shell/dependencies/non-http-function/python.d.ts +5 -0
  451. package/lib/shell/dependencies/non-http-function/python.js +47 -0
  452. package/lib/shell/dependencies/non-http-function/slave-manager.d.ts +23 -0
  453. package/lib/shell/dependencies/non-http-function/slave-manager.js +173 -0
  454. package/lib/shell/dependencies/tunnel-server.d.ts +23 -0
  455. package/lib/shell/dependencies/tunnel-server.js +4 -4
  456. package/lib/shell/index.d.ts +2 -0
  457. package/lib/shell/index.js +31 -25
  458. package/lib/shell/prepare/index.d.ts +4 -0
  459. package/lib/shell/prepare/index.js +9 -27
  460. package/lib/shell/prepare/languages/index.d.ts +6 -0
  461. package/lib/shell/prepare/languages/index.js +20 -5
  462. package/lib/shell/prepare/languages/java.d.ts +3 -0
  463. package/lib/shell/prepare/languages/java.js +6 -14
  464. package/lib/shell/prepare/languages/node.d.ts +3 -0
  465. package/lib/shell/prepare/languages/node.js +14 -1
  466. package/lib/shell/prepare/languages/python.d.ts +3 -0
  467. package/lib/shell/prepare/languages/python.js +13 -2
  468. package/lib/slate-utils.d.ts +12 -0
  469. package/lib/slate-utils.js +7 -1
  470. package/lib/throbber/index.d.ts +36 -0
  471. package/lib/throbber/index.js +11 -7
  472. package/lib/throbber/utils.d.ts +23 -0
  473. package/lib/track.d.ts +2 -0
  474. package/lib/track.js +13 -13
  475. package/lib/userConfig.d.ts +22 -0
  476. package/lib/userConfig.js +18 -8
  477. package/lib/util_modules/config/index.d.ts +6 -0
  478. package/lib/util_modules/config/lib/apig.d.ts +15 -0
  479. package/lib/util_modules/config/lib/apig.js +4 -4
  480. package/lib/util_modules/config/lib/appsail.d.ts +50 -0
  481. package/lib/util_modules/config/lib/appsail.js +96 -26
  482. package/lib/util_modules/config/lib/client.d.ts +20 -0
  483. package/lib/util_modules/config/lib/client.js +19 -6
  484. package/lib/util_modules/config/lib/functions.d.ts +48 -0
  485. package/lib/util_modules/config/lib/functions.js +27 -16
  486. package/lib/util_modules/config/lib/slate.d.ts +106 -0
  487. package/lib/util_modules/config/lib/slate.js +2 -6
  488. package/lib/util_modules/config-store.d.ts +12 -0
  489. package/lib/util_modules/config-store.js +55 -0
  490. package/lib/util_modules/constants/index.d.ts +24 -0
  491. package/lib/util_modules/constants/index.js +1 -5
  492. package/lib/util_modules/constants/lib/apig-rules.d.ts +3 -0
  493. package/lib/util_modules/constants/lib/apig-rules.js +1 -1
  494. package/lib/util_modules/constants/lib/browserLogic.d.ts +20 -0
  495. package/lib/util_modules/constants/lib/cliq-handlers.d.ts +32 -0
  496. package/lib/util_modules/constants/lib/dc-type.d.ts +59 -0
  497. package/lib/util_modules/constants/lib/default.d.ts +48 -0
  498. package/lib/util_modules/constants/lib/default.js +4 -0
  499. package/lib/util_modules/constants/lib/env-path.d.ts +6 -0
  500. package/lib/util_modules/constants/lib/event-action.d.ts +11 -0
  501. package/lib/util_modules/constants/lib/event-source.d.ts +11 -0
  502. package/lib/util_modules/constants/lib/file-names.d.ts +37 -0
  503. package/lib/util_modules/constants/lib/file-names.js +1 -0
  504. package/lib/util_modules/constants/lib/fn-type.d.ts +11 -0
  505. package/lib/util_modules/constants/lib/folder-names.d.ts +9 -0
  506. package/lib/util_modules/constants/lib/iac.d.ts +7 -0
  507. package/lib/util_modules/constants/lib/integ.d.ts +13 -0
  508. package/lib/util_modules/constants/lib/needed-scopes.d.ts +4 -0
  509. package/lib/util_modules/constants/lib/needed-scopes.js +3 -4
  510. package/lib/util_modules/constants/lib/placeholders.d.ts +65 -0
  511. package/lib/util_modules/constants/lib/placeholders.js +2 -1
  512. package/lib/util_modules/constants/lib/plugin.d.ts +27 -0
  513. package/lib/util_modules/constants/lib/ref-mapping.d.ts +15 -0
  514. package/lib/util_modules/constants/lib/regex.d.ts +20 -0
  515. package/lib/util_modules/constants/lib/regex.js +3 -0
  516. package/lib/util_modules/constants/lib/remote-mapping.d.ts +15 -0
  517. package/lib/util_modules/constants/lib/runtime.d.ts +18 -0
  518. package/lib/util_modules/constants/lib/signals-api-names.d.ts +9 -0
  519. package/lib/util_modules/constants/lib/signals-publishers-type.d.ts +7 -0
  520. package/lib/util_modules/constants/lib/signals-publishers.d.ts +9 -0
  521. package/lib/util_modules/constants/lib/template.d.ts +65 -0
  522. package/lib/util_modules/constants/lib/urls.d.ts +26 -0
  523. package/lib/util_modules/constants/lib/urls.js +37 -57
  524. package/lib/util_modules/constants/project.d.ts +4 -0
  525. package/lib/util_modules/container.d.ts +3 -0
  526. package/lib/util_modules/container.js +176 -0
  527. package/lib/util_modules/dc.d.ts +10 -0
  528. package/lib/{dc.js → util_modules/dc.js} +14 -18
  529. package/lib/util_modules/env.d.ts +7 -0
  530. package/lib/util_modules/env.js +3 -2
  531. package/lib/util_modules/fs/index.d.ts +3 -0
  532. package/lib/util_modules/fs/lib/async.d.ts +53 -0
  533. package/lib/util_modules/fs/lib/async.js +30 -1
  534. package/lib/util_modules/fs/lib/sync.d.ts +39 -0
  535. package/lib/util_modules/fs/lib/sync.js +24 -16
  536. package/lib/util_modules/fs/utils.d.ts +1 -0
  537. package/lib/util_modules/global-space.d.ts +1 -0
  538. package/lib/util_modules/js.d.ts +10 -0
  539. package/lib/util_modules/logger/index.d.ts +19 -0
  540. package/lib/util_modules/logger/index.js +80 -0
  541. package/lib/util_modules/logger/utils.d.ts +29 -0
  542. package/lib/util_modules/logger/utils.js +66 -0
  543. package/lib/util_modules/logger/winston.d.ts +9 -0
  544. package/lib/util_modules/logger/winston.js +90 -0
  545. package/lib/util_modules/option.d.ts +5 -0
  546. package/lib/util_modules/option.js +5 -5
  547. package/lib/util_modules/project.d.ts +70 -0
  548. package/lib/util_modules/project.js +26 -20
  549. package/lib/util_modules/runtime-store.d.ts +11 -0
  550. package/lib/util_modules/runtime-store.js +16 -0
  551. package/lib/util_modules/server.d.ts +13 -0
  552. package/lib/util_modules/server.js +78 -1
  553. package/lib/util_modules/shell.d.ts +21 -0
  554. package/lib/util_modules/shell.js +19 -4
  555. package/lib/util_modules/toml.d.ts +2 -0
  556. package/lib/util_modules/{parser/toml.js → toml.js} +3 -3
  557. package/package.json +6 -5
  558. package/scripts/send-notification.js +1 -1
  559. package/templates/event/integ/cliq/command/suggestion_handler.json +1 -1
  560. package/templates/event/integ/cliq/link_preview/action_handler.json +2 -2
  561. package/templates/event/integ/cliq/link_preview/after_send_handler.json +2 -2
  562. package/templates/event/integ/cliq/link_preview/menu_handler.json +2 -2
  563. package/templates/event/integ/cliq/link_preview/preview_handler.json +2 -2
  564. package/templates/init/functions/java/event/sample.java +5 -8
  565. package/templates/init/functions/java/integ/cliq/com/handlers/CommandHandler.java +3 -3
  566. package/templates/init/functions/java/integ/cliq/com/handlers/WidgetHandler.java +1 -1
  567. package/templates/init/functions/node/cron/types/cron.d.ts +1 -1
  568. package/templates/init/functions/node/event/sample.js +1 -12
  569. package/templates/init/functions/node/integ/cliq/handlers/command-handler.js +3 -3
  570. package/templates/init/functions/node/integ/cliq/handlers/widget-handler.js +1 -1
  571. package/templates/init/functions/python/event/sample.py +0 -9
  572. package/templates/init/functions/python/integ/cliq/handlers/command_handler.py +3 -3
  573. package/templates/init/functions/python/integ/cliq/handlers/widget_handler.py +1 -1
  574. package/templates/init/functions/python/integ/cliq/sample.py +1 -12
  575. package/docs/commands/signals/generate/index.toml +0 -19
  576. package/docs/commands/slate/unlink.toml +0 -9
  577. package/docs/commands/zest/generate/index.toml +0 -4
  578. package/docs/endpoints/lib/slate.toml +0 -3
  579. package/docs/fn-utils/lib/ensure-java-userconfig.toml +0 -15
  580. package/docs/fn-utils/lib/java.toml +0 -34
  581. package/docs/serve/server/lib/slate/index.toml +0 -14
  582. package/docs/slate-utils.toml +0 -4
  583. package/docs/util_modules/config/lib/slate.toml +0 -4
  584. package/lib/config-store.js +0 -10
  585. package/lib/fn-utils/lib/ensure-java-userconfig.js +0 -145
  586. package/lib/fn-utils/lib/java.js +0 -512
  587. package/lib/shell/dependencies/local-function.js +0 -483
  588. package/lib/util_modules/char.js +0 -12
  589. package/lib/util_modules/constants/lib/auth.js +0 -37
  590. package/lib/util_modules/logger.js +0 -51
  591. package/lib/winston.js +0 -75
  592. /package/lib/{internal → authentication}/crypt.js +0 -0
  593. /package/{docs/internal → lib/authentication/docs}/credential.toml +0 -0
  594. /package/{docs/authentication → lib/authentication/docs}/index.toml +0 -0
  595. /package/{docs/authentication → lib/authentication/docs}/login.toml +0 -0
  596. /package/{docs → lib/docs}/apig-utils.toml +0 -0
  597. /package/{docs → lib/docs}/client-utils.toml +0 -0
  598. /package/{docs → lib/docs}/command_needs/auth.toml +0 -0
  599. /package/{docs → lib/docs}/command_needs/rc.toml +0 -0
  600. /package/{docs → lib/docs}/commands/apig/disable.toml +0 -0
  601. /package/{docs → lib/docs}/commands/apig/enable.toml +0 -0
  602. /package/{docs → lib/docs}/commands/apig/status.toml +0 -0
  603. /package/{docs → lib/docs}/commands/client/delete.toml +0 -0
  604. /package/{docs → lib/docs}/commands/ds/export.toml +0 -0
  605. /package/{docs → lib/docs}/commands/ds/import.toml +0 -0
  606. /package/{docs → lib/docs}/commands/ds/status.toml +0 -0
  607. /package/{docs → lib/docs}/commands/event/generate/index.toml +0 -0
  608. /package/{docs → lib/docs}/commands/event/generate/integ.toml +0 -0
  609. /package/{docs → lib/docs}/commands/event/generate/job.toml +0 -0
  610. /package/{docs → lib/docs}/commands/functions/config.toml +0 -0
  611. /package/{docs → lib/docs}/commands/functions/delete.toml +0 -0
  612. /package/{docs → lib/docs}/commands/functions/shell.toml +0 -0
  613. /package/{docs → lib/docs}/commands/iac/export.toml +0 -0
  614. /package/{docs → lib/docs}/commands/iac/import.toml +0 -0
  615. /package/{docs → lib/docs}/commands/iac/status.toml +0 -0
  616. /package/{docs → lib/docs}/commands/project/use.toml +0 -0
  617. /package/{docs → lib/docs}/dc.toml +0 -0
  618. /package/{docs → lib/docs}/deploy/features/apig.toml +0 -0
  619. /package/{docs → lib/docs}/deploy/features/functions/index.toml +0 -0
  620. /package/{docs → lib/docs}/endpoints/lib/env.toml +0 -0
  621. /package/{docs → lib/docs}/endpoints/lib/job-scheduling.toml +0 -0
  622. /package/{docs → lib/docs}/event_generate/cache.toml +0 -0
  623. /package/{docs → lib/docs}/event_generate/custom.toml +0 -0
  624. /package/{docs → lib/docs}/event_generate/datastore.toml +0 -0
  625. /package/{docs → lib/docs}/event_generate/filestore.toml +0 -0
  626. /package/{docs → lib/docs}/event_generate/integration/cliq.toml +0 -0
  627. /package/{docs → lib/docs}/execute-script.toml +0 -0
  628. /package/{docs → lib/docs}/fn-utils/lib/common.toml +0 -0
  629. /package/{docs → lib/docs}/fn-utils/lib/node.toml +0 -0
  630. /package/{docs → lib/docs}/fn-utils/lib/python.toml +0 -0
  631. /package/{docs → lib/docs}/iac/status/bundle.toml +0 -0
  632. /package/{docs → lib/docs}/init/dependencies/python/ensure-python.toml +0 -0
  633. /package/{docs → lib/docs}/init/dependencies/python/pip-install.toml +0 -0
  634. /package/{docs → lib/docs}/init/index.toml +0 -0
  635. /package/{docs → lib/docs}/internal/command.toml +0 -0
  636. /package/{docs → lib/docs}/internal/config.toml +0 -0
  637. /package/{docs → lib/docs}/optional-import.toml +0 -0
  638. /package/{docs → lib/docs}/plugin-loader.toml +0 -0
  639. /package/{docs → lib/docs}/port-resolver.toml +0 -0
  640. /package/{docs → lib/docs}/pull/index.toml +0 -0
  641. /package/{docs → lib/docs}/serve/index.toml +0 -0
  642. /package/{docs → lib/docs}/serve/server/index.toml +0 -0
  643. /package/{docs → lib/docs}/serve/server/lib/appsail/index.toml +0 -0
  644. /package/{docs → lib/docs}/serve/server/lib/web_client/server.toml +0 -0
  645. /package/{docs → lib/docs}/shell/dependencies/tunnel-server.toml +0 -0
  646. /package/{docs → lib/docs}/shell/index.toml +0 -0
  647. /package/templates/init/functions/java/{browserLogic → browserlogic}/playwright/.classpath +0 -0
  648. /package/templates/init/functions/java/{browserLogic → browserlogic}/playwright/.project +0 -0
  649. /package/templates/init/functions/java/{browserLogic → browserlogic}/playwright/catalyst-config.json +0 -0
  650. /package/templates/init/functions/java/{browserLogic → browserlogic}/playwright/sample.java +0 -0
  651. /package/templates/init/functions/java/{browserLogic → browserlogic}/selenium/.classpath +0 -0
  652. /package/templates/init/functions/java/{browserLogic → browserlogic}/selenium/.project +0 -0
  653. /package/templates/init/functions/java/{browserLogic → browserlogic}/selenium/catalyst-config.json +0 -0
  654. /package/templates/init/functions/java/{browserLogic → browserlogic}/selenium/sample.java +0 -0
@@ -16,7 +16,7 @@ const path_1 = require("path");
16
16
  const error_1 = __importDefault(require("../../../../error"));
17
17
  const constants_1 = require("../../../../util_modules/constants");
18
18
  const fs_1 = require("../../../../util_modules/fs");
19
- const logger_1 = require("../../../../util_modules/logger");
19
+ const index_1 = require("../../../../util_modules/logger/index");
20
20
  const project_1 = require("../../../../util_modules/project");
21
21
  const shell_1 = require("../../../../util_modules/shell");
22
22
  const endpoints_1 = require("../../../../endpoints");
@@ -26,14 +26,25 @@ const execute_script_1 = require("../../../../execute-script");
26
26
  const master_1 = __importDefault(require("../master"));
27
27
  const ansi_colors_1 = require("ansi-colors");
28
28
  const common_1 = require("../../../../init/util/common");
29
+ const utils_1 = require("../master/utils");
30
+ const port_resolver_1 = __importDefault(require("../../../../port-resolver"));
31
+ const container_1 = require("../../../../util_modules/container");
32
+ const container_plugin_1 = require("@zcatalyst/container-plugin");
33
+ const appsail_1 = require("../../../../util_modules/config/lib/appsail");
34
+ const image_1 = require("@zcatalyst/container-plugin/out/endpoints/image");
29
35
  function executeHook(script, name, moduleSource) {
30
- if ((0, option_1.getOptionValue)('ignoreScripts', false)) {
31
- (0, logger_1.debug)(`skipping ${name} hook`);
32
- return;
33
- }
34
- (0, execute_script_1.executeCommand)(script, { moduleSource, feature: name });
36
+ return __awaiter(this, void 0, void 0, function* () {
37
+ if ((0, option_1.getOptionValue)('ignoreScripts', false)) {
38
+ (0, index_1.debug)(`skipping ${name} hook`);
39
+ return;
40
+ }
41
+ return (0, execute_script_1.executeCommand)(script, { moduleSource, feature: name });
42
+ });
35
43
  }
36
44
  const startAppSail = (port, opts) => {
45
+ if (port === -1) {
46
+ throw new error_1.default('The AppSail Http port value is invalid: ' + port, { exit: 2 });
47
+ }
37
48
  const startScriptPath = (0, path_1.join)(__dirname, 'start.js');
38
49
  const _opts = [startScriptPath, '-t', opts.type];
39
50
  if (opts.command) {
@@ -42,6 +53,7 @@ const startAppSail = (port, opts) => {
42
53
  const child = (0, shell_1.spawn)('node', _opts, {
43
54
  cwd: opts.target,
44
55
  stdio: 'pipe',
56
+ killSignal: 'SIGINT',
45
57
  env: Object.assign({ X_ZOHO_CATALYST_LISTEN_PORT: port + '', X_ZOHO_CATALYST_RUNTIME_MEMORY: opts.memory + '', X_ZOHO_CATALYST_ACCOUNTS_URL: constants_1.ORIGIN.auth, X_ZOHO_CATALYST_CONSOLE_URL: constants_1.ORIGIN.admin, X_ZOHO_STRATUS_RESOURCE_SUFFIX: constants_1.ORIGIN.stratusSuffix, X_ZOHO_CATALYST_IS_LOCAL: 'true', X_ZC_RESOURCE_NAME: opts.name + '', CATALYST_PORTAL_DOMAIN: constants_1.ORIGIN.iamPortal, CATALYST_PROJECT_TIMEZONE: (0, project_1.getProjectTimezone)(Intl.DateTimeFormat().resolvedOptions().timeZone) }, (opts.env || {}))
46
58
  }).RAW();
47
59
  return new Promise((_res, _rej) => {
@@ -49,139 +61,221 @@ const startAppSail = (port, opts) => {
49
61
  child.on('error', (reason) => _rej(reason));
50
62
  });
51
63
  };
52
- exports.default = (serverDetails) => __awaiter(void 0, void 0, void 0, function* () {
64
+ function startAppSailWithContainer(serverDetails) {
53
65
  var _a, _b, _c, _d, _e, _f, _g;
66
+ return __awaiter(this, void 0, void 0, function* () {
67
+ const targetSail = serverDetails.target;
68
+ if (!targetSail || !targetSail.config) {
69
+ throw new error_1.default('Invalid AppSail target', { exit: 2 });
70
+ }
71
+ (0, index_1.debug)('Using container to serve the AppSail: ' + targetSail.name);
72
+ targetSail.config.env_variables = Object.assign({ X_ZOHO_CATALYST_ACCOUNTS_URL: constants_1.ORIGIN.auth, X_ZOHO_CATALYST_CONSOLE_URL: constants_1.ORIGIN.admin, X_ZOHO_CATALYST_RESOURCE_ID: targetSail.name, X_ZOHO_STRATUS_RESOURCE_SUFFIX: constants_1.ORIGIN.stratusSuffix, X_ZOHO_CATALYST_CODE_LOCATION: '/catalyst', CATALYST_PROJECT_TIMEZONE: (0, project_1.getProjectTimezone)(Intl.DateTimeFormat().resolvedOptions().timeZone), X_ZOHO_CATALYST_ORG: (0, project_1.getEnvId)() || '', X_ZOHO_ADMIN_CRED_TOKEN: 'Unknown' }, (_a = targetSail === null || targetSail === void 0 ? void 0 : targetSail.config) === null || _a === void 0 ? void 0 : _a.env_variables);
73
+ if (!((_b = serverDetails.target) === null || _b === void 0 ? void 0 : _b.source)) {
74
+ throw new error_1.default('Invalid AppSail source: ' + targetSail.source, {
75
+ exit: 1
76
+ });
77
+ }
78
+ let child;
79
+ switch (true) {
80
+ case (_c = serverDetails.target) === null || _c === void 0 ? void 0 : _c.source.startsWith(appsail_1.CONTAINER_IMAGE_PROTOCOLS.dockerArchive): {
81
+ const tarPath = serverDetails.target.source.replace(appsail_1.CONTAINER_IMAGE_PROTOCOLS.dockerArchive, '');
82
+ const appsailTar = yield fs_1.ASYNC.fileExists(tarPath);
83
+ if (!appsailTar) {
84
+ throw new error_1.default('Invalid AppSail source: ' + targetSail.source, {
85
+ exit: 1
86
+ });
87
+ }
88
+ const tarStream = fs_1.SYNC.getReadStream(tarPath);
89
+ const imgName = `${serverDetails.target.name}-tar`;
90
+ const imageInfo = yield (0, image_1.loadTempImageTar)(imgName, tarStream);
91
+ serverDetails.target.source = 'docker://' + ((_d = imageInfo.RepoTags) === null || _d === void 0 ? void 0 : _d.at(0));
92
+ child = yield (0, container_plugin_1.start)({
93
+ details: serverDetails,
94
+ projectId: (0, project_1.getProjectId)(),
95
+ ruok: container_plugin_1.RUOK.SKIP
96
+ });
97
+ child.once('exit', () => {
98
+ (0, image_1.removeImages)(imgName).catch((er) => (0, index_1.debug)('Error removing the temp images on exit: ', er));
99
+ });
100
+ child.once('error', (err) => {
101
+ (0, index_1.debug)('Error with the AppSail container: ', err);
102
+ (0, image_1.removeImages)(imgName).catch((er) => (0, index_1.debug)('Error removing the temp images on error: ', er));
103
+ });
104
+ break;
105
+ }
106
+ case serverDetails.target.runtime === 'catalyst': {
107
+ const projectRoot = (0, project_1.getProjectRoot)();
108
+ if (!((_f = (_e = serverDetails.target.config) === null || _e === void 0 ? void 0 : _e.build_path) === null || _f === void 0 ? void 0 : _f.startsWith(projectRoot))) {
109
+ throw new error_1.default('AppSail source outside project directory. For security reasons, Catalyst' +
110
+ 'runtime AppSails served within containers should have the source withing the project root directory', {
111
+ exit: 1,
112
+ context: {
113
+ targetSource: serverDetails.target.source,
114
+ projectRoot
115
+ }
116
+ });
117
+ }
118
+ }
119
+ case (_g = serverDetails.target) === null || _g === void 0 ? void 0 : _g.source.startsWith(appsail_1.CONTAINER_IMAGE_PROTOCOLS.docker): {
120
+ child = yield (0, container_plugin_1.start)({
121
+ details: serverDetails,
122
+ projectId: (0, project_1.getProjectId)(),
123
+ ruok: container_plugin_1.RUOK.SKIP
124
+ });
125
+ break;
126
+ }
127
+ default: {
128
+ throw new error_1.default('Invalid AppSail runtime/docker image', {
129
+ exit: 2,
130
+ context: serverDetails
131
+ });
132
+ }
133
+ }
134
+ child.emit('start', serverDetails);
135
+ return child;
136
+ });
137
+ }
138
+ exports.default = (serverDetails) => __awaiter(void 0, void 0, void 0, function* () {
139
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
54
140
  let child;
55
141
  const targetSail = serverDetails.target;
56
142
  if (!targetSail || !targetSail.config) {
57
143
  throw new error_1.default('AppSail details not found');
58
144
  }
59
- if ((_a = targetSail.config.scripts) === null || _a === void 0 ? void 0 : _a.preserve) {
60
- executeHook(targetSail.config.scripts.preserve, `AppSail [PRESERVE] [${targetSail.name}]`, targetSail.source);
61
- }
62
- const buildPath = (_b = targetSail.config) === null || _b === void 0 ? void 0 : _b.build_path;
63
- const target = (yield fs_1.ASYNC.fileExists(buildPath)) ? (0, path_1.dirname)(buildPath) : buildPath;
64
- if (!(yield fs_1.ASYNC.isPathExists(target))) {
65
- if ((0, path_1.isAbsolute)(((_c = targetSail.config) === null || _c === void 0 ? void 0 : _c.raw.build_path) || '')) {
66
- throw new error_1.default('The given AppSail build path does not exists', {
67
- exit: 1,
68
- errorId: 'SERVE-APPSAIL-1',
69
- arg: [ansi_colors_1.italic.underline.red(target), (0, ansi_colors_1.bold)(targetSail.name)]
70
- });
145
+ if ((targetSail === null || targetSail === void 0 ? void 0 : targetSail.runtime) === 'catalyst') {
146
+ if ((_a = targetSail.config.scripts) === null || _a === void 0 ? void 0 : _a.preserve) {
147
+ yield executeHook(targetSail.config.scripts.preserve, `AppSail [PRESERVE] [${targetSail.name}]`, targetSail.source);
71
148
  }
72
- throw new error_1.default('The given AppSail build path does not exists: ' + targetSail.name, {
73
- exit: 1,
74
- errorId: 'SERVE-APPSAIL-2',
75
- arg: [
76
- (0, ansi_colors_1.underline)(((_d = targetSail.config) === null || _d === void 0 ? void 0 : _d.raw.build_path) || ''),
77
- ansi_colors_1.italic.underline(targetSail.config.raw.source_path || ''),
78
- ansi_colors_1.italic.underline(((_e = targetSail.config) === null || _e === void 0 ? void 0 : _e.raw.build_path) || ''),
79
- ansi_colors_1.italic.underline(target)
80
- ]
81
- });
82
- }
83
- switch (true) {
84
- case targetSail.config.stack.startsWith('node'): {
85
- child = yield startAppSail(targetSail.port.appsail, {
86
- type: 'nodejs',
87
- target,
88
- command: targetSail.config.command,
89
- memory: targetSail.config.memory || 256,
90
- env: targetSail.config.env_variables,
91
- name: targetSail.name
149
+ const buildPath = (_b = targetSail.config) === null || _b === void 0 ? void 0 : _b.build_path;
150
+ if (!buildPath) {
151
+ throw new error_1.default('Invalid AppSail config: invalid build path :: ' + buildPath, {
152
+ exit: 2
92
153
  });
93
- break;
94
154
  }
95
- case targetSail.config.stack.startsWith('python'): {
96
- child = yield startAppSail(targetSail.port.appsail, {
97
- type: 'python',
98
- target,
99
- command: targetSail.config.command,
100
- memory: targetSail.config.memory || 256,
101
- env: targetSail.config.env_variables,
102
- name: targetSail.name
155
+ const target = (yield fs_1.ASYNC.fileExists(buildPath)) ? (0, path_1.dirname)(buildPath) : buildPath;
156
+ if (!(yield fs_1.ASYNC.isPathExists(target))) {
157
+ if ((0, path_1.isAbsolute)(((_c = targetSail.config) === null || _c === void 0 ? void 0 : _c.raw.build_path) || '')) {
158
+ throw new error_1.default('The given AppSail build path does not exists', {
159
+ exit: 1,
160
+ errorId: 'SERVE-APPSAIL-1',
161
+ arg: [ansi_colors_1.italic.underline.red(target), (0, ansi_colors_1.bold)(targetSail.name)]
162
+ });
163
+ }
164
+ throw new error_1.default('The given AppSail build path does not exists: ' + targetSail.name, {
165
+ exit: 1,
166
+ errorId: 'SERVE-APPSAIL-2',
167
+ arg: [
168
+ (0, ansi_colors_1.underline)(((_d = targetSail.config) === null || _d === void 0 ? void 0 : _d.raw.build_path) || ''),
169
+ ansi_colors_1.italic.underline(targetSail.config.raw.source_path || ''),
170
+ ansi_colors_1.italic.underline(((_e = targetSail.config) === null || _e === void 0 ? void 0 : _e.raw.build_path) || ''),
171
+ ansi_colors_1.italic.underline(target)
172
+ ]
103
173
  });
104
- break;
105
174
  }
106
- case targetSail.config.stack.startsWith('java'): {
107
- if (targetSail.config.platform === 'war') {
108
- const jettyPath = (0, path_1.join)(constants_1.ENVPATH.runtimes.data, 'jetty');
109
- if (!(yield fs_1.ASYNC.fileExists((0, path_1.join)(jettyPath, 'start.jar')).catch((err) => (0, logger_1.debug)(err)))) {
110
- try {
111
- yield fs_1.ASYNC.ensureDir(jettyPath);
112
- const appxAPI = yield (0, endpoints_1.appSailAPI)();
113
- const jettyZip = yield appxAPI.downloadJetty();
114
- const zip = new archiver_1.default();
115
- zip.load(jettyZip);
116
- zip.extract(jettyPath, '/', {
117
- ignoreLevel: 0,
118
- isFolder: true
119
- });
120
- yield zip.finalize();
121
- }
122
- catch (err) {
123
- (0, logger_1.debug)('Unable to ensure Jetty Runtime');
124
- throw err;
175
+ switch (true) {
176
+ case (0, container_1.isContainer)(): {
177
+ child = yield startAppSailWithContainer(serverDetails);
178
+ break;
179
+ }
180
+ case (_g = (_f = targetSail.config) === null || _f === void 0 ? void 0 : _f.stack) === null || _g === void 0 ? void 0 : _g.startsWith('node'): {
181
+ child = yield startAppSail(targetSail.port.appsail.host, {
182
+ type: 'nodejs',
183
+ target,
184
+ command: targetSail.config.command,
185
+ memory: targetSail.config.memory || 256,
186
+ env: targetSail.config.env_variables,
187
+ name: targetSail.name
188
+ });
189
+ break;
190
+ }
191
+ case (_j = (_h = targetSail.config) === null || _h === void 0 ? void 0 : _h.stack) === null || _j === void 0 ? void 0 : _j.startsWith('python'): {
192
+ child = yield startAppSail(targetSail.port.appsail.host, {
193
+ type: 'python',
194
+ target,
195
+ command: targetSail.config.command,
196
+ memory: targetSail.config.memory || 256,
197
+ env: targetSail.config.env_variables,
198
+ name: targetSail.name
199
+ });
200
+ break;
201
+ }
202
+ case (_l = (_k = targetSail.config) === null || _k === void 0 ? void 0 : _k.stack) === null || _l === void 0 ? void 0 : _l.startsWith('java'): {
203
+ if (targetSail.config.platform === 'war') {
204
+ const jettyPath = (0, path_1.join)(constants_1.ENVPATH.runtimes.data, 'jetty');
205
+ if (!(yield fs_1.ASYNC.fileExists((0, path_1.join)(jettyPath, 'start.jar')).catch((err) => (0, index_1.debug)(err)))) {
206
+ try {
207
+ yield fs_1.ASYNC.ensureDir(jettyPath);
208
+ const appxAPI = yield (0, endpoints_1.appSailAPI)();
209
+ const jettyZip = yield appxAPI.downloadJetty();
210
+ const zip = new archiver_1.default();
211
+ zip.load(jettyZip);
212
+ zip.extract(jettyPath, '/', {
213
+ isFolder: true
214
+ });
215
+ yield zip.finalize();
216
+ }
217
+ catch (err) {
218
+ (0, index_1.debug)('Unable to ensure Jetty Runtime');
219
+ throw err;
220
+ }
125
221
  }
222
+ const jettyCommand = `java -jar "${(0, path_1.join)(jettyPath, 'start.jar')}" -Djetty.deploy.monitoredPath="${(0, project_1.resolveProjectPath)(target)}" -Djetty.http.port=${targetSail.port.appsail.host}`;
223
+ child = yield startAppSail(targetSail.port.appsail.host, {
224
+ target,
225
+ type: 'war',
226
+ command: jettyCommand,
227
+ memory: targetSail.config.memory || 256,
228
+ env: Object.assign({ JETTY_BASE: (0, path_1.join)(jettyPath, 'JETTY_BASE') }, targetSail.config.env_variables),
229
+ name: targetSail.name
230
+ });
231
+ break;
126
232
  }
127
- const jettyCommand = `java -jar "${(0, path_1.join)(jettyPath, 'start.jar')}" -Djetty.deploy.monitoredPath="${(0, project_1.resolveProjectPath)(target)}" -Djetty.http.port=${targetSail.port.appsail}`;
128
- child = yield startAppSail(targetSail.port.appsail, {
233
+ child = yield startAppSail(targetSail.port.appsail.host, {
129
234
  target,
130
- type: 'war',
131
- command: jettyCommand,
235
+ command: targetSail.config.command,
236
+ type: 'javase',
132
237
  memory: targetSail.config.memory || 256,
133
- env: Object.assign({ JETTY_BASE: (0, path_1.join)(jettyPath, 'JETTY_BASE') }, targetSail.config.env_variables),
238
+ env: targetSail.config.env_variables,
134
239
  name: targetSail.name
135
240
  });
136
241
  break;
137
242
  }
138
- child = yield startAppSail(targetSail.port.appsail, {
139
- target,
140
- command: targetSail.config.command,
141
- type: 'javase',
142
- memory: targetSail.config.memory || 256,
143
- env: targetSail.config.env_variables,
144
- name: targetSail.name
145
- });
146
- break;
147
- }
148
- default: {
149
- const appSailRuntime = yield (0, common_1.getRuntimeDetails)();
150
- throw new error_1.default('Invalid AppSail stack', {
151
- exit: 1,
152
- errorId: 'SERVE-APPSAIL-4',
153
- arg: [
154
- (0, ansi_colors_1.bold)(targetSail.name),
155
- ansi_colors_1.bold.red(targetSail.config.stack),
156
- appSailRuntime.runtimes.map((val) => (0, ansi_colors_1.bold)(`* ${val}`)).join('\n')
157
- ]
158
- });
243
+ default: {
244
+ const appSailRuntime = yield (0, common_1.getRuntimeDetails)();
245
+ throw new error_1.default('Invalid AppSail stack', {
246
+ exit: 1,
247
+ errorId: 'SERVE-APPSAIL-4',
248
+ arg: [
249
+ (0, ansi_colors_1.bold)(targetSail.name),
250
+ ansi_colors_1.bold.red(((_m = targetSail.config) === null || _m === void 0 ? void 0 : _m.stack) + ''),
251
+ appSailRuntime.runtimes.map((val) => (0, ansi_colors_1.bold)(`* ${val}`)).join('\n')
252
+ ]
253
+ });
254
+ }
159
255
  }
160
256
  }
257
+ else if (targetSail.runtime === 'custom') {
258
+ child = yield startAppSailWithContainer(serverDetails);
259
+ }
260
+ else {
261
+ throw new error_1.default('Invalid runtime value for AppSail: ' + targetSail.runtime, {
262
+ exit: 2
263
+ });
264
+ }
161
265
  const masterServe = yield (0, master_1.default)(targetSail.port.proxy, {
162
266
  appSailDetails: serverDetails
163
267
  });
164
- child.once('exit', () => {
165
- masterServe.close((err) => {
166
- if (err) {
167
- (0, logger_1.debug)('Error stopping the AppSail proxy server: ', err);
168
- }
169
- });
268
+ masterServe.on('listening', () => {
269
+ utils_1.serverEvent.emit('start', serverDetails);
170
270
  });
171
- if ((_g = (_f = targetSail.config) === null || _f === void 0 ? void 0 : _f.scripts) === null || _g === void 0 ? void 0 : _g.postserve) {
172
- child.once('exit', () => {
173
- var _a, _b, _c;
174
- if (!((_a = targetSail.config) === null || _a === void 0 ? void 0 : _a.scripts)) {
175
- return;
176
- }
177
- executeHook((_c = (_b = targetSail.config) === null || _b === void 0 ? void 0 : _b.scripts) === null || _c === void 0 ? void 0 : _c.postserve, `AppSail [POSTSERVE] [${targetSail.name}]`, targetSail.source);
178
- });
179
- }
180
- process.on('SIGINT', () => {
181
- targetSail.trigger.kill = true;
271
+ masterServe.on('error', (err) => {
272
+ (0, index_1.debug)('Error with the AppSail proxy server: ', err);
182
273
  });
183
- child.once('exit', (code) => {
184
- var _a, _b, _c;
274
+ child.once('exit', (code) => __awaiter(void 0, void 0, void 0, function* () {
275
+ var _o, _p, _q, _r, _s, _t, _u;
276
+ typeof targetSail.port.appsail === 'number' &&
277
+ port_resolver_1.default.freePort(targetSail.port.appsail);
278
+ port_resolver_1.default.freePort(targetSail.port.proxy);
185
279
  if (code === 150) {
186
280
  targetSail.validity = {
187
281
  valid: false,
@@ -192,12 +286,15 @@ exports.default = (serverDetails) => __awaiter(void 0, void 0, void 0, function*
192
286
  errorId: 'SERVE-APPSAIL-3',
193
287
  arg: [
194
288
  (0, ansi_colors_1.bold)(targetSail.name),
195
- ((_a = targetSail.config) === null || _a === void 0 ? void 0 : _a.command) || '',
196
- (0, ansi_colors_1.underline)(((_b = targetSail.config) === null || _b === void 0 ? void 0 : _b.build_path) || ''),
197
- ((_c = targetSail.config) === null || _c === void 0 ? void 0 : _c.stack) || ''
289
+ ((_o = targetSail.config) === null || _o === void 0 ? void 0 : _o.command) || '',
290
+ (0, ansi_colors_1.underline)(((_p = targetSail.config) === null || _p === void 0 ? void 0 : _p.build_path) || ''),
291
+ ((_q = targetSail.config) === null || _q === void 0 ? void 0 : _q.stack) || ''
198
292
  ]
199
293
  });
200
294
  }
201
- });
295
+ if ((_s = (_r = targetSail.config) === null || _r === void 0 ? void 0 : _r.scripts) === null || _s === void 0 ? void 0 : _s.postserve) {
296
+ yield executeHook((_u = (_t = targetSail.config) === null || _t === void 0 ? void 0 : _t.scripts) === null || _u === void 0 ? void 0 : _u.postserve, `AppSail [POSTSERVE] [${targetSail.name}]`, targetSail.source);
297
+ }
298
+ }));
202
299
  return child;
203
300
  });
@@ -4,7 +4,7 @@
4
4
  // exit codes
5
5
  // 150 - start up command failure
6
6
 
7
- const EXEC_SYNC = require('child_process').execSync;
7
+ const EXEC = require('child_process').exec;
8
8
 
9
9
  const WAR = 'war';
10
10
  const JAVASE = 'javase';
@@ -62,11 +62,20 @@ function main() {
62
62
  throw new Error(`invalid runtime type: ${CMD_ARGS.rtType}`);
63
63
  }
64
64
 
65
- try {
66
- EXEC_SYNC(command.toString(), { stdio: 'inherit', cwd });
67
- } catch (er) {
65
+ const _process = EXEC(command.toString(), { cwd });
66
+
67
+ _process.on('error', (error) => {
68
+ // eslint-disable-next-line no-console
69
+ console.log(error);
68
70
  process.exit(150);
69
- }
71
+ });
72
+
73
+ _process.stdout.pipe(process.stdout);
74
+ _process.stderr.pipe(process.stderr);
75
+
76
+ process.once('SIGINT', () => {
77
+ _process.kill('SIGINT');
78
+ });
70
79
  }
71
80
 
72
81
  main();
@@ -0,0 +1,6 @@
1
+ import { ChildProcess } from 'child_process';
2
+ import { IServerDetails } from '../..';
3
+ import { IFnTarget } from '../../../../fn-utils/lib/common';
4
+ import { ContainerEvents } from '@zcatalyst/container-plugin';
5
+ declare const _default: (details: IServerDetails<IFnTarget>) => Promise<ChildProcess | ContainerEvents>;
6
+ export default _default;
@@ -1,4 +1,27 @@
1
1
  "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
2
25
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
26
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
27
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -14,46 +37,53 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
14
37
  Object.defineProperty(exports, "__esModule", { value: true });
15
38
  const path_1 = require("path");
16
39
  const fn_utils_1 = require("../../../../fn-utils");
17
- const ensure_java_userconfig_1 = require("../../../../fn-utils/lib/ensure-java-userconfig");
18
- const plugin_loader_1 = __importDefault(require("../../../../plugin-loader"));
40
+ const ensure_java_userconfig_1 = require("../../../../fn-utils/lib/java/ensure-java-userconfig");
19
41
  const runtime_store_1 = __importDefault(require("../../../../runtime-store"));
20
- const userConfig_1 = __importDefault(require("../../../../userConfig"));
21
42
  const constants_1 = require("../../../../util_modules/constants");
22
- const logger_1 = require("../../../../util_modules/logger");
43
+ const index_1 = require("../../../../util_modules/logger/index");
23
44
  const project_1 = require("../../../../util_modules/project");
24
45
  const shell_1 = require("../../../../util_modules/shell");
25
- exports.default = (details, masterPort) => __awaiter(void 0, void 0, void 0, function* () {
26
- var _a, _b, _c, _d, _e, _f;
46
+ const container_1 = require("../../../../util_modules/container");
47
+ const container_plugin_1 = require("@zcatalyst/container-plugin");
48
+ const error_1 = __importDefault(require("../../../../error"));
49
+ exports.default = (details) => __awaiter(void 0, void 0, void 0, function* () {
50
+ var _a, _b, _c, _d, _e, _f, _g, _h;
51
+ if (!details.target) {
52
+ throw new error_1.default('Invalid java function target ', { exit: 2, context: details });
53
+ }
27
54
  const projectRoot = runtime_store_1.default.get('project.root');
55
+ const label = `${details.type}[${(_a = details.target) === null || _a === void 0 ? void 0 : _a.name}]`;
56
+ const targetSource = (_b = details.target) === null || _b === void 0 ? void 0 : _b.source;
57
+ const targetDir = details.target.build;
58
+ if ((0, container_1.isContainer)()) {
59
+ (0, index_1.debug)('using container to serve the function: ' + ((_c = details.target) === null || _c === void 0 ? void 0 : _c.name));
60
+ const container = yield Promise.resolve().then(() => __importStar(require('@zcatalyst/container-plugin')));
61
+ details.target.env_var = Object.assign({ X_ZOHO_CATALYST_ACCOUNTS_URL: constants_1.ORIGIN.auth, X_ZOHO_CATALYST_CONSOLE_URL: constants_1.ORIGIN.admin, X_ZOHO_CATALYST_RESOURCE_ID: (_d = details.target) === null || _d === void 0 ? void 0 : _d.id, X_ZOHO_STRATUS_RESOURCE_SUFFIX: constants_1.ORIGIN.stratusSuffix, X_ZOHO_CATALYST_CODE_LOCATION: '/catalyst/', CATALYST_PROJECT_TIMEZONE: (0, project_1.getProjectTimezone)(Intl.DateTimeFormat().resolvedOptions().timeZone), X_ZOHO_CATALYST_ORG: (0, project_1.getEnvId)(), X_ZOHO_ADMIN_CRED_TOKEN: 'Unknown', CATALYST_FUNCTION_TYPE: constants_1.REMOTE_REF.functions.type[(_e = details.target) === null || _e === void 0 ? void 0 : _e.type] }, details.target.env_var);
62
+ return container.start({
63
+ details: details,
64
+ projectId: (0, project_1.getProjectId)(),
65
+ ruok: details.debugPort !== undefined && details.debugPort !== -1
66
+ ? container_plugin_1.RUOK.SKIP
67
+ : container_plugin_1.RUOK.FINITE
68
+ });
69
+ }
28
70
  const javaServer = (0, path_1.join)(projectRoot, constants_1.FOLDERNAME.build, '.catalyst', 'aioserver', 'JavaaioServer');
29
- const targetDir = (0, path_1.join)(projectRoot, constants_1.FOLDERNAME.build, constants_1.FOLDERNAME.functions, (_a = details.target) === null || _a === void 0 ? void 0 : _a.name);
30
- const label = `${details.type}[${(_b = details.target) === null || _b === void 0 ? void 0 : _b.name}]`;
31
71
  const opts = [
32
72
  '-cp',
33
73
  (0, path_1.join)(targetDir, '*') + fn_utils_1.fnUtils.java.classPathSep + targetDir + path_1.sep,
34
74
  `-DCATALYST_FUNCTION_TYPE=${constants_1.REMOTE_REF.functions.type[details.target.type]}`
35
75
  ];
36
76
  if (details.debugPort !== -1) {
37
- (0, logger_1.labeled)(label, 'you can attach your debugger at port : ' + details.debugPort).MESSAGE();
77
+ (0, index_1.labeled)(label, 'you can attach your debugger at port : ' + details.debugPort).MESSAGE();
38
78
  opts.push('-Xdebug');
39
- opts.push('-Xrunjdwp:transport=dt_socket,address=' + details.debugPort + ',server=y,suspend=y');
79
+ opts.push('-Xrunjdwp:transport=dt_socket,address=' + details.debugPort + ',server=y,suspend=n');
40
80
  }
41
81
  opts.push((0, path_1.basename)(javaServer));
42
82
  opts.push(details.httpPort + '');
43
- const targetSource = (_c = details.target) === null || _c === void 0 ? void 0 : _c.source;
44
- const configType = details.type === 'server' ? 'functions' : details.type;
45
- const servePlugin = yield (0, plugin_loader_1.default)(configType, 'start', targetSource).catch((err) => (0, logger_1.debug)(err));
46
- if (typeof servePlugin === 'function') {
47
- const event = servePlugin(details, masterPort);
48
- (0, logger_1.labeled)(label, `Plugin : "${runtime_store_1.default.get(`context.${configType}.plugins.start${targetSource ? '.' + targetSource : ''}`)}" is used for ${details.type} serve`).MESSAGE();
49
- return event;
50
- }
51
- const configKey = `${(_d = details.target) === null || _d === void 0 ? void 0 : _d.stack}.bin`;
52
- const userConfigCmd = userConfig_1.default.get(configKey);
53
- const spawnCommand = (0, ensure_java_userconfig_1.getJavaSpawnCommand)(userConfigCmd, 'java', (_e = details.target) === null || _e === void 0 ? void 0 : _e.stack);
83
+ const spawnCommand = (0, ensure_java_userconfig_1.getJavaSpawnCommand)('java', (_g = (_f = details.target) === null || _f === void 0 ? void 0 : _f.additionalInfo) === null || _g === void 0 ? void 0 : _g.binPath);
54
84
  return (0, shell_1.spawn)(spawnCommand, opts, {
55
85
  cwd: targetSource === null || targetSource === void 0 ? void 0 : targetSource.replace(projectRoot, (0, path_1.join)(projectRoot, constants_1.FOLDERNAME.build)),
56
86
  stdio: 'pipe',
57
- env: Object.assign({ X_ZOHO_CATALYST_IS_LOCAL: 'true', X_ZOHO_CATALYST_FUNCTION_LOADED: 'true', X_ZOHO_CATALYST_CODE_LOCATION: targetDir + path_1.sep, X_ZOHO_CATALYST_ACCOUNTS_URL: constants_1.ORIGIN.auth, X_ZOHO_CATALYST_CONSOLE_URL: constants_1.ORIGIN.admin, X_ZOHO_CATALYST_RESOURCE_ID: (_f = details.target) === null || _f === void 0 ? void 0 : _f.id, X_ZOHO_STRATUS_RESOURCE_SUFFIX: constants_1.ORIGIN.stratusSuffix, CATALYST_PORTAL_DOMAIN: constants_1.ORIGIN.iamPortal, CATALYST_PROJECT_TIMEZONE: (0, project_1.getProjectTimezone)(Intl.DateTimeFormat().resolvedOptions().timeZone) }, details.target.env_var)
87
+ env: Object.assign({ X_ZOHO_CATALYST_IS_LOCAL: 'true', X_ZOHO_CATALYST_FUNCTION_LOADED: 'true', X_ZOHO_CATALYST_CODE_LOCATION: targetDir + path_1.sep, X_ZOHO_CATALYST_ACCOUNTS_URL: constants_1.ORIGIN.auth, X_ZOHO_CATALYST_CONSOLE_URL: constants_1.ORIGIN.admin, X_ZOHO_CATALYST_RESOURCE_ID: (_h = details.target) === null || _h === void 0 ? void 0 : _h.id, X_ZOHO_STRATUS_RESOURCE_SUFFIX: constants_1.ORIGIN.stratusSuffix, CATALYST_PORTAL_DOMAIN: constants_1.ORIGIN.iamPortal, CATALYST_PROJECT_TIMEZONE: (0, project_1.getProjectTimezone)(Intl.DateTimeFormat().resolvedOptions().timeZone), CHROME_EXECUTABLE_PATH: runtime_store_1.default.get('CHROME_EXECUTABLE', process.env.CHROME_EXECUTABLE_PATH), CHROMEDRIVER_EXECUTABLE_PATH: runtime_store_1.default.get('CHROME_DRIVER_EXECUTABLE', process.env.CHROMEDRIVER_EXECUTABLE_PATH) }, details.target.env_var)
58
88
  }).RAW();
59
89
  });
@@ -0,0 +1,5 @@
1
+ import Server from 'http-proxy';
2
+ import { IServerDetails } from '../..';
3
+ import { Express, Request, Response } from 'express';
4
+ import { TAppSailServerDetails } from '../../../features/appsail';
5
+ export declare function addAppSailRoutes(app: Express, details: IServerDetails<TAppSailServerDetails>, proxy: Server, unknownProxy: (req: Request, res: Response) => void): void;
@@ -8,11 +8,18 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
8
8
  step((generator = generator.apply(thisArg, _arguments || [])).next());
9
9
  });
10
10
  };
11
+ var __importDefault = (this && this.__importDefault) || function (mod) {
12
+ return (mod && mod.__esModule) ? mod : { "default": mod };
13
+ };
11
14
  Object.defineProperty(exports, "__esModule", { value: true });
12
15
  exports.addAppSailRoutes = void 0;
13
16
  const utils_1 = require("./utils");
17
+ const error_1 = __importDefault(require("../../../../error"));
14
18
  function addAppSailRoutes(app, details, proxy, unknownProxy) {
15
- var _a, _b;
19
+ var _a, _b, _c, _d, _e, _f;
20
+ if (details.isAlive === false) {
21
+ return;
22
+ }
16
23
  app.use('/__catalyst/sdk/init.js', (req, res) => __awaiter(this, void 0, void 0, function* () {
17
24
  const initJs = yield (0, utils_1.appsailInitJs)();
18
25
  const _write = res.write;
@@ -36,11 +43,15 @@ function addAppSailRoutes(app, details, proxy, unknownProxy) {
36
43
  req.url = req.originalUrl;
37
44
  unknownProxy(req, res);
38
45
  });
39
- const targetUrl = `http://127.0.0.1:${details.target.port.appsail}`;
46
+ const appsailPort = (_e = (_d = (_c = details.target) === null || _c === void 0 ? void 0 : _c.port) === null || _d === void 0 ? void 0 : _d.appsail) === null || _e === void 0 ? void 0 : _e.host;
47
+ if (!appsailPort || appsailPort === -1) {
48
+ throw new error_1.default(`Invalid AppSail port to proxy to for AppSail: ${(_f = details.target) === null || _f === void 0 ? void 0 : _f.name} ::: ${appsailPort}`);
49
+ }
50
+ const targetUrl = `http://127.0.0.1:${appsailPort}`;
40
51
  app.use('/', (req, res) => __awaiter(this, void 0, void 0, function* () {
41
- var _c, _d;
42
- if (req.header('catalyst-component') === 'true') {
43
- ((_d = (_c = details.target) === null || _c === void 0 ? void 0 : _c.config) === null || _d === void 0 ? void 0 : _d.catalyst_auth) === true
52
+ var _g, _h;
53
+ if (req.header('catalyst-component') === 'true' && req.url.length > 1) {
54
+ ((_h = (_g = details.target) === null || _g === void 0 ? void 0 : _g.config) === null || _h === void 0 ? void 0 : _h.catalyst_auth) === true
44
55
  ? unknownProxy(req, res)
45
56
  : res.sendStatus(400);
46
57
  return;
@@ -0,0 +1,5 @@
1
+ import { Express } from 'express';
2
+ import { IServerDetails } from '../..';
3
+ import Server from 'http-proxy';
4
+ import { IFnTarget } from '../../../../fn-utils/lib/common';
5
+ export declare function addFnRoutes(app: Express, details: IServerDetails<IFnTarget>, proxy: Server): void;