2016-11-10 05:56:23 +00:00
|
|
|
import * as db from '../common/database';
|
2016-10-02 20:57:00 +00:00
|
|
|
|
2016-11-22 19:42:10 +00:00
|
|
|
export const name = 'Workspace';
|
2016-10-02 20:57:00 +00:00
|
|
|
export const type = 'Workspace';
|
|
|
|
export const prefix = 'wrk';
|
2016-11-22 19:42:10 +00:00
|
|
|
|
2016-10-02 20:57:00 +00:00
|
|
|
export function init () {
|
2016-11-10 01:15:27 +00:00
|
|
|
return {
|
2016-10-02 20:57:00 +00:00
|
|
|
name: 'New Workspace',
|
2016-11-29 20:55:31 +00:00
|
|
|
description: '',
|
|
|
|
certificates: [
|
|
|
|
// {host, port, cert, key, pfx, passphrase}
|
|
|
|
]
|
2016-11-10 01:15:27 +00:00
|
|
|
};
|
2016-10-02 20:57:00 +00:00
|
|
|
}
|
2016-09-21 20:32:45 +00:00
|
|
|
|
2016-11-22 19:42:10 +00:00
|
|
|
export function migrate (doc) {
|
|
|
|
return doc;
|
|
|
|
}
|
|
|
|
|
2016-10-02 20:57:00 +00:00
|
|
|
export function getById (id) {
|
|
|
|
return db.get(type, id);
|
|
|
|
}
|
2016-09-21 20:32:45 +00:00
|
|
|
|
2016-10-02 20:57:00 +00:00
|
|
|
export function create (patch = {}) {
|
|
|
|
return db.docCreate(type, patch);
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function all () {
|
|
|
|
const workspaces = await db.all(type);
|
|
|
|
|
|
|
|
if (workspaces.length === 0) {
|
|
|
|
await create({name: 'Insomnia'});
|
|
|
|
return await all();
|
|
|
|
} else {
|
|
|
|
return workspaces;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function count () {
|
|
|
|
return db.count(type)
|
|
|
|
}
|
|
|
|
|
|
|
|
export function update (workspace, patch) {
|
2016-09-21 20:32:45 +00:00
|
|
|
return db.docUpdate(workspace, patch);
|
2016-10-02 20:57:00 +00:00
|
|
|
}
|
2016-09-21 20:32:45 +00:00
|
|
|
|
2016-10-02 20:57:00 +00:00
|
|
|
export function remove (workspace) {
|
2016-09-21 20:32:45 +00:00
|
|
|
return db.remove(workspace);
|
2016-10-02 20:57:00 +00:00
|
|
|
}
|