misskey-awawa/src/models/meta.ts

114 lines
2.4 KiB
TypeScript
Raw Normal View History

2018-03-29 11:32:18 +00:00
import db from '../db/mongodb';
2018-11-04 14:00:43 +00:00
import config from '../config';
2017-11-15 00:47:47 +00:00
2018-03-29 05:48:47 +00:00
const Meta = db.get<IMeta>('meta');
export default Meta;
2017-11-15 00:47:47 +00:00
2018-11-04 14:00:43 +00: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
}
});
}
});
}
if ((config as any).localDriveCapacityMb) {
Meta.findOne({}).then(m => {
if (m != null && m.localDriveCapacityMb == null) {
Meta.update({}, {
$set: {
localDriveCapacityMb: (config as any).localDriveCapacityMb
}
});
}
});
}
if ((config as any).remoteDriveCapacityMb) {
Meta.findOne({}).then(m => {
if (m != null && m.remoteDriveCapacityMb == null) {
Meta.update({}, {
$set: {
remoteDriveCapacityMb: (config as any).remoteDriveCapacityMb
}
});
}
});
}
if ((config as any).preventCacheRemoteFiles) {
Meta.findOne({}).then(m => {
if (m != null && m.cacheRemoteFiles == null) {
Meta.update({}, {
$set: {
cacheRemoteFiles: !(config as any).preventCacheRemoteFiles
}
});
}
});
}
if ((config as any).recaptcha) {
Meta.findOne({}).then(m => {
if (m != null && m.enableRecaptcha == null) {
Meta.update({}, {
$set: {
enableRecaptcha: (config as any).recaptcha != null,
recaptchaSiteKey: (config as any).recaptcha.site_key,
recaptchaSecretKey: (config as any).recaptcha.secret_key,
}
});
}
});
}
2018-11-04 14:00:43 +00:00
2017-11-15 00:47:47 +00:00
export type IMeta = {
2018-11-04 14:00:43 +00:00
name?: string;
description?: string;
broadcasts?: any[];
stats?: {
2018-06-16 01:40:53 +00:00
notesCount: number;
originalNotesCount: number;
usersCount: number;
originalUsersCount: number;
};
disableRegistration?: boolean;
2018-09-11 17:48:19 +00:00
disableLocalTimeline?: boolean;
hidedTags?: string[];
2018-09-20 08:21:16 +00:00
bannerUrl?: string;
cacheRemoteFiles?: boolean;
enableRecaptcha?: boolean;
recaptchaSiteKey?: string;
recaptchaSecretKey?: string;
/**
* Drive capacity of a local user (MB)
*/
localDriveCapacityMb?: number;
/**
* Drive capacity of a remote user (MB)
*/
remoteDriveCapacityMb?: number;
/**
* Max allowed note text length in charactors
*/
maxNoteTextLength?: number;
2017-11-15 00:47:47 +00:00
};