2018-03-29 13:32:18 +02:00
|
|
|
import db from '../db/mongodb';
|
2018-11-04 15:00:43 +01:00
|
|
|
import config from '../config';
|
2017-11-15 01:47:47 +01:00
|
|
|
|
2018-03-29 07:48:47 +02:00
|
|
|
const Meta = db.get<IMeta>('meta');
|
|
|
|
export default Meta;
|
2017-11-15 01:47:47 +01:00
|
|
|
|
2018-11-04 15:00:43 +01: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 01:47:47 +01:00
|
|
|
export type IMeta = {
|
2018-11-04 15:00:43 +01:00
|
|
|
name?: string;
|
|
|
|
description?: string;
|
2018-09-07 12:20:50 +02:00
|
|
|
broadcasts?: any[];
|
|
|
|
stats?: {
|
2018-06-16 03:40:53 +02:00
|
|
|
notesCount: number;
|
|
|
|
originalNotesCount: number;
|
|
|
|
usersCount: number;
|
|
|
|
originalUsersCount: number;
|
|
|
|
};
|
2018-09-07 12:20:50 +02:00
|
|
|
disableRegistration?: boolean;
|
2018-09-11 19:48:19 +02:00
|
|
|
disableLocalTimeline?: boolean;
|
2018-09-07 12:20:50 +02:00
|
|
|
hidedTags?: string[];
|
2018-09-20 10:21:16 +02:00
|
|
|
bannerUrl?: string;
|
2017-11-15 01:47:47 +01:00
|
|
|
};
|