2018-11-01 22:16:03 -05:00
|
|
|
import $ from 'cafy';
|
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-11-01 23:47:44 -05:00
|
|
|
import define from '../define';
|
2019-04-23 18:11:19 -05:00
|
|
|
import { fetchMeta } from '../../../misc/fetch-meta';
|
2019-01-30 10:08:43 -06:00
|
|
|
import * as pkg from '../../../../package.json';
|
2019-04-07 07:50:36 -05:00
|
|
|
import { Emojis } from '../../../models';
|
2019-04-23 08:35:26 -05:00
|
|
|
import { types, bool } from '../../../misc/schema';
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2018-10-08 11:01:48 -05:00
|
|
|
export const meta = {
|
2018-10-21 15:16:27 -05:00
|
|
|
stability: 'stable',
|
|
|
|
|
2018-10-08 11:01:48 -05:00
|
|
|
desc: {
|
|
|
|
'ja-JP': 'インスタンス情報を取得します。',
|
|
|
|
'en-US': 'Get the information of this instance.'
|
|
|
|
},
|
|
|
|
|
2019-02-22 20:20:58 -06:00
|
|
|
tags: ['meta'],
|
|
|
|
|
2018-10-08 11:01:48 -05:00
|
|
|
requireCredential: false,
|
|
|
|
|
2018-11-01 22:16:03 -05:00
|
|
|
params: {
|
|
|
|
detail: {
|
2019-02-13 01:33:07 -06:00
|
|
|
validator: $.optional.bool,
|
2018-11-01 22:16:03 -05:00
|
|
|
default: true
|
|
|
|
}
|
|
|
|
},
|
2019-02-24 12:21:54 -06:00
|
|
|
|
|
|
|
res: {
|
2019-04-23 08:35:26 -05:00
|
|
|
type: types.object,
|
|
|
|
optional: bool.false, nullable: bool.false,
|
2019-02-24 12:21:54 -06:00
|
|
|
properties: {
|
|
|
|
version: {
|
2019-04-23 08:35:26 -05:00
|
|
|
type: types.string,
|
|
|
|
optional: bool.false, nullable: bool.false,
|
2019-02-24 12:21:54 -06:00
|
|
|
description: 'The version of Misskey of this instance.',
|
|
|
|
example: pkg.version
|
|
|
|
},
|
|
|
|
name: {
|
2019-04-23 08:35:26 -05:00
|
|
|
type: types.string,
|
|
|
|
optional: bool.false, nullable: bool.false,
|
2019-02-24 12:21:54 -06:00
|
|
|
description: 'The name of this instance.',
|
|
|
|
},
|
|
|
|
description: {
|
2019-04-23 08:35:26 -05:00
|
|
|
type: types.string,
|
|
|
|
optional: bool.false, nullable: bool.false,
|
2019-02-24 12:21:54 -06:00
|
|
|
description: 'The description of this instance.',
|
|
|
|
},
|
|
|
|
announcements: {
|
2019-04-23 08:35:26 -05:00
|
|
|
type: types.array,
|
|
|
|
optional: bool.false, nullable: bool.false,
|
2019-02-24 12:21:54 -06:00
|
|
|
items: {
|
2019-04-23 08:35:26 -05:00
|
|
|
type: types.object,
|
|
|
|
optional: bool.false, nullable: bool.false,
|
2019-02-24 12:21:54 -06:00
|
|
|
properties: {
|
|
|
|
title: {
|
2019-04-23 08:35:26 -05:00
|
|
|
type: types.string,
|
|
|
|
optional: bool.false, nullable: bool.false,
|
2019-02-24 12:21:54 -06:00
|
|
|
description: 'The title of the announcement.',
|
|
|
|
},
|
|
|
|
text: {
|
2019-04-23 08:35:26 -05:00
|
|
|
type: types.string,
|
|
|
|
optional: bool.false, nullable: bool.false,
|
2019-02-24 12:21:54 -06:00
|
|
|
description: 'The text of the announcement. (can be HTML)',
|
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
2019-02-24 12:23:19 -06:00
|
|
|
description: 'The announcements of this instance.',
|
2019-02-24 12:21:54 -06:00
|
|
|
},
|
|
|
|
disableRegistration: {
|
2019-04-23 08:35:26 -05:00
|
|
|
type: types.boolean,
|
|
|
|
optional: bool.false, nullable: bool.false,
|
2019-02-24 12:21:54 -06:00
|
|
|
description: 'Whether disabled open registration.',
|
|
|
|
},
|
|
|
|
disableLocalTimeline: {
|
2019-04-23 08:35:26 -05:00
|
|
|
type: types.boolean,
|
|
|
|
optional: bool.false, nullable: bool.false,
|
2019-02-24 12:21:54 -06:00
|
|
|
description: 'Whether disabled LTL and STL.',
|
|
|
|
},
|
|
|
|
disableGlobalTimeline: {
|
2019-04-23 08:35:26 -05:00
|
|
|
type: types.boolean,
|
|
|
|
optional: bool.false, nullable: bool.false,
|
2019-02-24 12:21:54 -06:00
|
|
|
description: 'Whether disabled GTL.',
|
|
|
|
},
|
2019-03-17 10:03:57 -05:00
|
|
|
enableEmojiReaction: {
|
2019-04-23 08:35:26 -05:00
|
|
|
type: types.boolean,
|
|
|
|
optional: bool.false, nullable: bool.false,
|
2019-03-17 10:03:57 -05:00
|
|
|
description: 'Whether enabled emoji reaction.',
|
|
|
|
},
|
2019-02-24 12:21:54 -06:00
|
|
|
}
|
|
|
|
}
|
2018-10-08 11:01:48 -05:00
|
|
|
};
|
|
|
|
|
2019-02-21 20:46:58 -06:00
|
|
|
export default define(meta, async (ps, me) => {
|
2019-04-23 18:11:19 -05:00
|
|
|
const instance = await fetchMeta(true);
|
2017-11-14 18:47:47 -06:00
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
const emojis = await Emojis.find({ host: null });
|
2018-11-02 09:23:01 -05:00
|
|
|
|
2018-11-06 09:08:21 -06:00
|
|
|
const response: any = {
|
2019-04-07 07:50:36 -05:00
|
|
|
maintainerName: instance.maintainerName,
|
|
|
|
maintainerEmail: instance.maintainerEmail,
|
2018-04-22 07:32:09 -05:00
|
|
|
|
|
|
|
version: pkg.version,
|
|
|
|
|
2018-11-05 16:14:43 -06:00
|
|
|
name: instance.name,
|
2018-12-26 13:50:35 -06:00
|
|
|
uri: config.url,
|
2018-11-05 16:14:43 -06:00
|
|
|
description: instance.description,
|
2018-11-06 21:28:53 -06:00
|
|
|
langs: instance.langs,
|
2019-05-13 12:57:04 -05:00
|
|
|
ToSUrl: instance.ToSUrl,
|
|
|
|
repositoryUrl: instance.repositoryUrl,
|
|
|
|
feedbackUrl: instance.feedbackUrl,
|
2018-08-19 05:15:29 -05:00
|
|
|
|
2019-02-07 06:02:33 -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
|
|
|
|
2019-02-24 12:21:54 -06:00
|
|
|
announcements: instance.announcements || [],
|
2018-11-05 16:14:43 -06:00
|
|
|
disableRegistration: instance.disableRegistration,
|
|
|
|
disableLocalTimeline: instance.disableLocalTimeline,
|
2019-01-15 23:54:14 -06:00
|
|
|
disableGlobalTimeline: instance.disableGlobalTimeline,
|
2019-03-17 10:03:57 -05:00
|
|
|
enableEmojiReaction: instance.enableEmojiReaction,
|
2018-11-05 16:14:43 -06:00
|
|
|
driveCapacityPerLocalUserMb: instance.localDriveCapacityMb,
|
|
|
|
driveCapacityPerRemoteUserMb: instance.remoteDriveCapacityMb,
|
2018-11-05 16:52:13 -06:00
|
|
|
cacheRemoteFiles: instance.cacheRemoteFiles,
|
2018-11-06 21:09:24 -06:00
|
|
|
enableRecaptcha: instance.enableRecaptcha,
|
|
|
|
recaptchaSiteKey: instance.recaptchaSiteKey,
|
2018-12-19 13:08:13 -06:00
|
|
|
swPublickey: instance.swPublicKey,
|
2019-01-03 12:52:50 -06:00
|
|
|
mascotImageUrl: instance.mascotImageUrl,
|
2018-11-05 16:14:43 -06:00
|
|
|
bannerUrl: instance.bannerUrl,
|
2018-12-11 06:17:57 -06:00
|
|
|
errorImageUrl: instance.errorImageUrl,
|
2019-03-14 22:40:10 -05:00
|
|
|
iconUrl: instance.iconUrl,
|
2018-11-05 16:14:43 -06:00
|
|
|
maxNoteTextLength: instance.maxNoteTextLength,
|
2018-11-02 09:23:01 -05:00
|
|
|
emojis: emojis,
|
2018-11-29 05:33:31 -06:00
|
|
|
enableEmail: instance.enableEmail,
|
2018-11-16 11:13:01 -06:00
|
|
|
|
|
|
|
enableTwitterIntegration: instance.enableTwitterIntegration,
|
|
|
|
enableGithubIntegration: instance.enableGithubIntegration,
|
|
|
|
enableDiscordIntegration: instance.enableDiscordIntegration,
|
2019-03-31 11:04:55 -05:00
|
|
|
|
|
|
|
enableServiceWorker: instance.enableServiceWorker,
|
2018-11-06 09:08:21 -06:00
|
|
|
};
|
2018-11-02 09:23:01 -05:00
|
|
|
|
2018-11-06 09:08:21 -06:00
|
|
|
if (ps.detail) {
|
|
|
|
response.features = {
|
2018-11-05 16:14:43 -06:00
|
|
|
registration: !instance.disableRegistration,
|
|
|
|
localTimeLine: !instance.disableLocalTimeline,
|
2019-01-15 23:54:14 -06:00
|
|
|
globalTimeLine: !instance.disableGlobalTimeline,
|
2019-02-07 06:02:33 -06:00
|
|
|
elasticsearch: config.elasticsearch ? true : false,
|
2018-11-06 09:08:21 -06:00
|
|
|
recaptcha: instance.enableRecaptcha,
|
2019-02-07 06:02:33 -06:00
|
|
|
objectStorage: config.drive && config.drive.storage === 'minio',
|
2018-11-06 22:14:52 -06:00
|
|
|
twitter: instance.enableTwitterIntegration,
|
|
|
|
github: instance.enableGithubIntegration,
|
2018-11-15 04:15:04 -06:00
|
|
|
discord: instance.enableDiscordIntegration,
|
2018-12-19 13:08:13 -06:00
|
|
|
serviceWorker: instance.enableServiceWorker,
|
2018-11-06 09:08:21 -06:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-11-14 13:15:42 -06:00
|
|
|
if (me && (me.isAdmin || me.isModerator)) {
|
2019-03-17 11:03:35 -05:00
|
|
|
response.useStarForReactionFallback = instance.useStarForReactionFallback;
|
2019-05-10 03:30:28 -05:00
|
|
|
response.pinnedUsers = instance.pinnedUsers;
|
2019-04-07 07:50:36 -05:00
|
|
|
response.hiddenTags = instance.hiddenTags;
|
2019-05-14 06:49:09 -05:00
|
|
|
response.blockedHosts = instance.blockedHosts;
|
2018-11-06 09:08:21 -06:00
|
|
|
response.recaptchaSecretKey = instance.recaptchaSecretKey;
|
2018-11-06 09:44:56 -06:00
|
|
|
response.proxyAccount = instance.proxyAccount;
|
2018-11-07 10:42:02 -06:00
|
|
|
response.twitterConsumerKey = instance.twitterConsumerKey;
|
|
|
|
response.twitterConsumerSecret = instance.twitterConsumerSecret;
|
|
|
|
response.githubClientId = instance.githubClientId;
|
|
|
|
response.githubClientSecret = instance.githubClientSecret;
|
2018-11-15 04:15:04 -06:00
|
|
|
response.discordClientId = instance.discordClientId;
|
|
|
|
response.discordClientSecret = instance.discordClientSecret;
|
2018-11-22 17:13:17 -06:00
|
|
|
response.summalyProxy = instance.summalyProxy;
|
2018-11-29 01:23:45 -06:00
|
|
|
response.email = instance.email;
|
|
|
|
response.smtpSecure = instance.smtpSecure;
|
|
|
|
response.smtpHost = instance.smtpHost;
|
|
|
|
response.smtpPort = instance.smtpPort;
|
|
|
|
response.smtpUser = instance.smtpUser;
|
|
|
|
response.smtpPass = instance.smtpPass;
|
2018-12-19 13:08:13 -06:00
|
|
|
response.swPrivateKey = instance.swPrivateKey;
|
2018-11-06 09:08:21 -06:00
|
|
|
}
|
|
|
|
|
2019-02-21 20:46:58 -06:00
|
|
|
return response;
|
|
|
|
});
|