2023-07-27 05:31:52 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-07-07 23:56:11 +00:00
|
|
|
import { IsNull, LessThanOrEqual, MoreThan, Brackets } from 'typeorm';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2023-06-05 12:44:28 +00:00
|
|
|
import JSON5 from 'json5';
|
2023-09-15 05:28:29 +00:00
|
|
|
import type { AdsRepository, UsersRepository } from '@/models/_.js';
|
2023-02-16 14:09:41 +00:00
|
|
|
import { MAX_NOTE_TEXT_LENGTH } from '@/const.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { UserEntityService } from '@/core/entities/UserEntityService.js';
|
|
|
|
import { MetaService } from '@/core/MetaService.js';
|
2022-09-20 20:33:11 +00:00
|
|
|
import type { Config } from '@/config.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { DI } from '@/di-symbols.js';
|
2023-01-15 11:52:53 +00:00
|
|
|
import { DEFAULT_POLICIES } from '@/core/RoleService.js';
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2018-10-08 16:01:48 +00:00
|
|
|
export const meta = {
|
2019-02-23 02:20:58 +00:00
|
|
|
tags: ['meta'],
|
|
|
|
|
2022-01-18 13:27:10 +00:00
|
|
|
requireCredential: false,
|
2018-10-08 16:01:48 +00:00
|
|
|
|
2019-02-24 18:21:54 +00:00
|
|
|
res: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2019-02-24 18:21:54 +00:00
|
|
|
properties: {
|
2021-03-06 13:34:11 +00:00
|
|
|
maintainerName: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
|
|
|
maintainerEmail: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
2019-02-24 18:21:54 +00:00
|
|
|
version: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2019-02-24 18:21:54 +00:00
|
|
|
},
|
|
|
|
name: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2019-02-24 18:21:54 +00:00
|
|
|
},
|
2023-09-23 05:26:06 +00:00
|
|
|
shortName: {
|
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
uri: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 13:34:11 +00:00
|
|
|
format: 'url',
|
2021-12-09 14:58:30 +00:00
|
|
|
example: 'https://misskey.example.com',
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
|
|
|
description: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
2019-02-24 18:21:54 +00:00
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
langs: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 13:34:11 +00:00
|
|
|
items: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 14:58:30 +00:00
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
|
|
|
tosUrl: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
|
|
|
repositoryUrl: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 14:58:30 +00:00
|
|
|
default: 'https://github.com/misskey-dev/misskey',
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
|
|
|
feedbackUrl: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 14:58:30 +00:00
|
|
|
default: 'https://github.com/misskey-dev/misskey/issues/new',
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
2022-03-01 14:58:01 +00:00
|
|
|
defaultDarkTheme: {
|
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
|
|
|
},
|
|
|
|
defaultLightTheme: {
|
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
disableRegistration: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
|
|
|
cacheRemoteFiles: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
2023-07-15 11:12:20 +00:00
|
|
|
cacheRemoteSensitiveFiles: {
|
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
2021-10-08 04:37:02 +00:00
|
|
|
emailRequiredForSignup: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-10-08 04:37:02 +00:00
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
enableHcaptcha: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
|
|
|
hcaptchaSiteKey: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
|
|
|
enableRecaptcha: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
|
|
|
recaptchaSiteKey: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
2022-10-13 00:19:57 +00:00
|
|
|
enableTurnstile: {
|
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
|
|
|
turnstileSiteKey: {
|
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
swPublickey: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
|
|
|
mascotImageUrl: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 14:58:30 +00:00
|
|
|
default: '/assets/ai.png',
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
|
|
|
bannerUrl: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
2023-06-09 05:00:53 +00:00
|
|
|
serverErrorImageUrl: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'string',
|
2023-06-09 05:00:53 +00:00
|
|
|
optional: false, nullable: true,
|
|
|
|
},
|
|
|
|
infoImageUrl: {
|
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
|
|
|
},
|
|
|
|
notFoundImageUrl: {
|
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
|
|
|
iconUrl: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
2022-02-20 10:01:06 +00:00
|
|
|
maxNoteTextLength: {
|
|
|
|
type: 'number',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
2021-05-04 12:15:57 +00:00
|
|
|
ads: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2021-05-04 12:15:57 +00:00
|
|
|
items: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-05-04 12:15:57 +00:00
|
|
|
properties: {
|
|
|
|
place: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-05-04 12:15:57 +00:00
|
|
|
},
|
|
|
|
url: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 14:58:30 +00:00
|
|
|
format: 'url',
|
2021-05-04 12:15:57 +00:00
|
|
|
},
|
|
|
|
imageUrl: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 14:58:30 +00:00
|
|
|
format: 'url',
|
2021-05-04 12:15:57 +00:00
|
|
|
},
|
2021-12-09 14:58:30 +00:00
|
|
|
},
|
|
|
|
},
|
2021-05-04 12:15:57 +00:00
|
|
|
},
|
2023-10-08 08:56:44 +00:00
|
|
|
notesPerOneAd: {
|
|
|
|
type: 'number',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
default: 0,
|
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
requireSetup: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 14:58:30 +00:00
|
|
|
example: false,
|
2019-02-24 18:21:54 +00:00
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
enableEmail: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2019-02-24 18:21:54 +00:00
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
enableServiceWorker: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
2021-08-15 11:26:44 +00:00
|
|
|
translatorAvailable: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-08-15 11:26:44 +00:00
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
proxyAccountName: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
2023-02-04 04:38:51 +00:00
|
|
|
mediaProxy: {
|
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
features: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'object',
|
|
|
|
optional: true, nullable: false,
|
2021-03-06 13:34:11 +00:00
|
|
|
properties: {
|
|
|
|
registration: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
2023-10-03 23:46:27 +00:00
|
|
|
localTimeline: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
2023-10-03 23:46:27 +00:00
|
|
|
globalTimeline: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
|
|
|
hcaptcha: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
|
|
|
recaptcha: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
|
|
|
objectStorage: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
|
|
|
serviceWorker: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
|
|
|
miauth: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'boolean',
|
|
|
|
optional: true, nullable: false,
|
2021-12-09 14:58:30 +00:00
|
|
|
default: true,
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
2021-12-09 14:58:30 +00:00
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
2023-12-02 12:00:05 +00:00
|
|
|
backgroundImageUrl: {
|
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
|
|
|
},
|
|
|
|
impressumUrl: {
|
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
|
|
|
},
|
|
|
|
logoImageUrl: {
|
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
|
|
|
},
|
|
|
|
privacyPolicyUrl: {
|
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
|
|
|
},
|
|
|
|
serverRules: {
|
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
items: {
|
|
|
|
type: 'string',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
themeColor: {
|
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
|
|
|
},
|
2021-12-09 14:58:30 +00:00
|
|
|
},
|
|
|
|
},
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2018-10-08 16:01:48 +00:00
|
|
|
|
2022-02-20 04:15:40 +00:00
|
|
|
export const paramDef = {
|
2022-02-19 05:05:32 +00:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
detail: { type: 'boolean', default: true },
|
|
|
|
},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
@Injectable()
|
2023-08-17 12:20:58 +00:00
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
2022-09-17 18:27:08 +00:00
|
|
|
constructor(
|
|
|
|
@Inject(DI.config)
|
|
|
|
private config: Config,
|
2023-07-07 22:08:16 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
@Inject(DI.usersRepository)
|
|
|
|
private usersRepository: UsersRepository,
|
2017-11-15 00:47:47 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
@Inject(DI.adsRepository)
|
|
|
|
private adsRepository: AdsRepository,
|
2018-11-02 14:23:01 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
private userEntityService: UserEntityService,
|
|
|
|
private metaService: MetaService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const instance = await this.metaService.fetch(true);
|
2018-04-22 12:32:09 +00:00
|
|
|
|
2023-07-19 02:27:50 +00:00
|
|
|
const ads = await this.adsRepository.createQueryBuilder('ads')
|
2023-07-07 23:56:11 +00:00
|
|
|
.where('ads.expiresAt > :now', { now: new Date() })
|
|
|
|
.andWhere('ads.startsAt <= :now', { now: new Date() })
|
|
|
|
.andWhere(new Brackets(qb => {
|
|
|
|
// 曜日のビットフラグを確認する
|
|
|
|
qb.where('ads.dayOfWeek & :dayOfWeek > 0', { dayOfWeek: 1 << new Date().getDay() })
|
|
|
|
.orWhere('ads.dayOfWeek = 0');
|
|
|
|
}))
|
|
|
|
.getMany();
|
2023-07-15 11:12:20 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
const response: any = {
|
|
|
|
maintainerName: instance.maintainerName,
|
|
|
|
maintainerEmail: instance.maintainerEmail,
|
2019-03-31 16:04:55 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
version: this.config.version,
|
2020-08-28 23:56:32 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
name: instance.name,
|
2023-09-23 05:26:06 +00:00
|
|
|
shortName: instance.shortName,
|
2022-09-17 18:27:08 +00:00
|
|
|
uri: this.config.url,
|
|
|
|
description: instance.description,
|
|
|
|
langs: instance.langs,
|
2023-03-10 05:53:56 +00:00
|
|
|
tosUrl: instance.termsOfServiceUrl,
|
2022-09-17 18:27:08 +00:00
|
|
|
repositoryUrl: instance.repositoryUrl,
|
|
|
|
feedbackUrl: instance.feedbackUrl,
|
2023-10-07 04:13:13 +00:00
|
|
|
impressumUrl: instance.impressumUrl,
|
|
|
|
privacyPolicyUrl: instance.privacyPolicyUrl,
|
2022-09-17 18:27:08 +00:00
|
|
|
disableRegistration: instance.disableRegistration,
|
|
|
|
emailRequiredForSignup: instance.emailRequiredForSignup,
|
|
|
|
enableHcaptcha: instance.enableHcaptcha,
|
|
|
|
hcaptchaSiteKey: instance.hcaptchaSiteKey,
|
|
|
|
enableRecaptcha: instance.enableRecaptcha,
|
|
|
|
recaptchaSiteKey: instance.recaptchaSiteKey,
|
2022-10-13 00:19:57 +00:00
|
|
|
enableTurnstile: instance.enableTurnstile,
|
|
|
|
turnstileSiteKey: instance.turnstileSiteKey,
|
2022-09-17 18:27:08 +00:00
|
|
|
swPublickey: instance.swPublicKey,
|
|
|
|
themeColor: instance.themeColor,
|
|
|
|
mascotImageUrl: instance.mascotImageUrl,
|
|
|
|
bannerUrl: instance.bannerUrl,
|
2023-06-09 05:00:53 +00:00
|
|
|
infoImageUrl: instance.infoImageUrl,
|
|
|
|
serverErrorImageUrl: instance.serverErrorImageUrl,
|
|
|
|
notFoundImageUrl: instance.notFoundImageUrl,
|
2022-09-17 18:27:08 +00:00
|
|
|
iconUrl: instance.iconUrl,
|
|
|
|
backgroundImageUrl: instance.backgroundImageUrl,
|
|
|
|
logoImageUrl: instance.logoImageUrl,
|
2023-02-17 06:36:36 +00:00
|
|
|
maxNoteTextLength: MAX_NOTE_TEXT_LENGTH,
|
2023-05-30 02:51:29 +00:00
|
|
|
// クライアントの手間を減らすためあらかじめJSONに変換しておく
|
|
|
|
defaultLightTheme: instance.defaultLightTheme ? JSON.stringify(JSON5.parse(instance.defaultLightTheme)) : null,
|
|
|
|
defaultDarkTheme: instance.defaultDarkTheme ? JSON.stringify(JSON5.parse(instance.defaultDarkTheme)) : null,
|
2022-09-17 18:27:08 +00:00
|
|
|
ads: ads.map(ad => ({
|
|
|
|
id: ad.id,
|
|
|
|
url: ad.url,
|
|
|
|
place: ad.place,
|
|
|
|
ratio: ad.ratio,
|
|
|
|
imageUrl: ad.imageUrl,
|
2023-07-07 23:56:11 +00:00
|
|
|
dayOfWeek: ad.dayOfWeek,
|
2022-09-17 18:27:08 +00:00
|
|
|
})),
|
2023-10-08 08:56:44 +00:00
|
|
|
notesPerOneAd: instance.notesPerOneAd,
|
2022-09-17 18:27:08 +00:00
|
|
|
enableEmail: instance.enableEmail,
|
|
|
|
enableServiceWorker: instance.enableServiceWorker,
|
2020-11-17 05:59:15 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
translatorAvailable: instance.deeplAuthKey != null,
|
|
|
|
|
2023-04-19 12:24:31 +00:00
|
|
|
serverRules: instance.serverRules,
|
|
|
|
|
2023-01-15 11:52:53 +00:00
|
|
|
policies: { ...DEFAULT_POLICIES, ...instance.policies },
|
2023-01-12 12:02:26 +00:00
|
|
|
|
2023-02-04 04:38:51 +00:00
|
|
|
mediaProxy: this.config.mediaProxy,
|
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
...(ps.detail ? {
|
|
|
|
cacheRemoteFiles: instance.cacheRemoteFiles,
|
2023-07-15 11:12:20 +00:00
|
|
|
cacheRemoteSensitiveFiles: instance.cacheRemoteSensitiveFiles,
|
2022-09-17 18:27:08 +00:00
|
|
|
requireSetup: (await this.usersRepository.countBy({
|
|
|
|
host: IsNull(),
|
|
|
|
})) === 0,
|
|
|
|
} : {}),
|
|
|
|
};
|
2018-11-06 15:08:21 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
if (ps.detail) {
|
|
|
|
const proxyAccount = instance.proxyAccountId ? await this.userEntityService.pack(instance.proxyAccountId).catch(() => null) : null;
|
|
|
|
|
|
|
|
response.proxyAccountName = proxyAccount ? proxyAccount.username : null;
|
|
|
|
response.features = {
|
|
|
|
registration: !instance.disableRegistration,
|
|
|
|
emailRequiredForSignup: instance.emailRequiredForSignup,
|
|
|
|
hcaptcha: instance.enableHcaptcha,
|
|
|
|
recaptcha: instance.enableRecaptcha,
|
2022-10-13 00:19:57 +00:00
|
|
|
turnstile: instance.enableTurnstile,
|
2022-09-17 18:27:08 +00:00
|
|
|
objectStorage: instance.useObjectStorage,
|
|
|
|
serviceWorker: instance.enableServiceWorker,
|
|
|
|
miauth: true,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
return response;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|