mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
f91e43f29a
* Started sync config model * A bunch more * Added push/pull buttons * Filled in sync pull UI * A bunch of fixes and stuff
406 lines
8.7 KiB
JavaScript
406 lines
8.7 KiB
JavaScript
import electron from 'electron';
|
|
import NeDB from 'nedb';
|
|
import fsPath from 'path';
|
|
import {DB_PERSIST_INTERVAL} from '../constants';
|
|
import {generateId} from '../util';
|
|
|
|
import * as _stats from './models/stats';
|
|
import * as _settings from './models/settings';
|
|
import * as _workspace from './models/workspace';
|
|
import * as _environment from './models/environment';
|
|
import * as _cookieJar from './models/cookieJar';
|
|
import * as _requestGroup from './models/requestGroup';
|
|
import * as _request from './models/request';
|
|
import * as _response from './models/response';
|
|
|
|
export const CHANGE_INSERT = 'insert';
|
|
export const CHANGE_UPDATE = 'update';
|
|
export const CHANGE_REMOVE = 'remove';
|
|
|
|
|
|
// ~~~~~~ //
|
|
// MODELS //
|
|
// ~~~~~~ //
|
|
|
|
const MODELS = [
|
|
_stats,
|
|
_settings,
|
|
_workspace,
|
|
_environment,
|
|
_cookieJar,
|
|
_requestGroup,
|
|
_request,
|
|
_response
|
|
];
|
|
|
|
export const stats = _stats;
|
|
export const settings = _settings;
|
|
export const workspace = _workspace;
|
|
export const environment = _environment;
|
|
export const cookieJar = _cookieJar;
|
|
export const requestGroup = _requestGroup;
|
|
export const request = _request;
|
|
export const response = _response;
|
|
|
|
|
|
const MODEL_MAP = {};
|
|
|
|
export function initModel (doc) {
|
|
return Object.assign({
|
|
modified: Date.now(),
|
|
created: Date.now(),
|
|
parentId: null
|
|
}, doc);
|
|
}
|
|
|
|
export const ALL_TYPES = MODELS.map(m => m.type);
|
|
|
|
for (const model of MODELS) {
|
|
MODEL_MAP[model.type] = model;
|
|
}
|
|
|
|
|
|
// ~~~~~~~ //
|
|
// HELPERS //
|
|
// ~~~~~~~ //
|
|
|
|
let db = {};
|
|
|
|
function getDBFilePath (modelType) {
|
|
// NOTE: Do not EVER change this. EVER!
|
|
const basePath = electron.remote.app.getPath('userData');
|
|
return fsPath.join(basePath, `insomnia.${modelType}.db`);
|
|
}
|
|
|
|
/**
|
|
* Initialize the database. Note that this isn't actually async, but might be
|
|
* in the future!
|
|
*
|
|
* @param config
|
|
* @param forceReset
|
|
* @returns {null}
|
|
*/
|
|
export async function initDB (config = {}, forceReset = false) {
|
|
if (forceReset) {
|
|
db = {};
|
|
}
|
|
|
|
// Fill in the defaults
|
|
ALL_TYPES.map(t => {
|
|
if (db[t]) {
|
|
console.warn(`-- Already initialized DB.${t} --`);
|
|
return;
|
|
}
|
|
|
|
const defaults = {
|
|
filename: getDBFilePath(t),
|
|
autoload: true
|
|
};
|
|
|
|
const finalConfig = Object.assign(defaults, config);
|
|
|
|
db[t] = new NeDB(finalConfig);
|
|
db[t].persistence.setAutocompactionInterval(DB_PERSIST_INTERVAL)
|
|
});
|
|
|
|
// Done
|
|
console.log(`-- Initialized DB at ${getDBFilePath('${type}')} --`);
|
|
}
|
|
|
|
|
|
// ~~~~~~~~~~~~~~~~ //
|
|
// Change Listeners //
|
|
// ~~~~~~~~~~~~~~~~ //
|
|
|
|
let bufferingChanges = false;
|
|
let changeBuffer = [];
|
|
let changeListeners = [];
|
|
|
|
export function onChange (callback) {
|
|
console.log(`-- Added DB Listener -- `);
|
|
changeListeners.push(callback);
|
|
}
|
|
|
|
export function offChange (callback) {
|
|
console.log(`-- Removed DB Listener -- `);
|
|
changeListeners = changeListeners.filter(l => l !== callback);
|
|
}
|
|
|
|
export function bufferChanges (millis = 1000) {
|
|
bufferingChanges = true;
|
|
setTimeout(flushChanges, millis);
|
|
}
|
|
|
|
export function flushChanges () {
|
|
bufferingChanges = false;
|
|
const changes = [...changeBuffer];
|
|
changeBuffer = [];
|
|
|
|
if (changes.length === 0) {
|
|
// No work to do
|
|
return;
|
|
}
|
|
|
|
// Notify async so we don't block
|
|
process.nextTick(() => {
|
|
changeListeners.map(fn => fn(changes));
|
|
})
|
|
}
|
|
|
|
function notifyOfChange (event, doc, fromSync) {
|
|
changeBuffer.push([event, doc, fromSync]);
|
|
|
|
// Flush right away if we're not buffering
|
|
if (!bufferingChanges) {
|
|
flushChanges();
|
|
}
|
|
}
|
|
|
|
|
|
// ~~~~~~~ //
|
|
// Helpers //
|
|
// ~~~~~~~ //
|
|
|
|
export function getMostRecentlyModified (type, query = {}) {
|
|
return new Promise(resolve => {
|
|
db[type].find(query).sort({modified: -1}).limit(1).exec((err, docs) => {
|
|
resolve(docs.length ? docs[0] : null);
|
|
})
|
|
})
|
|
}
|
|
|
|
export function find (type, query = {}) {
|
|
return new Promise((resolve, reject) => {
|
|
db[type].find(query, (err, rawDocs) => {
|
|
if (err) {
|
|
return reject(err);
|
|
}
|
|
|
|
const modelDefaults = MODEL_MAP[type].init();
|
|
const docs = rawDocs.map(rawDoc => {
|
|
return Object.assign({}, modelDefaults, rawDoc);
|
|
});
|
|
|
|
resolve(docs);
|
|
});
|
|
});
|
|
}
|
|
|
|
export function all (type) {
|
|
return find(type);
|
|
}
|
|
|
|
export function getWhere (type, query) {
|
|
return new Promise((resolve, reject) => {
|
|
db[type].find(query, (err, rawDocs) => {
|
|
if (err) {
|
|
return reject(err);
|
|
}
|
|
|
|
if (rawDocs.length === 0) {
|
|
// Not found. Too bad!
|
|
return resolve(null);
|
|
}
|
|
|
|
const modelDefaults = MODEL_MAP[type].init();
|
|
resolve(Object.assign({}, modelDefaults, rawDocs[0]));
|
|
})
|
|
})
|
|
}
|
|
|
|
export function get (type, id) {
|
|
return getWhere(type, {_id: id});
|
|
}
|
|
|
|
export function count (type, query = {}) {
|
|
return new Promise((resolve, reject) => {
|
|
db[type].count(query, (err, count) => {
|
|
if (err) {
|
|
return reject(err);
|
|
}
|
|
|
|
resolve(count);
|
|
});
|
|
});
|
|
}
|
|
|
|
export function insert (doc, fromSync = false) {
|
|
return new Promise((resolve, reject) => {
|
|
db[doc.type].insert(doc, (err, newDoc) => {
|
|
if (err) {
|
|
return reject(err);
|
|
}
|
|
|
|
notifyOfChange(CHANGE_INSERT, doc, fromSync);
|
|
|
|
resolve(newDoc);
|
|
});
|
|
});
|
|
}
|
|
|
|
export function update (doc, fromSync = false) {
|
|
return new Promise((resolve, reject) => {
|
|
db[doc.type].update({_id: doc._id}, doc, err => {
|
|
if (err) {
|
|
return reject(err);
|
|
}
|
|
|
|
notifyOfChange(CHANGE_UPDATE, doc, fromSync);
|
|
|
|
resolve(doc);
|
|
});
|
|
});
|
|
}
|
|
|
|
export async function remove (doc, fromSync = false) {
|
|
bufferChanges();
|
|
|
|
const docs = await withDescendants(doc);
|
|
const docIds = docs.map(d => d._id);
|
|
const types = [...new Set(docs.map(d => d.type))];
|
|
|
|
// Don't really need to wait for this to be over;
|
|
types.map(t => db[t].remove({_id: {$in: docIds}}, {multi: true}));
|
|
|
|
docs.map(d => notifyOfChange(CHANGE_REMOVE, d, fromSync));
|
|
|
|
flushChanges();
|
|
}
|
|
|
|
/**
|
|
* Remove a lot of documents quickly and silently
|
|
*
|
|
* @param type
|
|
* @param query
|
|
* @returns {Promise.<T>}
|
|
*/
|
|
export function removeBulkSilently (type, query) {
|
|
return new Promise(resolve => {
|
|
db[type].remove(query, {multi: true}, err => resolve());
|
|
});
|
|
}
|
|
|
|
|
|
// ~~~~~~~~~~~~~~~~~~~ //
|
|
// DEFAULT MODEL STUFF //
|
|
// ~~~~~~~~~~~~~~~~~~~ //
|
|
|
|
export function docUpdate (originalDoc, patch = {}) {
|
|
const doc = Object.assign(
|
|
MODEL_MAP[originalDoc.type].init(),
|
|
originalDoc,
|
|
patch,
|
|
{modified: Date.now()}
|
|
);
|
|
|
|
return update(doc);
|
|
}
|
|
|
|
export function docCreate (type, patch = {}) {
|
|
const idPrefix = MODEL_MAP[type].prefix;
|
|
|
|
if (!idPrefix) {
|
|
throw new Error(`No ID prefix for ${type}`)
|
|
}
|
|
|
|
const doc = Object.assign(
|
|
{_id: generateId(idPrefix)},
|
|
MODEL_MAP[type].init(),
|
|
patch,
|
|
|
|
// Fields that the user can't touch
|
|
{
|
|
type: type,
|
|
modified: Date.now()
|
|
}
|
|
);
|
|
|
|
return insert(doc);
|
|
}
|
|
|
|
// ~~~~~~~ //
|
|
// GENERAL //
|
|
// ~~~~~~~ //
|
|
|
|
export async function withDescendants (doc = null) {
|
|
let docsToReturn = doc ? [doc] : [];
|
|
|
|
async function next (docs) {
|
|
let foundDocs = [];
|
|
|
|
for (const d of docs) {
|
|
for (const type of ALL_TYPES) {
|
|
// If the doc is null, we want to search for parentId === null
|
|
const parentId = d ? d._id : null;
|
|
const more = await find(type, {parentId});
|
|
foundDocs = [...foundDocs, ...more]
|
|
}
|
|
}
|
|
|
|
if (foundDocs.length === 0) {
|
|
// Didn't find anything. We're done
|
|
return docsToReturn;
|
|
}
|
|
|
|
// Continue searching for children
|
|
docsToReturn = [...docsToReturn, ...foundDocs];
|
|
return await next(foundDocs);
|
|
}
|
|
|
|
return await next([doc]);
|
|
}
|
|
|
|
export async function withAncestors (doc) {
|
|
let docsToReturn = doc ? [doc] : [];
|
|
|
|
async function next (docs) {
|
|
let foundDocs = [];
|
|
|
|
for (const d of docs) {
|
|
for (const type of ALL_TYPES) {
|
|
// If the doc is null, we want to search for parentId === null
|
|
const more = await find(type, {_id: d.parentId});
|
|
foundDocs = [...foundDocs, ...more]
|
|
}
|
|
}
|
|
|
|
if (foundDocs.length === 0) {
|
|
// Didn't find anything. We're done
|
|
return docsToReturn;
|
|
}
|
|
|
|
// Continue searching for children
|
|
docsToReturn = [...docsToReturn, ...foundDocs];
|
|
return await next(foundDocs);
|
|
}
|
|
|
|
return await next([doc]);
|
|
}
|
|
|
|
export async function duplicate (originalDoc, patch = {}, first = true) {
|
|
bufferChanges();
|
|
|
|
// 1. Copy the doc
|
|
const newDoc = Object.assign({}, originalDoc, patch);
|
|
delete newDoc._id;
|
|
delete newDoc.created;
|
|
delete newDoc.modified;
|
|
|
|
const createdDoc = await docCreate(newDoc.type, newDoc);
|
|
|
|
// 2. Get all the children
|
|
for (const type of ALL_TYPES) {
|
|
const parentId = originalDoc._id;
|
|
const children = await find(type, {parentId});
|
|
for (const doc of children) {
|
|
await duplicate(doc, {parentId: createdDoc._id}, false)
|
|
}
|
|
}
|
|
|
|
if (first) {
|
|
flushChanges();
|
|
}
|
|
|
|
return createdDoc;
|
|
}
|