misskey/src/models/meta.ts

47 lines
983 B
TypeScript
Raw Normal View History

2018-03-29 20:32:18 +09:00
import db from '../db/mongodb';
2018-11-04 23:00:43 +09:00
import config from '../config';
2017-11-15 09:47:47 +09:00
2018-03-29 14:48:47 +09:00
const Meta = db.get<IMeta>('meta');
export default Meta;
2017-11-15 09:47:47 +09:00
2018-11-04 23:00:43 +09:00
// 後方互換性のため。
// 過去のMisskeyではインスタンス名や紹介を設定ファイルに記述していたのでそれを移行
if ((config as any).name) {
Meta.findOne({}).then(m => {
if (m != null && m.name == null) {
Meta.update({}, {
$set: {
name: (config as any).name
}
});
}
});
}
if ((config as any).description) {
Meta.findOne({}).then(m => {
if (m != null && m.description == null) {
Meta.update({}, {
$set: {
description: (config as any).description
}
});
}
});
}
2017-11-15 09:47:47 +09:00
export type IMeta = {
2018-11-04 23:00:43 +09:00
name?: string;
description?: string;
broadcasts?: any[];
stats?: {
2018-06-16 10:40:53 +09:00
notesCount: number;
originalNotesCount: number;
usersCount: number;
originalUsersCount: number;
};
disableRegistration?: boolean;
2018-09-12 02:48:19 +09:00
disableLocalTimeline?: boolean;
hidedTags?: string[];
2018-09-20 17:21:16 +09:00
bannerUrl?: string;
2017-11-15 09:47:47 +09:00
};