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