generated from TBD54566975/tbd-project-template
-
Notifications
You must be signed in to change notification settings - Fork 57
/
record.ts
443 lines (373 loc) · 15.8 KB
/
record.ts
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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
import type { Web5Agent } from '@web5/agent';
import type { Readable } from 'readable-stream';
import type {
RecordsWriteMessage,
RecordsWriteOptions,
RecordsWriteDescriptor,
} from '@tbd54566975/dwn-sdk-js';
import { ReadableWebToNodeStream } from 'readable-web-to-node-stream';
import { DataStream, DwnInterfaceName, DwnMethodName, Encoder } from '@tbd54566975/dwn-sdk-js';
import type { ResponseStatus } from './dwn-api.js';
import { dataToBlob } from './utils.js';
/**
* Options that are passed to Record constructor.
*
* @beta
*/
export type RecordOptions = RecordsWriteMessage & {
author: string;
target: string;
encodedData?: string | Blob;
data?: Readable | ReadableStream;
};
/**
* Represents the record data model, without the auxiliary properties such as
* the `descriptor` and the `authorization`
*
* @beta
*/
export type RecordModel = RecordsWriteDescriptor
& Omit<RecordsWriteMessage, 'descriptor' | 'recordId' | 'authorization'>
& {
author: string;
recordId?: string;
target: string;
}
/**
* Options that are passed to update the record on the DWN
*
* @beta
*/
export type RecordUpdateOptions = {
data?: unknown;
dataCid?: RecordsWriteDescriptor['dataCid'];
dataSize?: RecordsWriteDescriptor['dataSize'];
dateModified?: RecordsWriteDescriptor['messageTimestamp'];
datePublished?: RecordsWriteDescriptor['datePublished'];
published?: RecordsWriteDescriptor['published'];
}
/**
* Record wrapper class with convenience methods to send, update,
* and delete itself, aside from manipulating and reading the record data.
*
* Note: The `messageTimestamp` of the most recent RecordsWrite message is
* logically equivalent to the date/time at which a Record was most
* recently modified. Since this Record class implementation is
* intended to simplify the developer experience of working with
* logical records (and not individual DWN messages) the
* `messageTimestamp` is mapped to `dateModified`.
*
* @beta
*/
export class Record implements RecordModel {
// mutable properties
/** Record's author */
author: string;
/** Record's target (for sent records) */
target: string;
/** Record deleted status */
isDeleted = false;
private _agent: Web5Agent;
private _attestation?: RecordsWriteMessage['attestation'];
private _contextId?: string;
private _descriptor: RecordsWriteDescriptor;
private _encodedData?: string | Blob | null;
private _encryption?: RecordsWriteMessage['encryption'];
private _readableStream?: Readable | Promise<Readable>;
private _recordId: string;
// Immutable DWN Record properties.
/** Record's signatures attestation */
get attestation(): RecordsWriteMessage['attestation'] { return this._attestation; }
/** Record's context ID */
get contextId() { return this._contextId; }
/** Record's data format */
get dataFormat() { return this._descriptor.dataFormat; }
/** Record's creation date */
get dateCreated() { return this._descriptor.dateCreated; }
/** Record's encryption */
get encryption(): RecordsWriteMessage['encryption'] { return this._encryption; }
/** Record's ID */
get id() { return this._recordId; }
/** Interface is always `Records` */
get interface() { return this._descriptor.interface; }
/** Method is always `Write` */
get method() { return this._descriptor.method; }
/** Record's parent ID */
get parentId() { return this._descriptor.parentId; }
/** Record's protocol */
get protocol() { return this._descriptor.protocol; }
/** Record's protocol path */
get protocolPath() { return this._descriptor.protocolPath; }
/** Record's recipient */
get recipient() { return this._descriptor.recipient; }
/** Record's schema */
get schema() { return this._descriptor.schema; }
// Mutable DWN Record properties.
/** Record's CID */
get dataCid() { return this._descriptor.dataCid; }
/** Record's data size */
get dataSize() { return this._descriptor.dataSize; }
/** Record's modified date */
get dateModified() { return this._descriptor.messageTimestamp; }
/** Record's published date */
get datePublished() { return this._descriptor.datePublished; }
/** Record's published status */
get messageTimestamp() { return this._descriptor.messageTimestamp; }
/** Record's published status (true/false) */
get published() { return this._descriptor.published; }
constructor(agent: Web5Agent, options: RecordOptions) {
this._agent = agent;
// Store the target and author DIDs that were used to create the message to use for subsequent reads, etc.
this.author = options.author;
this.target = options.target;
// RecordsWriteMessage properties.
this._attestation = options.attestation;
this._contextId = options.contextId;
this._descriptor = options.descriptor;
this._encryption = options.encryption;
this._recordId = options.recordId;
// options.encodedData will either be a base64url encoded string (in the case of RecordsQuery)
// OR a Blob in the case of a RecordsWrite.
this._encodedData = options.encodedData ?? null;
// If the record was created from a RecordsRead reply then it will have a `data` property.
if (options.data) {
this._readableStream = Record.isReadableWebStream(options.data) ?
new ReadableWebToNodeStream(<ReadableStream>options.data) as Readable : options.data as Readable;
}
}
/**
* Returns the data of the current record.
* If the record data is not available, it attempts to fetch the data from the DWN.
* @returns a data stream with convenience methods such as `blob()`, `json()`, `text()`, and `stream()`, similar to the fetch API response
* @throws `Error` if the record has already been deleted.
*
*/
get data() {
if (this.isDeleted) throw new Error('Operation failed: Attempted to access `data` of a record that has already been deleted.');
if (!this._encodedData && !this._readableStream) {
// `encodedData` will be set if the Record was instantiated by dwn.records.create()/write().
// `readableStream` will be set if Record was instantiated by dwn.records.read().
// If neither of the above are true, then the record must be fetched from the DWN.
this._readableStream = this._agent.processDwnRequest({
author : this.author,
messageOptions : { filter: { recordId: this.id } },
messageType : DwnInterfaceName.Records + DwnMethodName.Read,
target : this.target,
})
.then(response => response.reply)
.then(reply => reply.record.data)
.catch(error => { throw new Error(`Error encountered while attempting to read data: ${error.message}`); });
}
if (typeof this._encodedData === 'string') {
// If `encodedData` is set, then it is expected that:
// type is Blob if the Record object was instantiated by dwn.records.create()/write().
// type is Base64 URL encoded string if the Record object was instantiated by dwn.records.query().
// If it is a string, we need to Base64 URL decode to bytes and instantiate a Blob.
const dataBytes = Encoder.base64UrlToBytes(this._encodedData);
this._encodedData = new Blob([dataBytes], { type: this.dataFormat });
}
// Explicitly cast `encodedData` as a Blob since, if non-null, it has been converted from string to Blob.
const dataBlob = this._encodedData as Blob;
// eslint-disable-next-line @typescript-eslint/no-this-alias
const self = this; // Capture the context of the `Record` instance.
const dataObj = {
async blob(): Promise<Blob> {
if (dataBlob) return dataBlob;
if (self._readableStream) return new Blob([await this.stream().then(DataStream.toBytes)], { type: self.dataFormat });
},
async json() {
if (dataBlob) return this.text().then(JSON.parse);
if (self._readableStream) return this.text().then(JSON.parse);
return null;
},
async text() {
if (dataBlob) return dataBlob.text();
if (self._readableStream) return this.stream().then(DataStream.toBytes).then(Encoder.bytesToString);
return null;
},
async stream() {
if (dataBlob) return new ReadableWebToNodeStream(dataBlob.stream());
if (self._readableStream) return self._readableStream;
return null;
},
then(...callbacks) {
return this.stream().then(...callbacks);
},
catch(callback) {
return dataObj.then().catch(callback);
},
};
return dataObj;
}
/**
* Delete the current record from the DWN.
* @returns the status of the delete request
* @throws `Error` if the record has already been deleted.
*/
async delete(): Promise<ResponseStatus> {
if (this.isDeleted) throw new Error('Operation failed: Attempted to call `delete()` on a record that has already been deleted.');
// Attempt to delete the record from the DWN.
const agentResponse = await this._agent.processDwnRequest({
author : this.author,
messageOptions : { recordId: this.id },
messageType : DwnInterfaceName.Records + DwnMethodName.Delete,
target : this.target,
});
const { reply: { status } } = agentResponse;
if (status.code === 202) {
// If the record was successfully deleted, mark the instance as deleted to prevent further modifications.
this.setDeletedStatus(true);
}
return { status };
}
/**
* Send the current record to a remote DWN by specifying their DID
* (vs waiting for the regular DWN sync)
* @param target - the DID to send the record to
* @returns the status of the send record request
* @throws `Error` if the record has already been deleted.
*/
async send(target: string): Promise<ResponseStatus> {
if (this.isDeleted) throw new Error('Operation failed: Attempted to call `send()` on a record that has already been deleted.');
const { reply: { status } } = await this._agent.sendDwnRequest({
messageType : DwnInterfaceName.Records + DwnMethodName.Write,
author : this.author,
dataStream : await this.data.blob(),
target : target,
messageOptions : this.toJSON(),
});
return { status };
}
/**
* Returns a JSON representation of the Record instance.
* It's called by `JSON.stringify(...)` automatically.
*/
toJSON(): RecordModel {
return {
attestation : this.attestation,
author : this.author,
contextId : this.contextId,
dataCid : this.dataCid,
dataFormat : this.dataFormat,
dataSize : this.dataSize,
dateCreated : this.dateCreated,
messageTimestamp : this.dateModified,
datePublished : this.datePublished,
encryption : this.encryption,
interface : this.interface,
method : this.method,
parentId : this.parentId,
protocol : this.protocol,
protocolPath : this.protocolPath,
published : this.published,
recipient : this.recipient,
recordId : this.id,
schema : this.schema,
target : this.target,
};
}
/**
* Convenience method to return the string representation of the Record instance.
* Called automatically in string concatenation, String() type conversion, and template literals.
*/
toString() {
let str = `Record: {\n`;
str += ` ID: ${this.id}\n`;
str += this.contextId ? ` Context ID: ${this.contextId}\n` : '';
str += this.protocol ? ` Protocol: ${this.protocol}\n` : '';
str += this.schema ? ` Schema: ${this.schema}\n` : '';
str += ` Data CID: ${this.dataCid}\n`;
str += ` Data Format: ${this.dataFormat}\n`;
str += ` Data Size: ${this.dataSize}\n`;
str += ` Created: ${this.dateCreated}\n`;
str += ` Modified: ${this.dateModified}\n`;
str += `}`;
return str;
}
/**
* Update the current record on the DWN.
* @param options - options to update the record, including the new data
* @returns the status of the update request
* @throws `Error` if the record has already been deleted.
*/
async update(options: RecordUpdateOptions = {}): Promise<ResponseStatus> {
if (this.isDeleted) throw new Error('Operation failed: Attempted to call `update()` on a record that has already been deleted.');
// Map Record class `dateModified` property to DWN SDK `messageTimestamp`.
const { dateModified, ...updateOptions } = options as Partial<RecordsWriteOptions> & RecordUpdateOptions;
updateOptions.messageTimestamp = dateModified;
// Begin assembling update message.
let updateMessage = {...this._descriptor, ...updateOptions } as Partial<RecordsWriteOptions>;
let dataBlob: Blob;
if (options.data !== undefined) {
// If `data` is being updated then `dataCid` and `dataSize` must be undefined and the `data` property is passed as
// a top-level property to `agent.processDwnRequest()`.
delete updateMessage.dataCid;
delete updateMessage.dataSize;
delete updateMessage.data;
({ dataBlob } = dataToBlob(options.data, updateMessage.dataFormat));
}
// Throw an error if an attempt is made to modify immutable properties. `data` has already been handled.
const mutableDescriptorProperties = new Set(['data', 'dataCid', 'dataSize', 'dateModified', 'datePublished', 'published']);
Record.verifyPermittedMutation(Object.keys(options), mutableDescriptorProperties);
// If a new `dateModified` was not provided, remove the equivalent `messageTimestamp` property from from the
// updateMessage to let the DWN SDK auto-fill. This is necessary because otherwise DWN SDK throws an
// Error 409 Conflict due to attempting to overwrite a record when the `messageTimestamp` values are identical.
if (options.dateModified === undefined) {
delete updateMessage.messageTimestamp;
}
// If `published` is set to false, ensure that `datePublished` is undefined. Otherwise, DWN SDK's schema validation
// will throw an error if `published` is false but `datePublished` is set.
if (options.published === false && updateMessage.datePublished !== undefined) {
delete updateMessage.datePublished;
}
// Set the record ID and context ID, if any.
updateMessage.recordId = this._recordId;
updateMessage.contextId = this._contextId;
const messageOptions: Partial<RecordsWriteOptions> = {
...updateMessage
};
const agentResponse = await this._agent.processDwnRequest({
author : this.author,
dataStream : dataBlob,
messageOptions,
messageType : DwnInterfaceName.Records + DwnMethodName.Write,
target : this.target,
});
const { message, reply: { status } } = agentResponse;
const responseMessage = message as RecordsWriteMessage;
if (200 <= status.code && status.code <= 299) {
// Only update the local Record instance mutable properties if the record was successfully (over)written.
mutableDescriptorProperties.forEach(property => {
this._descriptor[property] = responseMessage.descriptor[property];
});
// Cache data.
if (options.data !== undefined) {
this._encodedData = dataBlob;
}
}
return { status };
}
/**
* TODO: Document method.
*/
private setDeletedStatus(status: boolean): void {
this.isDeleted = status;
}
/**
* TODO: Document method.
*/
private static isReadableWebStream(stream) {
// TODO: Improve robustness of the check modeled after node:stream.
return typeof stream._read !== 'function';
}
/**
* TODO: Document method.
*/
private static verifyPermittedMutation(propertiesToMutate: Iterable<string>, mutableDescriptorProperties: Set<string>) {
for (const property of propertiesToMutate) {
if (!mutableDescriptorProperties.has(property)) {
throw new Error(`${property} is an immutable property. Its value cannot be changed.`);
}
}
}
}