@web5/agent
Version:
105 lines (83 loc) • 3.82 kB
text/typescript
import type { PortableDid } from '@web5/dids';
import { Convert } from '@web5/common';
import type { Web5PlatformAgent } from './types/agent.js';
import type { AgentDataStore, DataStoreDeleteParams, DataStoreGetParams, DataStoreListParams, DataStoreSetParams } from './store-data.js';
import { DwnInterface } from './types/dwn.js';
import { IdentityProtocolDefinition } from './store-data-protocols.js';
import { isPortableDid } from './prototyping/dids/utils.js';
import { TENANT_SEPARATOR } from './utils-internal.js';
import { DwnDataStore, InMemoryDataStore } from './store-data.js';
export class DwnDidStore extends DwnDataStore<PortableDid> implements AgentDataStore<PortableDid> {
protected name = 'DwnDidStore';
protected _recordProtocolDefinition = IdentityProtocolDefinition;
/**
* Properties to use when writing and querying DID records with the DWN store.
*/
protected _recordProperties = {
dataFormat : 'application/json',
protocol : this._recordProtocolDefinition.protocol,
protocolPath : 'portableDid',
schema : this._recordProtocolDefinition.types.portableDid.schema,
};
public async delete(params: DataStoreDeleteParams): Promise<boolean> {
return await super.delete(params);
}
public async get(params: DataStoreGetParams): Promise<PortableDid | undefined> {
return await super.get(params);
}
public async list(params: DataStoreListParams): Promise<PortableDid[]> {
return await super.list(params);
}
public async set(params: DataStoreSetParams<PortableDid>): Promise<void> {
return await super.set(params);
}
protected async getAllRecords({ agent, tenantDid }: {
agent: Web5PlatformAgent;
tenantDid: string;
}): Promise<PortableDid[]> {
// Clear the index since it will be rebuilt from the query results.
this._index.clear();
// Query the DWN for all stored PortableDid objects.
const { reply: queryReply } = await agent.dwn.processRequest({
author : tenantDid,
target : tenantDid,
messageType : DwnInterface.RecordsQuery,
messageParams : { filter: { ...this._recordProperties } }
});
// Loop through all of the stored DID records and accumulate the DID objects.
let storedDids: PortableDid[] = [];
for (const record of queryReply.entries ?? []) {
// All DID records are expected to be small enough such that the data is returned with the
// query results. If a record is returned without `encodedData` this is unexpected so throw
// an error.
if (!record.encodedData) {
throw new Error(`${this.name}: Expected 'encodedData' to be present in the DWN query result entry`);
}
const storedDid = Convert.base64Url(record.encodedData).toObject() as PortableDid;
if (isPortableDid(storedDid)) {
// Update the index with the matching record ID.
const indexKey = `${tenantDid}${TENANT_SEPARATOR}${storedDid.uri}`;
this._index.set(indexKey, record.recordId);
// Add the stored DID to the cache.
this._cache.set(record.recordId, storedDid);
storedDids.push(storedDid);
}
}
return storedDids;
}
}
export class InMemoryDidStore extends InMemoryDataStore<PortableDid> implements AgentDataStore<PortableDid> {
protected name = 'InMemoryDidStore';
public async delete(params: DataStoreDeleteParams): Promise<boolean> {
return await super.delete(params);
}
public async get(params: DataStoreGetParams): Promise<PortableDid | undefined> {
return await super.get(params);
}
public async list(params: DataStoreListParams): Promise<PortableDid[]> {
return await super.list(params);
}
public async set(params: DataStoreSetParams<PortableDid>): Promise<void> {
return await super.set(params);
}
}