insomnia/packages/insomnia-app/app/models/client-certificate.js
Gregory Schier 549ce23ce8
Merge All Repositories into Monorepo for easier maintenance (#629)
* 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
2017-11-26 20:45:40 +00:00

69 lines
1.6 KiB
JavaScript

// @flow
import * as db from '../common/database';
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;
export function init (): BaseClientCertificate {
return {
parentId: '',
host: '',
passphrase: null,
disabled: false,
cert: null,
key: null,
pfx: null,
isPrivate: false
};
}
export async function migrate (doc: ClientCertificate) {
return doc;
}
export function create (patch: Object = {}): Promise<ClientCertificate> {
if (!patch.parentId) {
throw new Error('New ClientCertificate missing `parentId`: ' + JSON.stringify(patch));
}
return db.docCreate(type, patch);
}
export function update (cert: ClientCertificate, patch: Object = {}): Promise<ClientCertificate> {
return db.docUpdate(cert, patch);
}
export function getById (id: string): Promise<ClientCertificate | null> {
return db.get(type, id);
}
export function findByParentId (parentId: string): Promise<Array<ClientCertificate>> {
return db.find(type, {parentId});
}
export function remove (cert: ClientCertificate): Promise<void> {
return db.remove(cert);
}
export function all (): Promise<Array<ClientCertificate>> {
return db.all(type);
}