import { Instance } from '../models/entities/instance';
import { Instances } from '../models';
import { federationChart } from './chart';
import { genId } from '../misc/gen-id';
export async function registerOrFetchInstanceDoc(host: string): Promise<Instance> {
if (host == null) return null;
const index = await Instances.findOne({ host });
if (index == null) {
const i = await Instances.save({
id: genId(),
host,
caughtAt: new Date(),
lastCommunicatedAt: new Date(),
system: null // TODO
});
federationChart.update(true);
return i;
} else {
return index;
}