persona.js

/*
Copyright 2023 Yarmo Mackenbach

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import { Claim } from './claim.js'

/**
 * @class
 * @classdesc A persona with identity claims
 * @example
 * const claim = Claim('https://alice.tld', '123');
 * const pers = Persona('Alice', 'About Alice', [claim]);
 */
export class Persona {
  /**
   * @param {string} name - Name of the persona
   * @param {Array<Claim>} claims - Claims of the persona
   */
  constructor (name, claims) {
    /**
     * Identifier of the persona
     * @type {string | null}
     * @public
     */
    this.identifier = null
    /**
     * Name to be displayed on the profile page
     * @type {string}
     * @public
     */
    this.name = name
    /**
     * Email address of the persona
     * @type {string | null}
     * @public
     */
    this.email = null
    /**
     * Description to be displayed on the profile page
     * @type {string | null}
     * @public
     */
    this.description = null
    /**
     * URL to an avatar image
     * @type {string | null}
     * @public
     */
    this.avatarUrl = null
    /**
     * Theme color
     * @type {string | null}
     * @public
     */
    this.themeColor = null
    /**
     * List of identity claims
     * @type {Array<Claim>}
     * @public
     */
    this.claims = claims
    /**
     * Has the persona been revoked
     * @type {boolean}
     * @public
     */
    this.isRevoked = false
  }

  /**
   * Parse a JSON object and convert it into a persona
   * @function
   * @param {object} personaObject - JSON representation of a persona
   * @param {number} profileVersion - Version of the Profile containing the persona
   * @returns {Persona | Error} Parsed persona
   * @example
   * doip.Persona.fromJSON(JSON.stringify(persona), 2);
   */
  static fromJSON (personaObject, profileVersion) {
    /** @type {Persona} */
    let persona
    let result

    if (typeof personaObject === 'object' && profileVersion) {
      switch (profileVersion) {
        case 2:
          result = importJsonPersonaVersion2(personaObject)
          if (result instanceof Error) {
            throw result
          }
          persona = result
          break

        default:
          throw new Error('Invalid persona version')
      }
    }

    return persona
  }

  /**
   * Set the persona's identifier
   * @function
   * @param {string} identifier - Identifier of the persona
   */
  setIdentifier (identifier) {
    this.identifier = identifier
  }

  /**
   * Set the persona's description
   * @function
   * @param {string} description - Description of the persona
   */
  setDescription (description) {
    this.description = description
  }

  /**
   * Set the persona's email address
   * @function
   * @param {string} email - Email address of the persona
   */
  setEmailAddress (email) {
    this.email = email
  }

  /**
   * Set the URL to the persona's avatar
   * @function
   * @param {string} avatarUrl - URL to the persona's avatar
   */
  setAvatarUrl (avatarUrl) {
    this.avatarUrl = avatarUrl
  }

  /**
   * Add a claim
   * @function
   * @param {Claim} claim - Claim to add
   */
  addClaim (claim) {
    this.claims.push(claim)
  }

  /**
   * Revoke the persona
   * @function
   */
  revoke () {
    this.isRevoked = true
  }

  /**
   * Get a JSON representation of the persona
   * @function
   * @returns {object} JSON representation of the persona
   */
  toJSON () {
    return {
      identifier: this.identifier,
      name: this.name,
      email: this.email,
      description: this.description,
      avatarUrl: this.avatarUrl,
      themeColor: this.themeColor,
      isRevoked: this.isRevoked,
      claims: this.claims.map(x => x.toJSON())
    }
  }
}

/**
 * @ignore
 * @param {object} personaObject - JSON representation of a persona
 * @returns {Persona | Error} Parsed persona
 */
function importJsonPersonaVersion2 (personaObject) {
  const claims = personaObject.claims.map(x => Claim.fromJSON(x))

  const persona = new Persona(personaObject.name, claims)

  persona.identifier = personaObject.identifier
  persona.email = personaObject.email
  persona.description = personaObject.description
  persona.avatarUrl = personaObject.avatarUrl
  persona.themeColor = personaObject.avatarUrl
  persona.isRevoked = personaObject.isRevoked

  return persona
}