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