Skip to content
Snippets Groups Projects
JsonLdCredentialFormatService.ts 17.9 KiB
Newer Older
  • Learn to ignore specific revisions
  • 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
    /**
     * This is a copy of https://code.vereign.com/gaiax/ocm/ocm-engine/-/blob/main/libs/askar/src/credo/JsonLdCredentialFormatService.ts?ref_type=heads
     * TODO do we need to move this code bellow and code by the link at OCM-Engine to separate project? (this files are the same)
     */
    
    import {
      JsonLdCredentialFormat,
      JsonCredential,
      JsonLdFormatDataCredentialDetail,
      JsonLdFormatDataVerifiableCredential,
      AgentContext,
      CredentialFormatService,
      Attachment,
      AttachmentData,
      AriesFrameworkError,
      JsonEncoder,
      JsonTransformer,
      findVerificationMethodByKeyType,
      DidResolverService,
      ClaimFormat,
      W3cCredential,
      W3cCredentialService,
      W3cJsonLdVerifiableCredential,
      CredentialFormatSpec,
      JsonLdCredentialDetail,
    } from "@aries-framework/core";
    import type {
      CredentialFormatAcceptOfferOptions,
      CredentialFormatAcceptProposalOptions,
      CredentialFormatAcceptRequestOptions,
      CredentialFormatAutoRespondOfferOptions,
      CredentialFormatAutoRespondProposalOptions,
      CredentialFormatAutoRespondRequestOptions,
      CredentialFormatCreateOfferOptions,
      CredentialFormatCreateOfferReturn,
      CredentialFormatCreateProposalOptions,
      CredentialFormatCreateProposalReturn,
      CredentialFormatCreateRequestOptions,
      CredentialFormatCreateReturn,
      CredentialFormatProcessCredentialOptions,
      CredentialFormatProcessOptions,
      CredentialFormatAutoRespondCredentialOptions,
    } from "@aries-framework/core";
    import { areObjectsEqual } from "@aries-framework/core/build/utils";
    import { W3cJsonLdCredentialService } from "@aries-framework/core/build/modules/vc/data-integrity/W3cJsonLdCredentialService";
    
    const JSONLD_VC_DETAIL = "aries/ld-proof-vc-detail@v1.0";
    const JSONLD_VC = "aries/ld-proof-vc@v1.0";
    
    export class JsonLdCredentialFormatService
      implements CredentialFormatService<JsonLdCredentialFormat>
    {
      public readonly formatKey = "jsonld" as const;
      public readonly credentialRecordType = "w3c" as const;
    
      /**
       * Create a {@link AttachmentFormats} object dependent on the message type.
       *
       * @param options The object containing all the options for the proposed credential
       * @returns object containing associated attachment, formats and filtersAttach elements
       *
       */
      public async createProposal(
        agentContext: AgentContext,
        {
          credentialFormats,
        }: CredentialFormatCreateProposalOptions<JsonLdCredentialFormat>,
      ): Promise<CredentialFormatCreateProposalReturn> {
        const format = new CredentialFormatSpec({
          format: JSONLD_VC_DETAIL,
        });
    
        const jsonLdFormat = credentialFormats.jsonld;
        if (!jsonLdFormat) {
          throw new AriesFrameworkError("Missing jsonld payload in createProposal");
        }
    
        // this does the validation
        JsonTransformer.fromJSON(jsonLdFormat.credential, JsonLdCredentialDetail);
    
        // jsonLdFormat is now of type JsonLdFormatDataCredentialDetail
        const attachment = this.getFormatData(jsonLdFormat, format.attachmentId);
        return { format, attachment };
      }
    
      /**
       * Method called on reception of a propose credential message
       * @param options the options needed to accept the proposal
       */
      public async processProposal(
        agentContext: AgentContext,
        { attachment }: CredentialFormatProcessOptions,
      ): Promise<void> {
        const credProposalJson =
          attachment.getDataAsJson<JsonLdFormatDataCredentialDetail>();
    
        if (!credProposalJson) {
          throw new AriesFrameworkError(
            "Missing jsonld credential proposal data payload",
          );
        }
    
        // validation is done in here
        JsonTransformer.fromJSON(credProposalJson, JsonLdCredentialDetail);
      }
    
      public async acceptProposal(
        agentContext: AgentContext,
        {
          attachmentId,
          proposalAttachment,
        }: CredentialFormatAcceptProposalOptions<JsonLdCredentialFormat>,
      ): Promise<CredentialFormatCreateOfferReturn> {
        // if the offer has an attachment Id use that, otherwise the generated id of the formats object
        const format = new CredentialFormatSpec({
          attachmentId,
          format: JSONLD_VC_DETAIL,
        });
    
        const credentialProposal =
          proposalAttachment.getDataAsJson<JsonLdFormatDataCredentialDetail>();
        JsonTransformer.fromJSON(credentialProposal, JsonLdCredentialDetail);
    
        const offerData = credentialProposal;
    
        const attachment = this.getFormatData(offerData, format.attachmentId);
    
        return { format, attachment };
      }
    
      /**
       * Create a {@link AttachmentFormats} object dependent on the message type.
       *
       * @param options The object containing all the options for the credential offer
       * @returns object containing associated attachment, formats and offersAttach elements
       *
       */
      public async createOffer(
        agentContext: AgentContext,
        {
          credentialFormats,
          attachmentId,
        }: CredentialFormatCreateOfferOptions<JsonLdCredentialFormat>,
      ): Promise<CredentialFormatCreateOfferReturn> {
        // if the offer has an attachment Id use that, otherwise the generated id of the formats object
        const format = new CredentialFormatSpec({
          attachmentId,
          format: JSONLD_VC_DETAIL,
        });
    
        const jsonLdFormat = credentialFormats?.jsonld;
        if (!jsonLdFormat) {
          throw new AriesFrameworkError("Missing jsonld payload in createOffer");
        }
    
        // validate
        JsonTransformer.fromJSON(jsonLdFormat.credential, JsonLdCredentialDetail);
    
        const attachment = this.getFormatData(jsonLdFormat, format.attachmentId);
    
        return { format, attachment };
      }
    
      public async processOffer(
        agentContext: AgentContext,
        { attachment }: CredentialFormatProcessOptions,
      ) {
        const credentialOfferJson =
          attachment.getDataAsJson<JsonLdFormatDataCredentialDetail>();
    
        if (!credentialOfferJson) {
          throw new AriesFrameworkError(
            "Missing jsonld credential offer data payload",
          );
        }
    
        JsonTransformer.fromJSON(credentialOfferJson, JsonLdCredentialDetail);
      }
    
      public async acceptOffer(
        agentContext: AgentContext,
        {
          attachmentId,
          offerAttachment,
        }: CredentialFormatAcceptOfferOptions<JsonLdCredentialFormat>,
      ): Promise<CredentialFormatCreateReturn> {
        const credentialOffer =
          offerAttachment.getDataAsJson<JsonLdFormatDataCredentialDetail>();
    
        // validate
        JsonTransformer.fromJSON(credentialOffer, JsonLdCredentialDetail);
    
        const format = new CredentialFormatSpec({
          attachmentId,
          format: JSONLD_VC_DETAIL,
        });
    
        const attachment = this.getFormatData(credentialOffer, format.attachmentId);
        return { format, attachment };
      }
    
      /**
       * Create a credential attachment format for a credential request.
       *
       * @param options The object containing all the options for the credential request is derived
       * @returns object containing associated attachment, formats and requestAttach elements
       *
       */
      public async createRequest(
        agentContext: AgentContext,
        {
          credentialFormats,
        }: CredentialFormatCreateRequestOptions<JsonLdCredentialFormat>,
      ): Promise<CredentialFormatCreateReturn> {
        const jsonLdFormat = credentialFormats?.jsonld;
    
        const format = new CredentialFormatSpec({
          format: JSONLD_VC_DETAIL,
        });
    
        if (!jsonLdFormat) {
          throw new AriesFrameworkError("Missing jsonld payload in createRequest");
        }
    
        // this does the validation
        JsonTransformer.fromJSON(jsonLdFormat.credential, JsonLdCredentialDetail);
    
        const attachment = this.getFormatData(jsonLdFormat, format.attachmentId);
    
        return { format, attachment };
      }
    
      public async processRequest(
        agentContext: AgentContext,
        { attachment }: CredentialFormatProcessOptions,
      ): Promise<void> {
        const requestJson =
          attachment.getDataAsJson<JsonLdFormatDataCredentialDetail>();
    
        if (!requestJson) {
          throw new AriesFrameworkError(
            "Missing jsonld credential request data payload",
          );
        }
    
        // validate
        JsonTransformer.fromJSON(requestJson, JsonLdCredentialDetail);
      }
    
      public async acceptRequest(
        agentContext: AgentContext,
        {
          credentialFormats,
          attachmentId,
          requestAttachment,
        }: CredentialFormatAcceptRequestOptions<JsonLdCredentialFormat>,
      ): Promise<CredentialFormatCreateReturn> {
        const w3cJsonLdCredentialService = agentContext.dependencyManager.resolve(
          W3cJsonLdCredentialService,
        );
    
        // sign credential here. credential to be signed is received as the request attachment
        // (attachment in the request message from holder to issuer)
        const credentialRequest =
          requestAttachment.getDataAsJson<JsonLdFormatDataCredentialDetail>();
    
        const verificationMethod =
          credentialFormats?.jsonld?.verificationMethod ??
          (await this.deriveVerificationMethod(
            agentContext,
            credentialRequest.credential,
            credentialRequest,
          ));
    
        if (!verificationMethod) {
          throw new AriesFrameworkError(
            "Missing verification method in credential data",
          );
        }
        const format = new CredentialFormatSpec({
          attachmentId,
          format: JSONLD_VC,
        });
    
        const options = credentialRequest.options;
    
        // Get a list of fields found in the options that are not supported at the moment
        const unsupportedFields = [
          "challenge",
          "domain",
          "credentialStatus",
          "created",
        ] as const;
        const foundFields = unsupportedFields.filter(
          (field) => options[field] !== undefined,
        );
    
        if (foundFields.length > 0) {
          throw new AriesFrameworkError(
            `Some fields are not currently supported in credential options: ${foundFields.join(
              ", ",
            )}`,
          );
        }
    
        const credential = JsonTransformer.fromJSON(
          credentialRequest.credential,
          W3cCredential,
        );
    
        const verifiableCredential =
          await w3cJsonLdCredentialService.signCredential(agentContext, {
            format: ClaimFormat.LdpVc,
            credential,
            proofType: credentialRequest.options.proofType,
            verificationMethod: verificationMethod,
          });
    
        const attachment = this.getFormatData(
          JsonTransformer.toJSON(verifiableCredential),
          format.attachmentId,
        );
        return { format, attachment };
      }
    
      /**
       * Derive a verification method using the issuer from the given verifiable credential
       * @param credentialAsJson the verifiable credential we want to sign
       * @return the verification method derived from this credential and its associated issuer did, keys etc.
       */
      private async deriveVerificationMethod(
        agentContext: AgentContext,
        credentialAsJson: JsonCredential,
        credentialRequest: JsonLdFormatDataCredentialDetail,
      ): Promise<string> {
        const didResolver =
          agentContext.dependencyManager.resolve(DidResolverService);
        const w3cJsonLdCredentialService = agentContext.dependencyManager.resolve(
          W3cJsonLdCredentialService,
        );
    
        const credential = JsonTransformer.fromJSON(
          credentialAsJson,
          W3cCredential,
        );
    
        // extract issuer from vc (can be string or Issuer)
        let issuerDid = credential.issuer;
    
        if (typeof issuerDid !== "string") {
          issuerDid = issuerDid.id;
        }
        // this will throw an error if the issuer did is invalid
        const issuerDidDocument = await didResolver.resolveDidDocument(
          agentContext,
          issuerDid,
        );
    
        // find first key which matches proof type
        const proofType = credentialRequest.options.proofType;
    
        // actually gets the key type(s)
        const keyType =
          w3cJsonLdCredentialService.getVerificationMethodTypesByProofType(
            proofType,
          );
    
        if (!keyType || keyType.length === 0) {
          throw new AriesFrameworkError(
            `No Key Type found for proofType ${proofType}`,
          );
        }
    
        const verificationMethod = await findVerificationMethodByKeyType(
          keyType[0],
          issuerDidDocument,
        );
        if (!verificationMethod) {
          throw new AriesFrameworkError(
            `Missing verification method for key type ${keyType}`,
          );
        }
    
        return verificationMethod.id;
      }
      /**
       * Processes an incoming credential - retrieve metadata, retrieve payload and store it in the Indy wallet
       * @param options the issue credential message wrapped inside this object
       * @param credentialRecord the credential exchange record for this credential
       */
      public async processCredential(
        agentContext: AgentContext,
        {
          credentialRecord,
          attachment,
          requestAttachment,
        }: CredentialFormatProcessCredentialOptions,
      ): Promise<void> {
        const w3cCredentialService =
          agentContext.dependencyManager.resolve(W3cCredentialService);
    
        const credentialAsJson = attachment.getDataAsJson();
        const credential = JsonTransformer.fromJSON(
          credentialAsJson,
          W3cJsonLdVerifiableCredential,
        );
        const requestAsJson =
          requestAttachment.getDataAsJson<JsonLdFormatDataCredentialDetail>();
    
        // Verify the credential request matches the credential
        this.verifyReceivedCredentialMatchesRequest(credential, requestAsJson);
    
        // verify signatures of the credential
        const result = await w3cCredentialService.verifyCredential(agentContext, {
          credential,
        });
        if (result && !result.isValid) {
          throw new AriesFrameworkError(
            `Failed to validate credential, error = ${result.error}`,
          );
        }
    
        const verifiableCredential = await w3cCredentialService.storeCredential(
          agentContext,
          {
            credential,
          },
        );
    
        credentialRecord.credentials.push({
          credentialRecordType: this.credentialRecordType,
          credentialRecordId: verifiableCredential.id,
        });
      }
    
      private verifyReceivedCredentialMatchesRequest(
        credential: W3cJsonLdVerifiableCredential,
        request: JsonLdFormatDataCredentialDetail,
      ): void {
        const jsonCredential = JsonTransformer.toJSON(credential);
        delete jsonCredential["proof"];
    
        const credentialProof = Array.isArray(credential.proof)
          ? credential.proof[credential.proof.length - 1]
          : credential.proof;
    
        if (
          request.options.created &&
          credentialProof.created !== request.options.created
        ) {
          throw new AriesFrameworkError(
            "Received credential proof created does not match created from credential request",
          );
        }
    
        if (credentialProof.domain !== request.options.domain) {
          throw new AriesFrameworkError(
            "Received credential proof domain does not match domain from credential request",
          );
        }
    
        if (credentialProof.challenge !== request.options.challenge) {
          throw new AriesFrameworkError(
            "Received credential proof challenge does not match challenge from credential request",
          );
        }
    
        if (credentialProof.type !== request.options.proofType) {
          throw new AriesFrameworkError(
            "Received credential proof type does not match proof type from credential request",
          );
        }
    
        if (credentialProof.proofPurpose !== request.options.proofPurpose) {
          throw new AriesFrameworkError(
            "Received credential proof purpose does not match proof purpose from credential request",
          );
        }
    
        // Check whether the received credential (minus the proof) matches the credential request
        const requestJsonCredential = JsonTransformer.toJSON(request.credential);
        delete requestJsonCredential["proof"];
        if (!areObjectsEqual(jsonCredential, requestJsonCredential)) {
          throw new AriesFrameworkError(
            "Received credential does not match credential request",
          );
        }
    
        // TODO: add check for the credentialStatus once this is supported in Credo
      }
    
      public supportsFormat(format: string): boolean {
        const supportedFormats = [JSONLD_VC_DETAIL, JSONLD_VC];
    
        return supportedFormats.includes(format);
      }
    
      public async deleteCredentialById(): Promise<void> {
        throw new Error("Not implemented.");
      }
    
      public areCredentialsEqual = (
        message1: Attachment,
        message2: Attachment,
      ): boolean => {
        const obj1 = message1.getDataAsJson();
        const obj2 = message2.getDataAsJson();
    
        return areObjectsEqual(obj1, obj2);
      };
    
      public async shouldAutoRespondToProposal(
        agentContext: AgentContext,
        {
          offerAttachment,
          proposalAttachment,
        }: CredentialFormatAutoRespondProposalOptions,
      ) {
        return this.areCredentialsEqual(proposalAttachment, offerAttachment);
      }
    
      public async shouldAutoRespondToOffer(
        agentContext: AgentContext,
        {
          offerAttachment,
          proposalAttachment,
        }: CredentialFormatAutoRespondOfferOptions,
      ) {
        return this.areCredentialsEqual(proposalAttachment, offerAttachment);
      }
    
      public async shouldAutoRespondToRequest(
        agentContext: AgentContext,
        {
          offerAttachment,
          requestAttachment,
        }: CredentialFormatAutoRespondRequestOptions,
      ) {
        return this.areCredentialsEqual(offerAttachment, requestAttachment);
      }
    
      public async shouldAutoRespondToCredential(
        agentContext: AgentContext,
        {
          requestAttachment,
          credentialAttachment,
        }: CredentialFormatAutoRespondCredentialOptions,
      ) {
        const credentialJson =
          credentialAttachment.getDataAsJson<JsonLdFormatDataVerifiableCredential>();
        const w3cCredential = JsonTransformer.fromJSON(
          credentialJson,
          W3cJsonLdVerifiableCredential,
        );
        const request =
          requestAttachment.getDataAsJson<JsonLdFormatDataCredentialDetail>();
    
        try {
          // This check is also done in the processCredential method, but we do it here as well
          // to be certain we don't skip the check
          this.verifyReceivedCredentialMatchesRequest(w3cCredential, request);
    
          return true;
        } catch (error) {
          return false;
        }
      }
    
      /**
       * Returns an object of type {@link Attachment} for use in credential exchange messages.
       * It looks up the correct format identifier and encodes the data as a base64 attachment.
       *
       * @param data The data to include in the attach object
       * @param id the attach id from the formats component of the message
       */
      private getFormatData(data: unknown, id: string): Attachment {
        const attachment = new Attachment({
          id,
          mimeType: "application/json",
          data: new AttachmentData({
            base64: JsonEncoder.toBase64(data),
          }),
        });
    
        return attachment;
      }
    }