@based/server 3.4.6 → 4.0.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 (302) hide show
  1. package/dist/api/index.d.ts +7 -0
  2. package/dist/api/index.js +173 -0
  3. package/dist/api/index.js.map +1 -0
  4. package/dist/auth/dummyAuth.d.ts +2 -0
  5. package/dist/auth/dummyAuth.js +8 -0
  6. package/dist/auth/dummyAuth.js.map +1 -0
  7. package/dist/auth/index.d.ts +15 -0
  8. package/dist/auth/index.js +49 -0
  9. package/dist/auth/index.js.map +1 -0
  10. package/dist/auth/parseAuthState.d.ts +2 -0
  11. package/dist/auth/parseAuthState.js +16 -0
  12. package/dist/auth/parseAuthState.js.map +1 -0
  13. package/dist/auth/types.d.ts +10 -0
  14. package/dist/{handlers/rest/file → auth}/types.js +0 -0
  15. package/dist/auth/types.js.map +1 -0
  16. package/dist/compress.d.ts +5 -0
  17. package/dist/compress.js +52 -0
  18. package/dist/compress.js.map +1 -0
  19. package/dist/context.d.ts +54 -0
  20. package/dist/context.js +18 -0
  21. package/dist/context.js.map +1 -0
  22. package/dist/error/errorTypeHandlers.d.ts +6 -0
  23. package/dist/error/errorTypeHandlers.js +130 -0
  24. package/dist/error/errorTypeHandlers.js.map +1 -0
  25. package/dist/error/index.d.ts +5 -0
  26. package/dist/error/index.js +61 -0
  27. package/dist/error/index.js.map +1 -0
  28. package/dist/error/types.d.ts +105 -0
  29. package/dist/error/types.js +30 -0
  30. package/dist/error/types.js.map +1 -0
  31. package/dist/functions/index.d.ts +34 -0
  32. package/dist/functions/index.js +210 -0
  33. package/dist/functions/index.js.map +1 -0
  34. package/dist/functions/timeout.d.ts +3 -0
  35. package/dist/functions/timeout.js +23 -0
  36. package/dist/functions/timeout.js.map +1 -0
  37. package/dist/functions/types.d.ts +69 -0
  38. package/dist/functions/types.js +15 -0
  39. package/dist/functions/types.js.map +1 -0
  40. package/dist/incoming/http/authorize.d.ts +4 -0
  41. package/dist/incoming/http/authorize.js +37 -0
  42. package/dist/incoming/http/authorize.js.map +1 -0
  43. package/dist/incoming/http/function.d.ts +4 -0
  44. package/dist/incoming/http/function.js +47 -0
  45. package/dist/incoming/http/function.js.map +1 -0
  46. package/dist/incoming/http/get.d.ts +4 -0
  47. package/dist/incoming/http/get.js +155 -0
  48. package/dist/incoming/http/get.js.map +1 -0
  49. package/dist/incoming/http/index.d.ts +3 -0
  50. package/dist/incoming/http/index.js +134 -0
  51. package/dist/incoming/http/index.js.map +1 -0
  52. package/dist/incoming/http/parseQuery.d.ts +4 -0
  53. package/dist/incoming/http/parseQuery.js +25 -0
  54. package/dist/incoming/http/parseQuery.js.map +1 -0
  55. package/dist/incoming/http/readBody.d.ts +4 -0
  56. package/dist/incoming/http/readBody.js +107 -0
  57. package/dist/incoming/http/readBody.js.map +1 -0
  58. package/dist/{handlers/rest/file → incoming/http/streamFunction}/DataStream.d.ts +0 -0
  59. package/dist/{handlers/rest/file → incoming/http/streamFunction}/DataStream.js +3 -1
  60. package/dist/incoming/http/streamFunction/DataStream.js.map +1 -0
  61. package/dist/{handlers/rest/file/getExtenstion.d.ts → incoming/http/streamFunction/getExtension.d.ts} +0 -0
  62. package/dist/{handlers/rest/file/getExtenstion.js → incoming/http/streamFunction/getExtension.js} +9 -2
  63. package/dist/incoming/http/streamFunction/getExtension.js.map +1 -0
  64. package/dist/incoming/http/streamFunction/index.d.ts +4 -0
  65. package/dist/incoming/http/streamFunction/index.js +106 -0
  66. package/dist/incoming/http/streamFunction/index.js.map +1 -0
  67. package/dist/incoming/http/streamFunction/multipartStream.d.ts +13 -0
  68. package/dist/incoming/http/streamFunction/multipartStream.js +208 -0
  69. package/dist/incoming/http/streamFunction/multipartStream.js.map +1 -0
  70. package/dist/incoming/http/streamFunction/stream.d.ts +6 -0
  71. package/dist/incoming/http/streamFunction/stream.js +108 -0
  72. package/dist/incoming/http/streamFunction/stream.js.map +1 -0
  73. package/dist/incoming/index.d.ts +3 -0
  74. package/dist/incoming/index.js +84 -0
  75. package/dist/incoming/index.js.map +1 -0
  76. package/dist/incoming/upgrade.d.ts +4 -0
  77. package/dist/incoming/upgrade.js +64 -0
  78. package/dist/incoming/upgrade.js.map +1 -0
  79. package/dist/incoming/ws/auth.d.ts +5 -0
  80. package/dist/incoming/ws/auth.js +40 -0
  81. package/dist/incoming/ws/auth.js.map +1 -0
  82. package/dist/incoming/ws/function.d.ts +3 -0
  83. package/dist/incoming/ws/function.js +107 -0
  84. package/dist/incoming/ws/function.js.map +1 -0
  85. package/dist/incoming/ws/get.d.ts +3 -0
  86. package/dist/incoming/ws/get.js +136 -0
  87. package/dist/incoming/ws/get.js.map +1 -0
  88. package/dist/incoming/ws/index.d.ts +3 -0
  89. package/dist/incoming/ws/index.js +61 -0
  90. package/dist/incoming/ws/index.js.map +1 -0
  91. package/dist/incoming/ws/observable.d.ts +6 -0
  92. package/dist/incoming/ws/observable.js +112 -0
  93. package/dist/incoming/ws/observable.js.map +1 -0
  94. package/dist/index.d.ts +10 -35
  95. package/dist/index.js +17 -196
  96. package/dist/index.js.map +1 -1
  97. package/dist/ip.d.ts +2 -0
  98. package/dist/ip.js +8 -0
  99. package/dist/ip.js.map +1 -0
  100. package/dist/observable/create.d.ts +3 -0
  101. package/dist/observable/create.js +30 -0
  102. package/dist/observable/create.js.map +1 -0
  103. package/dist/observable/destroy.d.ts +2 -0
  104. package/dist/observable/destroy.js +51 -0
  105. package/dist/observable/destroy.js.map +1 -0
  106. package/dist/observable/error.d.ts +4 -0
  107. package/dist/observable/error.js +17 -0
  108. package/dist/observable/error.js.map +1 -0
  109. package/dist/observable/extendCache.d.ts +2 -0
  110. package/dist/observable/extendCache.js +11 -0
  111. package/dist/observable/extendCache.js.map +1 -0
  112. package/dist/observable/genObservableId.d.ts +1 -0
  113. package/dist/observable/genObservableId.js +9 -0
  114. package/dist/observable/genObservableId.js.map +1 -0
  115. package/dist/observable/get.d.ts +4 -0
  116. package/dist/observable/get.js +15 -0
  117. package/dist/observable/get.js.map +1 -0
  118. package/dist/observable/index.d.ts +11 -0
  119. package/dist/observable/index.js +28 -0
  120. package/dist/observable/index.js.map +1 -0
  121. package/dist/observable/send.d.ts +6 -0
  122. package/dist/observable/send.js +32 -0
  123. package/dist/observable/send.js.map +1 -0
  124. package/dist/observable/start/error.d.ts +3 -0
  125. package/dist/observable/start/error.js +36 -0
  126. package/dist/observable/start/error.js.map +1 -0
  127. package/dist/observable/start/index.d.ts +2 -0
  128. package/dist/observable/start/index.js +46 -0
  129. package/dist/observable/start/index.js.map +1 -0
  130. package/dist/observable/start/update.d.ts +6 -0
  131. package/dist/observable/start/update.js +104 -0
  132. package/dist/observable/start/update.js.map +1 -0
  133. package/dist/observable/subscribe.d.ts +7 -0
  134. package/dist/observable/subscribe.js +54 -0
  135. package/dist/observable/subscribe.js.map +1 -0
  136. package/dist/observable/types.d.ts +26 -0
  137. package/dist/observable/types.js +3 -0
  138. package/dist/observable/types.js.map +1 -0
  139. package/dist/observable/unsub.d.ts +6 -0
  140. package/dist/observable/unsub.js +43 -0
  141. package/dist/observable/unsub.js.map +1 -0
  142. package/dist/observable/verify.d.ts +4 -0
  143. package/dist/observable/verify.js +18 -0
  144. package/dist/observable/verify.js.map +1 -0
  145. package/dist/protocol.d.ts +21 -0
  146. package/dist/protocol.js +233 -0
  147. package/dist/protocol.js.map +1 -0
  148. package/dist/security.d.ts +6 -0
  149. package/dist/security.js +95 -0
  150. package/dist/security.js.map +1 -0
  151. package/dist/sendError.d.ts +5 -0
  152. package/dist/sendError.js +42 -0
  153. package/dist/sendError.js.map +1 -0
  154. package/dist/sendHttpResponse.d.ts +4 -0
  155. package/dist/sendHttpResponse.js +53 -0
  156. package/dist/sendHttpResponse.js.map +1 -0
  157. package/dist/server.d.ts +69 -0
  158. package/dist/server.js +113 -0
  159. package/dist/server.js.map +1 -0
  160. package/package.json +16 -14
  161. package/dist/BasedServerClient.d.ts +0 -71
  162. package/dist/BasedServerClient.js +0 -390
  163. package/dist/BasedServerClient.js.map +0 -1
  164. package/dist/Client.d.ts +0 -75
  165. package/dist/Client.js +0 -277
  166. package/dist/Client.js.map +0 -1
  167. package/dist/Params.d.ts +0 -20
  168. package/dist/Params.js +0 -48
  169. package/dist/Params.js.map +0 -1
  170. package/dist/closeListener.d.ts +0 -4
  171. package/dist/closeListener.js +0 -13
  172. package/dist/closeListener.js.map +0 -1
  173. package/dist/findPrefix.d.ts +0 -3
  174. package/dist/findPrefix.js +0 -20
  175. package/dist/findPrefix.js.map +0 -1
  176. package/dist/getFromConfig.d.ts +0 -3
  177. package/dist/getFromConfig.js +0 -50
  178. package/dist/getFromConfig.js.map +0 -1
  179. package/dist/handlers/authorize.d.ts +0 -5
  180. package/dist/handlers/authorize.js +0 -196
  181. package/dist/handlers/authorize.js.map +0 -1
  182. package/dist/handlers/bulkUpdate/index.d.ts +0 -5
  183. package/dist/handlers/bulkUpdate/index.js +0 -26
  184. package/dist/handlers/bulkUpdate/index.js.map +0 -1
  185. package/dist/handlers/configuration/index.d.ts +0 -10
  186. package/dist/handlers/configuration/index.js +0 -74
  187. package/dist/handlers/configuration/index.js.map +0 -1
  188. package/dist/handlers/configuration/observable/index.d.ts +0 -46
  189. package/dist/handlers/configuration/observable/index.js +0 -277
  190. package/dist/handlers/configuration/observable/index.js.map +0 -1
  191. package/dist/handlers/configure/index.d.ts +0 -5
  192. package/dist/handlers/configure/index.js +0 -44
  193. package/dist/handlers/configure/index.js.map +0 -1
  194. package/dist/handlers/copy/index.d.ts +0 -8
  195. package/dist/handlers/copy/index.js +0 -135
  196. package/dist/handlers/copy/index.js.map +0 -1
  197. package/dist/handlers/delete/index.d.ts +0 -5
  198. package/dist/handlers/delete/index.js +0 -34
  199. package/dist/handlers/delete/index.js.map +0 -1
  200. package/dist/handlers/digest/index.d.ts +0 -5
  201. package/dist/handlers/digest/index.js +0 -23
  202. package/dist/handlers/digest/index.js.map +0 -1
  203. package/dist/handlers/functions/call.d.ts +0 -6
  204. package/dist/handlers/functions/call.js +0 -54
  205. package/dist/handlers/functions/call.js.map +0 -1
  206. package/dist/handlers/functions/observable/Observable.d.ts +0 -49
  207. package/dist/handlers/functions/observable/Observable.js +0 -290
  208. package/dist/handlers/functions/observable/Observable.js.map +0 -1
  209. package/dist/handlers/functions/observable/SharedObservable.d.ts +0 -45
  210. package/dist/handlers/functions/observable/SharedObservable.js +0 -291
  211. package/dist/handlers/functions/observable/SharedObservable.js.map +0 -1
  212. package/dist/handlers/functions/observable/index.d.ts +0 -14
  213. package/dist/handlers/functions/observable/index.js +0 -130
  214. package/dist/handlers/functions/observable/index.js.map +0 -1
  215. package/dist/handlers/get/index.d.ts +0 -5
  216. package/dist/handlers/get/index.js +0 -23
  217. package/dist/handlers/get/index.js.map +0 -1
  218. package/dist/handlers/getConfig/index.d.ts +0 -5
  219. package/dist/handlers/getConfig/index.js +0 -38
  220. package/dist/handlers/getConfig/index.js.map +0 -1
  221. package/dist/handlers/handleRequests.d.ts +0 -5
  222. package/dist/handlers/handleRequests.js +0 -78
  223. package/dist/handlers/handleRequests.js.map +0 -1
  224. package/dist/handlers/index.d.ts +0 -4
  225. package/dist/handlers/index.js +0 -49
  226. package/dist/handlers/index.js.map +0 -1
  227. package/dist/handlers/messageParser.d.ts +0 -5
  228. package/dist/handlers/messageParser.js +0 -122
  229. package/dist/handlers/messageParser.js.map +0 -1
  230. package/dist/handlers/removeField/index.d.ts +0 -5
  231. package/dist/handlers/removeField/index.js +0 -42
  232. package/dist/handlers/removeField/index.js.map +0 -1
  233. package/dist/handlers/removeType/index.d.ts +0 -5
  234. package/dist/handlers/removeType/index.js +0 -30
  235. package/dist/handlers/removeType/index.js.map +0 -1
  236. package/dist/handlers/rest/file/DataStream.js.map +0 -1
  237. package/dist/handlers/rest/file/formStream.d.ts +0 -4
  238. package/dist/handlers/rest/file/formStream.js +0 -188
  239. package/dist/handlers/rest/file/formStream.js.map +0 -1
  240. package/dist/handlers/rest/file/getExtenstion.js.map +0 -1
  241. package/dist/handlers/rest/file/index.d.ts +0 -4
  242. package/dist/handlers/rest/file/index.js +0 -53
  243. package/dist/handlers/rest/file/index.js.map +0 -1
  244. package/dist/handlers/rest/file/storeFile.d.ts +0 -6
  245. package/dist/handlers/rest/file/storeFile.js +0 -44
  246. package/dist/handlers/rest/file/storeFile.js.map +0 -1
  247. package/dist/handlers/rest/file/stream.d.ts +0 -5
  248. package/dist/handlers/rest/file/stream.js +0 -104
  249. package/dist/handlers/rest/file/stream.js.map +0 -1
  250. package/dist/handlers/rest/file/types.d.ts +0 -9
  251. package/dist/handlers/rest/file/types.js.map +0 -1
  252. package/dist/handlers/rest/getReqMessage.d.ts +0 -3
  253. package/dist/handlers/rest/getReqMessage.js +0 -92
  254. package/dist/handlers/rest/getReqMessage.js.map +0 -1
  255. package/dist/handlers/rest/index.d.ts +0 -4
  256. package/dist/handlers/rest/index.js +0 -121
  257. package/dist/handlers/rest/index.js.map +0 -1
  258. package/dist/handlers/rest/invalidReq.d.ts +0 -4
  259. package/dist/handlers/rest/invalidReq.js +0 -20
  260. package/dist/handlers/rest/invalidReq.js.map +0 -1
  261. package/dist/handlers/rest/parseResponse.d.ts +0 -6
  262. package/dist/handlers/rest/parseResponse.js +0 -230
  263. package/dist/handlers/rest/parseResponse.js.map +0 -1
  264. package/dist/handlers/rest/playground/index.d.ts +0 -5
  265. package/dist/handlers/rest/playground/index.js +0 -308
  266. package/dist/handlers/rest/playground/index.js.map +0 -1
  267. package/dist/handlers/rest/readBody.d.ts +0 -3
  268. package/dist/handlers/rest/readBody.js +0 -45
  269. package/dist/handlers/rest/readBody.js.map +0 -1
  270. package/dist/handlers/set/index.d.ts +0 -5
  271. package/dist/handlers/set/index.js +0 -20
  272. package/dist/handlers/set/index.js.map +0 -1
  273. package/dist/handlers/subscription/index.d.ts +0 -32
  274. package/dist/handlers/subscription/index.js +0 -223
  275. package/dist/handlers/subscription/index.js.map +0 -1
  276. package/dist/handlers/token.d.ts +0 -5
  277. package/dist/handlers/token.js +0 -122
  278. package/dist/handlers/token.js.map +0 -1
  279. package/dist/handlers/track/index.d.ts +0 -7
  280. package/dist/handlers/track/index.js +0 -102
  281. package/dist/handlers/track/index.js.map +0 -1
  282. package/dist/handlers/userAuth/index.d.ts +0 -5
  283. package/dist/handlers/userAuth/index.js +0 -78
  284. package/dist/handlers/userAuth/index.js.map +0 -1
  285. package/dist/openListener.d.ts +0 -4
  286. package/dist/openListener.js +0 -13
  287. package/dist/openListener.js.map +0 -1
  288. package/dist/secrets.d.ts +0 -9
  289. package/dist/secrets.js +0 -150
  290. package/dist/secrets.js.map +0 -1
  291. package/dist/types.d.ts +0 -129
  292. package/dist/types.js +0 -17
  293. package/dist/types.js.map +0 -1
  294. package/dist/upgradeListener.d.ts +0 -4
  295. package/dist/upgradeListener.js +0 -47
  296. package/dist/upgradeListener.js.map +0 -1
  297. package/dist/workers/index.d.ts +0 -0
  298. package/dist/workers/index.js +0 -20
  299. package/dist/workers/index.js.map +0 -1
  300. package/dist/workers/workerCode.d.ts +0 -12
  301. package/dist/workers/workerCode.js +0 -46
  302. package/dist/workers/workerCode.js.map +0 -1
@@ -0,0 +1,61 @@
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 __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ exports.createError = void 0;
18
+ const types_1 = require("./types");
19
+ const errorTypeHandlers_1 = require("./errorTypeHandlers");
20
+ __exportStar(require("./types"), exports);
21
+ const isBasedFunctionRoute = (route) => {
22
+ if (route && typeof route === 'object' && 'name' in route) {
23
+ return true;
24
+ }
25
+ return false;
26
+ };
27
+ function createError(server, context, code, payload) {
28
+ const type = errorTypeHandlers_1.errorTypeHandlers[code];
29
+ const route = !payload
30
+ ? types_1.EMPTY_ROUTE
31
+ : isBasedFunctionRoute(payload)
32
+ ? payload
33
+ : 'route' in payload
34
+ ? payload.route
35
+ : types_1.EMPTY_ROUTE;
36
+ const errorData = {
37
+ code,
38
+ statusCode: type.statusCode,
39
+ statusMessage: type.statusMessage,
40
+ message: type.message(payload),
41
+ route: {
42
+ name: route.name,
43
+ path: route.path,
44
+ },
45
+ };
46
+ if ('requestId' in payload) {
47
+ errorData.requestId = payload.requestId;
48
+ }
49
+ if ('observableId' in payload) {
50
+ errorData.observableId = payload.observableId;
51
+ }
52
+ if ('err' in payload) {
53
+ server.emit('error', context, errorData, payload.err);
54
+ }
55
+ else {
56
+ server.emit('error', context, errorData);
57
+ }
58
+ return errorData;
59
+ }
60
+ exports.createError = createError;
61
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/error/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAGA,mCAKgB;AAEhB,2DAAuD;AACvD,0CAAuB;AAEvB,MAAM,oBAAoB,GAAG,CAAC,KAAU,EAA+B,EAAE;IACvE,IAAI,KAAK,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,MAAM,IAAI,KAAK,EAAE;QACzD,OAAO,IAAI,CAAA;KACZ;IACD,OAAO,KAAK,CAAA;AACd,CAAC,CAAA;AAED,SAAgB,WAAW,CACzB,MAAmB,EACnB,OAAgB,EAChB,IAAO,EACP,OAAwB;IAExB,MAAM,IAAI,GAAG,qCAAiB,CAAC,IAAI,CAAC,CAAA;IAEpC,MAAM,KAAK,GAAG,CAAC,OAAO;QACpB,CAAC,CAAC,mBAAW;QACb,CAAC,CAAC,oBAAoB,CAAC,OAAO,CAAC;YAC/B,CAAC,CAAC,OAAO;YACT,CAAC,CAAC,OAAO,IAAI,OAAO;gBACpB,CAAC,CAAC,OAAO,CAAC,KAAK;gBACf,CAAC,CAAC,mBAAW,CAAA;IAEf,MAAM,SAAS,GAAsB;QACnC,IAAI;QACJ,UAAU,EAAE,IAAI,CAAC,UAAU;QAC3B,aAAa,EAAE,IAAI,CAAC,aAAa;QACjC,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC;QAC9B,KAAK,EAAE;YACL,IAAI,EAAE,KAAK,CAAC,IAAI;YAChB,IAAI,EAAE,KAAK,CAAC,IAAI;SACjB;KACF,CAAA;IAED,IAAI,WAAW,IAAI,OAAO,EAAE;QAC1B,SAAS,CAAC,SAAS,GAAG,OAAO,CAAC,SAAS,CAAA;KACxC;IAED,IAAI,cAAc,IAAI,OAAO,EAAE;QAC7B,SAAS,CAAC,YAAY,GAAG,OAAO,CAAC,YAAY,CAAA;KAC9C;IAED,IAAI,KAAK,IAAI,OAAO,EAAE;QACpB,MAAM,CAAC,IAAI,CAAC,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,OAAO,CAAC,GAAG,CAAC,CAAA;KACtD;SAAM;QACL,MAAM,CAAC,IAAI,CAAC,OAAO,EAAE,OAAO,EAAE,SAAS,CAAC,CAAA;KACzC;IAED,OAAO,SAAS,CAAA;AAClB,CAAC;AA1CD,kCA0CC"}
@@ -0,0 +1,105 @@
1
+ import { BasedFunctionRoute } from '../functions';
2
+ export declare const EMPTY_ROUTE: {
3
+ name: string;
4
+ path: string;
5
+ };
6
+ export declare enum BasedErrorCode {
7
+ FunctionError = 50001,
8
+ AuthorizeFunctionError = 50002,
9
+ NoOservableCacheAvailable = 50003,
10
+ ObservableFunctionError = 50004,
11
+ ObserveCallbackError = 50005,
12
+ FunctionNotFound = 40401,
13
+ FunctionIsNotObservable = 40402,
14
+ FunctionIsObservable = 40403,
15
+ FunctionIsStream = 40404,
16
+ CannotStreamToObservableFunction = 40402,
17
+ AuthorizeRejectedError = 40301,
18
+ InvalidPayload = 40001,
19
+ PayloadTooLarge = 40002,
20
+ ChunkTooLarge = 40003,
21
+ UnsupportedContentEncoding = 40004,
22
+ NoBinaryProtocol = 40005,
23
+ LengthRequired = 41101,
24
+ MethodNotAllowed = 40501,
25
+ RateLimit = 40029
26
+ }
27
+ export declare type BasedError<T extends BasedErrorCode = BasedErrorCode> = Error & {
28
+ code: T;
29
+ };
30
+ declare type FunctionErrorProps = {
31
+ err: Error;
32
+ requestId?: number;
33
+ route: BasedFunctionRoute;
34
+ };
35
+ declare type ObservableFunctionErrorProps = {
36
+ observableId: number;
37
+ err: Error;
38
+ route: BasedFunctionRoute;
39
+ };
40
+ export declare type ErrorPayload = {
41
+ [BasedErrorCode.RateLimit]: {};
42
+ [BasedErrorCode.NoBinaryProtocol]: {
43
+ buffer: ArrayBuffer;
44
+ };
45
+ [BasedErrorCode.FunctionError]: FunctionErrorProps;
46
+ [BasedErrorCode.ObservableFunctionError]: ObservableFunctionErrorProps;
47
+ [BasedErrorCode.AuthorizeFunctionError]: FunctionErrorProps | ObservableFunctionErrorProps;
48
+ [BasedErrorCode.AuthorizeRejectedError]: {
49
+ observableId: number;
50
+ route: BasedFunctionRoute;
51
+ } | {
52
+ requestId?: number;
53
+ route: BasedFunctionRoute;
54
+ };
55
+ [BasedErrorCode.ObserveCallbackError]: {
56
+ err: Error;
57
+ observableId: number;
58
+ route?: BasedFunctionRoute;
59
+ };
60
+ [BasedErrorCode.NoOservableCacheAvailable]: {
61
+ observableId: number;
62
+ route: BasedFunctionRoute;
63
+ };
64
+ [BasedErrorCode.FunctionIsStream]: BasedFunctionRoute & {
65
+ requestId?: number;
66
+ };
67
+ [BasedErrorCode.FunctionNotFound]: BasedFunctionRoute & {
68
+ requestId?: number;
69
+ };
70
+ [BasedErrorCode.FunctionIsNotObservable]: BasedFunctionRoute & {
71
+ requestId?: number;
72
+ };
73
+ [BasedErrorCode.FunctionIsObservable]: BasedFunctionRoute & {
74
+ requestId?: number;
75
+ };
76
+ [BasedErrorCode.CannotStreamToObservableFunction]: BasedFunctionRoute & {
77
+ requestId?: number;
78
+ };
79
+ [BasedErrorCode.InvalidPayload]: BasedFunctionRoute & {
80
+ requestId?: number;
81
+ };
82
+ [BasedErrorCode.PayloadTooLarge]: BasedFunctionRoute & {
83
+ requestId?: number;
84
+ };
85
+ [BasedErrorCode.ChunkTooLarge]: BasedFunctionRoute;
86
+ [BasedErrorCode.UnsupportedContentEncoding]: BasedFunctionRoute;
87
+ [BasedErrorCode.LengthRequired]: BasedFunctionRoute;
88
+ [BasedErrorCode.MethodNotAllowed]: BasedFunctionRoute;
89
+ };
90
+ export declare type ErrorHandler<T extends BasedErrorCode> = {
91
+ statusCode: number;
92
+ statusMessage: string;
93
+ message: (payload: ErrorPayload[T]) => string;
94
+ };
95
+ export declare type BasedErrorData<T extends BasedErrorCode = BasedErrorCode> = {
96
+ route: BasedFunctionRoute;
97
+ message: string;
98
+ code: T;
99
+ statusCode: number;
100
+ statusMessage: string;
101
+ requestId?: number;
102
+ observableId?: number;
103
+ err?: BasedError<T>;
104
+ };
105
+ export {};
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BasedErrorCode = exports.EMPTY_ROUTE = void 0;
4
+ exports.EMPTY_ROUTE = {
5
+ name: 'no-route',
6
+ path: '',
7
+ };
8
+ var BasedErrorCode;
9
+ (function (BasedErrorCode) {
10
+ BasedErrorCode[BasedErrorCode["FunctionError"] = 50001] = "FunctionError";
11
+ BasedErrorCode[BasedErrorCode["AuthorizeFunctionError"] = 50002] = "AuthorizeFunctionError";
12
+ BasedErrorCode[BasedErrorCode["NoOservableCacheAvailable"] = 50003] = "NoOservableCacheAvailable";
13
+ BasedErrorCode[BasedErrorCode["ObservableFunctionError"] = 50004] = "ObservableFunctionError";
14
+ BasedErrorCode[BasedErrorCode["ObserveCallbackError"] = 50005] = "ObserveCallbackError";
15
+ BasedErrorCode[BasedErrorCode["FunctionNotFound"] = 40401] = "FunctionNotFound";
16
+ BasedErrorCode[BasedErrorCode["FunctionIsNotObservable"] = 40402] = "FunctionIsNotObservable";
17
+ BasedErrorCode[BasedErrorCode["FunctionIsObservable"] = 40403] = "FunctionIsObservable";
18
+ BasedErrorCode[BasedErrorCode["FunctionIsStream"] = 40404] = "FunctionIsStream";
19
+ BasedErrorCode[BasedErrorCode["CannotStreamToObservableFunction"] = 40402] = "CannotStreamToObservableFunction";
20
+ BasedErrorCode[BasedErrorCode["AuthorizeRejectedError"] = 40301] = "AuthorizeRejectedError";
21
+ BasedErrorCode[BasedErrorCode["InvalidPayload"] = 40001] = "InvalidPayload";
22
+ BasedErrorCode[BasedErrorCode["PayloadTooLarge"] = 40002] = "PayloadTooLarge";
23
+ BasedErrorCode[BasedErrorCode["ChunkTooLarge"] = 40003] = "ChunkTooLarge";
24
+ BasedErrorCode[BasedErrorCode["UnsupportedContentEncoding"] = 40004] = "UnsupportedContentEncoding";
25
+ BasedErrorCode[BasedErrorCode["NoBinaryProtocol"] = 40005] = "NoBinaryProtocol";
26
+ BasedErrorCode[BasedErrorCode["LengthRequired"] = 41101] = "LengthRequired";
27
+ BasedErrorCode[BasedErrorCode["MethodNotAllowed"] = 40501] = "MethodNotAllowed";
28
+ BasedErrorCode[BasedErrorCode["RateLimit"] = 40029] = "RateLimit";
29
+ })(BasedErrorCode = exports.BasedErrorCode || (exports.BasedErrorCode = {}));
30
+ //# sourceMappingURL=types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/error/types.ts"],"names":[],"mappings":";;;AAEa,QAAA,WAAW,GAAG;IACzB,IAAI,EAAE,UAAU;IAChB,IAAI,EAAE,EAAE;CACT,CAAA;AAED,IAAY,cAoBX;AApBD,WAAY,cAAc;IACxB,yEAAqB,CAAA;IACrB,2FAA8B,CAAA;IAC9B,iGAAiC,CAAA;IACjC,6FAA+B,CAAA;IAC/B,uFAA4B,CAAA;IAC5B,+EAAwB,CAAA;IACxB,6FAA+B,CAAA;IAC/B,uFAA4B,CAAA;IAC5B,+EAAwB,CAAA;IACxB,+GAAwC,CAAA;IACxC,2FAA8B,CAAA;IAC9B,2EAAsB,CAAA;IACtB,6EAAuB,CAAA;IACvB,yEAAqB,CAAA;IACrB,mGAAkC,CAAA;IAClC,+EAAwB,CAAA;IACxB,2EAAsB,CAAA;IACtB,+EAAwB,CAAA;IACxB,iEAAiB,CAAA;AACnB,CAAC,EApBW,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAoBzB"}
@@ -0,0 +1,34 @@
1
+ /// <reference types="node" />
2
+ import type { BasedServer } from '../server';
3
+ import { BasedFunctionRoute, BasedFunctionSpec, BasedObservableFunctionSpec, FunctionConfig } from './types';
4
+ export * from './types';
5
+ export declare class BasedFunctions {
6
+ server: BasedServer;
7
+ reqId: number;
8
+ config: FunctionConfig;
9
+ unregisterTimeout: NodeJS.Timeout;
10
+ installsInProgress: {
11
+ [name: string]: Promise<any>;
12
+ };
13
+ paths: {
14
+ [path: string]: string;
15
+ };
16
+ specs: {
17
+ [name: string]: BasedFunctionSpec | BasedObservableFunctionSpec;
18
+ };
19
+ beingUninstalled: {
20
+ [name: string]: boolean;
21
+ };
22
+ constructor(server: BasedServer, config?: FunctionConfig);
23
+ uninstallLoop(): void;
24
+ updateConfig(config: FunctionConfig): void;
25
+ updateFunction(spec: BasedObservableFunctionSpec | BasedFunctionSpec): Promise<void>;
26
+ private installGaurdedFromConfig;
27
+ install(name: string): Promise<BasedObservableFunctionSpec | BasedFunctionSpec | false>;
28
+ getNameFromPath(path: string): string;
29
+ route(name?: string, path?: string): BasedFunctionRoute | false;
30
+ getFromStore(name: string): BasedObservableFunctionSpec | BasedFunctionSpec | false;
31
+ update(spec: BasedObservableFunctionSpec | BasedFunctionSpec): boolean;
32
+ remove(name: string): boolean;
33
+ uninstall(name: string, spec?: BasedObservableFunctionSpec | BasedFunctionSpec | false): Promise<boolean>;
34
+ }
@@ -0,0 +1,210 @@
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 __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ exports.BasedFunctions = void 0;
18
+ const types_1 = require("./types");
19
+ const utils_1 = require("@saulx/utils");
20
+ const timeout_1 = require("./timeout");
21
+ const observable_1 = require("../observable");
22
+ __exportStar(require("./types"), exports);
23
+ class BasedFunctions {
24
+ constructor(server, config) {
25
+ this.reqId = 0;
26
+ this.installsInProgress = {};
27
+ this.paths = {};
28
+ this.specs = {};
29
+ this.beingUninstalled = {};
30
+ this.server = server;
31
+ if (config) {
32
+ this.updateConfig(config);
33
+ }
34
+ }
35
+ uninstallLoop() {
36
+ this.unregisterTimeout = setTimeout(async () => {
37
+ const q = [];
38
+ for (const name in this.specs) {
39
+ const spec = this.specs[name];
40
+ if (spec.observable && this.server.activeObservables[name]) {
41
+ (0, timeout_1.updateTimeoutCounter)(spec);
42
+ }
43
+ else if ((0, timeout_1.fnIsTimedOut)(spec)) {
44
+ q.push(this.uninstall(name, spec));
45
+ }
46
+ }
47
+ await Promise.all(q);
48
+ this.uninstallLoop();
49
+ }, 3e3);
50
+ }
51
+ updateConfig(config) {
52
+ if (this.config) {
53
+ (0, utils_1.deepMerge)(this.config, config);
54
+ }
55
+ else {
56
+ this.config = config;
57
+ }
58
+ if (this.config.idleTimeout === undefined) {
59
+ this.config.idleTimeout = 60e3; // 1 min
60
+ }
61
+ if (this.config.memCacheTimeout === undefined) {
62
+ this.config.memCacheTimeout = 3e3;
63
+ }
64
+ if (this.config.maxWorkers === undefined) {
65
+ this.config.maxWorkers = 1;
66
+ }
67
+ if (this.unregisterTimeout) {
68
+ clearTimeout(this.unregisterTimeout);
69
+ }
70
+ this.uninstallLoop();
71
+ }
72
+ async updateFunction(spec) {
73
+ const { name } = spec;
74
+ const prevSpec = this.specs[name];
75
+ if (prevSpec) {
76
+ if (prevSpec.function !== spec.function) {
77
+ if (this.beingUninstalled[name]) {
78
+ delete this.beingUninstalled[name];
79
+ }
80
+ (0, timeout_1.updateTimeoutCounter)(spec);
81
+ await this.installGaurdedFromConfig(name);
82
+ await this.config.uninstall({
83
+ server: this.server,
84
+ function: prevSpec,
85
+ name,
86
+ });
87
+ this.update(spec);
88
+ }
89
+ else {
90
+ this.update(spec);
91
+ }
92
+ }
93
+ }
94
+ async installGaurdedFromConfig(name) {
95
+ if (this.installsInProgress[name]) {
96
+ return this.installsInProgress[name];
97
+ }
98
+ this.installsInProgress[name] = this.config.install({
99
+ server: this.server,
100
+ name,
101
+ });
102
+ const s = await this.installsInProgress[name];
103
+ delete this.installsInProgress[name];
104
+ return s;
105
+ }
106
+ async install(name) {
107
+ let spec = this.getFromStore(name);
108
+ if (spec) {
109
+ return spec;
110
+ }
111
+ spec = await this.installGaurdedFromConfig(name);
112
+ if (spec) {
113
+ this.update(spec);
114
+ return this.getFromStore(name);
115
+ }
116
+ return false;
117
+ }
118
+ getNameFromPath(path) {
119
+ return this.paths[path];
120
+ }
121
+ route(name, path) {
122
+ return this.config.route({ server: this.server, name, path });
123
+ }
124
+ getFromStore(name) {
125
+ const spec = this.specs[name];
126
+ if (spec) {
127
+ if (this.beingUninstalled[name]) {
128
+ delete this.beingUninstalled[name];
129
+ }
130
+ (0, timeout_1.updateTimeoutCounter)(spec);
131
+ return spec;
132
+ }
133
+ return false;
134
+ }
135
+ update(spec) {
136
+ if (!spec) {
137
+ return false;
138
+ }
139
+ if (!spec.idleTimeout) {
140
+ spec.idleTimeout = this.config.idleTimeout;
141
+ }
142
+ if (spec.timeoutCounter === undefined) {
143
+ spec.timeoutCounter =
144
+ spec.idleTimeout === 0 ? -1 : Math.ceil(spec.idleTimeout / 1e3);
145
+ }
146
+ if (spec.path) {
147
+ this.paths[spec.path] = spec.name;
148
+ }
149
+ if (this.specs[spec.name] && this.server.activeObservables[spec.name]) {
150
+ if (!(0, types_1.isObservableFunctionSpec)(spec)) {
151
+ for (const [id] of this.server.activeObservables[spec.name]) {
152
+ (0, observable_1.destroyObs)(this.server, id);
153
+ }
154
+ }
155
+ else {
156
+ for (const [id] of this.server.activeObservables[spec.name]) {
157
+ (0, observable_1.start)(this.server, id);
158
+ }
159
+ }
160
+ }
161
+ this.specs[spec.name] = spec;
162
+ return false;
163
+ }
164
+ remove(name) {
165
+ // Does not call unregister!
166
+ const spec = this.specs[name];
167
+ if (!spec) {
168
+ return false;
169
+ }
170
+ if ((0, types_1.isObservableFunctionSpec)(spec)) {
171
+ const activeObs = this.server.activeObservables[name];
172
+ if (activeObs) {
173
+ for (const [id] of activeObs) {
174
+ (0, observable_1.destroyObs)(this.server, id);
175
+ }
176
+ delete this.server.activeObservables[name];
177
+ }
178
+ }
179
+ delete this.specs[name];
180
+ return true;
181
+ }
182
+ async uninstall(name, spec) {
183
+ if (this.beingUninstalled[name]) {
184
+ console.error('Allready being unregistered...', name);
185
+ }
186
+ if (!spec && spec !== false) {
187
+ spec = this.specs[name];
188
+ }
189
+ if (!spec) {
190
+ return false;
191
+ }
192
+ this.beingUninstalled[name] = true;
193
+ if (await this.config.uninstall({
194
+ server: this.server,
195
+ function: spec,
196
+ name,
197
+ })) {
198
+ if (this.beingUninstalled[name]) {
199
+ delete this.beingUninstalled[name];
200
+ return this.remove(name);
201
+ }
202
+ else {
203
+ console.info('got requested while being unregistered', name);
204
+ }
205
+ }
206
+ return false;
207
+ }
208
+ }
209
+ exports.BasedFunctions = BasedFunctions;
210
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/functions/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,3 @@
1
+ import type { BasedFunctionSpec, BasedObservableFunctionSpec } from './types';
2
+ export declare const fnIsTimedOut: (spec: BasedObservableFunctionSpec | BasedFunctionSpec) => boolean;
3
+ export declare const updateTimeoutCounter: (spec: BasedObservableFunctionSpec | BasedFunctionSpec) => void;
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.updateTimeoutCounter = exports.fnIsTimedOut = void 0;
4
+ const fnIsTimedOut = (spec) => {
5
+ if (spec.timeoutCounter !== -1) {
6
+ if (spec.timeoutCounter === 0) {
7
+ return true;
8
+ }
9
+ if (spec.idleTimeout > 0 && spec.timeoutCounter > 0) {
10
+ spec.timeoutCounter--;
11
+ }
12
+ }
13
+ return false;
14
+ };
15
+ exports.fnIsTimedOut = fnIsTimedOut;
16
+ const updateTimeoutCounter = (spec) => {
17
+ if (spec.timeoutCounter !== -1) {
18
+ spec.timeoutCounter =
19
+ spec.idleTimeout === -1 ? -1 : Math.ceil(spec.idleTimeout / 1e3 / 3);
20
+ }
21
+ };
22
+ exports.updateTimeoutCounter = updateTimeoutCounter;
23
+ //# sourceMappingURL=timeout.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"timeout.js","sourceRoot":"","sources":["../../src/functions/timeout.ts"],"names":[],"mappings":";;;AAEO,MAAM,YAAY,GAAG,CAC1B,IAAqD,EAC5C,EAAE;IACX,IAAI,IAAI,CAAC,cAAc,KAAK,CAAC,CAAC,EAAE;QAC9B,IAAI,IAAI,CAAC,cAAc,KAAK,CAAC,EAAE;YAC7B,OAAO,IAAI,CAAA;SACZ;QACD,IAAI,IAAI,CAAC,WAAW,GAAG,CAAC,IAAI,IAAI,CAAC,cAAc,GAAG,CAAC,EAAE;YACnD,IAAI,CAAC,cAAc,EAAE,CAAA;SACtB;KACF;IACD,OAAO,KAAK,CAAA;AACd,CAAC,CAAA;AAZY,QAAA,YAAY,gBAYxB;AAEM,MAAM,oBAAoB,GAAG,CAClC,IAAqD,EACrD,EAAE;IACF,IAAI,IAAI,CAAC,cAAc,KAAK,CAAC,CAAC,EAAE;QAC9B,IAAI,CAAC,cAAc;YACjB,IAAI,CAAC,WAAW,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,WAAW,GAAG,GAAG,GAAG,CAAC,CAAC,CAAA;KACvE;AACH,CAAC,CAAA;AAPY,QAAA,oBAAoB,wBAOhC"}
@@ -0,0 +1,69 @@
1
+ import { Context, HttpSession } from '../context';
2
+ import { ObservableUpdateFunction } from '../observable';
3
+ import { BasedServer } from '../server';
4
+ export declare type CustomHttpResponse = (result: any, payload: any, client: Context<HttpSession>) => Promise<boolean>;
5
+ export declare type BasedFunctionRoute = {
6
+ name: string;
7
+ observable?: boolean;
8
+ headers?: string[];
9
+ path?: string;
10
+ stream?: boolean;
11
+ maxPayloadSize?: number;
12
+ rateLimitTokens?: number;
13
+ public?: boolean;
14
+ };
15
+ export declare type BasedObservableFunction = (payload: any, update: ObservableUpdateFunction) => Promise<() => void>;
16
+ export declare type BasedObservableFunctionSpec = BasedFunctionRoute & {
17
+ name: string;
18
+ checksum: number;
19
+ observable: true;
20
+ function: BasedObservableFunction;
21
+ stickyWorker?: string;
22
+ customHttpResponse?: CustomHttpResponse;
23
+ memCacheTimeout?: number;
24
+ idleTimeout?: number;
25
+ timeoutCounter?: number;
26
+ };
27
+ export declare type BasedFunction = (payload: any, client: Context) => Promise<any>;
28
+ export declare type BasedFunctionSpec = BasedFunctionRoute & {
29
+ name: string;
30
+ observable?: false;
31
+ customHttpResponse?: CustomHttpResponse;
32
+ checksum: number;
33
+ stickyWorker?: string;
34
+ function: BasedFunction;
35
+ maxExecTime?: number;
36
+ idleTimeout?: number;
37
+ timeoutCounter?: number;
38
+ };
39
+ export declare type FunctionConfig = {
40
+ memCacheTimeout?: number;
41
+ idleTimeout?: number;
42
+ maxWorkers?: number;
43
+ importWrapperPath?: string;
44
+ route: (opts: {
45
+ server: BasedServer;
46
+ name?: string;
47
+ path?: string;
48
+ }) => false | (BasedFunctionRoute & {
49
+ maxPayloadSize: number;
50
+ rateLimitTokens: number;
51
+ });
52
+ install: (opts: {
53
+ server: BasedServer;
54
+ name: string;
55
+ function?: BasedFunctionSpec | BasedObservableFunctionSpec;
56
+ }) => Promise<false | BasedObservableFunctionSpec | BasedFunctionSpec>;
57
+ uninstall: (opts: {
58
+ server: BasedServer;
59
+ name: string;
60
+ function: BasedObservableFunctionSpec | BasedFunctionSpec;
61
+ }) => Promise<boolean>;
62
+ };
63
+ export declare enum FunctionType {
64
+ authorize = 0,
65
+ observe = 1,
66
+ function = 2,
67
+ streamFunction = 3
68
+ }
69
+ export declare function isObservableFunctionSpec(fn: BasedObservableFunctionSpec | BasedFunctionSpec): fn is BasedObservableFunctionSpec;
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.isObservableFunctionSpec = exports.FunctionType = void 0;
4
+ var FunctionType;
5
+ (function (FunctionType) {
6
+ FunctionType[FunctionType["authorize"] = 0] = "authorize";
7
+ FunctionType[FunctionType["observe"] = 1] = "observe";
8
+ FunctionType[FunctionType["function"] = 2] = "function";
9
+ FunctionType[FunctionType["streamFunction"] = 3] = "streamFunction";
10
+ })(FunctionType = exports.FunctionType || (exports.FunctionType = {}));
11
+ function isObservableFunctionSpec(fn) {
12
+ return fn.observable;
13
+ }
14
+ exports.isObservableFunctionSpec = isObservableFunctionSpec;
15
+ //# sourceMappingURL=types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/functions/types.ts"],"names":[],"mappings":";;;AA6EA,IAAY,YAKX;AALD,WAAY,YAAY;IACtB,yDAAS,CAAA;IACT,qDAAO,CAAA;IACP,uDAAQ,CAAA;IACR,mEAAc,CAAA;AAChB,CAAC,EALW,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAKvB;AAED,SAAgB,wBAAwB,CACtC,EAAmD;IAEnD,OAAQ,EAAkC,CAAC,UAAU,CAAA;AACvD,CAAC;AAJD,4DAIC"}
@@ -0,0 +1,4 @@
1
+ import { BasedServer } from '../../server';
2
+ import { BasedFunctionRoute } from '../../functions';
3
+ import { HttpSession, Context } from '../../context';
4
+ export declare const authorizeRequest: (server: BasedServer, ctx: Context<HttpSession>, payload: any, route: BasedFunctionRoute, authorized: (payload: any) => void, notAuth?: () => void) => void;
@@ -0,0 +1,37 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.authorizeRequest = void 0;
4
+ const sendError_1 = require("../../sendError");
5
+ const error_1 = require("../../error");
6
+ const authorizeRequest = (server, ctx, payload, route, authorized, notAuth = () => undefined) => {
7
+ if (route.public === true) {
8
+ authorized(payload);
9
+ return;
10
+ }
11
+ server.auth
12
+ .authorize(ctx, route.name, payload)
13
+ .then((ok) => {
14
+ if (!ctx.session) {
15
+ notAuth();
16
+ return;
17
+ }
18
+ if (!ok) {
19
+ notAuth();
20
+ (0, sendError_1.sendError)(server, ctx, error_1.BasedErrorCode.AuthorizeRejectedError, {
21
+ route,
22
+ });
23
+ }
24
+ else {
25
+ authorized(payload);
26
+ }
27
+ })
28
+ .catch((err) => {
29
+ notAuth();
30
+ (0, sendError_1.sendError)(server, ctx, error_1.BasedErrorCode.AuthorizeFunctionError, {
31
+ route,
32
+ err,
33
+ });
34
+ });
35
+ };
36
+ exports.authorizeRequest = authorizeRequest;
37
+ //# sourceMappingURL=authorize.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"authorize.js","sourceRoot":"","sources":["../../../src/incoming/http/authorize.ts"],"names":[],"mappings":";;;AAEA,+CAA2C;AAC3C,uCAA4C;AAGrC,MAAM,gBAAgB,GAAG,CAC9B,MAAmB,EACnB,GAAyB,EACzB,OAAY,EACZ,KAAyB,EACzB,UAAkC,EAClC,UAAsB,GAAG,EAAE,CAAC,SAAS,EACrC,EAAE;IACF,IAAI,KAAK,CAAC,MAAM,KAAK,IAAI,EAAE;QACzB,UAAU,CAAC,OAAO,CAAC,CAAA;QACnB,OAAM;KACP;IAED,MAAM,CAAC,IAAI;SACR,SAAS,CAAC,GAAG,EAAE,KAAK,CAAC,IAAI,EAAE,OAAO,CAAC;SACnC,IAAI,CAAC,CAAC,EAAE,EAAE,EAAE;QACX,IAAI,CAAC,GAAG,CAAC,OAAO,EAAE;YAChB,OAAO,EAAE,CAAA;YACT,OAAM;SACP;QACD,IAAI,CAAC,EAAE,EAAE;YACP,OAAO,EAAE,CAAA;YACT,IAAA,qBAAS,EAAC,MAAM,EAAE,GAAG,EAAE,sBAAc,CAAC,sBAAsB,EAAE;gBAC5D,KAAK;aACN,CAAC,CAAA;SACH;aAAM;YACL,UAAU,CAAC,OAAO,CAAC,CAAA;SACpB;IACH,CAAC,CAAC;SACD,KAAK,CAAC,CAAC,GAAG,EAAE,EAAE;QACb,OAAO,EAAE,CAAA;QACT,IAAA,qBAAS,EAAC,MAAM,EAAE,GAAG,EAAE,sBAAc,CAAC,sBAAsB,EAAE;YAC5D,KAAK;YACL,GAAG;SACJ,CAAC,CAAA;IACJ,CAAC,CAAC,CAAA;AACN,CAAC,CAAA;AApCY,QAAA,gBAAgB,oBAoC5B"}
@@ -0,0 +1,4 @@
1
+ import { BasedServer } from '../../server';
2
+ import { BasedFunctionRoute } from '../../functions';
3
+ import { HttpSession, Context } from '../../context';
4
+ export declare const httpFunction: (route: BasedFunctionRoute, ctx: Context<HttpSession>, server: BasedServer, payload?: Uint8Array) => void;