mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
549ce23ce8
* All projects into monorepo * Update CI * More CI updates * Extracted a bunch of things into packages * Publish - insomnia-plugin-base64@1.0.1 - insomnia-plugin-default-headers@1.0.2 - insomnia-plugin-file@1.0.1 - insomnia-plugin-hash@1.0.1 - insomnia-plugin-now@1.0.1 - insomnia-plugin-request@1.0.1 - insomnia-plugin-response@1.0.1 - insomnia-plugin-uuid@1.0.1 - insomnia-cookies@0.0.2 - insomnia-importers@1.5.2 - insomnia-prettify@0.0.3 - insomnia-url@0.0.2 - insomnia-xpath@0.0.2 * A bunch of small fixes * Improved build script * Fixed * Merge dangling files * Usability refactor * Handle duplicate plugin names
79 lines
1.9 KiB
JavaScript
79 lines
1.9 KiB
JavaScript
// @flow
|
|
import * as db from '../common/database';
|
|
import type {BaseModel} from './index';
|
|
import type {Workspace} from './workspace';
|
|
|
|
export const name = 'Environment';
|
|
export const type = 'Environment';
|
|
export const prefix = 'env';
|
|
export const canDuplicate = true;
|
|
|
|
type BaseEnvironment = {
|
|
name: string,
|
|
data: Object,
|
|
color: string | null,
|
|
|
|
// For sync control
|
|
isPrivate: boolean
|
|
};
|
|
|
|
export type Environment = BaseModel & BaseEnvironment;
|
|
|
|
export function init () {
|
|
return {
|
|
name: 'New Environment',
|
|
data: {},
|
|
color: null,
|
|
isPrivate: false
|
|
};
|
|
}
|
|
|
|
export function migrate (doc: Environment): Environment {
|
|
return doc;
|
|
}
|
|
|
|
export function create (patch: Object = {}): Promise<Environment> {
|
|
if (!patch.parentId) {
|
|
throw new Error(`New Environment missing \`parentId\`: ${JSON.stringify(patch)}`);
|
|
}
|
|
|
|
return db.docCreate(type, patch);
|
|
}
|
|
|
|
export function update (environment: Environment, patch: Object): Promise<Environment> {
|
|
return db.docUpdate(environment, patch);
|
|
}
|
|
|
|
export function findByParentId (parentId: string): Promise<Array<Environment>> {
|
|
return db.find(type, {parentId});
|
|
}
|
|
|
|
export async function getOrCreateForWorkspaceId (workspaceId: string): Promise<Environment> {
|
|
const environments = await db.find(type, {parentId: workspaceId});
|
|
|
|
if (!environments.length) {
|
|
return create({
|
|
parentId: workspaceId,
|
|
name: 'Base Environment'
|
|
});
|
|
}
|
|
|
|
return environments[environments.length - 1];
|
|
}
|
|
|
|
export async function getOrCreateForWorkspace (workspace: Workspace): Promise<Environment> {
|
|
return getOrCreateForWorkspaceId(workspace._id);
|
|
}
|
|
|
|
export function getById (id: string): Promise<Environment | null> {
|
|
return db.get(type, id);
|
|
}
|
|
|
|
export function remove (environment: Environment): Promise<void> {
|
|
return db.remove(environment);
|
|
}
|
|
|
|
export function all (): Promise<Array<Environment>> {
|
|
return db.all(type);
|
|
}
|