mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
61 lines
1.3 KiB
JavaScript
61 lines
1.3 KiB
JavaScript
// @flow
|
|
import type { BaseModel } from './index';
|
|
|
|
import * as db from '../common/database';
|
|
import type { GitCredentials } from '../sync/git/git-vcs';
|
|
|
|
type BaseGitRepository = {
|
|
needsFullClone: boolean,
|
|
uri: string,
|
|
credentials: GitCredentials | null,
|
|
author: {
|
|
name: string,
|
|
email: string,
|
|
},
|
|
uriNeedsMigration: boolean,
|
|
};
|
|
|
|
export type GitRepository = BaseModel & BaseGitRepository;
|
|
|
|
export const name = 'Git Repository';
|
|
export const type = 'GitRepository';
|
|
export const prefix = 'git';
|
|
export const canDuplicate = false;
|
|
export const canSync = false;
|
|
|
|
export function init(): BaseGitRepository {
|
|
return {
|
|
needsFullClone: false,
|
|
uri: '',
|
|
credentials: null,
|
|
author: {
|
|
name: '',
|
|
email: '',
|
|
},
|
|
uriNeedsMigration: true,
|
|
};
|
|
}
|
|
|
|
export function migrate(doc: GitRepository): GitRepository {
|
|
return doc;
|
|
}
|
|
|
|
export function create(patch: $Shape<GitRepository> = {}): Promise<GitRepository> {
|
|
return db.docCreate(type, {
|
|
uriNeedsMigration: false,
|
|
...patch,
|
|
});
|
|
}
|
|
|
|
export function update(repo: GitRepository, patch: $Shape<GitRepository>): Promise<GitRepository> {
|
|
return db.docUpdate(repo, patch);
|
|
}
|
|
|
|
export function remove(repo: GitRepository): Promise<void> {
|
|
return db.remove(repo);
|
|
}
|
|
|
|
export function all(): Promise<Array<GitRepository>> {
|
|
return db.all(type);
|
|
}
|