2022-02-27 04:07:39 +02:00
|
|
|
import config from '@/config/index.js';
|
|
|
|
import define from '../define.js';
|
|
|
|
import { fetchMeta } from '@/misc/fetch-meta.js';
|
|
|
|
import { Ads, Emojis, Users } from '@/models/index.js';
|
|
|
|
import { DB_MAX_NOTE_TEXT_LENGTH } from '@/misc/hard-limits.js';
|
2022-03-26 08:34:00 +02:00
|
|
|
import { IsNull, MoreThan } from 'typeorm';
|
2022-02-27 04:07:39 +02:00
|
|
|
import { MAX_NOTE_TEXT_LENGTH } from '@/const.js';
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2018-10-08 19:01:48 +03:00
|
|
|
export const meta = {
|
2019-02-23 04:20:58 +02:00
|
|
|
tags: ['meta'],
|
|
|
|
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: false,
|
2018-10-08 19:01:48 +03:00
|
|
|
|
2019-02-24 20:21:54 +02:00
|
|
|
res: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2019-02-24 20:21:54 +02:00
|
|
|
properties: {
|
2021-03-06 15:34:11 +02:00
|
|
|
maintainerName: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
maintainerEmail: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
2019-02-24 20:21:54 +02:00
|
|
|
version: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 16:58:30 +02:00
|
|
|
example: config.version,
|
2019-02-24 20:21:54 +02:00
|
|
|
},
|
|
|
|
name: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2019-02-24 20:21:54 +02:00
|
|
|
},
|
2021-03-06 15:34:11 +02:00
|
|
|
uri: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
format: 'url',
|
2021-12-09 16:58:30 +02:00
|
|
|
example: 'https://misskey.example.com',
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
description: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
2019-02-24 20:21:54 +02:00
|
|
|
},
|
2021-03-06 15:34:11 +02:00
|
|
|
langs: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
items: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
tosUrl: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
repositoryUrl: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 16:58:30 +02:00
|
|
|
default: 'https://github.com/misskey-dev/misskey',
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
feedbackUrl: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 16:58:30 +02:00
|
|
|
default: 'https://github.com/misskey-dev/misskey/issues/new',
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
2022-03-01 16:58:01 +02:00
|
|
|
defaultDarkTheme: {
|
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
|
|
|
},
|
|
|
|
defaultLightTheme: {
|
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
|
|
|
},
|
2021-03-06 15:34:11 +02:00
|
|
|
disableRegistration: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
disableLocalTimeline: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
disableGlobalTimeline: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
driveCapacityPerLocalUserMb: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'number',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
driveCapacityPerRemoteUserMb: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'number',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
cacheRemoteFiles: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
2021-10-08 07:37:02 +03:00
|
|
|
emailRequiredForSignup: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-10-08 07:37:02 +03:00
|
|
|
},
|
2021-03-06 15:34:11 +02:00
|
|
|
enableHcaptcha: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
hcaptchaSiteKey: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
enableRecaptcha: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
recaptchaSiteKey: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
swPublickey: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
mascotImageUrl: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 16:58:30 +02:00
|
|
|
default: '/assets/ai.png',
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
bannerUrl: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
errorImageUrl: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 16:58:30 +02:00
|
|
|
default: 'https://xn--931a.moe/aiart/yubitun.png',
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
iconUrl: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
2022-02-20 12:01:06 +02:00
|
|
|
maxNoteTextLength: {
|
|
|
|
type: 'number',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
2021-03-06 15:34:11 +02:00
|
|
|
emojis: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2019-02-24 20:21:54 +02:00
|
|
|
items: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2019-02-24 20:21:54 +02:00
|
|
|
properties: {
|
2021-03-06 15:34:11 +02:00
|
|
|
id: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 16:58:30 +02:00
|
|
|
format: 'id',
|
2019-02-24 20:21:54 +02:00
|
|
|
},
|
2021-03-06 15:34:11 +02:00
|
|
|
aliases: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
items: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2019-02-24 20:21:54 +02:00
|
|
|
},
|
2021-03-06 15:34:11 +02:00
|
|
|
category: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
host: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
url: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 16:58:30 +02:00
|
|
|
format: 'url',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2019-02-24 20:21:54 +02:00
|
|
|
},
|
2021-05-04 15:15:57 +03:00
|
|
|
ads: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2021-05-04 15:15:57 +03:00
|
|
|
items: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-05-04 15:15:57 +03:00
|
|
|
properties: {
|
|
|
|
place: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-05-04 15:15:57 +03:00
|
|
|
},
|
|
|
|
url: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 16:58:30 +02:00
|
|
|
format: 'url',
|
2021-05-04 15:15:57 +03:00
|
|
|
},
|
|
|
|
imageUrl: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 16:58:30 +02:00
|
|
|
format: 'url',
|
2021-05-04 15:15:57 +03:00
|
|
|
},
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
|
|
|
},
|
2021-05-04 15:15:57 +03:00
|
|
|
},
|
2021-03-06 15:34:11 +02:00
|
|
|
requireSetup: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 16:58:30 +02:00
|
|
|
example: false,
|
2019-02-24 20:21:54 +02:00
|
|
|
},
|
2021-03-06 15:34:11 +02:00
|
|
|
enableEmail: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2019-02-24 20:21:54 +02:00
|
|
|
},
|
2021-03-06 15:34:11 +02:00
|
|
|
enableTwitterIntegration: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
enableGithubIntegration: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
enableDiscordIntegration: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
enableServiceWorker: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
2021-08-15 14:26:44 +03:00
|
|
|
translatorAvailable: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-08-15 14:26:44 +03:00
|
|
|
},
|
2021-03-06 15:34:11 +02:00
|
|
|
proxyAccountName: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
features: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'object',
|
|
|
|
optional: true, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
properties: {
|
|
|
|
registration: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
localTimeLine: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
globalTimeLine: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
elasticsearch: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
hcaptcha: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
recaptcha: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
objectStorage: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
twitter: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
github: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
discord: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
serviceWorker: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
miauth: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: true, nullable: false,
|
2021-12-09 16:58:30 +02:00
|
|
|
default: true,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
|
|
|
},
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2018-10-08 19:01:48 +03:00
|
|
|
|
2022-02-20 06:15:40 +02:00
|
|
|
export const paramDef = {
|
2022-02-19 07:05:32 +02:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
detail: { type: 'boolean', default: true },
|
|
|
|
},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 07:05:32 +02:00
|
|
|
export default define(meta, paramDef, 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-10-20 18:43:39 +03:00
|
|
|
const emojis = await Emojis.find({
|
|
|
|
where: {
|
2022-03-26 08:34:00 +02:00
|
|
|
host: IsNull(),
|
2019-10-20 18:43:39 +03:00
|
|
|
},
|
|
|
|
order: {
|
|
|
|
category: 'ASC',
|
2021-12-09 16:58:30 +02:00
|
|
|
name: 'ASC',
|
2019-10-20 18:43:39 +03:00
|
|
|
},
|
|
|
|
cache: {
|
|
|
|
id: 'meta_emojis',
|
2021-12-09 16:58:30 +02:00
|
|
|
milliseconds: 3600000, // 1 hour
|
|
|
|
},
|
2019-10-20 18:43:39 +03:00
|
|
|
});
|
2018-11-02 16:23:01 +02:00
|
|
|
|
2021-05-04 15:15:57 +03:00
|
|
|
const ads = await Ads.find({
|
|
|
|
where: {
|
2021-12-09 16:58:30 +02:00
|
|
|
expiresAt: MoreThan(new Date()),
|
2021-05-04 15:15:57 +03: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
|
|
|
|
2019-11-01 15:34:26 +02:00
|
|
|
version: config.version,
|
2018-04-22 15:32:09 +03:00
|
|
|
|
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,
|
2020-01-29 21:37:25 +02:00
|
|
|
tosUrl: instance.ToSUrl,
|
2019-05-13 20:57:04 +03:00
|
|
|
repositoryUrl: instance.repositoryUrl,
|
|
|
|
feedbackUrl: instance.feedbackUrl,
|
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,
|
2018-11-06 00:14:43 +02:00
|
|
|
driveCapacityPerLocalUserMb: instance.localDriveCapacityMb,
|
|
|
|
driveCapacityPerRemoteUserMb: instance.remoteDriveCapacityMb,
|
2021-10-08 07:37:02 +03:00
|
|
|
emailRequiredForSignup: instance.emailRequiredForSignup,
|
2020-04-28 08:29:33 +03:00
|
|
|
enableHcaptcha: instance.enableHcaptcha,
|
|
|
|
hcaptchaSiteKey: instance.hcaptchaSiteKey,
|
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,
|
2022-02-09 14:25:48 +02:00
|
|
|
themeColor: instance.themeColor,
|
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,
|
2020-11-25 14:31:34 +02:00
|
|
|
backgroundImageUrl: instance.backgroundImageUrl,
|
|
|
|
logoImageUrl: instance.logoImageUrl,
|
2022-02-20 12:01:06 +02:00
|
|
|
maxNoteTextLength: MAX_NOTE_TEXT_LENGTH, // 後方互換性のため
|
2020-03-31 03:15:04 +03:00
|
|
|
emojis: await Emojis.packMany(emojis),
|
2022-03-01 16:58:01 +02:00
|
|
|
defaultLightTheme: instance.defaultLightTheme,
|
|
|
|
defaultDarkTheme: instance.defaultDarkTheme,
|
2021-05-04 15:15:57 +03:00
|
|
|
ads: ads.map(ad => ({
|
2021-05-08 06:50:11 +03:00
|
|
|
id: ad.id,
|
2021-05-04 15:15:57 +03:00
|
|
|
url: ad.url,
|
|
|
|
place: ad.place,
|
2021-05-07 08:22:13 +03:00
|
|
|
ratio: ad.ratio,
|
2021-05-04 15:15:57 +03:00
|
|
|
imageUrl: ad.imageUrl,
|
|
|
|
})),
|
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,
|
2020-08-29 02:56:32 +03:00
|
|
|
|
2021-08-15 14:26:44 +03:00
|
|
|
translatorAvailable: instance.deeplAuthKey != null,
|
|
|
|
|
2020-11-17 07:59:15 +02:00
|
|
|
...(ps.detail ? {
|
2020-12-06 15:47:51 +02:00
|
|
|
pinnedPages: instance.pinnedPages,
|
2020-12-05 09:05:40 +02:00
|
|
|
pinnedClipId: instance.pinnedClipId,
|
2020-11-17 07:59:15 +02:00
|
|
|
cacheRemoteFiles: instance.cacheRemoteFiles,
|
2022-03-26 08:34:00 +02:00
|
|
|
requireSetup: (await Users.countBy({
|
|
|
|
host: IsNull(),
|
2020-11-17 07:59:15 +02:00
|
|
|
})) === 0,
|
2021-12-09 16:58:30 +02:00
|
|
|
} : {}),
|
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) {
|
2020-11-17 07:59:15 +02:00
|
|
|
const proxyAccount = instance.proxyAccountId ? await Users.pack(instance.proxyAccountId).catch(() => null) : null;
|
|
|
|
|
|
|
|
response.proxyAccountName = proxyAccount ? proxyAccount.username : null;
|
2018-11-06 17:08:21 +02:00
|
|
|
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,
|
2021-10-08 07:37:02 +03:00
|
|
|
emailRequiredForSignup: instance.emailRequiredForSignup,
|
2019-02-07 14:02:33 +02:00
|
|
|
elasticsearch: config.elasticsearch ? true : false,
|
2020-04-28 08:29:33 +03:00
|
|
|
hcaptcha: instance.enableHcaptcha,
|
2018-11-06 17:08:21 +02:00
|
|
|
recaptcha: instance.enableRecaptcha,
|
2019-05-15 19:07:32 +03:00
|
|
|
objectStorage: instance.useObjectStorage,
|
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,
|
2020-03-29 11:44:14 +03:00
|
|
|
miauth: true,
|
2018-11-06 17:08:21 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-02-22 04:46:58 +02:00
|
|
|
return response;
|
|
|
|
});
|