mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
118 lines
3.0 KiB
JavaScript
118 lines
3.0 KiB
JavaScript
// @flow
|
|
import deepEqual from 'deep-equal';
|
|
import * as models from './index';
|
|
import * as db from '../common/database';
|
|
import { compressObject, decompressObject } from '../common/misc';
|
|
import type { BaseModel } from './index';
|
|
import type { Request } from './request';
|
|
|
|
export const name = 'Request Version';
|
|
export const type = 'RequestVersion';
|
|
export const prefix = 'rvr';
|
|
export const canDuplicate = false;
|
|
export const canSync = false;
|
|
|
|
type BaseRequestVersion = {
|
|
compressedRequest: string | null,
|
|
};
|
|
|
|
export type RequestVersion = BaseModel & BaseRequestVersion;
|
|
|
|
const FIELDS_TO_IGNORE = [
|
|
'_id',
|
|
'type',
|
|
'created',
|
|
'modified',
|
|
'metaSortKey',
|
|
'description',
|
|
'parentId',
|
|
'name',
|
|
];
|
|
|
|
export function init() {
|
|
return {
|
|
compressedRequest: null,
|
|
};
|
|
}
|
|
|
|
export function migrate(doc: RequestVersion): RequestVersion {
|
|
return doc;
|
|
}
|
|
|
|
export function getById(id: string): Promise<RequestVersion | null> {
|
|
return db.get(type, id);
|
|
}
|
|
|
|
export async function create(request: Request): Promise<RequestVersion> {
|
|
if (!request.type === models.request.type) {
|
|
throw new Error(`New ${type} was not given a valid ${models.request.type} instance`);
|
|
}
|
|
|
|
const parentId = request._id;
|
|
const latestRequestVersion: RequestVersion | null = await getLatestByParentId(parentId);
|
|
|
|
const latestRequest = latestRequestVersion
|
|
? decompressObject(latestRequestVersion.compressedRequest)
|
|
: null;
|
|
|
|
const hasChanged = _diffRequests(latestRequest, request);
|
|
if (hasChanged || !latestRequestVersion) {
|
|
// Create a new version if the request has been modified
|
|
const compressedRequest = compressObject(request);
|
|
return db.docCreate(type, { parentId, compressedRequest });
|
|
} else {
|
|
// Re-use the latest version if not modified since
|
|
return latestRequestVersion;
|
|
}
|
|
}
|
|
|
|
export function getLatestByParentId(parentId: string): Promise<RequestVersion | null> {
|
|
return db.getMostRecentlyModified(type, { parentId });
|
|
}
|
|
|
|
export async function restore(requestVersionId: string): Promise<Request | null> {
|
|
const requestVersion = await getById(requestVersionId);
|
|
|
|
// Older responses won't have versions saved with them
|
|
if (!requestVersion) {
|
|
return null;
|
|
}
|
|
|
|
const requestPatch = decompressObject(requestVersion.compressedRequest);
|
|
const originalRequest: Request | null = await models.request.getById(requestPatch._id);
|
|
|
|
if (!originalRequest) {
|
|
return null;
|
|
}
|
|
|
|
// Only restore fields that aren't blacklisted
|
|
for (const field of FIELDS_TO_IGNORE) {
|
|
delete requestPatch[field];
|
|
}
|
|
|
|
return models.request.update(originalRequest, requestPatch);
|
|
}
|
|
|
|
function _diffRequests(rOld: Request | null, rNew: Request): boolean {
|
|
if (!rOld) {
|
|
return true;
|
|
}
|
|
|
|
for (const key of Object.keys(rOld)) {
|
|
// Skip fields that aren't useful
|
|
if (FIELDS_TO_IGNORE.includes(key)) {
|
|
continue;
|
|
}
|
|
|
|
if (!deepEqual(rOld[key], rNew[key])) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
export function all(): Promise<Array<RequestVersion>> {
|
|
return db.all(type);
|
|
}
|