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