mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-02 16:52:49 +01:00
614 lines
16 KiB
Java
614 lines
16 KiB
Java
/*
|
|
* Copyright 2013 Signal Messenger, LLC
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
package org.whispersystems.textsecuregcm;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
import io.dropwizard.core.Configuration;
|
|
import jakarta.validation.Valid;
|
|
import jakarta.validation.constraints.NotNull;
|
|
import java.time.Duration;
|
|
import java.util.Collections;
|
|
import java.util.HashMap;
|
|
import java.util.LinkedList;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import org.whispersystems.textsecuregcm.attachments.TusConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.ApnConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.AppleAppStoreConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.AppleDeviceCheckConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.AwsCredentialsProviderFactory;
|
|
import org.whispersystems.textsecuregcm.configuration.BadgesConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.BraintreeConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.CallQualitySurveyConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.Cdn3StorageManagerConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.CdnConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.CircuitBreakerConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.ClientReleaseConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.DefaultAwsCredentialsFactory;
|
|
import org.whispersystems.textsecuregcm.configuration.DeviceCheckConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.DirectoryV2Configuration;
|
|
import org.whispersystems.textsecuregcm.configuration.DynamoDbClientFactory;
|
|
import org.whispersystems.textsecuregcm.configuration.DynamoDbTables;
|
|
import org.whispersystems.textsecuregcm.configuration.dynamic.DynamicGrpcAllowListConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.ExternalRequestFilterConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.FaultTolerantRedisClientFactory;
|
|
import org.whispersystems.textsecuregcm.configuration.FaultTolerantRedisClusterFactory;
|
|
import org.whispersystems.textsecuregcm.configuration.FcmConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.GcpAttachmentsConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.GenericZkConfig;
|
|
import org.whispersystems.textsecuregcm.configuration.GooglePlayBillingConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.GrpcConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.HlrLookupConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.IdlePrimaryDeviceReminderConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.KeyTransparencyServiceConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.LinkDeviceSecretConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.MaxDeviceConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.MessageByteLimitCardinalityEstimatorConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.MessageCacheConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.OneTimeDonationConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.OpenTelemetryConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.PagedSingleUseKEMPreKeyStoreConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.PaymentsServiceConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.RegistrationServiceClientFactory;
|
|
import org.whispersystems.textsecuregcm.configuration.RemoteConfigConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.ReportMessageConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.RetryConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.S3ObjectMonitorFactory;
|
|
import org.whispersystems.textsecuregcm.configuration.SecureStorageServiceConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.SecureValueRecoveryConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.ShortCodeExpanderConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.SpamFilterConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.StripeConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.SubscriptionConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.TlsKeyStoreConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.TurnConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.UnidentifiedDeliveryConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.VirtualThreadConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.ZkConfig;
|
|
import org.whispersystems.websocket.configuration.WebSocketConfiguration;
|
|
|
|
/** @noinspection MismatchedQueryAndUpdateOfCollection, WeakerAccess */
|
|
public class WhisperServerConfiguration extends Configuration {
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private TlsKeyStoreConfiguration tlsKeyStore;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
AwsCredentialsProviderFactory awsCredentialsProvider = new DefaultAwsCredentialsFactory();
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private StripeConfiguration stripe;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private BraintreeConfiguration braintree;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private GooglePlayBillingConfiguration googlePlayBilling;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private AppleAppStoreConfiguration appleAppStore;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private AppleDeviceCheckConfiguration appleDeviceCheck;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private DeviceCheckConfiguration deviceCheck;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private DynamoDbClientFactory dynamoDbClient;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private DynamoDbTables dynamoDbTables;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private GcpAttachmentsConfiguration gcpAttachments;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private CdnConfiguration cdn;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private Cdn3StorageManagerConfiguration cdn3StorageManager;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private OpenTelemetryConfiguration openTelemetry;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private FaultTolerantRedisClusterFactory cacheCluster;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private FaultTolerantRedisClientFactory pubsub;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private DirectoryV2Configuration directoryV2;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private SecureValueRecoveryConfiguration svr2;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private SecureValueRecoveryConfiguration svrb;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private FaultTolerantRedisClusterFactory pushSchedulerCluster;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private FaultTolerantRedisClusterFactory rateLimitersCluster;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private MessageCacheConfiguration messageCache;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private List<MaxDeviceConfiguration> maxDevices = new LinkedList<>();
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private WebSocketConfiguration webSocket = new WebSocketConfiguration();
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private FcmConfiguration fcm;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private ApnConfiguration apn;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private UnidentifiedDeliveryConfiguration unidentifiedDelivery;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private ShortCodeExpanderConfiguration shortCode;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private SecureStorageServiceConfiguration storageService;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private PaymentsServiceConfiguration paymentsService;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private ZkConfig zkConfig;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private GenericZkConfig callingZkConfig;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private GenericZkConfig backupsZkConfig;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private RemoteConfigConfiguration remoteConfig;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private S3ObjectMonitorFactory dynamicConfig;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private BadgesConfiguration badges;
|
|
|
|
@Valid
|
|
@JsonProperty
|
|
@NotNull
|
|
private SubscriptionConfiguration subscription;
|
|
|
|
@Valid
|
|
@JsonProperty
|
|
@NotNull
|
|
private OneTimeDonationConfiguration oneTimeDonations;
|
|
|
|
@Valid
|
|
@JsonProperty
|
|
@NotNull
|
|
private PagedSingleUseKEMPreKeyStoreConfiguration pagedSingleUseKEMPreKeyStore;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private ReportMessageConfiguration reportMessage = new ReportMessageConfiguration();
|
|
|
|
@Valid
|
|
@JsonProperty
|
|
private SpamFilterConfiguration spamFilter;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private RegistrationServiceClientFactory registrationService;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private TurnConfiguration turn;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private TusConfiguration tus;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private ClientReleaseConfiguration clientRelease = new ClientReleaseConfiguration(Duration.ofHours(4));
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private MessageByteLimitCardinalityEstimatorConfiguration messageByteLimitCardinalityEstimator = new MessageByteLimitCardinalityEstimatorConfiguration(Duration.ofDays(1));
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private LinkDeviceSecretConfiguration linkDevice;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private VirtualThreadConfiguration virtualThread = new VirtualThreadConfiguration();
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private ExternalRequestFilterConfiguration externalRequestFilter;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private KeyTransparencyServiceConfiguration keyTransparencyService;
|
|
|
|
@JsonProperty
|
|
private boolean logMessageDeliveryLoops;
|
|
|
|
@JsonProperty
|
|
private IdlePrimaryDeviceReminderConfiguration idlePrimaryDeviceReminder =
|
|
new IdlePrimaryDeviceReminderConfiguration(Duration.ofDays(30));
|
|
|
|
@JsonProperty
|
|
private Map<String, @Valid CircuitBreakerConfiguration> circuitBreakers = Collections.emptyMap();
|
|
|
|
@JsonProperty
|
|
private Map<String, @Valid RetryConfiguration> retries = Collections.emptyMap();
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private HlrLookupConfiguration hlrLookup;
|
|
|
|
@JsonProperty
|
|
@Valid
|
|
@NotNull
|
|
private RetryConfiguration generalRedisRetry = new RetryConfiguration();
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private GrpcConfiguration grpc;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private DynamicGrpcAllowListConfiguration grpcAllowList = new DynamicGrpcAllowListConfiguration();
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private S3ObjectMonitorFactory asnTable;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private CallQualitySurveyConfiguration callQualitySurvey;
|
|
|
|
public TlsKeyStoreConfiguration getTlsKeyStoreConfiguration() {
|
|
return tlsKeyStore;
|
|
}
|
|
|
|
public AwsCredentialsProviderFactory getAwsCredentialsConfiguration() {
|
|
return awsCredentialsProvider;
|
|
}
|
|
|
|
public StripeConfiguration getStripe() {
|
|
return stripe;
|
|
}
|
|
|
|
public BraintreeConfiguration getBraintree() {
|
|
return braintree;
|
|
}
|
|
|
|
public GooglePlayBillingConfiguration getGooglePlayBilling() {
|
|
return googlePlayBilling;
|
|
}
|
|
|
|
public AppleAppStoreConfiguration getAppleAppStore() {
|
|
return appleAppStore;
|
|
}
|
|
|
|
public AppleDeviceCheckConfiguration getAppleDeviceCheck() {
|
|
return appleDeviceCheck;
|
|
}
|
|
|
|
public DeviceCheckConfiguration getDeviceCheck() {
|
|
return deviceCheck;
|
|
}
|
|
|
|
public DynamoDbClientFactory getDynamoDbClientConfiguration() {
|
|
return dynamoDbClient;
|
|
}
|
|
|
|
public DynamoDbTables getDynamoDbTables() {
|
|
return dynamoDbTables;
|
|
}
|
|
|
|
public ShortCodeExpanderConfiguration getShortCodeRetrieverConfiguration() {
|
|
return shortCode;
|
|
}
|
|
|
|
public WebSocketConfiguration getWebSocketConfiguration() {
|
|
return webSocket;
|
|
}
|
|
|
|
public GcpAttachmentsConfiguration getGcpAttachmentsConfiguration() {
|
|
return gcpAttachments;
|
|
}
|
|
|
|
public FaultTolerantRedisClusterFactory getCacheClusterConfiguration() {
|
|
return cacheCluster;
|
|
}
|
|
|
|
public FaultTolerantRedisClientFactory getRedisPubSubConfiguration() {
|
|
return pubsub;
|
|
}
|
|
|
|
public SecureValueRecoveryConfiguration getSvr2Configuration() {
|
|
return svr2;
|
|
}
|
|
|
|
public SecureValueRecoveryConfiguration getSvrbConfiguration() {
|
|
return svrb;
|
|
}
|
|
|
|
public DirectoryV2Configuration getDirectoryV2Configuration() {
|
|
return directoryV2;
|
|
}
|
|
|
|
public SecureStorageServiceConfiguration getSecureStorageServiceConfiguration() {
|
|
return storageService;
|
|
}
|
|
|
|
public MessageCacheConfiguration getMessageCacheConfiguration() {
|
|
return messageCache;
|
|
}
|
|
|
|
public FaultTolerantRedisClusterFactory getPushSchedulerCluster() {
|
|
return pushSchedulerCluster;
|
|
}
|
|
|
|
public FaultTolerantRedisClusterFactory getRateLimitersCluster() {
|
|
return rateLimitersCluster;
|
|
}
|
|
|
|
public FcmConfiguration getFcmConfiguration() {
|
|
return fcm;
|
|
}
|
|
|
|
public ApnConfiguration getApnConfiguration() {
|
|
return apn;
|
|
}
|
|
|
|
public CdnConfiguration getCdnConfiguration() {
|
|
return cdn;
|
|
}
|
|
|
|
public Cdn3StorageManagerConfiguration getCdn3StorageManagerConfiguration() {
|
|
return cdn3StorageManager;
|
|
}
|
|
|
|
public OpenTelemetryConfiguration getOpenTelemetryConfiguration() {
|
|
return openTelemetry;
|
|
}
|
|
|
|
public UnidentifiedDeliveryConfiguration getDeliveryCertificate() {
|
|
return unidentifiedDelivery;
|
|
}
|
|
|
|
public Map<String, Integer> getMaxDevices() {
|
|
Map<String, Integer> results = new HashMap<>();
|
|
|
|
for (MaxDeviceConfiguration maxDeviceConfiguration : maxDevices) {
|
|
results.put(maxDeviceConfiguration.getNumber(),
|
|
maxDeviceConfiguration.getCount());
|
|
}
|
|
|
|
return results;
|
|
}
|
|
|
|
public PaymentsServiceConfiguration getPaymentsServiceConfiguration() {
|
|
return paymentsService;
|
|
}
|
|
|
|
public ZkConfig getZkConfig() {
|
|
return zkConfig;
|
|
}
|
|
|
|
public GenericZkConfig getCallingZkConfig() {
|
|
return callingZkConfig;
|
|
}
|
|
|
|
public GenericZkConfig getBackupsZkConfig() {
|
|
return backupsZkConfig;
|
|
}
|
|
|
|
public RemoteConfigConfiguration getRemoteConfigConfiguration() {
|
|
return remoteConfig;
|
|
}
|
|
|
|
public S3ObjectMonitorFactory getDynamicConfig() {
|
|
return dynamicConfig;
|
|
}
|
|
|
|
public BadgesConfiguration getBadges() {
|
|
return badges;
|
|
}
|
|
|
|
public SubscriptionConfiguration getSubscription() {
|
|
return subscription;
|
|
}
|
|
|
|
public OneTimeDonationConfiguration getOneTimeDonations() {
|
|
return oneTimeDonations;
|
|
}
|
|
|
|
public PagedSingleUseKEMPreKeyStoreConfiguration getPagedSingleUseKEMPreKeyStore() {
|
|
return pagedSingleUseKEMPreKeyStore;
|
|
}
|
|
|
|
public ReportMessageConfiguration getReportMessageConfiguration() {
|
|
return reportMessage;
|
|
}
|
|
|
|
public SpamFilterConfiguration getSpamFilterConfiguration() {
|
|
return spamFilter;
|
|
}
|
|
|
|
public RegistrationServiceClientFactory getRegistrationServiceConfiguration() {
|
|
return registrationService;
|
|
}
|
|
|
|
public TurnConfiguration getTurnConfiguration() {
|
|
return turn;
|
|
}
|
|
|
|
public TusConfiguration getTus() {
|
|
return tus;
|
|
}
|
|
|
|
public ClientReleaseConfiguration getClientReleaseConfiguration() {
|
|
return clientRelease;
|
|
}
|
|
|
|
public MessageByteLimitCardinalityEstimatorConfiguration getMessageByteLimitCardinalityEstimator() {
|
|
return messageByteLimitCardinalityEstimator;
|
|
}
|
|
|
|
public LinkDeviceSecretConfiguration getLinkDeviceSecretConfiguration() {
|
|
return linkDevice;
|
|
}
|
|
|
|
public VirtualThreadConfiguration getVirtualThreadConfiguration() {
|
|
return virtualThread;
|
|
}
|
|
|
|
public ExternalRequestFilterConfiguration getExternalRequestFilterConfiguration() {
|
|
return externalRequestFilter;
|
|
}
|
|
|
|
public KeyTransparencyServiceConfiguration getKeyTransparencyServiceConfiguration() {
|
|
return keyTransparencyService;
|
|
}
|
|
|
|
public boolean logMessageDeliveryLoops() {
|
|
return logMessageDeliveryLoops;
|
|
}
|
|
|
|
public IdlePrimaryDeviceReminderConfiguration idlePrimaryDeviceReminderConfiguration() {
|
|
return idlePrimaryDeviceReminder;
|
|
}
|
|
|
|
public Map<String, CircuitBreakerConfiguration> getCircuitBreakerConfigurations() {
|
|
return circuitBreakers;
|
|
}
|
|
|
|
public Map<String, RetryConfiguration> getRetryConfigurations() {
|
|
return retries;
|
|
}
|
|
|
|
public RetryConfiguration getGeneralRedisRetryConfiguration() {
|
|
return generalRedisRetry;
|
|
}
|
|
|
|
public GrpcConfiguration getGrpc() {
|
|
return grpc;
|
|
}
|
|
|
|
public DynamicGrpcAllowListConfiguration getGrpcAllowList() {
|
|
return grpcAllowList;
|
|
}
|
|
|
|
public S3ObjectMonitorFactory getAsnTableConfiguration() {
|
|
return asnTable;
|
|
}
|
|
|
|
public CallQualitySurveyConfiguration getCallQualitySurveyConfiguration() {
|
|
return callQualitySurvey;
|
|
}
|
|
|
|
public HlrLookupConfiguration getHlrLookupConfiguration() {
|
|
return hlrLookup;
|
|
}
|
|
}
|