-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathattachments.js
308 lines (273 loc) · 8.31 KB
/
attachments.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
import {
map
} from 'rxjs/operators/map';
import RxChangeEvent from './../rx-change-event';
import * as util from './../util';
import RxError from '../rx-error';
function ensureSchemaSupportsAttachments(doc) {
const schemaJson = doc.collection.schema.jsonID;
if (!schemaJson.attachments) {
throw RxError.newRxError('AT1', {
link: 'https://pubkey.github.io/rxdb/rx-attachment.html'
});
}
}
async function resyncRxDocument(doc) {
const docData = await doc.collection.pouch.get(doc.primary);
const data = doc.collection._handleFromPouch(docData);
const changeEvent = RxChangeEvent.create(
'UPDATE',
doc.collection.database,
doc.collection,
doc,
data
);
doc.$emit(changeEvent);
}
export const blobBufferUtil = {
/**
* depending if we are on node or browser,
* we have to use Buffer(node) or Blob(browser)
* @param {string} data
* @param {string} type
* @return {Blob|Buffer}
*/
createBlobBuffer(data, type) {
let blobBuffer;
try {
// for browsers
blobBuffer = new Blob([data], {
type
});
} catch (e) {
// for node
blobBuffer = new Buffer(data, {
type
});
}
return blobBuffer;
},
toString(blobBuffer) {
if (blobBuffer instanceof Buffer) {
// node
return util.nextTick()
.then(() => blobBuffer.toString());
}
return new Promise(res => {
// browsers
const reader = new FileReader();
reader.addEventListener('loadend', e => {
const text = e.target.result;
res(text);
});
reader.readAsText(blobBuffer);
});
}
};
const _assignMethodsToAttachment = function(attachment) {
Object.entries(attachment.doc.collection._attachments).forEach(entry => {
const funName = entry[0];
const fun = entry[1];
attachment.__defineGetter__(funName, () => fun.bind(attachment));
});
};
/**
* an RxAttachment is basically just the attachment-stub
* wrapped so that you can access the attachment-data
*/
export class RxAttachment {
constructor({
doc,
id,
type,
length,
digest,
rev
}) {
this.doc = doc;
this.id = id;
this.type = type;
this.length = length;
this.digest = digest;
this.rev = rev;
_assignMethodsToAttachment(this);
}
async remove() {
await this.doc.collection.pouch.removeAttachment(
this.doc.primary,
this.id,
this.doc._data._rev
);
await resyncRxDocument(this.doc);
}
/**
* returns the data for the attachment
* @return {Promise<Buffer|Blob>}
*/
async getData() {
let data = await this.doc.collection.pouch.getAttachment(this.doc.primary, this.id);
if (shouldEncrypt(this.doc)) {
const dataString = await blobBufferUtil.toString(data);
data = blobBufferUtil.createBlobBuffer(
this.doc.collection._crypter._decryptValue(dataString),
this.type
);
}
return data;
}
async getStringData() {
const bufferBlob = await this.getData();
return await blobBufferUtil.toString(bufferBlob);
}
}
RxAttachment.fromPouchDocument = (id, pouchDocAttachment, rxDocument) => {
return new RxAttachment({
doc: rxDocument,
id,
type: pouchDocAttachment.content_type,
length: pouchDocAttachment.length,
digest: pouchDocAttachment.digest,
rev: pouchDocAttachment.revpos
});
};
function shouldEncrypt(doc) {
return !!doc.collection.schema.jsonID.attachments.encrypted;
}
export async function putAttachment({
id,
data,
type = 'text/plain'
}) {
ensureSchemaSupportsAttachments(this);
const queue = this.atomicQueue;
if (shouldEncrypt(this))
data = this.collection._crypter._encryptValue(data);
const blobBuffer = blobBufferUtil.createBlobBuffer(data, type);
await queue.requestIdlePromise();
const ret = await queue.wrapCall(
async () => {
await this.collection.pouch.putAttachment(
this.primary,
id,
this._data._rev,
blobBuffer,
type
);
// because putAttachment() does not return all data, we have to re-grep the attachments meta-info
const docData = await this.collection.pouch.get(this.primary);
const attachmentData = docData._attachments[id];
const attachment = RxAttachment.fromPouchDocument(
id,
attachmentData,
this
);
this._data._rev = docData._rev;
this._data._attachments = docData._attachments;
await resyncRxDocument(this);
return attachment;
}
);
return ret;
};
/**
* get an attachment of the document by its id
* @param {string} id
* @return {RxAttachment}
*/
export function getAttachment(id) {
ensureSchemaSupportsAttachments(this);
const docData = this._dataSync$.getValue();
if (!docData._attachments || !docData._attachments[id])
return null;
const attachmentData = docData._attachments[id];
const attachment = RxAttachment.fromPouchDocument(
id,
attachmentData,
this
);
return attachment;
};
/**
* returns all attachments of the document
* @return {RxAttachment[]}
*/
export function allAttachments() {
ensureSchemaSupportsAttachments(this);
const docData = this._dataSync$.getValue();
return Object.keys(docData._attachments)
.map(id => {
return RxAttachment.fromPouchDocument(
id,
docData._attachments[id],
this
);
});
};
export async function preMigrateDocument(action) {
delete action.migrated._attachments;
return action;
}
export async function postMigrateDocument(action) {
const primaryPath = action.oldCollection.schema.primaryPath;
const attachments = action.doc._attachments;
if (!attachments) return action;
for (const id in attachments) {
const stubData = attachments[id];
const primary = action.doc[primaryPath];
let data = await action.oldCollection.pouchdb.getAttachment(primary, id);
data = await blobBufferUtil.toString(data);
const res = await action.newestCollection.pouch.putAttachment(
primary,
id,
action.res.rev,
blobBufferUtil.createBlobBuffer(data, stubData.content_type),
stubData.content_type
);
action.res = res;
}
}
export const rxdb = true;
export const prototypes = {
RxDocument: proto => {
proto.putAttachment = putAttachment;
proto.getAttachment = getAttachment;
proto.allAttachments = allAttachments;
Object.defineProperty(proto, 'allAttachments$', {
get: function allAttachments$() {
return this._dataSync$
.pipe(
map(data => {
if (!data._attachments)
return {};
return data._attachments;
}),
map(attachmentsData => Object.entries(attachmentsData)),
map(entries => {
return entries
.map(entry => {
const id = entry[0];
const attachmentData = entry[1];
return RxAttachment.fromPouchDocument(
id,
attachmentData,
this
);
});
})
);
}
});
}
};
export const overwritable = {};
export const hooks = {
preMigrateDocument,
postMigrateDocument
};
export default {
rxdb,
prototypes,
overwritable,
hooks,
blobBufferUtil
};