|
| 1 | +import { EdcConnectorClientContext } from "../../../context"; |
| 2 | +import { QuerySpec } from "../../../entities"; |
| 3 | +import { DIDDocument, DIDService } from "../../../entities/DID"; |
| 4 | +import { Inner } from "../../../inner"; |
| 5 | + |
| 6 | +export class ParticipantDIDsController { |
| 7 | + #inner: Inner; |
| 8 | + #context?: EdcConnectorClientContext; |
| 9 | + static readonly BASE_PATH = "/v1alpha/participants"; |
| 10 | + |
| 11 | + constructor( |
| 12 | + inner: Inner, |
| 13 | + public participantId: string, |
| 14 | + context?: EdcConnectorClientContext, |
| 15 | + ) { |
| 16 | + this.#inner = inner; |
| 17 | + this.#context = context; |
| 18 | + } |
| 19 | + |
| 20 | + publishDID(did: string, context?: EdcConnectorClientContext) { |
| 21 | + const actualContext = context || this.#context!; |
| 22 | + |
| 23 | + // NOTE: fix in docs |
| 24 | + return this.#inner.request<void>(actualContext.identity, { |
| 25 | + path: `${ParticipantDIDsController.BASE_PATH}/${this.participantId}/dids/publish`, |
| 26 | + method: "POST", |
| 27 | + body: { did }, |
| 28 | + apiToken: actualContext.apiToken, |
| 29 | + }); |
| 30 | + } |
| 31 | + |
| 32 | + getDIDs(query: QuerySpec, context?: EdcConnectorClientContext) { |
| 33 | + const actualContext = context || this.#context!; |
| 34 | + |
| 35 | + return this.#inner.request<DIDDocument[]>(actualContext.identity, { |
| 36 | + path: `${ParticipantDIDsController.BASE_PATH}/${this.participantId}/dids/query`, |
| 37 | + method: "POST", |
| 38 | + body: query, |
| 39 | + apiToken: actualContext.apiToken, |
| 40 | + }); |
| 41 | + } |
| 42 | + |
| 43 | + getDIDstate(did: string, context?: EdcConnectorClientContext) { |
| 44 | + const actualContext = context || this.#context!; |
| 45 | + |
| 46 | + //NOTE: Check for doc error |
| 47 | + return this.#inner.request<string>(actualContext.identity, { |
| 48 | + path: `${ParticipantDIDsController.BASE_PATH}/${this.participantId}/dids/state`, |
| 49 | + method: "POST", |
| 50 | + body: { did }, |
| 51 | + apiToken: actualContext.apiToken, |
| 52 | + }); |
| 53 | + } |
| 54 | + |
| 55 | + unpublishDID(did: string, context?: EdcConnectorClientContext) { |
| 56 | + const actualContext = context || this.#context!; |
| 57 | + |
| 58 | + // NOTE: fix in docs |
| 59 | + return this.#inner.request<void>(actualContext.identity, { |
| 60 | + path: `${ParticipantDIDsController.BASE_PATH}/${this.participantId}/dids/unpublish`, |
| 61 | + method: "POST", |
| 62 | + body: { did }, |
| 63 | + apiToken: actualContext.apiToken, |
| 64 | + }); |
| 65 | + } |
| 66 | + |
| 67 | + addDIDEndpoint( |
| 68 | + did: string, |
| 69 | + service: DIDService, |
| 70 | + autoPublish = false, |
| 71 | + context?: EdcConnectorClientContext, |
| 72 | + ) { |
| 73 | + const actualContext = context || this.#context!; |
| 74 | + |
| 75 | + // NOTE: fix in docs |
| 76 | + return this.#inner.request<void>(actualContext.identity, { |
| 77 | + path: `${ParticipantDIDsController.BASE_PATH}/${this.participantId}/dids/${did}/endpoints`, |
| 78 | + method: "POST", |
| 79 | + query: { |
| 80 | + autoPublish: String(autoPublish), |
| 81 | + }, |
| 82 | + body: service, |
| 83 | + apiToken: actualContext.apiToken, |
| 84 | + }); |
| 85 | + } |
| 86 | + |
| 87 | + deleteDIDEndpoint( |
| 88 | + did: string, |
| 89 | + serviceId?: string, // NOTE: should be mandetory |
| 90 | + autoPublish = false, |
| 91 | + context?: EdcConnectorClientContext, |
| 92 | + ) { |
| 93 | + const actualContext = context || this.#context!; |
| 94 | + |
| 95 | + const query: Record<string, string> = { |
| 96 | + autoPublish: String(autoPublish), |
| 97 | + }; |
| 98 | + |
| 99 | + if (serviceId) { |
| 100 | + query.serviceId = serviceId; |
| 101 | + } |
| 102 | + |
| 103 | + // NOTE: fix in docs |
| 104 | + return this.#inner.request<void>(actualContext.identity, { |
| 105 | + path: `${ParticipantDIDsController.BASE_PATH}/${this.participantId}/dids/${did}/endpoints`, |
| 106 | + method: "DELETE", |
| 107 | + query, |
| 108 | + apiToken: actualContext.apiToken, |
| 109 | + }); |
| 110 | + } |
| 111 | + |
| 112 | + replaceDIDEndpoint( |
| 113 | + did: string, |
| 114 | + autoPublish = false, |
| 115 | + context?: EdcConnectorClientContext, |
| 116 | + ) { |
| 117 | + const actualContext = context || this.#context!; |
| 118 | + |
| 119 | + // NOTE: fix in docs |
| 120 | + return this.#inner.request<void>(actualContext.identity, { |
| 121 | + path: `${ParticipantDIDsController.BASE_PATH}/${this.participantId}/dids/${did}/endpoints`, |
| 122 | + method: "PATCH", |
| 123 | + query: { |
| 124 | + autoPublish: String(autoPublish), |
| 125 | + }, |
| 126 | + apiToken: actualContext.apiToken, |
| 127 | + }); |
| 128 | + } |
| 129 | +} |
0 commit comments