/* Copyright 2020 The Matrix.org Foundation C.I.C. 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 { promisify } from "util"; import Datastore from "nedb"; type Query = Record; /** * Base class for bridge stores. */ export class BridgeStore { private dbInsert: (objects: any[]) => Promise; private dbUpdate: (query: any, values: any, options: Datastore.UpdateOptions) => Promise; private dbRemove: (query: Query, options: Datastore.RemoveOptions) => Promise; private dbFindOne: (query: Query, projection?: any) => Promise; private dbFind: (query: Query, projection?: any) => Promise; constructor (public readonly db: Datastore) { this.dbInsert = promisify(this.db.insert).bind(this.db); this.dbUpdate = promisify(this.db.update).bind(this.db); this.dbRemove = promisify(this.db.remove).bind(this.db); this.dbFindOne = promisify(this.db.findOne).bind(this.db); this.dbFind = promisify(this.db.find).bind(this.db); } /** * INSERT a multiple documents. */ public insert(objects: unknown) { return this.dbInsert([objects]); } /** * UPSERT a single document */ public upsert(query: Query, updateVals: T) { return this.dbUpdate(query, updateVals, {upsert: true}); } /** * INSERT IF NOT EXISTS a single document */ public async insertIfNotExists(query: Query, insertObj: Record) { const item = await this.selectOne(query); if (!item) { this.insert(insertObj); } } /** * UPDATE a single document. If the document already exists, this will NOT update * it. */ public update(query: Query, updateVals: Record) { return this.dbUpdate(query, updateVals, {upsert: false}); } /** * DELETE multiple documents. */ public delete(query: Query) { return this.dbRemove(query, {multi: true}); } /** * SELECT a single document. */ public async selectOne(query: Query, transformFn?: (input: T) => O): Promise { const doc = await this.dbFindOne(query); if (!doc) { return null; } if (transformFn) { return transformFn(doc); } return doc as O; } /** * SELECT a number of documents. * @param query * @param transformFn * @param defer */ public async select(query: Query, transformFn?: (input: T) => O) { const doc = await this.dbFind(query); if (!doc) { return []; } if (transformFn) { if (Array.isArray(doc)) { return doc.map(transformFn); } return [transformFn(doc)]; } return doc as O[]; } /** * Set a UNIQUE key constraint on the given field. * @param fieldName The field name. Use dot notation for nested objects. * @param sparse Allow sparse entries (undefined won't cause a key * violation). */ public setUnique(fieldName: string, sparse = false) { this.db.ensureIndex({ fieldName: fieldName, unique: true, sparse: sparse }); } /** * Convenience method to convert a document to something. * @param func The function which will be called with a single document * object. Guaranteed not to be null. * @return A `transformFn` function to pass to the standard * select/delete/upsert/etc methods. */ public convertTo(func: (input: T) => O) { return function(doc: T) { return func(doc); } } }