misskey/src/server/api/endpoints/meta.ts

62 lines
1.7 KiB
TypeScript
Raw Normal View History

2017-06-09 18:19:44 +00:00
import * as os from 'os';
2018-04-02 04:15:53 +00:00
import config from '../../../config';
2018-03-29 11:32:18 +00:00
import Meta from '../../../models/meta';
import { ILocalUser } from '../../../models/user';
2016-12-28 22:49:51 +00:00
const pkg = require('../../../../package.json');
const client = require('../../../../built/client/meta.json');
2018-10-08 16:01:48 +00:00
export const meta = {
desc: {
'ja-JP': 'インスタンス情報を取得します。',
'en-US': 'Get the information of this instance.'
},
requireCredential: false,
params: {},
};
export default (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
2018-03-29 11:32:18 +00:00
const meta: any = (await Meta.findOne()) || {};
2017-11-15 00:47:47 +00:00
2017-03-03 19:28:38 +00:00
res({
maintainer: config.maintainer,
version: pkg.version,
clientVersion: client.version,
2018-08-19 10:15:29 +00:00
name: config.name || 'Misskey',
description: config.description,
2017-11-28 05:57:02 +00:00
secure: config.https != null,
2017-06-09 20:25:57 +00:00
machine: os.hostname(),
2017-06-11 17:05:23 +00:00
os: os.platform(),
node: process.version,
2018-10-08 16:01:48 +00:00
2017-06-09 18:19:44 +00:00
cpu: {
2017-06-11 17:05:23 +00:00
model: os.cpus()[0].model,
2017-06-09 18:19:44 +00:00
cores: os.cpus().length
2017-11-15 00:47:47 +00:00
},
2018-10-08 16:01:48 +00:00
broadcasts: meta.broadcasts || [],
2018-08-19 10:15:29 +00:00
disableRegistration: meta.disableRegistration,
2018-09-11 17:48:19 +00:00
disableLocalTimeline: meta.disableLocalTimeline,
2018-09-04 04:03:16 +00:00
driveCapacityPerLocalUserMb: config.localDriveCapacityMb,
2018-08-19 12:07:18 +00:00
recaptchaSitekey: config.recaptcha ? config.recaptcha.site_key : null,
swPublickey: config.sw ? config.sw.public_key : null,
2018-09-20 08:21:16 +00:00
hidedTags: (me && me.isAdmin) ? meta.hidedTags : undefined,
2018-10-03 03:39:03 +00:00
bannerUrl: meta.bannerUrl,
2018-10-08 16:01:48 +00:00
2018-10-03 03:39:03 +00:00
features: {
registration: !meta.disableRegistration,
localTimeLine: !meta.disableLocalTimeline,
elasticsearch: config.elasticsearch ? true : false,
recaptcha: config.recaptcha ? true : false,
objectStorage: config.drive && config.drive.storage === 'minio',
twitter: config.twitter ? true : false,
serviceWorker: config.sw ? true : false
}
2016-12-28 22:49:51 +00:00
});
2017-03-03 19:28:38 +00:00
});