rxdb-server 15.7.0 → 15.13.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/README.md +4 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/plugins/adapter-express/index.js +122 -0
- package/dist/cjs/plugins/adapter-express/index.js.map +1 -0
- package/dist/cjs/plugins/client-rest/index.js.map +1 -1
- package/dist/cjs/plugins/client-rest/utils.js.map +1 -1
- package/dist/cjs/plugins/replication-server/helpers.js.map +1 -1
- package/dist/cjs/plugins/replication-server/index.js +1 -1
- package/dist/cjs/plugins/replication-server/index.js.map +1 -1
- package/dist/cjs/plugins/replication-server/types.js.map +1 -1
- package/dist/cjs/plugins/server/endpoint-replication.js +22 -20
- package/dist/cjs/plugins/server/endpoint-replication.js.map +1 -1
- package/dist/cjs/plugins/server/endpoint-rest.js +33 -31
- package/dist/cjs/plugins/server/endpoint-rest.js.map +1 -1
- package/dist/cjs/plugins/server/helper.js +6 -45
- package/dist/cjs/plugins/server/helper.js.map +1 -1
- package/dist/cjs/plugins/server/index.js +5 -15
- package/dist/cjs/plugins/server/index.js.map +1 -1
- package/dist/cjs/plugins/server/rx-server.js +25 -22
- package/dist/cjs/plugins/server/rx-server.js.map +1 -1
- package/dist/cjs/plugins/server/types.js.map +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/plugins/adapter-express/index.js +115 -0
- package/dist/esm/plugins/adapter-express/index.js.map +1 -0
- package/dist/esm/plugins/client-rest/index.js.map +1 -1
- package/dist/esm/plugins/client-rest/utils.js.map +1 -1
- package/dist/esm/plugins/replication-server/helpers.js.map +1 -1
- package/dist/esm/plugins/replication-server/index.js +1 -1
- package/dist/esm/plugins/replication-server/index.js.map +1 -1
- package/dist/esm/plugins/replication-server/types.js.map +1 -1
- package/dist/esm/plugins/server/endpoint-replication.js +23 -21
- package/dist/esm/plugins/server/endpoint-replication.js.map +1 -1
- package/dist/esm/plugins/server/endpoint-rest.js +34 -32
- package/dist/esm/plugins/server/endpoint-rest.js.map +1 -1
- package/dist/esm/plugins/server/helper.js +6 -42
- package/dist/esm/plugins/server/helper.js.map +1 -1
- package/dist/esm/plugins/server/index.js +3 -12
- package/dist/esm/plugins/server/index.js.map +1 -1
- package/dist/esm/plugins/server/rx-server.js +25 -22
- package/dist/esm/plugins/server/rx-server.js.map +1 -1
- package/dist/esm/plugins/server/types.js.map +1 -1
- package/dist/types/plugins/adapter-express/index.d.ts +7 -0
- package/dist/types/plugins/server/endpoint-replication.d.ts +3 -3
- package/dist/types/plugins/server/endpoint-rest.d.ts +3 -3
- package/dist/types/plugins/server/helper.d.ts +6 -8
- package/dist/types/plugins/server/index.d.ts +1 -1
- package/dist/types/plugins/server/rx-server.d.ts +12 -11
- package/dist/types/plugins/server/types.d.ts +26 -3
- package/package.json +33 -27
- package/plugins/adapter-express/index.cjs +2 -0
- package/plugins/adapter-express/index.d.cts +1 -0
- package/plugins/adapter-express/index.d.mts +1 -0
- package/plugins/adapter-express/index.mjs +1 -0
- package/plugins/adapter-express/index.ts +1 -0
- package/plugins/adapter-express/package.json +18 -0
|
@@ -24,6 +24,7 @@ var RxServerRestEndpoint = exports.RxServerRestEndpoint = function RxServerRestE
|
|
|
24
24
|
this.collection = collection;
|
|
25
25
|
this.serverOnlyFields = serverOnlyFields;
|
|
26
26
|
this.cors = cors;
|
|
27
|
+
var adapter = server.adapter;
|
|
27
28
|
(0, _helper.setCors)(this.server, [this.name].join('/'), cors);
|
|
28
29
|
(0, _helper.blockPreviousVersionPaths)(this.server, [this.name].join('/'), collection.schema.version);
|
|
29
30
|
this.urlPath = [this.name, collection.schema.version].join('/');
|
|
@@ -42,19 +43,20 @@ var RxServerRestEndpoint = exports.RxServerRestEndpoint = function RxServerRestE
|
|
|
42
43
|
return changeValidator(authData, change);
|
|
43
44
|
};
|
|
44
45
|
var removeServerOnlyFields = (0, _helper.removeServerOnlyFieldsMonad)(this.serverOnlyFields);
|
|
45
|
-
this.server.
|
|
46
|
+
this.server.adapter.post(this.server.serverApp, '/' + this.urlPath + '/query', async (req, res) => {
|
|
47
|
+
(0, _utils.ensureNotFalsy)(adapter.getRequestBody(req), 'req body is empty');
|
|
46
48
|
var authData = (0, _utils.getFromMapOrThrow)(authDataByRequest, req);
|
|
47
49
|
var useQuery;
|
|
48
50
|
try {
|
|
49
|
-
useQuery = this.queryModifier((0, _utils.ensureNotFalsy)(authData), (0, _core.normalizeMangoQuery)(this.collection.schema.jsonSchema, req
|
|
51
|
+
useQuery = this.queryModifier((0, _utils.ensureNotFalsy)(authData), (0, _core.normalizeMangoQuery)(this.collection.schema.jsonSchema, adapter.getRequestBody(req)));
|
|
50
52
|
} catch (err) {
|
|
51
|
-
|
|
53
|
+
adapter.closeConnection(res, 400, 'Bad Request');
|
|
52
54
|
return;
|
|
53
55
|
}
|
|
54
56
|
var rxQuery = this.collection.find(useQuery);
|
|
55
57
|
var result = await rxQuery.exec();
|
|
56
|
-
|
|
57
|
-
|
|
58
|
+
adapter.setResponseHeader(res, 'Content-Type', 'application/json');
|
|
59
|
+
adapter.endResponseJson(res, {
|
|
58
60
|
documents: result.map(d => removeServerOnlyFields(d.toJSON()))
|
|
59
61
|
});
|
|
60
62
|
});
|
|
@@ -64,10 +66,10 @@ var RxServerRestEndpoint = exports.RxServerRestEndpoint = function RxServerRestE
|
|
|
64
66
|
* so we send the query as query parameter in base64
|
|
65
67
|
* like ?query=e3NlbGVjdG9yOiB7fX0=
|
|
66
68
|
*/
|
|
67
|
-
this.server.
|
|
69
|
+
this.server.adapter.get(this.server.serverApp, '/' + this.urlPath + '/query/observe', async (req, res) => {
|
|
68
70
|
var authData = (0, _utils.getFromMapOrThrow)(authDataByRequest, req);
|
|
69
|
-
|
|
70
|
-
var useQuery = this.queryModifier((0, _utils.ensureNotFalsy)(authData), (0, _core.normalizeMangoQuery)(this.collection.schema.jsonSchema, JSON.parse(atob(req.query
|
|
71
|
+
adapter.setSSEHeaders(res);
|
|
72
|
+
var useQuery = this.queryModifier((0, _utils.ensureNotFalsy)(authData), (0, _core.normalizeMangoQuery)(this.collection.schema.jsonSchema, JSON.parse(atob(adapter.getRequestQuery(req).query))));
|
|
71
73
|
var rxQuery = this.collection.find(useQuery);
|
|
72
74
|
var subscription = rxQuery.$.pipe((0, _rxjs.mergeMap)(async result => {
|
|
73
75
|
var resultData = result.map(doc => removeServerOnlyFields(doc.toJSON()));
|
|
@@ -78,27 +80,27 @@ var RxServerRestEndpoint = exports.RxServerRestEndpoint = function RxServerRestE
|
|
|
78
80
|
* before emitting the new results.
|
|
79
81
|
*/
|
|
80
82
|
try {
|
|
81
|
-
authData = await server.authHandler(req
|
|
83
|
+
authData = await server.authHandler(adapter.getRequestHeaders(req));
|
|
82
84
|
} catch (err) {
|
|
83
|
-
|
|
85
|
+
adapter.closeConnection(res, 401, 'Unauthorized');
|
|
84
86
|
return null;
|
|
85
87
|
}
|
|
86
88
|
return resultData;
|
|
87
89
|
}), (0, _rxjs.filter)(f => f !== null)).subscribe(resultData => {
|
|
88
|
-
|
|
90
|
+
adapter.responseWrite(res, 'data: ' + JSON.stringify(resultData) + '\n\n');
|
|
89
91
|
});
|
|
90
92
|
|
|
91
93
|
/**
|
|
92
94
|
* @link https://youtu.be/0PcMuYGJPzM?si=AxkczxcMaUwhh8k9&t=363
|
|
93
95
|
*/
|
|
94
|
-
|
|
96
|
+
adapter.onRequestClose(req, () => {
|
|
95
97
|
subscription.unsubscribe();
|
|
96
|
-
|
|
98
|
+
adapter.endResponse(req);
|
|
97
99
|
});
|
|
98
100
|
});
|
|
99
|
-
this.server.
|
|
101
|
+
this.server.adapter.post(this.server.serverApp, '/' + this.urlPath + '/get', async (req, res) => {
|
|
100
102
|
var authData = (0, _utils.getFromMapOrThrow)(authDataByRequest, req);
|
|
101
|
-
var ids = req
|
|
103
|
+
var ids = adapter.getRequestBody(req);
|
|
102
104
|
var rxQuery = this.collection.findByIds(ids);
|
|
103
105
|
var resultMap = await rxQuery.exec();
|
|
104
106
|
var resultValues = Array.from(resultMap.values());
|
|
@@ -106,19 +108,19 @@ var RxServerRestEndpoint = exports.RxServerRestEndpoint = function RxServerRestE
|
|
|
106
108
|
var useDocs = resultValues.map(d => d.toJSON());
|
|
107
109
|
useDocs = useDocs.filter(d => docMatcher(d));
|
|
108
110
|
useDocs = useDocs.map(d => removeServerOnlyFields(d));
|
|
109
|
-
|
|
110
|
-
|
|
111
|
+
adapter.setResponseHeader(res, 'Content-Type', 'application/json');
|
|
112
|
+
adapter.endResponseJson(res, {
|
|
111
113
|
documents: useDocs
|
|
112
114
|
});
|
|
113
115
|
});
|
|
114
|
-
this.server.
|
|
116
|
+
this.server.adapter.post(this.server.serverApp, '/' + this.urlPath + '/set', async (req, res) => {
|
|
115
117
|
var authData = (0, _utils.getFromMapOrThrow)(authDataByRequest, req);
|
|
116
118
|
var docDataMatcherWrite = (0, _helper.getDocAllowedMatcher)(this, (0, _utils.ensureNotFalsy)(authData));
|
|
117
|
-
var docsData = req
|
|
119
|
+
var docsData = adapter.getRequestBody(req);
|
|
118
120
|
for (var docData of docsData) {
|
|
119
121
|
var allowed = docDataMatcherWrite(docData);
|
|
120
122
|
if (!allowed) {
|
|
121
|
-
|
|
123
|
+
adapter.closeConnection(res, 403, 'Forbidden');
|
|
122
124
|
return;
|
|
123
125
|
}
|
|
124
126
|
}
|
|
@@ -127,7 +129,7 @@ var RxServerRestEndpoint = exports.RxServerRestEndpoint = function RxServerRestE
|
|
|
127
129
|
// just retry on conflicts
|
|
128
130
|
docsData.push(docData);
|
|
129
131
|
} else {
|
|
130
|
-
|
|
132
|
+
adapter.closeConnection(res, 500, 'Internal Server Error');
|
|
131
133
|
throw err;
|
|
132
134
|
}
|
|
133
135
|
}
|
|
@@ -147,7 +149,7 @@ var RxServerRestEndpoint = exports.RxServerRestEndpoint = function RxServerRestE
|
|
|
147
149
|
assumedMasterState: removeServerOnlyFields(doc.toJSON(true))
|
|
148
150
|
});
|
|
149
151
|
if (!isAllowed) {
|
|
150
|
-
|
|
152
|
+
adapter.closeConnection(res, 403, 'Forbidden');
|
|
151
153
|
return {
|
|
152
154
|
v: void 0
|
|
153
155
|
};
|
|
@@ -162,13 +164,13 @@ var RxServerRestEndpoint = exports.RxServerRestEndpoint = function RxServerRestE
|
|
|
162
164
|
}
|
|
163
165
|
await Promise.all(promises);
|
|
164
166
|
}
|
|
165
|
-
|
|
166
|
-
|
|
167
|
+
adapter.setResponseHeader(res, 'Content-Type', 'application/json');
|
|
168
|
+
adapter.endResponseJson(res, {});
|
|
167
169
|
});
|
|
168
|
-
this.server.
|
|
170
|
+
this.server.adapter.post(this.server.serverApp, '/' + this.urlPath + '/delete', async (req, res) => {
|
|
169
171
|
var authData = (0, _utils.getFromMapOrThrow)(authDataByRequest, req);
|
|
170
172
|
var docDataMatcherWrite = (0, _helper.getDocAllowedMatcher)(this, (0, _utils.ensureNotFalsy)(authData));
|
|
171
|
-
var ids = req
|
|
173
|
+
var ids = adapter.getRequestBody(req);
|
|
172
174
|
while (ids.length > 0) {
|
|
173
175
|
var useIds = ids.slice(0);
|
|
174
176
|
ids = [];
|
|
@@ -179,7 +181,7 @@ var RxServerRestEndpoint = exports.RxServerRestEndpoint = function RxServerRestE
|
|
|
179
181
|
if (doc) {
|
|
180
182
|
var isAllowedDoc = docDataMatcherWrite(doc.toJSON(true));
|
|
181
183
|
if (!isAllowedDoc) {
|
|
182
|
-
|
|
184
|
+
adapter.closeConnection(res, 403, 'Forbidden');
|
|
183
185
|
return {
|
|
184
186
|
v: void 0
|
|
185
187
|
};
|
|
@@ -189,7 +191,7 @@ var RxServerRestEndpoint = exports.RxServerRestEndpoint = function RxServerRestE
|
|
|
189
191
|
assumedMasterState: doc.toJSON(true)
|
|
190
192
|
});
|
|
191
193
|
if (!isAllowedChange) {
|
|
192
|
-
|
|
194
|
+
adapter.closeConnection(res, 403, 'Forbidden');
|
|
193
195
|
return {
|
|
194
196
|
v: void 0
|
|
195
197
|
};
|
|
@@ -199,7 +201,7 @@ var RxServerRestEndpoint = exports.RxServerRestEndpoint = function RxServerRestE
|
|
|
199
201
|
// just retry on conflicts
|
|
200
202
|
ids.push(id);
|
|
201
203
|
} else {
|
|
202
|
-
|
|
204
|
+
adapter.closeConnection(res, 500, 'Internal Server Error');
|
|
203
205
|
throw err;
|
|
204
206
|
}
|
|
205
207
|
}));
|
|
@@ -212,8 +214,8 @@ var RxServerRestEndpoint = exports.RxServerRestEndpoint = function RxServerRestE
|
|
|
212
214
|
}
|
|
213
215
|
await Promise.all(promises);
|
|
214
216
|
}
|
|
215
|
-
|
|
216
|
-
|
|
217
|
+
adapter.setResponseHeader(res, 'Content-Type', 'application/json');
|
|
218
|
+
adapter.endResponseJson(res, {});
|
|
217
219
|
});
|
|
218
220
|
};
|
|
219
221
|
//# sourceMappingURL=endpoint-rest.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"endpoint-rest.js","names":["_core","require","_rxjs","_utils","_helper","REST_PATHS","exports","RxServerRestEndpoint","server","name","collection","queryModifier","changeValidator","serverOnlyFields","cors","_this","type","setCors","join","blockPreviousVersionPaths","schema","version","urlPath","primaryPath","authDataByRequest","addAuthMiddleware","authData","query","doesContainRegexQuerySelector","selector","Error","change","assumedMasterState","docContainsServerOnlyFields","newDocumentState","removeServerOnlyFields","removeServerOnlyFieldsMonad","expressApp","post","req","res","getFromMapOrThrow","useQuery","ensureNotFalsy","normalizeMangoQuery","jsonSchema","body","err","closeConnection","rxQuery","find","result","exec","setHeader","json","documents","map","d","toJSON","get","writeSSEHeaders","JSON","parse","atob","subscription","$","pipe","mergeMap","resultData","doc","authHandler","headers","filter","f","subscribe","write","stringify","on","unsubscribe","end","ids","findByIds","resultMap","resultValues","Array","from","values","docMatcher","getDocAllowedMatcher","useDocs","docDataMatcherWrite","docsData","docData","allowed","onWriteError","rxdb","code","push","length","promises","docs","useDocsData","slice","_loop","_docData","id","insert","catch","isAllowed","v","patch","_ret","Promise","all","useIds","docsMap","_loop2","isAllowedDoc","isAllowedChange","remove","_ret2"],"sources":["../../../../src/plugins/server/endpoint-rest.ts"],"sourcesContent":["import {\n FilledMangoQuery,\n RxCollection,\n RxError,\n normalizeMangoQuery\n} from 'rxdb/plugins/core';\nimport type { RxServer } from './rx-server.ts';\nimport type {\n RxServerChangeValidator,\n RxServerEndpoint,\n RxServerQueryModifier\n} from './types.ts';\nimport { filter, mergeMap } from 'rxjs';\nimport {\n ensureNotFalsy,\n getFromMapOrThrow\n} from 'rxdb/plugins/utils';\n\nimport {\n addAuthMiddleware,\n blockPreviousVersionPaths,\n closeConnection,\n docContainsServerOnlyFields,\n doesContainRegexQuerySelector,\n getDocAllowedMatcher,\n removeServerOnlyFieldsMonad,\n setCors,\n writeSSEHeaders\n} from './helper.ts';\n\n\nexport const REST_PATHS = [\n 'query',\n 'query/observe',\n 'get',\n 'set',\n 'delete',\n\n // TODO\n /*\n 'attachments/add',\n 'attachments/delete',\n 'events'\n */\n] as const;\n\n\nexport class RxServerRestEndpoint<AuthType, RxDocType> implements RxServerEndpoint<AuthType, RxDocType> {\n readonly type = 'rest';\n readonly urlPath: string;\n readonly changeValidator: RxServerChangeValidator<AuthType, RxDocType>;\n readonly queryModifier: RxServerQueryModifier<AuthType, RxDocType>;\n constructor(\n public readonly server: RxServer<AuthType>,\n public readonly name: string,\n public readonly collection: RxCollection<RxDocType>,\n queryModifier: RxServerQueryModifier<AuthType, RxDocType>,\n changeValidator: RxServerChangeValidator<AuthType, RxDocType>,\n public readonly serverOnlyFields: string[],\n public readonly cors?: string\n ) {\n setCors(this.server, [this.name].join('/'), cors);\n blockPreviousVersionPaths(this.server, [this.name].join('/'), collection.schema.version);\n\n this.urlPath = [this.name, collection.schema.version].join('/');\n const primaryPath = this.collection.schema.primaryPath;\n const authDataByRequest = addAuthMiddleware(\n this.server,\n this.urlPath\n );\n\n this.queryModifier = (authData, query) => {\n if (doesContainRegexQuerySelector(query.selector)) {\n throw new Error('$regex queries not allowed because of DOS-attacks');\n }\n return queryModifier(authData, query);\n }\n this.changeValidator = (authData, change) => {\n if (\n (\n change.assumedMasterState &&\n docContainsServerOnlyFields(serverOnlyFields, change.assumedMasterState)\n ) ||\n docContainsServerOnlyFields(serverOnlyFields, change.newDocumentState)\n ) {\n return false;\n }\n return changeValidator(authData, change);\n }\n const removeServerOnlyFields = removeServerOnlyFieldsMonad(this.serverOnlyFields);\n\n this.server.expressApp.post('/' + this.urlPath + '/query', async (req, res) => {\n const authData = getFromMapOrThrow(authDataByRequest, req);\n let useQuery: FilledMangoQuery<RxDocType>\n try {\n useQuery = this.queryModifier(\n ensureNotFalsy(authData),\n normalizeMangoQuery(\n this.collection.schema.jsonSchema,\n req.body\n )\n );\n } catch (err) {\n closeConnection(res, 400, 'Bad Request');\n return;\n }\n const rxQuery = this.collection.find(useQuery as any);\n const result = await rxQuery.exec();\n res.setHeader('Content-Type', 'application/json');\n res.json({\n documents: result.map(d => removeServerOnlyFields(d.toJSON()))\n });\n });\n\n /**\n * It is not possible to send data with server send events,\n * so we send the query as query parameter in base64\n * like ?query=e3NlbGVjdG9yOiB7fX0=\n */\n this.server.expressApp.get('/' + this.urlPath + '/query/observe', async (req, res) => {\n let authData = getFromMapOrThrow(authDataByRequest, req);\n writeSSEHeaders(res);\n\n const useQuery: FilledMangoQuery<RxDocType> = this.queryModifier(\n ensureNotFalsy(authData),\n normalizeMangoQuery(\n this.collection.schema.jsonSchema,\n JSON.parse(atob(req.query.query as string))\n )\n );\n\n const rxQuery = this.collection.find(useQuery as any);\n const subscription = rxQuery.$.pipe(\n mergeMap(async (result) => {\n const resultData = result.map(doc => removeServerOnlyFields(doc.toJSON()));\n\n /**\n * The auth-data might be expired\n * so we re-run the auth parsing each time\n * before emitting the new results.\n */\n try {\n authData = await server.authHandler(req.headers);\n } catch (err) {\n closeConnection(res, 401, 'Unauthorized');\n return null;\n }\n\n return resultData;\n }),\n filter(f => f !== null)\n ).subscribe(resultData => {\n res.write('data: ' + JSON.stringify(resultData) + '\\n\\n');\n });\n\n /**\n * @link https://youtu.be/0PcMuYGJPzM?si=AxkczxcMaUwhh8k9&t=363\n */\n req.on('close', () => {\n subscription.unsubscribe();\n res.end();\n });\n });\n\n\n this.server.expressApp.post('/' + this.urlPath + '/get', async (req, res) => {\n const authData = getFromMapOrThrow(authDataByRequest, req);\n const ids: string[] = req.body;\n\n const rxQuery = this.collection.findByIds(ids);\n const resultMap = await rxQuery.exec();\n const resultValues = Array.from(resultMap.values());\n const docMatcher = getDocAllowedMatcher(this, ensureNotFalsy(authData));\n let useDocs = resultValues.map(d => d.toJSON());\n useDocs = useDocs.filter(d => docMatcher(d as any));\n useDocs = useDocs.map(d => removeServerOnlyFields(d))\n\n res.setHeader('Content-Type', 'application/json');\n res.json({\n documents: useDocs\n });\n });\n\n this.server.expressApp.post('/' + this.urlPath + '/set', async (req, res) => {\n const authData = getFromMapOrThrow(authDataByRequest, req);\n const docDataMatcherWrite = getDocAllowedMatcher(this, ensureNotFalsy(authData));\n\n let docsData: RxDocType[] = req.body;\n\n for (const docData of docsData) {\n const allowed = docDataMatcherWrite(docData as any);\n if (!allowed) {\n closeConnection(res, 403, 'Forbidden');\n return;\n }\n }\n\n function onWriteError(err: RxError, docData: RxDocType) {\n if (err.rxdb && err.code === 'CONFLICT') {\n // just retry on conflicts\n docsData.push(docData);\n } else {\n closeConnection(res, 500, 'Internal Server Error');\n throw err;\n }\n }\n\n while (docsData.length > 0) {\n const promises: Promise<any>[] = [];\n const docs = await collection.findByIds(docsData.map(d => (d as any)[primaryPath])).exec();\n let useDocsData = docsData.slice();\n docsData = [];\n for (const docData of useDocsData) {\n const id = (docData as any)[primaryPath];\n const doc = docs.get(id);\n if (!doc) {\n promises.push(this.collection.insert(docData).catch(err => onWriteError(err, docData)));\n } else {\n const isAllowed = this.changeValidator(authData, {\n newDocumentState: removeServerOnlyFields(docData as any),\n assumedMasterState: removeServerOnlyFields(doc.toJSON(true))\n });\n if (!isAllowed) {\n closeConnection(res, 403, 'Forbidden');\n return;\n }\n promises.push(doc.patch(docData).catch(err => onWriteError(err, docData)));\n }\n }\n await Promise.all(promises);\n }\n\n res.setHeader('Content-Type', 'application/json');\n res.json({\n });\n });\n\n this.server.expressApp.post('/' + this.urlPath + '/delete', async (req, res) => {\n const authData = getFromMapOrThrow(authDataByRequest, req);\n const docDataMatcherWrite = getDocAllowedMatcher(this, ensureNotFalsy(authData));\n\n let ids: string[] = req.body;\n while (ids.length > 0) {\n const useIds = ids.slice(0);\n ids = [];\n const promises: Promise<any>[] = [];\n const docsMap = await this.collection.findByIds(useIds).exec();\n for (const id of useIds) {\n const doc = docsMap.get(id);\n if (doc) {\n const isAllowedDoc = docDataMatcherWrite(doc.toJSON(true) as any);\n if (!isAllowedDoc) {\n closeConnection(res, 403, 'Forbidden');\n return;\n }\n\n const isAllowedChange = this.changeValidator(authData, {\n newDocumentState: doc.toJSON(true) as any,\n assumedMasterState: doc.toJSON(true) as any\n });\n if (!isAllowedChange) {\n closeConnection(res, 403, 'Forbidden');\n return;\n }\n\n promises.push(doc.remove().catch((err: RxError) => {\n if (err.rxdb && err.code === 'CONFLICT') {\n // just retry on conflicts\n ids.push(id);\n } else {\n closeConnection(res, 500, 'Internal Server Error');\n throw err;\n }\n }));\n }\n }\n await Promise.all(promises);\n }\n res.setHeader('Content-Type', 'application/json');\n res.json({});\n });\n }\n}\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"endpoint-rest.js","names":["_core","require","_rxjs","_utils","_helper","REST_PATHS","exports","RxServerRestEndpoint","server","name","collection","queryModifier","changeValidator","serverOnlyFields","cors","_this","type","adapter","setCors","join","blockPreviousVersionPaths","schema","version","urlPath","primaryPath","authDataByRequest","addAuthMiddleware","authData","query","doesContainRegexQuerySelector","selector","Error","change","assumedMasterState","docContainsServerOnlyFields","newDocumentState","removeServerOnlyFields","removeServerOnlyFieldsMonad","post","serverApp","req","res","ensureNotFalsy","getRequestBody","getFromMapOrThrow","useQuery","normalizeMangoQuery","jsonSchema","err","closeConnection","rxQuery","find","result","exec","setResponseHeader","endResponseJson","documents","map","d","toJSON","get","setSSEHeaders","JSON","parse","atob","getRequestQuery","subscription","$","pipe","mergeMap","resultData","doc","authHandler","getRequestHeaders","filter","f","subscribe","responseWrite","stringify","onRequestClose","unsubscribe","endResponse","ids","findByIds","resultMap","resultValues","Array","from","values","docMatcher","getDocAllowedMatcher","useDocs","docDataMatcherWrite","docsData","docData","allowed","onWriteError","rxdb","code","push","length","promises","docs","useDocsData","slice","_loop","_docData","id","insert","catch","isAllowed","v","patch","_ret","Promise","all","useIds","docsMap","_loop2","isAllowedDoc","isAllowedChange","remove","_ret2"],"sources":["../../../../src/plugins/server/endpoint-rest.ts"],"sourcesContent":["import {\n FilledMangoQuery,\n RxCollection,\n RxError,\n normalizeMangoQuery\n} from 'rxdb/plugins/core';\nimport type { RxServer } from './rx-server.ts';\nimport type {\n RxServerChangeValidator,\n RxServerEndpoint,\n RxServerQueryModifier\n} from './types.ts';\nimport { filter, mergeMap } from 'rxjs';\nimport {\n ensureNotFalsy,\n getFromMapOrThrow\n} from 'rxdb/plugins/utils';\n\nimport {\n addAuthMiddleware,\n blockPreviousVersionPaths,\n docContainsServerOnlyFields,\n doesContainRegexQuerySelector,\n getDocAllowedMatcher,\n removeServerOnlyFieldsMonad,\n setCors\n} from './helper.ts';\n\n\nexport const REST_PATHS = [\n 'query',\n 'query/observe',\n 'get',\n 'set',\n 'delete',\n\n // TODO\n /*\n 'attachments/add',\n 'attachments/delete',\n 'events'\n */\n] as const;\n\n\nexport class RxServerRestEndpoint<ServerAppType, AuthType, RxDocType> implements RxServerEndpoint<AuthType, RxDocType> {\n readonly type = 'rest';\n readonly urlPath: string;\n readonly changeValidator: RxServerChangeValidator<AuthType, RxDocType>;\n readonly queryModifier: RxServerQueryModifier<AuthType, RxDocType>;\n constructor(\n public readonly server: RxServer<ServerAppType, AuthType>,\n public readonly name: string,\n public readonly collection: RxCollection<RxDocType>,\n queryModifier: RxServerQueryModifier<AuthType, RxDocType>,\n changeValidator: RxServerChangeValidator<AuthType, RxDocType>,\n public readonly serverOnlyFields: string[],\n public readonly cors?: string\n ) {\n const adapter = server.adapter;\n setCors(this.server, [this.name].join('/'), cors);\n blockPreviousVersionPaths(this.server, [this.name].join('/'), collection.schema.version);\n\n this.urlPath = [this.name, collection.schema.version].join('/');\n const primaryPath = this.collection.schema.primaryPath;\n const authDataByRequest = addAuthMiddleware(\n this.server,\n this.urlPath\n );\n\n this.queryModifier = (authData, query) => {\n if (doesContainRegexQuerySelector(query.selector)) {\n throw new Error('$regex queries not allowed because of DOS-attacks');\n }\n return queryModifier(authData, query);\n }\n this.changeValidator = (authData, change) => {\n if (\n (\n change.assumedMasterState &&\n docContainsServerOnlyFields(serverOnlyFields, change.assumedMasterState)\n ) ||\n docContainsServerOnlyFields(serverOnlyFields, change.newDocumentState)\n ) {\n return false;\n }\n return changeValidator(authData, change);\n }\n const removeServerOnlyFields = removeServerOnlyFieldsMonad(this.serverOnlyFields);\n\n this.server.adapter.post(this.server.serverApp, '/' + this.urlPath + '/query', async (req, res) => {\n ensureNotFalsy(adapter.getRequestBody(req), 'req body is empty');\n const authData = getFromMapOrThrow(authDataByRequest, req);\n let useQuery: FilledMangoQuery<RxDocType>\n try {\n useQuery = this.queryModifier(\n ensureNotFalsy(authData),\n normalizeMangoQuery(\n this.collection.schema.jsonSchema,\n adapter.getRequestBody(req)\n )\n );\n } catch (err) {\n adapter.closeConnection(res, 400, 'Bad Request');\n return;\n }\n const rxQuery = this.collection.find(useQuery as any);\n const result = await rxQuery.exec();\n adapter.setResponseHeader(res, 'Content-Type', 'application/json');\n adapter.endResponseJson(res, {\n documents: result.map(d => removeServerOnlyFields(d.toJSON()))\n });\n });\n\n /**\n * It is not possible to send data with server send events,\n * so we send the query as query parameter in base64\n * like ?query=e3NlbGVjdG9yOiB7fX0=\n */\n this.server.adapter.get(this.server.serverApp, '/' + this.urlPath + '/query/observe', async (req, res) => {\n let authData = getFromMapOrThrow(authDataByRequest, req);\n adapter.setSSEHeaders(res);\n\n const useQuery: FilledMangoQuery<RxDocType> = this.queryModifier(\n ensureNotFalsy(authData),\n normalizeMangoQuery(\n this.collection.schema.jsonSchema,\n JSON.parse(atob(adapter.getRequestQuery(req).query as string))\n )\n );\n\n const rxQuery = this.collection.find(useQuery as any);\n const subscription = rxQuery.$.pipe(\n mergeMap(async (result) => {\n const resultData = result.map(doc => removeServerOnlyFields(doc.toJSON()));\n\n /**\n * The auth-data might be expired\n * so we re-run the auth parsing each time\n * before emitting the new results.\n */\n try {\n authData = await server.authHandler(adapter.getRequestHeaders(req));\n } catch (err) {\n adapter.closeConnection(res, 401, 'Unauthorized');\n return null;\n }\n\n return resultData;\n }),\n filter(f => f !== null)\n ).subscribe(resultData => {\n adapter.responseWrite(res, 'data: ' + JSON.stringify(resultData) + '\\n\\n');\n });\n\n /**\n * @link https://youtu.be/0PcMuYGJPzM?si=AxkczxcMaUwhh8k9&t=363\n */\n adapter.onRequestClose(req, () => {\n subscription.unsubscribe();\n adapter.endResponse(req);\n });\n });\n\n\n this.server.adapter.post(this.server.serverApp, '/' + this.urlPath + '/get', async (req, res) => {\n const authData = getFromMapOrThrow(authDataByRequest, req);\n const ids: string[] = adapter.getRequestBody(req);\n\n const rxQuery = this.collection.findByIds(ids);\n const resultMap = await rxQuery.exec();\n const resultValues = Array.from(resultMap.values());\n const docMatcher = getDocAllowedMatcher(this, ensureNotFalsy(authData));\n let useDocs = resultValues.map(d => d.toJSON());\n useDocs = useDocs.filter(d => docMatcher(d as any));\n useDocs = useDocs.map(d => removeServerOnlyFields(d))\n\n adapter.setResponseHeader(res, 'Content-Type', 'application/json');\n adapter.endResponseJson(res, {\n documents: useDocs\n });\n });\n\n this.server.adapter.post(this.server.serverApp, '/' + this.urlPath + '/set', async (req, res) => {\n const authData = getFromMapOrThrow(authDataByRequest, req);\n const docDataMatcherWrite = getDocAllowedMatcher(this, ensureNotFalsy(authData));\n\n let docsData: RxDocType[] = adapter.getRequestBody(req);\n\n for (const docData of docsData) {\n const allowed = docDataMatcherWrite(docData as any);\n if (!allowed) {\n adapter.closeConnection(res, 403, 'Forbidden');\n return;\n }\n }\n\n function onWriteError(err: RxError, docData: RxDocType) {\n if (err.rxdb && err.code === 'CONFLICT') {\n // just retry on conflicts\n docsData.push(docData);\n } else {\n adapter.closeConnection(res, 500, 'Internal Server Error');\n throw err;\n }\n }\n\n while (docsData.length > 0) {\n const promises: Promise<any>[] = [];\n const docs = await collection.findByIds(docsData.map(d => (d as any)[primaryPath])).exec();\n let useDocsData = docsData.slice();\n docsData = [];\n for (const docData of useDocsData) {\n const id = (docData as any)[primaryPath];\n const doc = docs.get(id);\n if (!doc) {\n promises.push(this.collection.insert(docData).catch(err => onWriteError(err, docData)));\n } else {\n const isAllowed = this.changeValidator(authData, {\n newDocumentState: removeServerOnlyFields(docData as any),\n assumedMasterState: removeServerOnlyFields(doc.toJSON(true))\n });\n if (!isAllowed) {\n adapter.closeConnection(res, 403, 'Forbidden');\n return;\n }\n promises.push(doc.patch(docData).catch(err => onWriteError(err, docData)));\n }\n }\n await Promise.all(promises);\n }\n\n adapter.setResponseHeader(res, 'Content-Type', 'application/json')\n adapter.endResponseJson(res, {});\n });\n\n this.server.adapter.post(this.server.serverApp, '/' + this.urlPath + '/delete', async (req, res) => {\n const authData = getFromMapOrThrow(authDataByRequest, req);\n const docDataMatcherWrite = getDocAllowedMatcher(this, ensureNotFalsy(authData));\n\n let ids: string[] = adapter.getRequestBody(req);\n while (ids.length > 0) {\n const useIds = ids.slice(0);\n ids = [];\n const promises: Promise<any>[] = [];\n const docsMap = await this.collection.findByIds(useIds).exec();\n for (const id of useIds) {\n const doc = docsMap.get(id);\n if (doc) {\n const isAllowedDoc = docDataMatcherWrite(doc.toJSON(true) as any);\n if (!isAllowedDoc) {\n adapter.closeConnection(res, 403, 'Forbidden');\n return;\n }\n\n const isAllowedChange = this.changeValidator(authData, {\n newDocumentState: doc.toJSON(true) as any,\n assumedMasterState: doc.toJSON(true) as any\n });\n if (!isAllowedChange) {\n adapter.closeConnection(res, 403, 'Forbidden');\n return;\n }\n\n promises.push(doc.remove().catch((err: RxError) => {\n if (err.rxdb && err.code === 'CONFLICT') {\n // just retry on conflicts\n ids.push(id);\n } else {\n adapter.closeConnection(res, 500, 'Internal Server Error');\n throw err;\n }\n }));\n }\n }\n await Promise.all(promises);\n }\n adapter.setResponseHeader(res, 'Content-Type', 'application/json');\n adapter.endResponseJson(res, {});\n });\n }\n}\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,20 +1,16 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
3
|
Object.defineProperty(exports, "__esModule", {
|
|
5
4
|
value: true
|
|
6
5
|
});
|
|
7
6
|
exports.addAuthMiddleware = addAuthMiddleware;
|
|
8
7
|
exports.blockPreviousVersionPaths = blockPreviousVersionPaths;
|
|
9
|
-
exports.closeConnection = closeConnection;
|
|
10
8
|
exports.docContainsServerOnlyFields = docContainsServerOnlyFields;
|
|
11
9
|
exports.doesContainRegexQuerySelector = doesContainRegexQuerySelector;
|
|
12
10
|
exports.getDocAllowedMatcher = getDocAllowedMatcher;
|
|
13
11
|
exports.mergeServerDocumentFieldsMonad = mergeServerDocumentFieldsMonad;
|
|
14
12
|
exports.removeServerOnlyFieldsMonad = removeServerOnlyFieldsMonad;
|
|
15
13
|
exports.setCors = setCors;
|
|
16
|
-
exports.writeSSEHeaders = writeSSEHeaders;
|
|
17
|
-
var _cors = _interopRequireDefault(require("cors"));
|
|
18
14
|
var _core = require("rxdb/plugins/core");
|
|
19
15
|
function setCors(server, path, cors) {
|
|
20
16
|
var useCors = cors;
|
|
@@ -22,11 +18,7 @@ function setCors(server, path, cors) {
|
|
|
22
18
|
useCors = server.cors;
|
|
23
19
|
}
|
|
24
20
|
if (useCors) {
|
|
25
|
-
server.
|
|
26
|
-
origin: useCors,
|
|
27
|
-
// some legacy browsers (IE11, various SmartTVs) choke on 204
|
|
28
|
-
optionsSuccessStatus: 200
|
|
29
|
-
}));
|
|
21
|
+
server.adapter.setCors(server.serverApp, path, useCors);
|
|
30
22
|
}
|
|
31
23
|
}
|
|
32
24
|
|
|
@@ -38,8 +30,8 @@ function blockPreviousVersionPaths(server, path, currentVersion) {
|
|
|
38
30
|
var v = 0;
|
|
39
31
|
var _loop = function () {
|
|
40
32
|
var version = v;
|
|
41
|
-
server.
|
|
42
|
-
closeConnection(res, 426, 'Outdated version ' + version + ' (newest is ' + currentVersion + ')');
|
|
33
|
+
server.adapter.all(server.serverApp, '/' + path + '/' + version + '/*', (req, res) => {
|
|
34
|
+
server.adapter.closeConnection(res, 426, 'Outdated version ' + version + ' (newest is ' + currentVersion + ')');
|
|
43
35
|
});
|
|
44
36
|
v++;
|
|
45
37
|
};
|
|
@@ -47,17 +39,6 @@ function blockPreviousVersionPaths(server, path, currentVersion) {
|
|
|
47
39
|
_loop();
|
|
48
40
|
}
|
|
49
41
|
}
|
|
50
|
-
async function closeConnection(response, code, message) {
|
|
51
|
-
var responseWrite = {
|
|
52
|
-
code,
|
|
53
|
-
error: true,
|
|
54
|
-
message
|
|
55
|
-
};
|
|
56
|
-
response.statusCode = code;
|
|
57
|
-
response.set("Connection", "close");
|
|
58
|
-
await response.write(JSON.stringify(responseWrite));
|
|
59
|
-
response.end();
|
|
60
|
-
}
|
|
61
42
|
function addAuthMiddleware(server, path) {
|
|
62
43
|
var authDataByRequest = new WeakMap();
|
|
63
44
|
async function auth(req, res, next) {
|
|
@@ -66,13 +47,11 @@ function addAuthMiddleware(server, path) {
|
|
|
66
47
|
authDataByRequest.set(req, authData);
|
|
67
48
|
next();
|
|
68
49
|
} catch (err) {
|
|
69
|
-
closeConnection(res, 401, 'Unauthorized');
|
|
50
|
+
server.adapter.closeConnection(res, 401, 'Unauthorized');
|
|
70
51
|
return;
|
|
71
52
|
}
|
|
72
53
|
}
|
|
73
|
-
server.
|
|
74
|
-
next();
|
|
75
|
-
});
|
|
54
|
+
server.adapter.all(server.serverApp, '/' + path + '/*', auth);
|
|
76
55
|
return authDataByRequest;
|
|
77
56
|
}
|
|
78
57
|
var defaultMatchingQuery = {
|
|
@@ -85,24 +64,6 @@ function getDocAllowedMatcher(endpoint, authData) {
|
|
|
85
64
|
var docDataMatcher = (0, _core.getQueryMatcher)(endpoint.collection.schema.jsonSchema, useQuery);
|
|
86
65
|
return docDataMatcher;
|
|
87
66
|
}
|
|
88
|
-
function writeSSEHeaders(res) {
|
|
89
|
-
res.writeHead(200, {
|
|
90
|
-
/**
|
|
91
|
-
* Use exact these headers to make is less likely
|
|
92
|
-
* for people to have problems.
|
|
93
|
-
* @link https://www.youtube.com/watch?v=0PcMuYGJPzM
|
|
94
|
-
*/
|
|
95
|
-
'Content-Type': 'text/event-stream; charset=utf-8',
|
|
96
|
-
'Connection': 'keep-alive',
|
|
97
|
-
'Cache-Control': 'no-cache',
|
|
98
|
-
/**
|
|
99
|
-
* Required for nginx
|
|
100
|
-
* @link https://stackoverflow.com/q/61029079/3443137
|
|
101
|
-
*/
|
|
102
|
-
'X-Accel-Buffering': 'no'
|
|
103
|
-
});
|
|
104
|
-
res.flushHeaders();
|
|
105
|
-
}
|
|
106
67
|
function docContainsServerOnlyFields(serverOnlyFields, doc) {
|
|
107
68
|
var has = serverOnlyFields.find(field => {
|
|
108
69
|
return typeof doc[field] !== 'undefined';
|
|
@@ -142,7 +103,7 @@ function mergeServerDocumentFieldsMonad(serverOnlyFields) {
|
|
|
142
103
|
}
|
|
143
104
|
|
|
144
105
|
/**
|
|
145
|
-
* $regex queries are dangerous because they can dos-
|
|
106
|
+
* $regex queries are dangerous because they can dos-attack the server.
|
|
146
107
|
*
|
|
147
108
|
* @param selector
|
|
148
109
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"helper.js","names":["_cors","_interopRequireDefault","require","_core","setCors","server","path","cors","useCors","expressApp","options","expressCors","origin","optionsSuccessStatus","blockPreviousVersionPaths","currentVersion","v","_loop","version","all","req","res","closeConnection","response","code","message","responseWrite","error","statusCode","set","write","JSON","stringify","end","addAuthMiddleware","authDataByRequest","WeakMap","auth","next","authData","authHandler","headers","err","defaultMatchingQuery","selector","skip","sort","getDocAllowedMatcher","endpoint","useQuery","queryModifier","normalizeMangoQuery","collection","schema","jsonSchema","docDataMatcher","getQueryMatcher","writeSSEHeaders","writeHead","flushHeaders","docContainsServerOnlyFields","serverOnlyFields","doc","has","find","field","removeServerOnlyFieldsMonad","serverOnlyFieldsStencil","_meta","undefined","_rev","_attachments","forEach","docData","Object","assign","mergeServerDocumentFieldsMonad","useFields","slice","uniqueArray","clientDoc","serverDoc","ret","flatClone","doesContainRegexQuerySelector","Array","isArray","found","item","entries","key","value"],"sources":["../../../../src/plugins/server/helper.ts"],"sourcesContent":["import { RxServer } from './rx-server';\nimport expressCors from 'cors';\nimport type {\n Request,\n Response,\n NextFunction\n} from 'express';\nimport { RxServerAuthData, RxServerEndpoint } from './types';\nimport {\n FilledMangoQuery,\n MangoQuerySelector,\n RxDocumentData,\n RxReplicationWriteToMasterRow,\n flatClone,\n getQueryMatcher,\n normalizeMangoQuery,\n uniqueArray\n} from 'rxdb/plugins/core';\n\nexport function setCors(\n server: RxServer<any>,\n path: string,\n cors?: string\n) {\n let useCors = cors;\n if (!useCors) {\n useCors = server.cors;\n }\n if (useCors) {\n server.expressApp.options('/' + path + '/*', expressCors({\n origin: useCors,\n // some legacy browsers (IE11, various SmartTVs) choke on 204\n optionsSuccessStatus: 200\n }));\n }\n}\n\n/**\n * \"block\" the previous version urls and send a 426 on them so that\n * the clients know they must update.\n */\nexport function blockPreviousVersionPaths(\n server: RxServer<any>,\n path: string,\n currentVersion: number\n\n) {\n let v = 0;\n while (v < currentVersion) {\n const version = v;\n server.expressApp.all('/' + path + '/' + version + '/*', (req, res) => {\n closeConnection(res, 426, 'Outdated version ' + version + ' (newest is ' + currentVersion + ')');\n });\n v++;\n }\n}\n\n\nexport async function closeConnection(response: Response, code: number, message: string) {\n const responseWrite = {\n code,\n error: true,\n message\n };\n response.statusCode = code;\n response.set(\"Connection\", \"close\");\n await response.write(JSON.stringify(responseWrite));\n response.end();\n}\n\n\nexport function addAuthMiddleware<AuthType>(\n server: RxServer<AuthType>,\n path: string,\n): WeakMap<Request, RxServerAuthData<AuthType>> {\n const authDataByRequest = new WeakMap<Request, RxServerAuthData<AuthType>>();\n async function auth(req: Request, res: Response, next: NextFunction) {\n try {\n const authData = await server.authHandler(req.headers);\n authDataByRequest.set(req, authData);\n next();\n } catch (err) {\n closeConnection(res, 401, 'Unauthorized');\n return;\n }\n }\n server.expressApp.all('/' + path + '/*', auth, function (req, res, next) {\n next();\n });\n return authDataByRequest;\n}\n\nconst defaultMatchingQuery: FilledMangoQuery<any> = {\n selector: {},\n skip: 0,\n sort: []\n} as const;\n\nexport function getDocAllowedMatcher<RxDocType, AuthType>(\n endpoint: RxServerEndpoint<AuthType, RxDocType>,\n authData: RxServerAuthData<AuthType>\n) {\n const useQuery: FilledMangoQuery<RxDocType> = endpoint.queryModifier ? endpoint.queryModifier(\n authData,\n normalizeMangoQuery(\n endpoint.collection.schema.jsonSchema,\n {}\n )\n ) : defaultMatchingQuery;\n const docDataMatcher = getQueryMatcher(endpoint.collection.schema.jsonSchema, useQuery);\n return docDataMatcher;\n}\n\nexport function writeSSEHeaders(res: Response) {\n res.writeHead(200, {\n /**\n * Use exact these headers to make is less likely\n * for people to have problems.\n * @link https://www.youtube.com/watch?v=0PcMuYGJPzM\n */\n 'Content-Type': 'text/event-stream; charset=utf-8',\n 'Connection': 'keep-alive',\n 'Cache-Control': 'no-cache',\n /**\n * Required for nginx\n * @link https://stackoverflow.com/q/61029079/3443137\n */\n 'X-Accel-Buffering': 'no'\n });\n res.flushHeaders();\n}\n\nexport function docContainsServerOnlyFields(\n serverOnlyFields: string[],\n doc: any\n) {\n const has = serverOnlyFields.find(field => {\n return typeof doc[field] !== 'undefined'\n });\n return has;\n}\n\nexport function removeServerOnlyFieldsMonad<RxDocType>(serverOnlyFields: string[]) {\n const serverOnlyFieldsStencil: any = {\n _meta: undefined,\n _rev: undefined,\n _attachments: undefined\n };\n serverOnlyFields.forEach(field => serverOnlyFieldsStencil[field] = undefined);\n return (\n docData?: RxDocType | RxDocumentData<RxDocType>\n ) => {\n if (!docData) {\n return docData;\n }\n return Object.assign({}, docData, serverOnlyFieldsStencil);\n }\n}\n\nexport function mergeServerDocumentFieldsMonad<RxDocType>(serverOnlyFields: string[]) {\n let useFields = serverOnlyFields.slice(0);\n // useFields.push('_rev');\n // useFields.push('_meta');\n // useFields.push('_attachments');\n useFields = uniqueArray(useFields);\n\n return (\n clientDoc: RxDocType | RxDocumentData<RxDocType>,\n serverDoc?: RxDocType | RxDocumentData<RxDocType>\n ) => {\n if (!serverDoc) {\n return clientDoc;\n }\n const ret = flatClone(clientDoc);\n useFields.forEach(field => {\n (ret as any)[field] = (serverDoc as any)[field];\n });\n return ret;\n }\n}\n\n\n/**\n * $regex queries are dangerous because they can dos-attach the \n * \n * @param selector \n */\nexport function doesContainRegexQuerySelector(selector: MangoQuerySelector<any> | any): boolean {\n if (!selector) {\n return false;\n }\n if (Array.isArray(selector)) {\n const found = !!selector.find(item => doesContainRegexQuerySelector(item));\n return found;\n }\n\n if (typeof selector !== 'object') {\n return false;\n }\n\n const entries = Object.entries(selector);\n for (const [key, value] of entries) {\n if (key === '$regex') {\n return true;\n } else {\n const has = doesContainRegexQuerySelector(value);\n if (has) {\n return true;\n }\n }\n }\n\n return false;\n}\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"helper.js","names":["_core","require","setCors","server","path","cors","useCors","adapter","serverApp","blockPreviousVersionPaths","currentVersion","v","_loop","version","all","req","res","closeConnection","addAuthMiddleware","authDataByRequest","WeakMap","auth","next","authData","authHandler","headers","set","err","defaultMatchingQuery","selector","skip","sort","getDocAllowedMatcher","endpoint","useQuery","queryModifier","normalizeMangoQuery","collection","schema","jsonSchema","docDataMatcher","getQueryMatcher","docContainsServerOnlyFields","serverOnlyFields","doc","has","find","field","removeServerOnlyFieldsMonad","serverOnlyFieldsStencil","_meta","undefined","_rev","_attachments","forEach","docData","Object","assign","mergeServerDocumentFieldsMonad","useFields","slice","uniqueArray","clientDoc","serverDoc","ret","flatClone","doesContainRegexQuerySelector","Array","isArray","found","item","entries","key","value"],"sources":["../../../../src/plugins/server/helper.ts"],"sourcesContent":["import { RxServer } from './rx-server';\nimport type {\n Request,\n Response,\n NextFunction\n} from 'express';\nimport type { RxServerAdapter, RxServerAuthData, RxServerEndpoint } from './types';\nimport {\n FilledMangoQuery,\n MangoQuerySelector,\n RxDocumentData,\n flatClone,\n getQueryMatcher,\n normalizeMangoQuery,\n uniqueArray\n} from 'rxdb/plugins/core';\n\nexport function setCors(\n server: RxServer<any, any>,\n path: string,\n cors?: string\n) {\n let useCors = cors;\n if (!useCors) {\n useCors = server.cors;\n }\n if (useCors) {\n server.adapter.setCors(server.serverApp, path, useCors);\n }\n}\n\n/**\n * \"block\" the previous version urls and send a 426 on them so that\n * the clients know they must update.\n */\nexport function blockPreviousVersionPaths(\n server: RxServer<any, any>,\n path: string,\n currentVersion: number\n\n) {\n let v = 0;\n while (v < currentVersion) {\n const version = v;\n server.adapter.all(server.serverApp, '/' + path + '/' + version + '/*', (req, res) => {\n server.adapter.closeConnection(res, 426, 'Outdated version ' + version + ' (newest is ' + currentVersion + ')');\n });\n v++;\n }\n}\n\n\nexport function addAuthMiddleware<AuthType>(\n server: RxServer<any, AuthType>,\n path: string,\n): WeakMap<Request, RxServerAuthData<AuthType>> {\n const authDataByRequest = new WeakMap<Request, RxServerAuthData<AuthType>>();\n async function auth(req: any, res: any, next: NextFunction) {\n try {\n const authData = await server.authHandler(req.headers);\n authDataByRequest.set(req, authData);\n next();\n } catch (err) {\n server.adapter.closeConnection(res, 401, 'Unauthorized');\n return;\n }\n }\n server.adapter.all(server.serverApp, '/' + path + '/*', auth);\n return authDataByRequest;\n}\n\nconst defaultMatchingQuery: FilledMangoQuery<any> = {\n selector: {},\n skip: 0,\n sort: []\n} as const;\n\nexport function getDocAllowedMatcher<RxDocType, AuthType>(\n endpoint: RxServerEndpoint<AuthType, RxDocType>,\n authData: RxServerAuthData<AuthType>\n) {\n const useQuery: FilledMangoQuery<RxDocType> = endpoint.queryModifier ? endpoint.queryModifier(\n authData,\n normalizeMangoQuery(\n endpoint.collection.schema.jsonSchema,\n {}\n )\n ) : defaultMatchingQuery;\n const docDataMatcher = getQueryMatcher(endpoint.collection.schema.jsonSchema, useQuery);\n return docDataMatcher;\n}\n\n\nexport function docContainsServerOnlyFields(\n serverOnlyFields: string[],\n doc: any\n) {\n const has = serverOnlyFields.find(field => {\n return typeof doc[field] !== 'undefined'\n });\n return has;\n}\n\nexport function removeServerOnlyFieldsMonad<RxDocType>(serverOnlyFields: string[]) {\n const serverOnlyFieldsStencil: any = {\n _meta: undefined,\n _rev: undefined,\n _attachments: undefined\n };\n serverOnlyFields.forEach(field => serverOnlyFieldsStencil[field] = undefined);\n return (\n docData?: RxDocType | RxDocumentData<RxDocType>\n ) => {\n if (!docData) {\n return docData;\n }\n return Object.assign({}, docData, serverOnlyFieldsStencil);\n }\n}\n\nexport function mergeServerDocumentFieldsMonad<RxDocType>(serverOnlyFields: string[]) {\n let useFields = serverOnlyFields.slice(0);\n // useFields.push('_rev');\n // useFields.push('_meta');\n // useFields.push('_attachments');\n useFields = uniqueArray(useFields);\n\n return (\n clientDoc: RxDocType | RxDocumentData<RxDocType>,\n serverDoc?: RxDocType | RxDocumentData<RxDocType>\n ) => {\n if (!serverDoc) {\n return clientDoc;\n }\n const ret = flatClone(clientDoc);\n useFields.forEach(field => {\n (ret as any)[field] = (serverDoc as any)[field];\n });\n return ret;\n }\n}\n\n\n/**\n * $regex queries are dangerous because they can dos-attack the server.\n * \n * @param selector \n */\nexport function doesContainRegexQuerySelector(selector: MangoQuerySelector<any> | any): boolean {\n if (!selector) {\n return false;\n }\n if (Array.isArray(selector)) {\n const found = !!selector.find(item => doesContainRegexQuerySelector(item));\n return found;\n }\n\n if (typeof selector !== 'object') {\n return false;\n }\n\n const entries = Object.entries(selector);\n for (const [key, value] of entries) {\n if (key === '$regex') {\n return true;\n } else {\n const has = doesContainRegexQuerySelector(value);\n if (has) {\n return true;\n }\n }\n }\n\n return false;\n}\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,16 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
3
|
Object.defineProperty(exports, "__esModule", {
|
|
5
4
|
value: true
|
|
6
5
|
});
|
|
7
6
|
var _exportNames = {
|
|
8
|
-
|
|
7
|
+
createRxServer: true
|
|
9
8
|
};
|
|
10
|
-
exports.
|
|
9
|
+
exports.createRxServer = createRxServer;
|
|
11
10
|
var _utils = require("rxdb/plugins/utils");
|
|
12
11
|
var _rxServer = require("./rx-server.js");
|
|
13
|
-
var _express = _interopRequireDefault(require("express"));
|
|
14
12
|
var _types = require("./types.js");
|
|
15
13
|
Object.keys(_types).forEach(function (key) {
|
|
16
14
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -59,26 +57,18 @@ Object.keys(_helper).forEach(function (key) {
|
|
|
59
57
|
}
|
|
60
58
|
});
|
|
61
59
|
});
|
|
62
|
-
async function
|
|
60
|
+
async function createRxServer(options) {
|
|
63
61
|
options = (0, _utils.flatClone)(options);
|
|
64
62
|
if (!options.serverApp) {
|
|
65
|
-
|
|
66
|
-
options.serverApp = app;
|
|
63
|
+
options.serverApp = await options.adapter.create();
|
|
67
64
|
}
|
|
68
|
-
options.serverApp.use(_express.default.json());
|
|
69
|
-
var httpServer = await new Promise((res, rej) => {
|
|
70
|
-
var hostname = options.hostname ? options.hostname : 'localhost';
|
|
71
|
-
var ret = (0, _utils.ensureNotFalsy)(options.serverApp).listen(options.port, hostname, () => {
|
|
72
|
-
res(ret);
|
|
73
|
-
});
|
|
74
|
-
});
|
|
75
65
|
var authHandler = options.authHandler ? options.authHandler : () => {
|
|
76
66
|
return {
|
|
77
67
|
data: {},
|
|
78
68
|
validUntil: Date.now() * 2
|
|
79
69
|
};
|
|
80
70
|
};
|
|
81
|
-
var server = new _rxServer.RxServer(options
|
|
71
|
+
var server = new _rxServer.RxServer(options, authHandler, (0, _utils.ensureNotFalsy)(options.serverApp), options.cors);
|
|
82
72
|
return server;
|
|
83
73
|
}
|
|
84
74
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":["_utils","require","_rxServer","
|
|
1
|
+
{"version":3,"file":"index.js","names":["_utils","require","_rxServer","_types","Object","keys","forEach","key","prototype","hasOwnProperty","call","_exportNames","exports","defineProperty","enumerable","get","_endpointReplication","_endpointRest","_helper","createRxServer","options","flatClone","serverApp","adapter","create","authHandler","data","validUntil","Date","now","server","RxServer","ensureNotFalsy","cors"],"sources":["../../../../src/plugins/server/index.ts"],"sourcesContent":["import { ensureNotFalsy, flatClone } from 'rxdb/plugins/utils';\nimport { RxServer } from './rx-server.ts';\nimport { RxServerAuthHandler, RxServerOptions } from './types.ts';\n\nexport * from './types.ts';\nexport * from './endpoint-replication.ts';\nexport * from './endpoint-rest.ts';\nexport * from './helper.ts';\n\nexport async function createRxServer<ServerAdapterType, AuthType>(\n options: RxServerOptions<ServerAdapterType, AuthType>\n): Promise<RxServer<ServerAdapterType, AuthType>> {\n options = flatClone(options);\n if (!options.serverApp) {\n options.serverApp = await options.adapter.create();\n }\n const authHandler: RxServerAuthHandler<AuthType> = options.authHandler ? options.authHandler : () => {\n return {\n data: {} as any,\n validUntil: Date.now() * 2\n };\n };\n\n const server = new RxServer<ServerAdapterType, AuthType>(\n options,\n authHandler,\n ensureNotFalsy(options.serverApp),\n options.cors\n );\n\n return server;\n}\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -7,44 +7,47 @@ exports.RxServer = void 0;
|
|
|
7
7
|
var _endpointReplication = require("./endpoint-replication.js");
|
|
8
8
|
var _endpointRest = require("./endpoint-rest.js");
|
|
9
9
|
var RxServer = exports.RxServer = /*#__PURE__*/function () {
|
|
10
|
-
function RxServer(
|
|
10
|
+
function RxServer(options, authHandler, serverApp, cors = '*') {
|
|
11
11
|
this.endpoints = [];
|
|
12
12
|
this.closeFn = (() => this.close()).bind(this);
|
|
13
|
-
this.
|
|
13
|
+
this.options = options;
|
|
14
14
|
this.authHandler = authHandler;
|
|
15
|
-
this.
|
|
16
|
-
this.expressApp = expressApp;
|
|
15
|
+
this.serverApp = serverApp;
|
|
17
16
|
this.cors = cors;
|
|
18
|
-
database.
|
|
17
|
+
this.database = options.database;
|
|
18
|
+
this.adapter = options.adapter;
|
|
19
|
+
options.database.onDestroy.push(this.closeFn);
|
|
19
20
|
}
|
|
20
21
|
var _proto = RxServer.prototype;
|
|
21
|
-
_proto.
|
|
22
|
+
_proto.ensureNotStarted = function ensureNotStarted() {
|
|
23
|
+
if (this.listenPromise) {
|
|
24
|
+
throw new Error('This operation cannot be run after the RxServer has been started already');
|
|
25
|
+
}
|
|
26
|
+
};
|
|
27
|
+
_proto.addReplicationEndpoint = function addReplicationEndpoint(opts) {
|
|
28
|
+
this.ensureNotStarted();
|
|
22
29
|
var endpoint = new _endpointReplication.RxServerReplicationEndpoint(this, opts.name, opts.collection, opts.queryModifier ? opts.queryModifier : (_a, q) => q, opts.changeValidator ? opts.changeValidator : () => true, opts.serverOnlyFields ? opts.serverOnlyFields : [], opts.cors);
|
|
23
30
|
this.endpoints.push(endpoint);
|
|
24
31
|
return endpoint;
|
|
25
32
|
};
|
|
26
|
-
_proto.addRestEndpoint =
|
|
33
|
+
_proto.addRestEndpoint = function addRestEndpoint(opts) {
|
|
34
|
+
this.ensureNotStarted();
|
|
27
35
|
var endpoint = new _endpointRest.RxServerRestEndpoint(this, opts.name, opts.collection, opts.queryModifier ? opts.queryModifier : (_a, q) => q, opts.changeValidator ? opts.changeValidator : () => true, opts.serverOnlyFields ? opts.serverOnlyFields : [], opts.cors);
|
|
28
36
|
this.endpoints.push(endpoint);
|
|
29
37
|
return endpoint;
|
|
30
38
|
};
|
|
39
|
+
_proto.start = async function start() {
|
|
40
|
+
this.ensureNotStarted();
|
|
41
|
+
var hostname = this.options.hostname ? this.options.hostname : 'localhost';
|
|
42
|
+
this.listenPromise = this.options.adapter.listen(this.serverApp, this.options.port, hostname);
|
|
43
|
+
return this.listenPromise;
|
|
44
|
+
};
|
|
31
45
|
_proto.close = async function close() {
|
|
32
46
|
this.database.onDestroy = this.database.onDestroy.filter(fn => fn !== this.closeFn);
|
|
33
|
-
|
|
34
|
-
this.
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
} else {
|
|
38
|
-
res();
|
|
39
|
-
}
|
|
40
|
-
});
|
|
41
|
-
/**
|
|
42
|
-
* By default it will await all ongoing connections
|
|
43
|
-
* before it closes. So we have to close it directly.
|
|
44
|
-
* @link https://stackoverflow.com/a/36830072/3443137
|
|
45
|
-
*/
|
|
46
|
-
setImmediate(() => this.httpServer.emit('close'));
|
|
47
|
-
});
|
|
47
|
+
if (this.listenPromise) {
|
|
48
|
+
await this.listenPromise;
|
|
49
|
+
await this.options.adapter.close(this.serverApp);
|
|
50
|
+
}
|
|
48
51
|
};
|
|
49
52
|
return RxServer;
|
|
50
53
|
}();
|