@based/server 3.4.5 → 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.
- package/dist/api/index.d.ts +7 -0
- package/dist/api/index.js +173 -0
- package/dist/api/index.js.map +1 -0
- package/dist/auth/dummyAuth.d.ts +1 -1
- package/dist/auth/dummyAuth.js +3 -2
- package/dist/auth/dummyAuth.js.map +1 -1
- package/dist/auth/index.d.ts +8 -4
- package/dist/auth/index.js +28 -23
- package/dist/auth/index.js.map +1 -1
- package/dist/auth/parseAuthState.d.ts +2 -0
- package/dist/auth/parseAuthState.js +16 -0
- package/dist/auth/parseAuthState.js.map +1 -0
- package/dist/auth/types.d.ts +10 -0
- package/dist/{handlers/rest/file → auth}/types.js +0 -0
- package/dist/auth/types.js.map +1 -0
- package/dist/compress.d.ts +5 -0
- package/dist/{network/http/compress.js → compress.js} +2 -6
- package/dist/compress.js.map +1 -0
- package/dist/context.d.ts +54 -0
- package/dist/context.js +18 -0
- package/dist/context.js.map +1 -0
- package/dist/error/errorTypeHandlers.d.ts +6 -0
- package/dist/error/errorTypeHandlers.js +130 -0
- package/dist/error/errorTypeHandlers.js.map +1 -0
- package/dist/error/index.d.ts +5 -0
- package/dist/error/index.js +61 -0
- package/dist/error/index.js.map +1 -0
- package/dist/error/types.d.ts +105 -0
- package/dist/error/types.js +30 -0
- package/dist/error/types.js.map +1 -0
- package/dist/functions/index.d.ts +10 -24
- package/dist/functions/index.js +98 -287
- package/dist/functions/index.js.map +1 -1
- package/dist/functions/timeout.d.ts +1 -1
- package/dist/functions/types.d.ts +69 -0
- package/dist/functions/types.js +15 -0
- package/dist/functions/types.js.map +1 -0
- package/dist/incoming/http/authorize.d.ts +4 -0
- package/dist/incoming/http/authorize.js +37 -0
- package/dist/incoming/http/authorize.js.map +1 -0
- package/dist/incoming/http/function.d.ts +4 -0
- package/dist/{network → incoming}/http/function.js +13 -13
- package/dist/incoming/http/function.js.map +1 -0
- package/dist/incoming/http/get.d.ts +4 -0
- package/dist/incoming/http/get.js +155 -0
- package/dist/incoming/http/get.js.map +1 -0
- package/dist/{network → incoming}/http/index.d.ts +0 -0
- package/dist/incoming/http/index.js +134 -0
- package/dist/incoming/http/index.js.map +1 -0
- package/dist/incoming/http/parseQuery.d.ts +4 -0
- package/dist/incoming/http/parseQuery.js +25 -0
- package/dist/incoming/http/parseQuery.js.map +1 -0
- package/dist/incoming/http/readBody.d.ts +4 -0
- package/dist/{network → incoming}/http/readBody.js +27 -32
- package/dist/incoming/http/readBody.js.map +1 -0
- package/dist/{handlers/rest/file → incoming/http/streamFunction}/DataStream.d.ts +0 -0
- package/dist/{network → incoming}/http/streamFunction/DataStream.js +0 -0
- package/dist/incoming/http/streamFunction/DataStream.js.map +1 -0
- package/dist/{network → incoming}/http/streamFunction/getExtension.d.ts +0 -0
- package/dist/{network → incoming}/http/streamFunction/getExtension.js +0 -0
- package/dist/incoming/http/streamFunction/getExtension.js.map +1 -0
- package/dist/incoming/http/streamFunction/index.d.ts +4 -0
- package/dist/incoming/http/streamFunction/index.js +106 -0
- package/dist/incoming/http/streamFunction/index.js.map +1 -0
- package/dist/incoming/http/streamFunction/multipartStream.d.ts +13 -0
- package/dist/{network → incoming}/http/streamFunction/multipartStream.js +12 -12
- package/dist/incoming/http/streamFunction/multipartStream.js.map +1 -0
- package/dist/{network → incoming}/http/streamFunction/stream.d.ts +3 -2
- package/dist/{network → incoming}/http/streamFunction/stream.js +16 -11
- package/dist/incoming/http/streamFunction/stream.js.map +1 -0
- package/dist/incoming/index.d.ts +3 -0
- package/dist/{network → incoming}/index.js +28 -28
- package/dist/incoming/index.js.map +1 -0
- package/dist/incoming/upgrade.d.ts +4 -0
- package/dist/{network → incoming}/upgrade.js +24 -9
- package/dist/incoming/upgrade.js.map +1 -0
- package/dist/incoming/ws/auth.d.ts +5 -0
- package/dist/incoming/ws/auth.js +40 -0
- package/dist/incoming/ws/auth.js.map +1 -0
- package/dist/incoming/ws/function.d.ts +3 -0
- package/dist/incoming/ws/function.js +107 -0
- package/dist/incoming/ws/function.js.map +1 -0
- package/dist/incoming/ws/get.d.ts +3 -0
- package/dist/incoming/ws/get.js +136 -0
- package/dist/incoming/ws/get.js.map +1 -0
- package/dist/incoming/ws/index.d.ts +3 -0
- package/dist/{network/message → incoming/ws}/index.js +17 -18
- package/dist/incoming/ws/index.js.map +1 -0
- package/dist/incoming/ws/observable.d.ts +6 -0
- package/dist/incoming/ws/observable.js +112 -0
- package/dist/incoming/ws/observable.js.map +1 -0
- package/dist/index.d.ts +10 -35
- package/dist/index.js +17 -196
- package/dist/index.js.map +1 -1
- package/dist/ip.d.ts +2 -0
- package/dist/ip.js +8 -0
- package/dist/ip.js.map +1 -0
- package/dist/observable/create.d.ts +3 -0
- package/dist/observable/create.js +30 -0
- package/dist/observable/create.js.map +1 -0
- package/dist/observable/destroy.d.ts +2 -0
- package/dist/observable/destroy.js +51 -0
- package/dist/observable/destroy.js.map +1 -0
- package/dist/observable/error.d.ts +4 -0
- package/dist/observable/error.js +17 -0
- package/dist/observable/error.js.map +1 -0
- package/dist/observable/extendCache.d.ts +2 -0
- package/dist/observable/extendCache.js +11 -0
- package/dist/observable/extendCache.js.map +1 -0
- package/dist/observable/genObservableId.d.ts +1 -0
- package/dist/observable/genObservableId.js +9 -0
- package/dist/observable/genObservableId.js.map +1 -0
- package/dist/observable/get.d.ts +4 -0
- package/dist/observable/get.js +15 -0
- package/dist/observable/get.js.map +1 -0
- package/dist/observable/index.d.ts +11 -8
- package/dist/observable/index.js +25 -151
- package/dist/observable/index.js.map +1 -1
- package/dist/observable/send.d.ts +6 -0
- package/dist/observable/send.js +32 -0
- package/dist/observable/send.js.map +1 -0
- package/dist/observable/start/error.d.ts +3 -0
- package/dist/observable/start/error.js +36 -0
- package/dist/observable/start/error.js.map +1 -0
- package/dist/observable/start/index.d.ts +2 -0
- package/dist/observable/start/index.js +46 -0
- package/dist/observable/start/index.js.map +1 -0
- package/dist/observable/start/update.d.ts +6 -0
- package/dist/observable/start/update.js +104 -0
- package/dist/observable/start/update.js.map +1 -0
- package/dist/observable/subscribe.d.ts +7 -0
- package/dist/observable/subscribe.js +54 -0
- package/dist/observable/subscribe.js.map +1 -0
- package/dist/observable/types.d.ts +26 -0
- package/dist/observable/types.js +3 -0
- package/dist/observable/types.js.map +1 -0
- package/dist/observable/unsub.d.ts +6 -0
- package/dist/observable/unsub.js +43 -0
- package/dist/observable/unsub.js.map +1 -0
- package/dist/observable/verify.d.ts +4 -0
- package/dist/observable/verify.js +18 -0
- package/dist/observable/verify.js.map +1 -0
- package/dist/protocol.d.ts +2 -0
- package/dist/protocol.js +32 -11
- package/dist/protocol.js.map +1 -1
- package/dist/security.d.ts +6 -0
- package/dist/security.js +95 -0
- package/dist/security.js.map +1 -0
- package/dist/sendError.d.ts +5 -0
- package/dist/sendError.js +42 -0
- package/dist/sendError.js.map +1 -0
- package/dist/sendHttpResponse.d.ts +4 -0
- package/dist/sendHttpResponse.js +53 -0
- package/dist/sendHttpResponse.js.map +1 -0
- package/dist/server.d.ts +42 -8
- package/dist/server.js +26 -12
- package/dist/server.js.map +1 -1
- package/package.json +16 -14
- package/.turbo/turbo-build.log +0 -4
- package/dist/BasedServerClient.d.ts +0 -71
- package/dist/BasedServerClient.js +0 -390
- package/dist/BasedServerClient.js.map +0 -1
- package/dist/Client.d.ts +0 -75
- package/dist/Client.js +0 -277
- package/dist/Client.js.map +0 -1
- package/dist/Params.d.ts +0 -20
- package/dist/Params.js +0 -48
- package/dist/Params.js.map +0 -1
- package/dist/auth/authorize.d.ts +0 -2
- package/dist/auth/authorize.js +0 -8
- package/dist/auth/authorize.js.map +0 -1
- package/dist/clientContext.d.ts +0 -0
- package/dist/clientContext.js +0 -83
- package/dist/clientContext.js.map +0 -1
- package/dist/closeListener.d.ts +0 -4
- package/dist/closeListener.js +0 -13
- package/dist/closeListener.js.map +0 -1
- package/dist/error.d.ts +0 -66
- package/dist/error.js +0 -149
- package/dist/error.js.map +0 -1
- package/dist/findPrefix.d.ts +0 -3
- package/dist/findPrefix.js +0 -20
- package/dist/findPrefix.js.map +0 -1
- package/dist/functions/workerPool.d.ts +0 -0
- package/dist/functions/workerPool.js +0 -5
- package/dist/functions/workerPool.js.map +0 -1
- package/dist/getFromConfig.d.ts +0 -3
- package/dist/getFromConfig.js +0 -50
- package/dist/getFromConfig.js.map +0 -1
- package/dist/handlers/authorize.d.ts +0 -5
- package/dist/handlers/authorize.js +0 -196
- package/dist/handlers/authorize.js.map +0 -1
- package/dist/handlers/bulkUpdate/index.d.ts +0 -5
- package/dist/handlers/bulkUpdate/index.js +0 -26
- package/dist/handlers/bulkUpdate/index.js.map +0 -1
- package/dist/handlers/configuration/index.d.ts +0 -10
- package/dist/handlers/configuration/index.js +0 -74
- package/dist/handlers/configuration/index.js.map +0 -1
- package/dist/handlers/configuration/observable/index.d.ts +0 -46
- package/dist/handlers/configuration/observable/index.js +0 -277
- package/dist/handlers/configuration/observable/index.js.map +0 -1
- package/dist/handlers/configure/index.d.ts +0 -5
- package/dist/handlers/configure/index.js +0 -44
- package/dist/handlers/configure/index.js.map +0 -1
- package/dist/handlers/copy/index.d.ts +0 -8
- package/dist/handlers/copy/index.js +0 -135
- package/dist/handlers/copy/index.js.map +0 -1
- package/dist/handlers/delete/index.d.ts +0 -5
- package/dist/handlers/delete/index.js +0 -34
- package/dist/handlers/delete/index.js.map +0 -1
- package/dist/handlers/digest/index.d.ts +0 -5
- package/dist/handlers/digest/index.js +0 -23
- package/dist/handlers/digest/index.js.map +0 -1
- package/dist/handlers/functions/call.d.ts +0 -6
- package/dist/handlers/functions/call.js +0 -54
- package/dist/handlers/functions/call.js.map +0 -1
- package/dist/handlers/functions/observable/Observable.d.ts +0 -49
- package/dist/handlers/functions/observable/Observable.js +0 -290
- package/dist/handlers/functions/observable/Observable.js.map +0 -1
- package/dist/handlers/functions/observable/SharedObservable.d.ts +0 -45
- package/dist/handlers/functions/observable/SharedObservable.js +0 -291
- package/dist/handlers/functions/observable/SharedObservable.js.map +0 -1
- package/dist/handlers/functions/observable/index.d.ts +0 -14
- package/dist/handlers/functions/observable/index.js +0 -130
- package/dist/handlers/functions/observable/index.js.map +0 -1
- package/dist/handlers/get/index.d.ts +0 -5
- package/dist/handlers/get/index.js +0 -23
- package/dist/handlers/get/index.js.map +0 -1
- package/dist/handlers/getConfig/index.d.ts +0 -5
- package/dist/handlers/getConfig/index.js +0 -38
- package/dist/handlers/getConfig/index.js.map +0 -1
- package/dist/handlers/handleRequests.d.ts +0 -5
- package/dist/handlers/handleRequests.js +0 -78
- package/dist/handlers/handleRequests.js.map +0 -1
- package/dist/handlers/index.d.ts +0 -4
- package/dist/handlers/index.js +0 -49
- package/dist/handlers/index.js.map +0 -1
- package/dist/handlers/messageParser.d.ts +0 -5
- package/dist/handlers/messageParser.js +0 -122
- package/dist/handlers/messageParser.js.map +0 -1
- package/dist/handlers/removeField/index.d.ts +0 -5
- package/dist/handlers/removeField/index.js +0 -42
- package/dist/handlers/removeField/index.js.map +0 -1
- package/dist/handlers/removeType/index.d.ts +0 -5
- package/dist/handlers/removeType/index.js +0 -30
- package/dist/handlers/removeType/index.js.map +0 -1
- package/dist/handlers/rest/file/DataStream.js +0 -17
- package/dist/handlers/rest/file/DataStream.js.map +0 -1
- package/dist/handlers/rest/file/formStream.d.ts +0 -4
- package/dist/handlers/rest/file/formStream.js +0 -188
- package/dist/handlers/rest/file/formStream.js.map +0 -1
- package/dist/handlers/rest/file/getExtenstion.d.ts +0 -2
- package/dist/handlers/rest/file/getExtenstion.js +0 -22
- package/dist/handlers/rest/file/getExtenstion.js.map +0 -1
- package/dist/handlers/rest/file/index.d.ts +0 -4
- package/dist/handlers/rest/file/index.js +0 -53
- package/dist/handlers/rest/file/index.js.map +0 -1
- package/dist/handlers/rest/file/storeFile.d.ts +0 -6
- package/dist/handlers/rest/file/storeFile.js +0 -44
- package/dist/handlers/rest/file/storeFile.js.map +0 -1
- package/dist/handlers/rest/file/stream.d.ts +0 -5
- package/dist/handlers/rest/file/stream.js +0 -105
- package/dist/handlers/rest/file/stream.js.map +0 -1
- package/dist/handlers/rest/file/types.d.ts +0 -9
- package/dist/handlers/rest/file/types.js.map +0 -1
- package/dist/handlers/rest/getReqMessage.d.ts +0 -3
- package/dist/handlers/rest/getReqMessage.js +0 -92
- package/dist/handlers/rest/getReqMessage.js.map +0 -1
- package/dist/handlers/rest/index.d.ts +0 -4
- package/dist/handlers/rest/index.js +0 -121
- package/dist/handlers/rest/index.js.map +0 -1
- package/dist/handlers/rest/invalidReq.d.ts +0 -4
- package/dist/handlers/rest/invalidReq.js +0 -20
- package/dist/handlers/rest/invalidReq.js.map +0 -1
- package/dist/handlers/rest/parseResponse.d.ts +0 -6
- package/dist/handlers/rest/parseResponse.js +0 -230
- package/dist/handlers/rest/parseResponse.js.map +0 -1
- package/dist/handlers/rest/playground/index.d.ts +0 -5
- package/dist/handlers/rest/playground/index.js +0 -308
- package/dist/handlers/rest/playground/index.js.map +0 -1
- package/dist/handlers/rest/readBody.d.ts +0 -3
- package/dist/handlers/rest/readBody.js +0 -45
- package/dist/handlers/rest/readBody.js.map +0 -1
- package/dist/handlers/set/index.d.ts +0 -5
- package/dist/handlers/set/index.js +0 -20
- package/dist/handlers/set/index.js.map +0 -1
- package/dist/handlers/subscription/index.d.ts +0 -32
- package/dist/handlers/subscription/index.js +0 -223
- package/dist/handlers/subscription/index.js.map +0 -1
- package/dist/handlers/token.d.ts +0 -5
- package/dist/handlers/token.js +0 -122
- package/dist/handlers/token.js.map +0 -1
- package/dist/handlers/track/index.d.ts +0 -7
- package/dist/handlers/track/index.js +0 -102
- package/dist/handlers/track/index.js.map +0 -1
- package/dist/handlers/userAuth/index.d.ts +0 -5
- package/dist/handlers/userAuth/index.js +0 -78
- package/dist/handlers/userAuth/index.js.map +0 -1
- package/dist/network/http/authorize.d.ts +0 -3
- package/dist/network/http/authorize.js +0 -28
- package/dist/network/http/authorize.js.map +0 -1
- package/dist/network/http/compress.d.ts +0 -6
- package/dist/network/http/compress.js.map +0 -1
- package/dist/network/http/end.d.ts +0 -4
- package/dist/network/http/end.js +0 -19
- package/dist/network/http/end.js.map +0 -1
- package/dist/network/http/function.d.ts +0 -3
- package/dist/network/http/function.js.map +0 -1
- package/dist/network/http/get.d.ts +0 -3
- package/dist/network/http/get.js +0 -129
- package/dist/network/http/get.js.map +0 -1
- package/dist/network/http/index.js +0 -122
- package/dist/network/http/index.js.map +0 -1
- package/dist/network/http/readBody.d.ts +0 -3
- package/dist/network/http/readBody.js.map +0 -1
- package/dist/network/http/send.d.ts +0 -5
- package/dist/network/http/send.js +0 -60
- package/dist/network/http/send.js.map +0 -1
- package/dist/network/http/streamFunction/DataStream.d.ts +0 -7
- package/dist/network/http/streamFunction/DataStream.js.map +0 -1
- package/dist/network/http/streamFunction/getExtension.js.map +0 -1
- package/dist/network/http/streamFunction/index.d.ts +0 -3
- package/dist/network/http/streamFunction/index.js +0 -81
- package/dist/network/http/streamFunction/index.js.map +0 -1
- package/dist/network/http/streamFunction/multipartStream.d.ts +0 -12
- package/dist/network/http/streamFunction/multipartStream.js.map +0 -1
- package/dist/network/http/streamFunction/stream.js.map +0 -1
- package/dist/network/index.d.ts +0 -4
- package/dist/network/index.js.map +0 -1
- package/dist/network/message/auth.d.ts +0 -4
- package/dist/network/message/auth.js +0 -32
- package/dist/network/message/auth.js.map +0 -1
- package/dist/network/message/function.d.ts +0 -3
- package/dist/network/message/function.js +0 -67
- package/dist/network/message/function.js.map +0 -1
- package/dist/network/message/get.d.ts +0 -3
- package/dist/network/message/get.js +0 -109
- package/dist/network/message/get.js.map +0 -1
- package/dist/network/message/index.d.ts +0 -3
- package/dist/network/message/index.js.map +0 -1
- package/dist/network/message/observable.d.ts +0 -5
- package/dist/network/message/observable.js +0 -103
- package/dist/network/message/observable.js.map +0 -1
- package/dist/network/message/send.d.ts +0 -4
- package/dist/network/message/send.js +0 -11
- package/dist/network/message/send.js.map +0 -1
- package/dist/network/upgrade.d.ts +0 -4
- package/dist/network/upgrade.js.map +0 -1
- package/dist/network/worker/get.d.ts +0 -0
- package/dist/network/worker/get.js +0 -122
- package/dist/network/worker/get.js.map +0 -1
- package/dist/network/worker/observable.d.ts +0 -0
- package/dist/network/worker/observable.js +0 -120
- package/dist/network/worker/observable.js.map +0 -1
- package/dist/openListener.d.ts +0 -4
- package/dist/openListener.js +0 -13
- package/dist/openListener.js.map +0 -1
- package/dist/secrets.d.ts +0 -9
- package/dist/secrets.js +0 -150
- package/dist/secrets.js.map +0 -1
- package/dist/security/index.d.ts +0 -2
- package/dist/security/index.js +0 -57
- package/dist/security/index.js.map +0 -1
- package/dist/types.d.ts +0 -129
- package/dist/types.js +0 -17
- package/dist/types.js.map +0 -1
- package/dist/upgradeListener.d.ts +0 -4
- package/dist/upgradeListener.js +0 -47
- package/dist/upgradeListener.js.map +0 -1
- package/dist/worker/authorize.d.ts +0 -5
- package/dist/worker/authorize.js +0 -15
- package/dist/worker/authorize.js.map +0 -1
- package/dist/worker/fnMap.d.ts +0 -2
- package/dist/worker/fnMap.js +0 -5
- package/dist/worker/fnMap.js.map +0 -1
- package/dist/worker/functions.d.ts +0 -3
- package/dist/worker/functions.js +0 -8
- package/dist/worker/functions.js.map +0 -1
- package/dist/worker/http/function.d.ts +0 -4
- package/dist/worker/http/function.js +0 -75
- package/dist/worker/http/function.js.map +0 -1
- package/dist/worker/index.d.ts +0 -1
- package/dist/worker/index.js +0 -101
- package/dist/worker/index.js.map +0 -1
- package/dist/worker/observable.d.ts +0 -15
- package/dist/worker/observable.js +0 -110
- package/dist/worker/observable.js.map +0 -1
- package/dist/worker/ws/function.d.ts +0 -3
- package/dist/worker/ws/function.js +0 -42
- package/dist/worker/ws/function.js.map +0 -1
- package/dist/workers/index.d.ts +0 -0
- package/dist/workers/index.js +0 -20
- package/dist/workers/index.js.map +0 -1
- package/dist/workers/workerCode.d.ts +0 -12
- package/dist/workers/workerCode.js +0 -46
- package/dist/workers/workerCode.js.map +0 -1
package/dist/Client.js
DELETED
|
@@ -1,277 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.Client = void 0;
|
|
7
|
-
const secrets_1 = require("./secrets");
|
|
8
|
-
const utils_1 = require("@saulx/utils");
|
|
9
|
-
const parseResponse_1 = __importDefault(require("./handlers/rest/parseResponse"));
|
|
10
|
-
const ua_parser_js_1 = __importDefault(require("ua-parser-js"));
|
|
11
|
-
let clientId = 0;
|
|
12
|
-
let totalBp = 0;
|
|
13
|
-
// make abstract class (rest client)
|
|
14
|
-
// why not make this user less new things that need to be made
|
|
15
|
-
class Client {
|
|
16
|
-
constructor(server, socket, res, type = 0) {
|
|
17
|
-
this.isBasedUser = false;
|
|
18
|
-
this.isApiKey = false;
|
|
19
|
-
this.id = ++clientId;
|
|
20
|
-
this._server = server;
|
|
21
|
-
if (socket) {
|
|
22
|
-
this.socket = socket;
|
|
23
|
-
socket.client = this;
|
|
24
|
-
}
|
|
25
|
-
this.type = type;
|
|
26
|
-
if (res) {
|
|
27
|
-
this.res = res;
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
params(name) {
|
|
31
|
-
if (this._params) {
|
|
32
|
-
if (name) {
|
|
33
|
-
return this._params[name] || null;
|
|
34
|
-
}
|
|
35
|
-
return this._params;
|
|
36
|
-
}
|
|
37
|
-
const s = this.socket;
|
|
38
|
-
if (s) {
|
|
39
|
-
const params = {};
|
|
40
|
-
this._params = params;
|
|
41
|
-
try {
|
|
42
|
-
const arr = s.query.split(/\?|&/g);
|
|
43
|
-
for (const pair of arr) {
|
|
44
|
-
const [k, v = true] = pair.split('=');
|
|
45
|
-
params[k] = v;
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
catch (err) { }
|
|
49
|
-
if (name) {
|
|
50
|
-
return this._params[name] || null;
|
|
51
|
-
}
|
|
52
|
-
return this._params;
|
|
53
|
-
}
|
|
54
|
-
else {
|
|
55
|
-
return name ? null : {};
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
session(obj) {
|
|
59
|
-
if (!this._session) {
|
|
60
|
-
this._session = {};
|
|
61
|
-
}
|
|
62
|
-
if (obj) {
|
|
63
|
-
if (!obj || typeof obj !== 'object') {
|
|
64
|
-
console.error('Cannot set a non object on session');
|
|
65
|
-
return this._session;
|
|
66
|
-
}
|
|
67
|
-
(0, utils_1.deepMerge)(this._session, obj);
|
|
68
|
-
}
|
|
69
|
-
return this._session;
|
|
70
|
-
}
|
|
71
|
-
get ip() {
|
|
72
|
-
if (this._ip) {
|
|
73
|
-
return this._ip;
|
|
74
|
-
}
|
|
75
|
-
if (this.socket) {
|
|
76
|
-
return (this._ip = Buffer.from(this.socket.getRemoteAddressAsText()).toString());
|
|
77
|
-
}
|
|
78
|
-
if (this.res) {
|
|
79
|
-
return (this._ip = Buffer.from(this.res.getRemoteAddressAsText()).toString());
|
|
80
|
-
}
|
|
81
|
-
return '::1';
|
|
82
|
-
}
|
|
83
|
-
get ua() {
|
|
84
|
-
if (this._ua) {
|
|
85
|
-
return this._ua;
|
|
86
|
-
}
|
|
87
|
-
// UA Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36
|
|
88
|
-
// fix the tablet etc
|
|
89
|
-
const ua = (this._ua = new ua_parser_js_1.default((this.socket ? this.socket.ua : this.res.ua) || '').getResult());
|
|
90
|
-
return ua;
|
|
91
|
-
}
|
|
92
|
-
setToken(token, opts) {
|
|
93
|
-
if (token) {
|
|
94
|
-
if (this._unpackedToken && this._token !== token) {
|
|
95
|
-
delete this._unpackedToken;
|
|
96
|
-
}
|
|
97
|
-
if (opts?.isApiKey) {
|
|
98
|
-
this.isApiKey = true;
|
|
99
|
-
}
|
|
100
|
-
else if (opts?.isBasedUser) {
|
|
101
|
-
this.isBasedUser = true;
|
|
102
|
-
}
|
|
103
|
-
else {
|
|
104
|
-
this.isBasedUser = false;
|
|
105
|
-
}
|
|
106
|
-
this._token = token;
|
|
107
|
-
if (opts?.refreshToken) {
|
|
108
|
-
this._refreshToken = opts.refreshToken;
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
else {
|
|
112
|
-
this.isApiKey = false;
|
|
113
|
-
this.isBasedUser = false;
|
|
114
|
-
if (this._unpackedToken) {
|
|
115
|
-
delete this._unpackedToken;
|
|
116
|
-
}
|
|
117
|
-
if (this._token) {
|
|
118
|
-
delete this._token;
|
|
119
|
-
}
|
|
120
|
-
if (this._refreshToken) {
|
|
121
|
-
delete this._refreshToken;
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
}
|
|
125
|
-
get geo() {
|
|
126
|
-
if (this._geo) {
|
|
127
|
-
return this._geo;
|
|
128
|
-
}
|
|
129
|
-
const getGeo = this._server.config?.getGeo;
|
|
130
|
-
if (this._server.config?.getGeo) {
|
|
131
|
-
return (this._geo = getGeo(this.ip));
|
|
132
|
-
}
|
|
133
|
-
else {
|
|
134
|
-
return {
|
|
135
|
-
iso: 'unkown',
|
|
136
|
-
regions: [],
|
|
137
|
-
long: 0,
|
|
138
|
-
lat: 0,
|
|
139
|
-
};
|
|
140
|
-
}
|
|
141
|
-
}
|
|
142
|
-
async token(secret, type = 'jwt') {
|
|
143
|
-
if (this._unpackedToken) {
|
|
144
|
-
return this._unpackedToken;
|
|
145
|
-
}
|
|
146
|
-
if (this._token) {
|
|
147
|
-
if (this.isApiKey) {
|
|
148
|
-
const getApiKeysPublicKey = this._server?.config?.getApiKeysPublicKey;
|
|
149
|
-
if (getApiKeysPublicKey) {
|
|
150
|
-
const apiTokensPublicKey = await getApiKeysPublicKey();
|
|
151
|
-
this._unpackedToken = await (0, secrets_1.decodeToken)(this._token, apiTokensPublicKey);
|
|
152
|
-
}
|
|
153
|
-
}
|
|
154
|
-
else if (this.isBasedUser) {
|
|
155
|
-
if (secret) {
|
|
156
|
-
throw new Error('Cannot validate based user with a custom secret');
|
|
157
|
-
}
|
|
158
|
-
const getBasedKey = this._server?.config?.getBasedKey;
|
|
159
|
-
if (getBasedKey) {
|
|
160
|
-
this._unpackedToken = await (0, secrets_1.decodeToken)(this._token, await getBasedKey());
|
|
161
|
-
}
|
|
162
|
-
else {
|
|
163
|
-
console.warn('No getBasedKey defined');
|
|
164
|
-
}
|
|
165
|
-
}
|
|
166
|
-
else if (typeof secret === 'string') {
|
|
167
|
-
if (!secret) {
|
|
168
|
-
return this._token;
|
|
169
|
-
}
|
|
170
|
-
this._unpackedToken = await (0, secrets_1.decodeValueBySecret)(this._server, this._token, secret, type);
|
|
171
|
-
}
|
|
172
|
-
else if (typeof secret === 'object' && secret.publicKey) {
|
|
173
|
-
this._unpackedToken = await (0, secrets_1.decodeToken)(this._token, secret.publicKey);
|
|
174
|
-
}
|
|
175
|
-
else {
|
|
176
|
-
return this._token;
|
|
177
|
-
}
|
|
178
|
-
}
|
|
179
|
-
return this._unpackedToken;
|
|
180
|
-
}
|
|
181
|
-
drain() {
|
|
182
|
-
while (this.socket &&
|
|
183
|
-
!this.closed &&
|
|
184
|
-
!this.socket.getBufferedAmount() &&
|
|
185
|
-
this.backpressureQueue?.length) {
|
|
186
|
-
totalBp--;
|
|
187
|
-
const [payload, time] = this.backpressureQueue.shift();
|
|
188
|
-
if (Date.now() - time > 10e3) {
|
|
189
|
-
this.backpressureQueue = [];
|
|
190
|
-
console.info('last bp is larger then 10 seconds destroy client');
|
|
191
|
-
this.destroy();
|
|
192
|
-
return;
|
|
193
|
-
}
|
|
194
|
-
if (!this.socket.send(JSON.stringify(payload))) {
|
|
195
|
-
console.info('drain build bp --- ', this.backpressureQueue.length, 'length in queue still');
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
|
-
// totalBpQ
|
|
199
|
-
if (this.backpressureQueue?.length === 0) {
|
|
200
|
-
this.backpressureQueue = null;
|
|
201
|
-
}
|
|
202
|
-
}
|
|
203
|
-
send(payload, headers) {
|
|
204
|
-
// here we are going to add checksum ALLWAYS
|
|
205
|
-
if (this.res) {
|
|
206
|
-
(0, parseResponse_1.default)(this.res, payload, this.type, undefined, headers);
|
|
207
|
-
this.destroy();
|
|
208
|
-
}
|
|
209
|
-
else if (!this.closed && this.socket) {
|
|
210
|
-
if (this.socket.getBufferedAmount()) {
|
|
211
|
-
if (!this.backpressureQueue) {
|
|
212
|
-
this.backpressureQueue = [];
|
|
213
|
-
}
|
|
214
|
-
if (this.backpressureQueue.length) {
|
|
215
|
-
const time = this.backpressureQueue[0][1];
|
|
216
|
-
if (Date.now() - time > 10e3) {
|
|
217
|
-
this.backpressureQueue = [];
|
|
218
|
-
console.info('last bp is larger then 10 seconds destory');
|
|
219
|
-
this.destroy();
|
|
220
|
-
return;
|
|
221
|
-
}
|
|
222
|
-
}
|
|
223
|
-
totalBp++;
|
|
224
|
-
if (totalBp > 5e3) {
|
|
225
|
-
console.info('Too much bp EXIT process');
|
|
226
|
-
process.exit();
|
|
227
|
-
}
|
|
228
|
-
this.backpressureQueue.push([payload, Date.now()]);
|
|
229
|
-
if (this.backpressureQueue.length > 50) {
|
|
230
|
-
this.backpressureQueue = [];
|
|
231
|
-
console.info('too large bp destroy client');
|
|
232
|
-
this.destroy();
|
|
233
|
-
return;
|
|
234
|
-
}
|
|
235
|
-
console.info('add to bp queue', this.backpressureQueue.length, this.socket.getBufferedAmount());
|
|
236
|
-
}
|
|
237
|
-
else {
|
|
238
|
-
// lets do better with backpressure
|
|
239
|
-
// buffer directly?
|
|
240
|
-
if (typeof payload === 'string') {
|
|
241
|
-
this.socket.send(payload);
|
|
242
|
-
}
|
|
243
|
-
else {
|
|
244
|
-
this.socket.send(JSON.stringify(payload));
|
|
245
|
-
}
|
|
246
|
-
}
|
|
247
|
-
}
|
|
248
|
-
else {
|
|
249
|
-
console.info('Not sending socket is closed ', !!this.socket, this.closed);
|
|
250
|
-
}
|
|
251
|
-
}
|
|
252
|
-
destroy(socketClosed) {
|
|
253
|
-
this.closed = true;
|
|
254
|
-
if (this.backpressureQueue && this.backpressureQueue.length) {
|
|
255
|
-
totalBp -= this.backpressureQueue.length;
|
|
256
|
-
this.backpressureQueue = [];
|
|
257
|
-
}
|
|
258
|
-
if (this.subscriptions) {
|
|
259
|
-
for (const id in this.subscriptions) {
|
|
260
|
-
this.subscriptions[id].unsubscribe(this);
|
|
261
|
-
}
|
|
262
|
-
}
|
|
263
|
-
if (this.socket) {
|
|
264
|
-
this.socket.client = null;
|
|
265
|
-
if (!socketClosed) {
|
|
266
|
-
this.socket.end();
|
|
267
|
-
}
|
|
268
|
-
this.socket = null;
|
|
269
|
-
}
|
|
270
|
-
else {
|
|
271
|
-
this.res = null;
|
|
272
|
-
}
|
|
273
|
-
}
|
|
274
|
-
}
|
|
275
|
-
exports.Client = Client;
|
|
276
|
-
exports.default = Client;
|
|
277
|
-
//# sourceMappingURL=Client.js.map
|
package/dist/Client.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Client.js","sourceRoot":"","sources":["../src/Client.ts"],"names":[],"mappings":"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"}
|
package/dist/Params.d.ts
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
|
-
import { BasedServer } from './';
|
|
3
|
-
import BasedServerClient from './BasedServerClient';
|
|
4
|
-
import { Client } from './Client';
|
|
5
|
-
import { Readable } from 'stream';
|
|
6
|
-
export declare class Params {
|
|
7
|
-
constructor(server: BasedServer, payload?: any, user?: Client, callStack?: string[], update?: (value: any, checksum?: number) => void, name?: string, type?: string, useGlobalBased?: boolean, stream?: Readable);
|
|
8
|
-
private useGlobalBased?;
|
|
9
|
-
type?: string;
|
|
10
|
-
name?: string;
|
|
11
|
-
update: (value: any, checksum?: number) => void;
|
|
12
|
-
callStack: string[];
|
|
13
|
-
user: Client;
|
|
14
|
-
payload?: any;
|
|
15
|
-
fileStream?: Readable;
|
|
16
|
-
private _based;
|
|
17
|
-
server: BasedServer;
|
|
18
|
-
path?: string;
|
|
19
|
-
get based(): BasedServerClient;
|
|
20
|
-
}
|
package/dist/Params.js
DELETED
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.Params = void 0;
|
|
7
|
-
const BasedServerClient_1 = __importDefault(require("./BasedServerClient"));
|
|
8
|
-
class Params {
|
|
9
|
-
constructor(server, payload, user, callStack, update, name, type, useGlobalBased = false, stream = null) {
|
|
10
|
-
this.update = (value, checksum) => {
|
|
11
|
-
console.warn('cannot use update on a non-observable function', value, checksum);
|
|
12
|
-
};
|
|
13
|
-
this.server = server;
|
|
14
|
-
if (callStack) {
|
|
15
|
-
this.callStack = callStack;
|
|
16
|
-
}
|
|
17
|
-
if (user) {
|
|
18
|
-
this.user = user;
|
|
19
|
-
}
|
|
20
|
-
if (stream) {
|
|
21
|
-
this.fileStream = stream;
|
|
22
|
-
}
|
|
23
|
-
if (update) {
|
|
24
|
-
this.update = update;
|
|
25
|
-
}
|
|
26
|
-
if (name) {
|
|
27
|
-
this.name = name;
|
|
28
|
-
}
|
|
29
|
-
if (type) {
|
|
30
|
-
this.type = type;
|
|
31
|
-
}
|
|
32
|
-
this.payload = payload;
|
|
33
|
-
if (useGlobalBased) {
|
|
34
|
-
this.useGlobalBased = true;
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
get based() {
|
|
38
|
-
if (this.useGlobalBased) {
|
|
39
|
-
return this.server.based;
|
|
40
|
-
}
|
|
41
|
-
else {
|
|
42
|
-
return this._based || (this._based = new BasedServerClient_1.default(this));
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
exports.Params = Params;
|
|
47
|
-
Params.prototype.callStack = [];
|
|
48
|
-
//# sourceMappingURL=Params.js.map
|
package/dist/Params.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Params.js","sourceRoot":"","sources":["../src/Params.ts"],"names":[],"mappings":";;;;;;AACA,4EAAmD;AAInD,MAAa,MAAM;IACjB,YACE,MAAmB,EACnB,OAAa,EACb,IAAa,EACb,SAAoB,EACpB,MAAgD,EAChD,IAAa,EACb,IAAa,EACb,iBAA0B,KAAK,EAC/B,SAAmB,IAAI;QAkClB,WAAM,GAA4C,CACvD,KAAU,EACV,QAAiB,EACjB,EAAE;YACF,OAAO,CAAC,IAAI,CACV,gDAAgD,EAChD,KAAK,EACL,QAAQ,CACT,CAAA;QACH,CAAC,CAAA;QAzCC,IAAI,CAAC,MAAM,GAAG,MAAM,CAAA;QACpB,IAAI,SAAS,EAAE;YACb,IAAI,CAAC,SAAS,GAAG,SAAS,CAAA;SAC3B;QACD,IAAI,IAAI,EAAE;YACR,IAAI,CAAC,IAAI,GAAG,IAAI,CAAA;SACjB;QACD,IAAI,MAAM,EAAE;YACV,IAAI,CAAC,UAAU,GAAG,MAAM,CAAA;SACzB;QACD,IAAI,MAAM,EAAE;YACV,IAAI,CAAC,MAAM,GAAG,MAAM,CAAA;SACrB;QACD,IAAI,IAAI,EAAE;YACR,IAAI,CAAC,IAAI,GAAG,IAAI,CAAA;SACjB;QACD,IAAI,IAAI,EAAE;YACR,IAAI,CAAC,IAAI,GAAG,IAAI,CAAA;SACjB;QACD,IAAI,CAAC,OAAO,GAAG,OAAO,CAAA;QAEtB,IAAI,cAAc,EAAE;YAClB,IAAI,CAAC,cAAc,GAAG,IAAI,CAAA;SAC3B;IACH,CAAC;IAiCD,IAAI,KAAK;QACP,IAAI,IAAI,CAAC,cAAc,EAAE;YACvB,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAAA;SACzB;aAAM;YACL,OAAO,IAAI,CAAC,MAAM,IAAI,CAAC,IAAI,CAAC,MAAM,GAAG,IAAI,2BAAiB,CAAC,IAAI,CAAC,CAAC,CAAA;SAClE;IACH,CAAC;CACF;AA5ED,wBA4EC;AAED,MAAM,CAAC,SAAS,CAAC,SAAS,GAAG,EAAE,CAAA"}
|
package/dist/auth/authorize.d.ts
DELETED
package/dist/auth/authorize.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"authorize.js","sourceRoot":"","sources":["../../src/auth/authorize.ts"],"names":[],"mappings":";;;AAEO,MAAM,SAAS,GAAc,KAAK,EAAE,OAAO,EAAE,GAAG,EAAE,KAAK,EAAE,QAAQ,EAAE,EAAE;IAC1E,OAAO,IAAI,CAAA;AACb,CAAC,CAAA;AAFY,QAAA,SAAS,aAErB"}
|
package/dist/clientContext.d.ts
DELETED
|
File without changes
|
package/dist/clientContext.js
DELETED
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
// import { hash } from '@saulx/hash'
|
|
2
|
-
/*
|
|
3
|
-
sharedArrayBuffer UA
|
|
4
|
-
// make a ua table and hash UA
|
|
5
|
-
// ip just in buffer format
|
|
6
|
-
// 250 bytes
|
|
7
|
-
*/
|
|
8
|
-
// export const readIpFromContext = () => {
|
|
9
|
-
// // what to read
|
|
10
|
-
// // ip
|
|
11
|
-
// // ua
|
|
12
|
-
// // id
|
|
13
|
-
// // authState
|
|
14
|
-
// /*
|
|
15
|
-
// function bytesToNumber(byteArray) {
|
|
16
|
-
// let result = 0;
|
|
17
|
-
// for (let i = byteArray.length - 1; i >= 0; i--) {
|
|
18
|
-
// result = (result * 256) + byteArray[i];
|
|
19
|
-
// }
|
|
20
|
-
// return result;
|
|
21
|
-
// }
|
|
22
|
-
// */
|
|
23
|
-
// }
|
|
24
|
-
// export const readUaFromContext = () => {}
|
|
25
|
-
// export const readQueryFromContext = () => {}
|
|
26
|
-
// export const readEncodingFromContext = () => {}
|
|
27
|
-
// export const readAuthStateFromContext = () => {}
|
|
28
|
-
// /*
|
|
29
|
-
// export type ClientContext = {
|
|
30
|
-
// query: string
|
|
31
|
-
// ua: string
|
|
32
|
-
// ip: string
|
|
33
|
-
// id: number
|
|
34
|
-
// authState?: any
|
|
35
|
-
// method: string // this will be removed
|
|
36
|
-
// headers: {
|
|
37
|
-
// 'content-length'?: number
|
|
38
|
-
// authorization?: string
|
|
39
|
-
// 'content-type'?: string
|
|
40
|
-
// 'content-encoding'?: string
|
|
41
|
-
// encoding?: string
|
|
42
|
-
// }
|
|
43
|
-
// }
|
|
44
|
-
// */
|
|
45
|
-
// const encoder = new TextEncoder()
|
|
46
|
-
// export const createContext = (
|
|
47
|
-
// ip: ArrayBuffer,
|
|
48
|
-
// ua: string,
|
|
49
|
-
// query: string,
|
|
50
|
-
// authState: any, // maybe add refresh and token (token can then have )
|
|
51
|
-
// forwardedFor: string,
|
|
52
|
-
// outgoingEncoding: string
|
|
53
|
-
// ): Uint8Array => {
|
|
54
|
-
// // IP 16 bytes
|
|
55
|
-
// // UA 8 bytes
|
|
56
|
-
// // ENCODING 1 byte (in & out)
|
|
57
|
-
// // forwarded for needs to be parsed to 16 bytes ipv6
|
|
58
|
-
// let len = 16 + 8 + 1
|
|
59
|
-
// const encodedQuery = encoder.encode(query)
|
|
60
|
-
// len += encodedQuery.byteLength
|
|
61
|
-
// const sharedBuffer = new SharedArrayBuffer(len)
|
|
62
|
-
// const view = new Uint8Array(sharedBuffer)
|
|
63
|
-
// view.set(new Uint8Array(ip), 0)
|
|
64
|
-
// const uaHash = hash(ua)
|
|
65
|
-
// let n = uaHash
|
|
66
|
-
// for (let index = 16; index < 32; index++) {
|
|
67
|
-
// const byte = n & 0xff
|
|
68
|
-
// view[index] = byte
|
|
69
|
-
// n = (n - byte) / 256
|
|
70
|
-
// }
|
|
71
|
-
// // typeof auth state is {} with refresh token and token
|
|
72
|
-
// // then
|
|
73
|
-
// // parse encoding
|
|
74
|
-
// view[32] = outgoingEncoding.includes('deflate')
|
|
75
|
-
// ? 1
|
|
76
|
-
// : outgoingEncoding.includes('gzip')
|
|
77
|
-
// ? 2
|
|
78
|
-
// : outgoingEncoding.includes('br')
|
|
79
|
-
// ? 3
|
|
80
|
-
// : 0
|
|
81
|
-
// return view
|
|
82
|
-
// }
|
|
83
|
-
//# sourceMappingURL=clientContext.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"clientContext.js","sourceRoot":"","sources":["../src/clientContext.ts"],"names":[],"mappings":"AAAA,qCAAqC;AAErC;;;;;IAKI;AAEJ,2CAA2C;AAC3C,oBAAoB;AACpB,UAAU;AACV,UAAU;AACV,UAAU;AACV,iBAAiB;AACjB,OAAO;AACP,wCAAwC;AACxC,sBAAsB;AACtB,wDAAwD;AACxD,kDAAkD;AAClD,QAAQ;AACR,qBAAqB;AACrB,IAAI;AACJ,OAAO;AACP,IAAI;AAEJ,4CAA4C;AAE5C,+CAA+C;AAE/C,kDAAkD;AAElD,mDAAmD;AAEnD,KAAK;AACL,gCAAgC;AAChC,kBAAkB;AAClB,eAAe;AACf,eAAe;AACf,eAAe;AACf,oBAAoB;AACpB,4CAA4C;AAC5C,eAAe;AACf,gCAAgC;AAChC,6BAA6B;AAC7B,8BAA8B;AAC9B,kCAAkC;AAClC,wBAAwB;AACxB,MAAM;AACN,IAAI;AACJ,KAAK;AAEL,oCAAoC;AAEpC,iCAAiC;AACjC,qBAAqB;AACrB,gBAAgB;AAChB,mBAAmB;AACnB,0EAA0E;AAC1E,0BAA0B;AAC1B,6BAA6B;AAC7B,qBAAqB;AACrB,mBAAmB;AACnB,kBAAkB;AAClB,kCAAkC;AAElC,yDAAyD;AACzD,yBAAyB;AAEzB,+CAA+C;AAE/C,mCAAmC;AAEnC,oDAAoD;AAEpD,8CAA8C;AAE9C,oCAAoC;AAEpC,4BAA4B;AAE5B,mBAAmB;AACnB,gDAAgD;AAChD,4BAA4B;AAC5B,yBAAyB;AACzB,2BAA2B;AAC3B,MAAM;AAEN,4DAA4D;AAC5D,YAAY;AAEZ,sBAAsB;AACtB,oDAAoD;AACpD,UAAU;AACV,0CAA0C;AAC1C,UAAU;AACV,wCAAwC;AACxC,UAAU;AACV,UAAU;AAEV,gBAAgB;AAChB,IAAI"}
|
package/dist/closeListener.d.ts
DELETED
package/dist/closeListener.js
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const close = (server, socket) => {
|
|
4
|
-
if (!socket.client) {
|
|
5
|
-
return;
|
|
6
|
-
}
|
|
7
|
-
const client = socket.client;
|
|
8
|
-
server.emit('close', client);
|
|
9
|
-
delete server.clients[client.id];
|
|
10
|
-
client.destroy(true);
|
|
11
|
-
};
|
|
12
|
-
exports.default = close;
|
|
13
|
-
//# sourceMappingURL=closeListener.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"closeListener.js","sourceRoot":"","sources":["../src/closeListener.ts"],"names":[],"mappings":";;AAGA,MAAM,KAAK,GAAG,CAAC,MAAmB,EAAE,MAAqB,EAAE,EAAE;IAC3D,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE;QAClB,OAAM;KACP;IACD,MAAM,MAAM,GAAG,MAAM,CAAC,MAAM,CAAA;IAC5B,MAAM,CAAC,IAAI,CAAC,OAAO,EAAE,MAAM,CAAC,CAAA;IAC5B,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,CAAC,CAAA;IAChC,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;AACtB,CAAC,CAAA;AAED,kBAAe,KAAK,CAAA"}
|
package/dist/error.d.ts
DELETED
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
import { BasedServer } from './server';
|
|
2
|
-
import { BasedFunctionRoute, HttpClient, WebsocketClient } from './types';
|
|
3
|
-
export declare enum BasedErrorCode {
|
|
4
|
-
FunctionError = 50001,
|
|
5
|
-
AuthorizeFunctionError = 50002,
|
|
6
|
-
NoOservableCacheAvailable = 50003,
|
|
7
|
-
ObservableFunctionError = 50004,
|
|
8
|
-
FunctionNotFound = 40401,
|
|
9
|
-
FunctionIsNotObservable = 40402,
|
|
10
|
-
FunctionIsObservable = 40403,
|
|
11
|
-
FunctionIsStream = 40404,
|
|
12
|
-
CannotStreamToObservableFunction = 40402,
|
|
13
|
-
AuthorizeRejectedError = 40301,
|
|
14
|
-
InvalidPayload = 40001,
|
|
15
|
-
PayloadTooLarge = 40002,
|
|
16
|
-
ChunkTooLarge = 40003,
|
|
17
|
-
UnsupportedContentEncoding = 40004,
|
|
18
|
-
NoBinaryProtocol = 40005,
|
|
19
|
-
LengthRequired = 41101,
|
|
20
|
-
MethodNotAllowed = 40501
|
|
21
|
-
}
|
|
22
|
-
declare type FunctionErrorProps = {
|
|
23
|
-
err: Error;
|
|
24
|
-
requestId?: number;
|
|
25
|
-
route: BasedFunctionRoute;
|
|
26
|
-
} | {
|
|
27
|
-
observableId: number;
|
|
28
|
-
err: Error;
|
|
29
|
-
route: BasedFunctionRoute;
|
|
30
|
-
};
|
|
31
|
-
export declare type ErrorPayload = {
|
|
32
|
-
[BasedErrorCode.NoBinaryProtocol]: any;
|
|
33
|
-
[BasedErrorCode.FunctionError]: FunctionErrorProps;
|
|
34
|
-
[BasedErrorCode.AuthorizeFunctionError]: FunctionErrorProps;
|
|
35
|
-
[BasedErrorCode.NoOservableCacheAvailable]: {
|
|
36
|
-
observableId: number;
|
|
37
|
-
route: BasedFunctionRoute;
|
|
38
|
-
};
|
|
39
|
-
[BasedErrorCode.ObservableFunctionError]: {
|
|
40
|
-
observableId: number;
|
|
41
|
-
route: BasedFunctionRoute;
|
|
42
|
-
};
|
|
43
|
-
[BasedErrorCode.FunctionIsStream]: BasedFunctionRoute;
|
|
44
|
-
[BasedErrorCode.FunctionNotFound]: BasedFunctionRoute;
|
|
45
|
-
[BasedErrorCode.FunctionIsNotObservable]: BasedFunctionRoute;
|
|
46
|
-
[BasedErrorCode.FunctionIsObservable]: BasedFunctionRoute;
|
|
47
|
-
[BasedErrorCode.CannotStreamToObservableFunction]: BasedFunctionRoute;
|
|
48
|
-
[BasedErrorCode.AuthorizeRejectedError]: BasedFunctionRoute;
|
|
49
|
-
[BasedErrorCode.InvalidPayload]: BasedFunctionRoute;
|
|
50
|
-
[BasedErrorCode.PayloadTooLarge]: BasedFunctionRoute;
|
|
51
|
-
[BasedErrorCode.ChunkTooLarge]: BasedFunctionRoute;
|
|
52
|
-
[BasedErrorCode.UnsupportedContentEncoding]: BasedFunctionRoute;
|
|
53
|
-
[BasedErrorCode.LengthRequired]: BasedFunctionRoute;
|
|
54
|
-
[BasedErrorCode.MethodNotAllowed]: BasedFunctionRoute;
|
|
55
|
-
};
|
|
56
|
-
export declare type BasedErrorData = {
|
|
57
|
-
route: BasedFunctionRoute;
|
|
58
|
-
message: string;
|
|
59
|
-
code: BasedErrorCode;
|
|
60
|
-
statusCode: number;
|
|
61
|
-
statusMessage: string;
|
|
62
|
-
requestId?: number;
|
|
63
|
-
observableId?: number;
|
|
64
|
-
};
|
|
65
|
-
export declare const createError: (server: BasedServer, client: HttpClient | WebsocketClient, code: BasedErrorCode, payload: ErrorPayload[BasedErrorCode]) => BasedErrorData;
|
|
66
|
-
export {};
|