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