insomnia/packages/insomnia-app/app/models/client-certificate.js

76 lines
1.6 KiB
JavaScript
Raw Normal View History

// @flow
import * as db from '../common/database';
2018-06-25 17:42:50 +00:00
import type { BaseModel } from './index';
export const name = 'Client Certificate';
export const type = 'ClientCertificate';
export const prefix = 'crt';
export const canDuplicate = true;
type BaseClientCertificate = {
parentId: string,
host: string,
passphrase: string | null,
cert: string | null,
key: string | null,
pfx: string | null,
disabled: boolean,
// For sync control
isPrivate: boolean
};
export type ClientCertificate = BaseModel & BaseClientCertificate;
2018-06-25 17:42:50 +00:00
export function init(): BaseClientCertificate {
return {
parentId: '',
host: '',
passphrase: null,
disabled: false,
cert: null,
key: null,
pfx: null,
isPrivate: false
};
}
2018-06-25 17:42:50 +00:00
export async function migrate(doc: ClientCertificate) {
return doc;
}
2018-06-25 17:42:50 +00:00
export function create(patch: Object = {}): Promise<ClientCertificate> {
if (!patch.parentId) {
2018-06-25 17:42:50 +00:00
throw new Error(
'New ClientCertificate missing `parentId`: ' + JSON.stringify(patch)
);
}
return db.docCreate(type, patch);
}
2018-06-25 17:42:50 +00:00
export function update(
cert: ClientCertificate,
patch: Object = {}
): Promise<ClientCertificate> {
return db.docUpdate(cert, patch);
}
2018-06-25 17:42:50 +00:00
export function getById(id: string): Promise<ClientCertificate | null> {
return db.get(type, id);
}
2018-06-25 17:42:50 +00:00
export function findByParentId(
parentId: string
): Promise<Array<ClientCertificate>> {
return db.find(type, { parentId });
}
2018-06-25 17:42:50 +00:00
export function remove(cert: ClientCertificate): Promise<void> {
return db.remove(cert);
}
2018-06-25 17:42:50 +00:00
export function all(): Promise<Array<ClientCertificate>> {
return db.all(type);
}