Newer
Older
import {
Agent,
AutoAcceptCredential,
AutoAcceptProof,
ConnectionsModule,
ConnectionStateChangedEvent,
DidExchangeRole,
KeyDidResolver,
PeerDidResolver,
ProofState,
ProofStateChangedEvent,
TypedArrayEncoder,
V2CredentialProtocol,
V2ProofProtocol,
} from "@aries-framework/core";
import {
AnonCredsCredentialFormatService,
AnonCredsModule,
AnonCredsProof,
AnonCredsProofFormatService,
} from "@aries-framework/anoncreds";
import {
IndyVdrAnonCredsRegistry,
IndyVdrIndyDidRegistrar,
IndyVdrIndyDidResolver,
IndyVdrModule,
} from "@aries-framework/indy-vdr";
import { AnonCredsRsModule } from "@aries-framework/anoncreds-rs";
import { anoncreds } from "@hyperledger/anoncreds-nodejs";
import { indyVdr } from "@hyperledger/indy-vdr-nodejs";
import { AskarModule } from "@aries-framework/askar";
import { ariesAskar } from "@hyperledger/aries-askar-nodejs";
import { Key as C, KeyAlgs } from "@hyperledger/aries-askar-shared";
import { IConfAgent } from "@ocm-engine/config";
import axios from "axios";
export const importDidsToWallet = async (
agent: Agent,
dids: Array<string>,
): Promise<void> => {
for (const did in dids) {
try {
await agent.dids.import({
did: dids[did],
overwrite: false,
});
} catch (e) {
console.log((e as Error).message);
}
}
};
export const generateKey = async ({
seed,
agent,
}: {
seed: string;
agent: Agent;
}): Promise<Key> => {
if (!seed) {
throw Error("No seed provided");
}
const privateKey = TypedArrayEncoder.fromString(seed);
try {
return await agent.wallet.createKey({
keyType: KeyType.Ed25519,
});
} catch (e) {
if (e instanceof WalletKeyExistsError) {
const c = C.fromSecretBytes({
algorithm: KeyAlgs.Ed25519,
secretKey: TypedArrayEncoder.fromString(seed),
});
return Key.fromPublicKey(c.publicBytes, KeyType.Ed25519);
}
if (e instanceof WalletError) {
throw new Error(`Failed to create key - ${e.message}`);
}
throw new Error("Unknown");
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
};
export const generateDidFromKey = (key: Key): string => {
if (!key) {
throw new Error("Key not provided");
}
return TypedArrayEncoder.toBase58(key.publicKey.slice(0, 16));
};
//eslint-disable-next-line
export const getAskarAnonCredsIndyModules = (networks: any) => {
return {
connections: new ConnectionsModule({
autoAcceptConnections: true,
}),
credentials: new CredentialsModule({
autoAcceptCredentials: AutoAcceptCredential.ContentApproved,
credentialProtocols: [
new V2CredentialProtocol({
credentialFormats: [new AnonCredsCredentialFormatService()],
}),
],
}),
proofs: new ProofsModule({
autoAcceptProofs: AutoAcceptProof.ContentApproved,
proofProtocols: [
new V2ProofProtocol({
proofFormats: [new AnonCredsProofFormatService()],
}),
],
}),
anoncreds: new AnonCredsModule({
registries: [new IndyVdrAnonCredsRegistry()],
}),
anoncredsRs: new AnonCredsRsModule({
anoncreds,
}),
indyVdr: new IndyVdrModule({
indyVdr,
networks,
}),
dids: new DidsModule({
registrars: [new IndyVdrIndyDidRegistrar()],
resolvers: [
new IndyVdrIndyDidResolver(),
new KeyDidResolver(),
new PeerDidResolver(),
],
}),
askar: new AskarModule({
ariesAskar,
}),
} as const;
};
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
export const svdxProofStateChangeHandler = async (
ev: ProofStateChangedEvent,
agent: Agent,
config?: IConfAgent,
) => {
if (ProofState.Done !== ev.payload.proofRecord.state) {
return;
}
const presentationMessage = await agent.proofs.findPresentationMessage(
ev.payload.proofRecord.id,
);
console.log(JSON.stringify(presentationMessage, null, 2));
if (!presentationMessage) {
console.log("No presentation message found");
return;
}
const attachmentId = presentationMessage.formats[0].attachmentId;
const attachment =
presentationMessage.getPresentationAttachmentById(attachmentId);
console.log(JSON.stringify(attachment, null, 2));
if (!attachment) {
console.log("No attachment found");
return;
}
const email =
attachment.getDataAsJson<AnonCredsProof>()?.requested_proof.revealed_attrs[
"email"
].raw;
if (!config?.agentSVDXWebHook) {
console.log("Agent SVDX web hook not set");
return;
}
try {
await axios.post(
config?.agentSVDXWebHook,
{
email,
connectionId: ev.payload.proofRecord.connectionId,
},
{
auth: {
username: config?.agentSVDXBasicUser,
password: config?.agentSVDXBasicPass,
},
},
);
} catch (e) {
console.log(JSON.stringify(e, null, 2));
}
};
export const svdxConnectionStateChangeHandler = async (
ev: ConnectionStateChangedEvent,
agent: Agent,
config?: IConfAgent,
) => {
if (
ev.payload.connectionRecord.role === DidExchangeRole.Responder &&
ev.payload.connectionRecord.state !== "completed"
) {
return;
}
await agent.connections.addConnectionType(
ev.payload.connectionRecord.id,
ev.payload.connectionRecord.theirLabel || "svdx",
);
console.log("connection accepted", JSON.stringify(ev, null, 2));
const connections = await agent.connections.findAllByConnectionTypes([
ev.payload.connectionRecord.theirLabel || "svdx",
]);
if (connections.length < 2) {
return;
}
connections.sort(
(a, b) => new Date(a.createdAt).getTime() - new Date(b.createdAt).getTime(),
);
while (connections.length > 1) {
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
const con = connections.pop()!;
console.log(`deleting ${con.id}`);
await agent.connections.deleteById(con.id);
}
try {
await agent.proofs.requestProof({
protocolVersion: "v2",
connectionId: connections[0].id,
proofFormats: {
anoncreds: {
name: "proof-request",
version: "1.0",
requested_attributes: {
email: {
name: "email",
restrictions: [
{
schema_id: config?.agentSVDXSchemaId,
cred_def_id: config?.agentSVDXCredDefId,
},
],
},
},
},
},
});
} catch (e) {
console.log(JSON.stringify(e, null, 2));
console.log("failed to issue credential");
}
};