summaryrefslogblamecommitdiff
path: root/src/routers/vault/types/Identity.js
blob: 2a836b2af57a25ba931cef0cd445d33b4daf8bd6 (plain) (tree)























                                                  









                                                            

































                                                                         
"use strict";

const { Sequelize, Model } = require("sequelize");

class Identity extends Model {
    /**
     * primary key
     * @type {number}
     */
    //id;
    /**
     * the Date when the Identity was confirmed
     * @type {Date}
     */
    //addedDate;
    /**
     * the email address of the identity
     * @type {string}
     */
    //email;
    /**
     * the Vault user id
     * @type {number}
     */
    //totp;
    /**
     * TOTP 16-chars base64 secret (optional)
     * @type {string}
     */
    //pass;
    /**
     * Optional PBKDF2 cryptographic secret to use with 2FA.
     * @type {string}
     */
    //userId;

    /**
     * whether it is the primary identity of the vault account
     * @virtual
     */
    isPrimary = false;


    /**
     * initialize the model (must be called prior to first use)
     * @param {Sequelize} sequelize - the Sequelize instance
     */
    static define (sequelize) {
        const {fields, options} = require("../models/vault/identity.js");
        Identity.init(fields, { sequelize, ...options });

        return Identity; // the instantiated Model
    }

    /**
     * serialize for sending over the network
     */
    toJSON () {
        return {
            id: this.id,
            email: this.email,
            added: this.addedDate,
            primary: this.isPrimary,
        };
    }
}

module.exports = Identity;