Source: salmon-fs/salmon/drive/js_node_drive.js

/*
MIT License

Copyright (c) 2021 Max Kas

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
import { SalmonDrive } from "../salmon_drive.js";
import { SalmonFile } from "../salmon_file.js";
/**
 * SalmonDrive implementation for standard node js file system. This provides a virtual drive implementation
 * that you can use to store and access encrypted files on the local server.
 * Use static methods open() or create() to create an instance.
 */
export class JsNodeDrive extends SalmonDrive {
    /**
     * Private constructor, use open() and create() instead.
     */
    constructor() {
        super();
    }
    /**
     * Helper method that opens and initializes a JsDrive
     * @param {IRealFile} dir The real directory that contains the drive.
     * @param {string} password Text password to use with this drive.
     * @param {ISalmonSequencer} sequencer Optional nonce sequencer that will be used for importing files.
     * @returns {Promise<SalmonDrive>} The drive.
     */
    static async open(dir, password, sequencer = null) {
        return await SalmonDrive.openDrive(dir, JsNodeDrive, password, sequencer);
    }
    /**
     * Helper method that creates and initializes a JsDrive
     * @param {IRealFile} dir The real directory that will contain the drive.
     * @param {string} password Text password to use with this drive.
     * @param {ISalmonSequencer} sequencer The nonce sequencer that will be used for encryption.
     * @returns {Promise<SalmonDrive>} The drive.
     */
    static async create(dir, password, sequencer) {
        return await SalmonDrive.createDrive(dir, JsNodeDrive, password, sequencer);
    }
    /**
     * Get a private dir for sharing files with external applications.
     * @return {IRealFile} The private dir
     * @throws Exception
     */
    getPrivateDir() {
        throw new Error("Unsupported Operation");
    }
    /**
     * When authorization succeed.
     */
    onUnlockSuccess() {
        console.log("drive unlocked");
    }
    /**
     * When authorization fails.
     */
    onUnlockError() {
        console.error("drive failed to unlock");
    }
    /**
     *
     * @param file The real file.
     * @returns The encrypted file.
     */
    getFile(file) {
        return new SalmonFile(file, this);
    }
}