insomnia/packages/insomnia-app/app/models/o-auth-2-token.ts

93 lines
1.9 KiB
TypeScript
Raw Normal View History

import { database as db } from '../common/database';
2021-07-22 23:04:56 +00:00
import type { BaseModel } from './index';
export type OAuth2Token = BaseModel & BaseOAuth2Token;
export const name = 'OAuth 2.0 Token';
export const type = 'OAuth2Token';
export const prefix = 'oa2';
export const canDuplicate = false;
export const canSync = false;
interface BaseOAuth2Token {
refreshToken: string;
accessToken: string;
identityToken: string;
expiresAt: number | null;
// Should be Date.now() if valid
// Debug
xResponseId: string | null;
xError: string | null;
// Error handling
error: string;
errorDescription: string;
errorUri: string;
}
export const isOAuth2Token = (model: Pick<BaseModel, 'type'>): model is OAuth2Token => (
model.type === type
);
export function init(): BaseOAuth2Token {
return {
refreshToken: '',
accessToken: '',
identityToken: '',
expiresAt: null,
// Should be Date.now() if valid
// Debug
xResponseId: null,
xError: null,
// Error handling
error: '',
errorDescription: '',
errorUri: '',
};
}
export function migrate(doc: OAuth2Token) {
return doc;
}
export function create(patch: Partial<OAuth2Token> = {}) {
if (!patch.parentId) {
throw new Error(`New OAuth2Token missing \`parentId\` ${JSON.stringify(patch)}`);
}
return db.docCreate<OAuth2Token>(type, patch);
}
export function update(token: OAuth2Token, patch: Partial<OAuth2Token>) {
return db.docUpdate(token, patch);
}
export function remove(token: OAuth2Token) {
return db.remove(token);
}
export function getByParentId(parentId: string) {
return db.getWhere<OAuth2Token>(type, { parentId });
}
export async function getOrCreateByParentId(parentId: string) {
let token = await db.getWhere<OAuth2Token>(type, {
parentId,
});
if (!token) {
token = await create({
parentId,
});
}
return token;
}
export function all() {
return db.all<OAuth2Token>(type);
}