2016-11-10 01:15:27 +00:00
|
|
|
import * as _stats from './stats';
|
|
|
|
import * as _settings from './settings';
|
|
|
|
import * as _workspace from './workspace';
|
2017-03-08 05:52:17 +00:00
|
|
|
import * as _workspaceMeta from './workspace-meta';
|
2016-11-10 01:15:27 +00:00
|
|
|
import * as _environment from './environment';
|
2017-03-08 05:52:17 +00:00
|
|
|
import * as _cookieJar from './cookie-jar';
|
|
|
|
import * as _requestGroup from './request-group';
|
|
|
|
import * as _requestGroupMeta from './request-group-meta';
|
2016-11-10 01:15:27 +00:00
|
|
|
import * as _request from './request';
|
2017-03-08 05:52:17 +00:00
|
|
|
import * as _requestMeta from './request-meta';
|
2016-11-10 01:15:27 +00:00
|
|
|
import * as _response from './response';
|
|
|
|
|
|
|
|
// Reference to each model
|
|
|
|
export const stats = _stats;
|
|
|
|
export const settings = _settings;
|
|
|
|
export const workspace = _workspace;
|
2016-12-01 01:50:59 +00:00
|
|
|
export const workspaceMeta = _workspaceMeta;
|
2016-11-10 01:15:27 +00:00
|
|
|
export const environment = _environment;
|
|
|
|
export const cookieJar = _cookieJar;
|
|
|
|
export const requestGroup = _requestGroup;
|
2016-12-01 01:50:59 +00:00
|
|
|
export const requestGroupMeta = _requestGroupMeta;
|
2016-11-10 01:15:27 +00:00
|
|
|
export const request = _request;
|
2016-12-01 01:50:59 +00:00
|
|
|
export const requestMeta = _requestMeta;
|
2016-11-10 01:15:27 +00:00
|
|
|
export const response = _response;
|
|
|
|
|
|
|
|
const _models = {
|
|
|
|
[stats.type]: stats,
|
|
|
|
[settings.type]: settings,
|
|
|
|
[workspace.type]: workspace,
|
2016-12-01 01:50:59 +00:00
|
|
|
[workspaceMeta.type]: workspaceMeta,
|
2016-11-10 01:15:27 +00:00
|
|
|
[environment.type]: environment,
|
|
|
|
[cookieJar.type]: cookieJar,
|
|
|
|
[requestGroup.type]: requestGroup,
|
2016-12-01 01:50:59 +00:00
|
|
|
[requestGroupMeta.type]: requestGroupMeta,
|
2016-11-10 01:15:27 +00:00
|
|
|
[request.type]: request,
|
2016-12-01 01:50:59 +00:00
|
|
|
[requestMeta.type]: requestMeta,
|
2017-03-03 20:09:08 +00:00
|
|
|
[response.type]: response
|
2016-11-10 01:15:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export function all () {
|
|
|
|
return Object.keys(_models).map(type => _models[type]);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function types () {
|
|
|
|
return all().map(model => model.type);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getModel (type) {
|
|
|
|
return _models[type] || null;
|
|
|
|
}
|
|
|
|
|
2016-11-22 19:42:10 +00:00
|
|
|
export function getModelName (type, count = 1) {
|
|
|
|
const model = getModel(type);
|
|
|
|
if (!model) {
|
|
|
|
return 'Unknown';
|
|
|
|
} else if (count === 1) {
|
|
|
|
return model.name;
|
|
|
|
} else if (!model.name.match(/s$/)) {
|
|
|
|
// Add an 's' if it doesn't already end in one
|
|
|
|
return `${model.name}s`;
|
|
|
|
} else {
|
2017-03-03 20:09:08 +00:00
|
|
|
return model.name;
|
2016-11-22 19:42:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function initModel (type, ...sources) {
|
|
|
|
const model = getModel(type);
|
|
|
|
|
|
|
|
// Define global default fields
|
|
|
|
const objectDefaults = Object.assign({
|
2016-11-20 06:41:23 +00:00
|
|
|
type: type,
|
2016-11-19 07:11:10 +00:00
|
|
|
_id: null,
|
2016-11-20 06:41:23 +00:00
|
|
|
parentId: null,
|
2016-11-10 01:15:27 +00:00
|
|
|
modified: Date.now(),
|
2017-03-03 20:09:08 +00:00
|
|
|
created: Date.now()
|
2016-11-22 19:42:10 +00:00
|
|
|
}, model.init());
|
|
|
|
|
|
|
|
// Make a new object
|
|
|
|
const fullObject = Object.assign({}, objectDefaults, ...sources);
|
|
|
|
|
|
|
|
// Migrate the model
|
|
|
|
// NOTE: Do migration before pruning because we might need to look at those fields
|
2016-12-01 19:13:01 +00:00
|
|
|
model.migrate(fullObject);
|
2016-11-10 01:15:27 +00:00
|
|
|
|
2016-11-22 19:42:10 +00:00
|
|
|
// Prune extra keys from doc
|
2016-12-01 19:13:01 +00:00
|
|
|
for (const key of Object.keys(fullObject)) {
|
2016-11-22 19:42:10 +00:00
|
|
|
if (!objectDefaults.hasOwnProperty(key)) {
|
2016-12-01 19:13:01 +00:00
|
|
|
delete fullObject[key];
|
2016-11-22 19:42:10 +00:00
|
|
|
}
|
|
|
|
}
|
2016-11-10 01:15:27 +00:00
|
|
|
|
2016-12-01 19:13:01 +00:00
|
|
|
return fullObject;
|
2016-11-10 01:15:27 +00:00
|
|
|
}
|