insomnia/app/backend/database/models/environment.js
Gregory Schier 318c35c2cb Move a bunch of stuff to async/await (#39)
* Some minor implementations

* Some more

* Lots more

* Removed 'backend' alias

* removed all promises

* Removed a bunch of module exports stuff

* Some morE'

* Fix

* custom DNS

* Tests for DNS

* bug fix

* Some small adjustments

* Small stuff
2016-10-02 13:57:00 -07:00

55 lines
1.0 KiB
JavaScript

'use strict';
const db = require('../index');
export const type = 'Environment';
export const prefix = 'env';
export function init () {
return db.initModel({
name: 'New Environment',
data: {},
})
}
export function create (patch = {}) {
if (!patch.parentId) {
throw new Error('New Environment missing `parentId`', patch);
}
return db.docCreate(type, patch);
}
export function update (environment, patch) {
return db.docUpdate(environment, patch);
}
export function findByParentId (parentId) {
return db.find(type, {parentId});
}
export async function getOrCreateForWorkspace (workspace) {
const parentId = workspace._id;
const environments = await db.find(type, {parentId});
if (environments.length === 0) {
return await create({
parentId,
name: 'Base Environment'
})
} else {
return environments[0];
}
}
export function getById (id) {
return db.get(type, id);
}
export function remove (environment) {
return db.remove(environment);
}
export function all () {
return db.all(type);
}