2018-11-02 05:16:03 +02:00
|
|
|
import $ from 'cafy';
|
2017-06-09 21:19:44 +03:00
|
|
|
import * as os from 'os';
|
2018-04-02 07:15:53 +03:00
|
|
|
import config from '../../../config';
|
2018-11-02 16:23:01 +02:00
|
|
|
import Emoji from '../../../models/emoji';
|
2018-11-02 06:47:44 +02:00
|
|
|
import define from '../define';
|
2018-11-06 00:14:43 +02:00
|
|
|
import fetchMeta from '../../../misc/fetch-meta';
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2018-04-22 15:32:09 +03:00
|
|
|
const pkg = require('../../../../package.json');
|
|
|
|
const client = require('../../../../built/client/meta.json');
|
|
|
|
|
2018-10-08 19:01:48 +03:00
|
|
|
export const meta = {
|
2018-10-21 23:16:27 +03:00
|
|
|
stability: 'stable',
|
|
|
|
|
2018-10-08 19:01:48 +03:00
|
|
|
desc: {
|
|
|
|
'ja-JP': 'インスタンス情報を取得します。',
|
|
|
|
'en-US': 'Get the information of this instance.'
|
|
|
|
},
|
|
|
|
|
|
|
|
requireCredential: false,
|
|
|
|
|
2018-11-02 05:16:03 +02:00
|
|
|
params: {
|
|
|
|
detail: {
|
|
|
|
validator: $.bool.optional,
|
|
|
|
default: true
|
|
|
|
}
|
|
|
|
},
|
2018-10-08 19:01:48 +03:00
|
|
|
};
|
|
|
|
|
2018-11-02 06:47:44 +02:00
|
|
|
export default define(meta, (ps, me) => new Promise(async (res, rej) => {
|
2018-11-06 00:14:43 +02:00
|
|
|
const instance = await fetchMeta();
|
2017-11-15 02:47:47 +02:00
|
|
|
|
2018-11-02 16:27:47 +02:00
|
|
|
const emojis = await Emoji.find({ host: null }, {
|
|
|
|
fields: {
|
|
|
|
_id: false
|
|
|
|
}
|
|
|
|
});
|
2018-11-02 16:23:01 +02:00
|
|
|
|
2018-11-06 17:08:21 +02:00
|
|
|
const response: any = {
|
2018-11-06 18:12:26 +02:00
|
|
|
maintainer: instance.maintainer,
|
2018-04-22 15:32:09 +03:00
|
|
|
|
|
|
|
version: pkg.version,
|
|
|
|
clientVersion: client.version,
|
|
|
|
|
2018-11-06 00:14:43 +02:00
|
|
|
name: instance.name,
|
|
|
|
description: instance.description,
|
2018-11-07 05:28:53 +02:00
|
|
|
langs: instance.langs,
|
2018-08-19 13:15:29 +03:00
|
|
|
|
2017-11-28 07:57:02 +02:00
|
|
|
secure: config.https != null,
|
2017-06-09 23:25:57 +03:00
|
|
|
machine: os.hostname(),
|
2017-06-11 20:05:23 +03:00
|
|
|
os: os.platform(),
|
|
|
|
node: process.version,
|
2018-10-08 19:01:48 +03:00
|
|
|
|
2017-06-09 21:19:44 +03:00
|
|
|
cpu: {
|
2017-06-11 20:05:23 +03:00
|
|
|
model: os.cpus()[0].model,
|
2017-06-09 21:19:44 +03:00
|
|
|
cores: os.cpus().length
|
2017-11-15 02:47:47 +02:00
|
|
|
},
|
2018-10-08 19:01:48 +03:00
|
|
|
|
2018-11-06 00:14:43 +02:00
|
|
|
broadcasts: instance.broadcasts || [],
|
|
|
|
disableRegistration: instance.disableRegistration,
|
|
|
|
disableLocalTimeline: instance.disableLocalTimeline,
|
|
|
|
driveCapacityPerLocalUserMb: instance.localDriveCapacityMb,
|
|
|
|
driveCapacityPerRemoteUserMb: instance.remoteDriveCapacityMb,
|
2018-11-06 00:52:13 +02:00
|
|
|
cacheRemoteFiles: instance.cacheRemoteFiles,
|
2018-11-07 05:09:24 +02:00
|
|
|
enableRecaptcha: instance.enableRecaptcha,
|
|
|
|
recaptchaSiteKey: instance.recaptchaSiteKey,
|
2018-09-07 13:20:50 +03:00
|
|
|
swPublickey: config.sw ? config.sw.public_key : null,
|
2018-11-06 00:14:43 +02:00
|
|
|
bannerUrl: instance.bannerUrl,
|
|
|
|
maxNoteTextLength: instance.maxNoteTextLength,
|
2018-10-08 19:01:48 +03:00
|
|
|
|
2018-11-02 16:23:01 +02:00
|
|
|
emojis: emojis,
|
2018-11-06 17:08:21 +02:00
|
|
|
};
|
2018-11-02 16:23:01 +02:00
|
|
|
|
2018-11-06 17:08:21 +02:00
|
|
|
if (ps.detail) {
|
|
|
|
response.features = {
|
2018-11-06 00:14:43 +02:00
|
|
|
registration: !instance.disableRegistration,
|
|
|
|
localTimeLine: !instance.disableLocalTimeline,
|
2018-10-03 06:39:03 +03:00
|
|
|
elasticsearch: config.elasticsearch ? true : false,
|
2018-11-06 17:08:21 +02:00
|
|
|
recaptcha: instance.enableRecaptcha,
|
2018-10-03 06:39:03 +03:00
|
|
|
objectStorage: config.drive && config.drive.storage === 'minio',
|
2018-11-07 06:14:52 +02:00
|
|
|
twitter: instance.enableTwitterIntegration,
|
|
|
|
github: instance.enableGithubIntegration,
|
2018-10-14 10:54:09 +03:00
|
|
|
serviceWorker: config.sw ? true : false,
|
|
|
|
userRecommendation: config.user_recommendation ? config.user_recommendation : {}
|
2018-11-06 17:08:21 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-11-14 21:15:42 +02:00
|
|
|
if (me && (me.isAdmin || me.isModerator)) {
|
2018-11-06 17:08:21 +02:00
|
|
|
response.hidedTags = instance.hidedTags;
|
|
|
|
response.recaptchaSecretKey = instance.recaptchaSecretKey;
|
2018-11-06 17:44:56 +02:00
|
|
|
response.proxyAccount = instance.proxyAccount;
|
2018-11-07 18:42:02 +02:00
|
|
|
response.enableTwitterIntegration = instance.enableTwitterIntegration;
|
|
|
|
response.twitterConsumerKey = instance.twitterConsumerKey;
|
|
|
|
response.twitterConsumerSecret = instance.twitterConsumerSecret;
|
|
|
|
response.enableGithubIntegration = instance.enableGithubIntegration;
|
|
|
|
response.githubClientId = instance.githubClientId;
|
|
|
|
response.githubClientSecret = instance.githubClientSecret;
|
2018-11-06 17:08:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
res(response);
|
2018-11-02 06:47:44 +02:00
|
|
|
}));
|