-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathcredentialing.ts
959 lines (848 loc) · 22.3 KB
/
credentialing.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
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
import { SignifyClient } from './clienting';
import { interact, messagize } from '../core/eventing';
import { vdr } from '../core/vdring';
import {
b,
d,
Dict,
Ident,
Ilks,
Serials,
versify,
Versionage,
} from '../core/core';
import { Saider } from '../core/saider';
import { Serder } from '../core/serder';
import { Siger } from '../core/siger';
import { TraitDex } from './habery';
import {
serializeACDCAttachment,
serializeIssExnAttachment,
} from '../core/utils';
import { Operation } from './coring';
import { HabState } from '../core/state';
/** Types of credentials */
export class CredentialTypes {
static issued = 'issued';
static received = 'received';
}
/** Credential filter parameters */
export interface CredentialFilter {
filter?: object;
sort?: object[];
skip?: number;
limit?: number;
}
export interface CredentialSubject {
/**
* Issuee, or holder of the credential.
*/
i?: string;
/**
* Timestamp of issuance.
*/
dt?: string;
/**
* Privacy salt
*/
u?: string;
[key: string]: unknown;
}
export interface CredentialData {
v?: string;
d?: string;
/**
* Privacy salt
*/
u?: string;
/**
* Issuer of the credential.
*/
i?: string;
/**
* Registry id.
*/
ri?: string;
/**
* Schema id
*/
s?: string;
/**
* Credential subject data
*/
a: CredentialSubject;
/**
* Credential source section
*/
e?: { [key: string]: unknown };
/**
* Credential rules section
*/
r?: { [key: string]: unknown };
}
export interface IssueCredentialResult {
acdc: Serder;
anc: Serder;
iss: Serder;
op: Operation;
}
export interface RevokeCredentialResult {
anc: Serder;
rev: Serder;
op: Operation;
}
export interface IpexApplyArgs {
/**
* Alias for the IPEX sender AID
*/
senderName: string;
/**
* Prefix of the IPEX recipient AID
*/
recipient: string;
/**
* Message to send
*/
message?: string;
/**
* SAID of schema to apply for
*/
schemaSaid: string;
/**
* Optional attributes for selective disclosure
*/
attributes?: Record<string, unknown>;
datetime?: string;
}
export interface IpexOfferArgs {
/**
* Alias for the IPEX sender AID
*/
senderName: string;
/**
* Prefix of the IPEX recipient AID
*/
recipient: string;
/**
* Message to send
*/
message?: string;
/**
* ACDC to offer
*/
acdc: Serder;
/**
* Optional qb64 SAID of apply message this offer is responding to
*/
applySaid?: string;
datetime?: string;
}
export interface IpexAgreeArgs {
/**
* Alias for the IPEX sender AID
*/
senderName: string;
/**
* Prefix of the IPEX recipient AID
*/
recipient: string;
/**
* Message to send
*/
message?: string;
/**
* qb64 SAID of offer message this agree is responding to
*/
offerSaid: string;
datetime?: string;
}
export interface IpexGrantArgs {
/**
* Alias for the IPEX sender AID
*/
senderName: string;
/**
* Prefix of the IPEX recipient AID
*/
recipient: string;
/**
* Message to send
*/
message?: string;
/**
* qb64 SAID of agree message this grant is responding to
*/
agreeSaid?: string;
datetime?: string;
acdc: Serder;
acdcAttachment?: string;
iss: Serder;
issAttachment?: string;
anc: Serder;
ancAttachment?: string;
}
export interface IpexAdmitArgs {
/**
* Alias for the IPEX sender AID
*/
senderName: string;
/**
* Prefix of the IPEX recipient AID
*/
recipient: string;
/**
* Message to send
*/
message?: string;
/**
* qb64 SAID of agree message this admit is responding to
*/
grantSaid: string;
datetime?: string;
}
/**
* Credentials
*/
export class Credentials {
public client: SignifyClient;
/**
* Credentials
* @param {SignifyClient} client
*/
constructor(client: SignifyClient) {
this.client = client;
}
/**
* List credentials
* @async
* @param {CredentialFilter} [kargs] Optional parameters to filter the credentials
* @returns {Promise<any>} A promise to the list of credentials
*/
async list(kargs: CredentialFilter = {}): Promise<any> {
const path = `/credentials/query`;
const filtr = kargs.filter === undefined ? {} : kargs.filter;
const sort = kargs.sort === undefined ? [] : kargs.sort;
const limit = kargs.limit === undefined ? 25 : kargs.limit;
const skip = kargs.skip === undefined ? 0 : kargs.skip;
const data = {
filter: filtr,
sort: sort,
skip: skip,
limit: limit,
};
const method = 'POST';
const res = await this.client.fetch(path, method, data, undefined);
return await res.json();
}
/**
* Get a credential
* @async
* @param {string} said - SAID of the credential
* @param {boolean} [includeCESR=false] - Optional flag export the credential in CESR format
* @returns {Promise<any>} A promise to the credential
*/
async get(said: string, includeCESR: boolean = false): Promise<any> {
const path = `/credentials/${said}`;
const method = 'GET';
const headers = includeCESR
? new Headers({ Accept: 'application/json+cesr' })
: new Headers({ Accept: 'application/json' });
const res = await this.client.fetch(path, method, null, headers);
return includeCESR ? await res.text() : await res.json();
}
/**
* Issue a credential
*/
async issue(
name: string,
args: CredentialData
): Promise<IssueCredentialResult> {
const hab = await this.client.identifiers().get(name);
const estOnly = hab.state.c !== undefined && hab.state.c.includes('EO');
if (estOnly) {
// TODO implement rotation event
throw new Error('Establishment only not implemented');
}
if (!this.client.manager) {
throw new Error('No manager on client');
}
const keeper = this.client.manager.get(hab);
const [, subject] = Saider.saidify({
d: '',
...args.a,
dt: args.a.dt ?? new Date().toISOString().replace('Z', '000+00:00'),
});
const [, acdc] = Saider.saidify({
v: versify(Ident.ACDC, undefined, Serials.JSON, 0),
d: '',
u: args.u,
i: args.i ?? hab.prefix,
ri: args.ri,
s: args.s,
a: subject,
e: args.e,
r: args.r,
});
const [, iss] = Saider.saidify({
v: versify(Ident.KERI, undefined, Serials.JSON, 0),
t: Ilks.iss,
d: '',
i: acdc.d,
s: '0',
ri: args.ri,
dt: subject.dt,
});
const sn = parseInt(hab.state.s, 16);
const anc = interact({
pre: hab.prefix,
sn: sn + 1,
data: [
{
i: iss.i,
s: iss.s,
d: iss.d,
},
],
dig: hab.state.d,
version: undefined,
kind: undefined,
});
const sigs = await keeper.sign(b(anc.raw));
const path = `/identifiers/${hab.name}/credentials`;
const method = 'POST';
const body = {
acdc: acdc,
iss: iss,
ixn: anc.ked,
sigs,
[keeper.algo]: keeper.params(),
};
const headers = new Headers({
Accept: 'application/json+cesr',
});
const res = await this.client.fetch(path, method, body, headers);
const op = await res.json();
return {
acdc: new Serder(acdc),
iss: new Serder(iss),
anc,
op,
};
}
/**
* Revoke credential
* @async
* @param {string} name Name or alias of the identifier
* @param {string} said SAID of the credential
* @param {string} datetime date time of revocation
* @returns {Promise<any>} A promise to the long-running operation
*/
async revoke(
name: string,
said: string,
datetime?: string
): Promise<RevokeCredentialResult> {
const hab = await this.client.identifiers().get(name);
const pre: string = hab.prefix;
const vs = versify(Ident.KERI, undefined, Serials.JSON, 0);
const dt =
datetime ?? new Date().toISOString().replace('Z', '000+00:00');
const cred = await this.get(said);
// Create rev
const _rev = {
v: vs,
t: Ilks.rev,
d: '',
i: said,
s: '1',
ri: cred.sad.ri,
p: cred.status.d,
dt: dt,
};
const [, rev] = Saider.saidify(_rev);
// create ixn
let ixn = {};
let sigs = [];
const state = hab.state;
if (state.c !== undefined && state.c.includes('EO')) {
var estOnly = true;
} else {
var estOnly = false;
}
const sn = parseInt(state.s, 16);
const dig = state.d;
const data: any = [
{
i: rev.i,
s: rev.s,
d: rev.d,
},
];
const keeper = this.client!.manager!.get(hab);
if (estOnly) {
// TODO implement rotation event
throw new Error('Establishment only not implemented');
} else {
const serder = interact({
pre: pre,
sn: sn + 1,
data: data,
dig: dig,
version: undefined,
kind: undefined,
});
sigs = await keeper.sign(b(serder.raw));
ixn = serder.ked;
}
const body = {
rev: rev,
ixn: ixn,
sigs: sigs,
[keeper.algo]: keeper.params(),
};
const path = `/identifiers/${name}/credentials/${said}`;
const method = 'DELETE';
const headers = new Headers({
Accept: 'application/json+cesr',
});
const res = await this.client.fetch(path, method, body, headers);
const op = await res.json();
return {
rev: new Serder(rev),
anc: new Serder(ixn),
op,
};
}
}
export interface CreateRegistryArgs {
name: string;
registryName: string;
toad?: string | number | undefined;
noBackers?: boolean;
baks?: string[];
nonce?: string;
}
export class RegistryResult {
private readonly _regser: any;
private readonly _serder: Serder;
private readonly _sigs: string[];
private readonly promise: Promise<Response>;
constructor(
regser: Serder,
serder: Serder,
sigs: any[],
promise: Promise<Response>
) {
this._regser = regser;
this._serder = serder;
this._sigs = sigs;
this.promise = promise;
}
get regser() {
return this._regser;
}
get serder() {
return this._serder;
}
get sigs() {
return this._sigs;
}
async op(): Promise<any> {
const res = await this.promise;
return await res.json();
}
}
/**
* Registries
*/
export class Registries {
public client: SignifyClient;
/**
* Registries
* @param {SignifyClient} client
*/
constructor(client: SignifyClient) {
this.client = client;
}
/**
* List registries
* @async
* @param {string} name Name or alias of the identifier
* @returns {Promise<any>} A promise to the list of registries
*/
async list(name: string): Promise<any> {
const path = `/identifiers/${name}/registries`;
const method = 'GET';
const res = await this.client.fetch(path, method, null);
return await res.json();
}
/**
* Create a registry
* @async
* @param {CreateRegistryArgs}
* @returns {Promise<[any, Serder, any[], object]> } A promise to the long-running operation
*/
async create({
name,
registryName,
noBackers = true,
toad = 0,
baks = [],
nonce,
}: CreateRegistryArgs): Promise<RegistryResult> {
const hab = await this.client.identifiers().get(name);
const pre: string = hab.prefix;
const cnfg: string[] = [];
if (noBackers) {
cnfg.push(TraitDex.NoBackers);
}
const state = hab.state;
const estOnly = state.c !== undefined && state.c.includes('EO');
if (estOnly) {
cnfg.push(TraitDex.EstOnly);
}
const regser = vdr.incept({ pre, baks, toad, nonce, cnfg });
if (estOnly) {
throw new Error('establishment only not implemented');
} else {
const state = hab.state;
const sn = parseInt(state.s, 16);
const dig = state.d;
const data: any = [
{
i: regser.pre,
s: '0',
d: regser.pre,
},
];
const serder = interact({
pre: pre,
sn: sn + 1,
data: data,
dig: dig,
version: Versionage,
kind: Serials.JSON,
});
const keeper = this.client.manager!.get(hab);
const sigs = await keeper.sign(b(serder.raw));
const res = this.createFromEvents(
hab,
name,
registryName,
regser.ked,
serder.ked,
sigs
);
return new RegistryResult(regser, serder, sigs, res);
}
}
createFromEvents(
hab: HabState,
name: string,
registryName: string,
vcp: Dict<any>,
ixn: Dict<any>,
sigs: any[]
) {
const path = `/identifiers/${name}/registries`;
const method = 'POST';
const data: any = {
name: registryName,
vcp: vcp,
ixn: ixn,
sigs: sigs,
};
const keeper = this.client!.manager!.get(hab);
data[keeper.algo] = keeper.params();
return this.client.fetch(path, method, data);
}
/**
* Rename a registry
* @async
* @param {string} name Name or alias of the identifier
* @param {string} registryName Current registry name
* @param {string} newName New registry name
* @returns {Promise<any>} A promise to the registry record
*/
async rename(
name: string,
registryName: string,
newName: string
): Promise<any> {
const path = `/identifiers/${name}/registries/${registryName}`;
const method = 'PUT';
const data = {
name: newName,
};
const res = await this.client.fetch(path, method, data);
return await res.json();
}
}
/**
* Schemas
*/
export class Schemas {
client: SignifyClient;
/**
* Schemas
* @param {SignifyClient} client
*/
constructor(client: SignifyClient) {
this.client = client;
}
/**
* Get a schema
* @async
* @param {string} said SAID of the schema
* @returns {Promise<any>} A promise to the schema
*/
async get(said: string): Promise<any> {
const path = `/schema/${said}`;
const method = 'GET';
const res = await this.client.fetch(path, method, null);
return await res.json();
}
/**
* List schemas
* @async
* @returns {Promise<any>} A promise to the list of schemas
*/
async list(): Promise<any> {
const path = `/schema`;
const method = 'GET';
const res = await this.client.fetch(path, method, null);
return await res.json();
}
}
/**
* Ipex
*/
export class Ipex {
client: SignifyClient;
/**
* Schemas
* @param {SignifyClient} client
*/
constructor(client: SignifyClient) {
this.client = client;
}
/**
* Create an IPEX apply EXN message
*/
async apply(args: IpexApplyArgs): Promise<[Serder, string[], string]> {
const hab = await this.client.identifiers().get(args.senderName);
const data = {
m: args.message ?? '',
s: args.schemaSaid,
a: args.attributes ?? {},
};
return this.client
.exchanges()
.createExchangeMessage(
hab,
'/ipex/apply',
data,
{},
args.recipient,
args.datetime,
undefined
);
}
async submitApply(
name: string,
exn: Serder,
sigs: string[],
recp: string[]
): Promise<any> {
const body = {
exn: exn.ked,
sigs,
rec: recp,
};
const response = await this.client.fetch(
`/identifiers/${name}/ipex/apply`,
'POST',
body
);
return response.json();
}
/**
* Create an IPEX offer EXN message
*/
async offer(args: IpexOfferArgs): Promise<[Serder, string[], string]> {
const hab = await this.client.identifiers().get(args.senderName);
const data = {
m: args.message ?? '',
};
return this.client
.exchanges()
.createExchangeMessage(
hab,
'/ipex/offer',
data,
{ acdc: [args.acdc, undefined] },
args.recipient,
args.datetime,
args.applySaid
);
}
async submitOffer(
name: string,
exn: Serder,
sigs: string[],
atc: string,
recp: string[]
): Promise<any> {
const body = {
exn: exn.ked,
sigs,
atc,
rec: recp,
};
const response = await this.client.fetch(
`/identifiers/${name}/ipex/offer`,
'POST',
body
);
return response.json();
}
/**
* Create an IPEX agree EXN message
*/
async agree(args: IpexAgreeArgs): Promise<[Serder, string[], string]> {
const hab = await this.client.identifiers().get(args.senderName);
const data = {
m: args.message ?? '',
};
return this.client
.exchanges()
.createExchangeMessage(
hab,
'/ipex/agree',
data,
{},
args.recipient,
args.datetime,
args.offerSaid
);
}
async submitAgree(
name: string,
exn: Serder,
sigs: string[],
recp: string[]
): Promise<any> {
const body = {
exn: exn.ked,
sigs,
rec: recp,
};
const response = await this.client.fetch(
`/identifiers/${name}/ipex/agree`,
'POST',
body
);
return response.json();
}
/**
* Create an IPEX grant EXN message
*/
async grant(args: IpexGrantArgs): Promise<[Serder, string[], string]> {
const hab = await this.client.identifiers().get(args.senderName);
const data = {
m: args.message ?? '',
};
let atc = args.ancAttachment;
if (atc === undefined) {
const keeper = this.client.manager!.get(hab);
const sigs = await keeper.sign(b(args.anc.raw));
const sigers = sigs.map((sig: string) => new Siger({ qb64: sig }));
const ims = d(messagize(args.anc, sigers));
atc = ims.substring(args.anc.size);
}
const acdcAtc =
args.acdcAttachment === undefined
? d(serializeACDCAttachment(args.iss))
: args.acdcAttachment;
const issAtc =
args.issAttachment === undefined
? d(serializeIssExnAttachment(args.anc))
: args.issAttachment;
const embeds: Record<string, [Serder, string]> = {
acdc: [args.acdc, acdcAtc],
iss: [args.iss, issAtc],
anc: [args.anc, atc],
};
return this.client
.exchanges()
.createExchangeMessage(
hab,
'/ipex/grant',
data,
embeds,
args.recipient,
args.datetime,
args.agreeSaid
);
}
async submitGrant(
name: string,
exn: Serder,
sigs: string[],
atc: string,
recp: string[]
): Promise<any> {
const body = {
exn: exn.ked,
sigs: sigs,
atc: atc,
rec: recp,
};
const response = await this.client.fetch(
`/identifiers/${name}/ipex/grant`,
'POST',
body
);
return response.json();
}
/**
* Create an IPEX admit EXN message
*/
async admit(args: IpexAdmitArgs): Promise<[Serder, string[], string]> {
const hab = await this.client.identifiers().get(args.senderName);
const data: any = {
m: args.message,
};
return this.client
.exchanges()
.createExchangeMessage(
hab,
'/ipex/admit',
data,
{},
args.recipient,
args.datetime,
args.grantSaid
);
}
async submitAdmit(
name: string,
exn: Serder,
sigs: string[],
atc: string,
recp: string[]
): Promise<any> {
const body = {
exn: exn.ked,
sigs: sigs,
atc: atc,
rec: recp,
};
const response = await this.client.fetch(
`/identifiers/${name}/ipex/admit`,
'POST',
body
);
return response.json();
}
}