mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-02 20:32:51 +01:00
531 lines
13 KiB
Java
531 lines
13 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 java.time.Duration;
|
|
import java.util.HashMap;
|
|
import java.util.HashSet;
|
|
import java.util.LinkedList;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import java.util.Set;
|
|
import javax.validation.Valid;
|
|
import javax.validation.constraints.NotNull;
|
|
import org.whispersystems.textsecuregcm.attachments.TusConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.ApnConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.AppConfigConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.ArtServiceConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.AwsAttachmentsConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.BadgesConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.BraintreeConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.CdnConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.ClientCdnConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.ClientReleaseConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.CommandStopListenerConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.DirectoryV2Configuration;
|
|
import org.whispersystems.textsecuregcm.configuration.DogstatsdConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.DynamoDbClientConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.DynamoDbTables;
|
|
import org.whispersystems.textsecuregcm.configuration.FcmConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.GcpAttachmentsConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.GenericZkConfig;
|
|
import org.whispersystems.textsecuregcm.configuration.HCaptchaConfiguration;
|
|
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.PaymentsServiceConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.RecaptchaConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.RedisClusterConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.RedisConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.RegistrationServiceConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.RemoteConfigConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.ReportMessageConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.SecureStorageServiceConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.SecureValueRecovery2Configuration;
|
|
import org.whispersystems.textsecuregcm.configuration.SecureValueRecovery3Configuration;
|
|
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.TurnSecretConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.UnidentifiedDeliveryConfiguration;
|
|
import org.whispersystems.textsecuregcm.configuration.ZkConfig;
|
|
import org.whispersystems.textsecuregcm.limits.RateLimiterConfig;
|
|
import org.whispersystems.websocket.configuration.WebSocketConfiguration;
|
|
|
|
/** @noinspection MismatchedQueryAndUpdateOfCollection, WeakerAccess */
|
|
public class WhisperServerConfiguration extends Configuration {
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private TlsKeyStoreConfiguration tlsKeyStore;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private StripeConfiguration stripe;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private BraintreeConfiguration braintree;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private DynamoDbClientConfiguration dynamoDbClientConfiguration;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private DynamoDbTables dynamoDbTables;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private AwsAttachmentsConfiguration awsAttachments;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private GcpAttachmentsConfiguration gcpAttachments;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private CdnConfiguration cdn;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private ClientCdnConfiguration clientCdn;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private DogstatsdConfiguration dogstatsd = new DogstatsdConfiguration();
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private RedisClusterConfiguration cacheCluster;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private RedisConfiguration pubsub;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private RedisClusterConfiguration metricsCluster;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private DirectoryV2Configuration directoryV2;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private SecureValueRecovery2Configuration svr2;
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private SecureValueRecovery3Configuration svr3;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private RedisClusterConfiguration pushSchedulerCluster;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private RedisClusterConfiguration rateLimitersCluster;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private MessageCacheConfiguration messageCache;
|
|
|
|
@NotNull
|
|
@Valid
|
|
@JsonProperty
|
|
private RedisClusterConfiguration clientPresenceCluster;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private Set<String> testDevices = new HashSet<>();
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private List<MaxDeviceConfiguration> maxDevices = new LinkedList<>();
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private Map<String, RateLimiterConfig> limits = new HashMap<>();
|
|
|
|
@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 RecaptchaConfiguration recaptcha;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private HCaptchaConfiguration hCaptcha;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private ShortCodeExpanderConfiguration shortCode;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private SecureStorageServiceConfiguration storageService;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private PaymentsServiceConfiguration paymentsService;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private ArtServiceConfiguration artService;
|
|
|
|
@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 AppConfigConfiguration appConfig;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private BadgesConfiguration badges;
|
|
|
|
@Valid
|
|
@JsonProperty
|
|
@NotNull
|
|
private SubscriptionConfiguration subscription;
|
|
|
|
@Valid
|
|
@JsonProperty
|
|
@NotNull
|
|
private OneTimeDonationConfiguration oneTimeDonations;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private ReportMessageConfiguration reportMessage = new ReportMessageConfiguration();
|
|
|
|
@Valid
|
|
@JsonProperty
|
|
private SpamFilterConfiguration spamFilterConfiguration;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private RegistrationServiceConfiguration registrationService;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private TurnSecretConfiguration turn;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private TusConfiguration tus;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private int grpcPort;
|
|
|
|
@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 CommandStopListenerConfiguration commandStopListener;
|
|
|
|
@Valid
|
|
@NotNull
|
|
@JsonProperty
|
|
private LinkDeviceSecretConfiguration linkDevice;
|
|
|
|
public TlsKeyStoreConfiguration getTlsKeyStoreConfiguration() {
|
|
return tlsKeyStore;
|
|
}
|
|
|
|
|
|
public StripeConfiguration getStripe() {
|
|
return stripe;
|
|
}
|
|
|
|
public BraintreeConfiguration getBraintree() {
|
|
return braintree;
|
|
}
|
|
|
|
public DynamoDbClientConfiguration getDynamoDbClientConfiguration() {
|
|
return dynamoDbClientConfiguration;
|
|
}
|
|
|
|
public DynamoDbTables getDynamoDbTables() {
|
|
return dynamoDbTables;
|
|
}
|
|
|
|
public RecaptchaConfiguration getRecaptchaConfiguration() {
|
|
return recaptcha;
|
|
}
|
|
|
|
public HCaptchaConfiguration getHCaptchaConfiguration() {
|
|
return hCaptcha;
|
|
}
|
|
|
|
public ShortCodeExpanderConfiguration getShortCodeRetrieverConfiguration() {
|
|
return shortCode;
|
|
}
|
|
|
|
public WebSocketConfiguration getWebSocketConfiguration() {
|
|
return webSocket;
|
|
}
|
|
|
|
public AwsAttachmentsConfiguration getAwsAttachmentsConfiguration() {
|
|
return awsAttachments;
|
|
}
|
|
|
|
public GcpAttachmentsConfiguration getGcpAttachmentsConfiguration() {
|
|
return gcpAttachments;
|
|
}
|
|
|
|
public RedisClusterConfiguration getCacheClusterConfiguration() {
|
|
return cacheCluster;
|
|
}
|
|
|
|
public RedisConfiguration getPubsubCacheConfiguration() {
|
|
return pubsub;
|
|
}
|
|
|
|
public RedisClusterConfiguration getMetricsClusterConfiguration() {
|
|
return metricsCluster;
|
|
}
|
|
|
|
|
|
public SecureValueRecovery2Configuration getSvr2Configuration() {
|
|
return svr2;
|
|
}
|
|
public SecureValueRecovery3Configuration getSvr3Configuration() {
|
|
return svr3;
|
|
}
|
|
|
|
public DirectoryV2Configuration getDirectoryV2Configuration() {
|
|
return directoryV2;
|
|
}
|
|
|
|
public SecureStorageServiceConfiguration getSecureStorageServiceConfiguration() {
|
|
return storageService;
|
|
}
|
|
|
|
public MessageCacheConfiguration getMessageCacheConfiguration() {
|
|
return messageCache;
|
|
}
|
|
|
|
public RedisClusterConfiguration getClientPresenceClusterConfiguration() {
|
|
return clientPresenceCluster;
|
|
}
|
|
|
|
public RedisClusterConfiguration getPushSchedulerCluster() {
|
|
return pushSchedulerCluster;
|
|
}
|
|
|
|
public RedisClusterConfiguration getRateLimitersCluster() {
|
|
return rateLimitersCluster;
|
|
}
|
|
|
|
public Map<String, RateLimiterConfig> getLimitsConfiguration() {
|
|
return limits;
|
|
}
|
|
|
|
public FcmConfiguration getFcmConfiguration() {
|
|
return fcm;
|
|
}
|
|
|
|
public ApnConfiguration getApnConfiguration() {
|
|
return apn;
|
|
}
|
|
|
|
public CdnConfiguration getCdnConfiguration() {
|
|
return cdn;
|
|
}
|
|
|
|
public ClientCdnConfiguration getClientCdn() {
|
|
return clientCdn;
|
|
}
|
|
|
|
public DogstatsdConfiguration getDatadogConfiguration() {
|
|
return dogstatsd;
|
|
}
|
|
|
|
public UnidentifiedDeliveryConfiguration getDeliveryCertificate() {
|
|
return unidentifiedDelivery;
|
|
}
|
|
|
|
public Set<String> getTestDevices() {
|
|
return testDevices;
|
|
}
|
|
|
|
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 ArtServiceConfiguration getArtServiceConfiguration() {
|
|
return artService;
|
|
}
|
|
|
|
public ZkConfig getZkConfig() {
|
|
return zkConfig;
|
|
}
|
|
|
|
public GenericZkConfig getCallingZkConfig() {
|
|
return callingZkConfig;
|
|
}
|
|
|
|
public GenericZkConfig getBackupsZkConfig() {
|
|
return backupsZkConfig;
|
|
}
|
|
|
|
public RemoteConfigConfiguration getRemoteConfigConfiguration() {
|
|
return remoteConfig;
|
|
}
|
|
|
|
public AppConfigConfiguration getAppConfig() {
|
|
return appConfig;
|
|
}
|
|
|
|
public BadgesConfiguration getBadges() {
|
|
return badges;
|
|
}
|
|
|
|
public SubscriptionConfiguration getSubscription() {
|
|
return subscription;
|
|
}
|
|
|
|
public OneTimeDonationConfiguration getOneTimeDonations() {
|
|
return oneTimeDonations;
|
|
}
|
|
|
|
public ReportMessageConfiguration getReportMessageConfiguration() {
|
|
return reportMessage;
|
|
}
|
|
|
|
public SpamFilterConfiguration getSpamFilterConfiguration() {
|
|
return spamFilterConfiguration;
|
|
}
|
|
|
|
public RegistrationServiceConfiguration getRegistrationServiceConfiguration() {
|
|
return registrationService;
|
|
}
|
|
|
|
public TurnSecretConfiguration getTurnSecretConfiguration() {
|
|
return turn;
|
|
}
|
|
|
|
public TusConfiguration getTus() {
|
|
return tus;
|
|
}
|
|
|
|
public int getGrpcPort() {
|
|
return grpcPort;
|
|
}
|
|
|
|
public ClientReleaseConfiguration getClientReleaseConfiguration() {
|
|
return clientRelease;
|
|
}
|
|
|
|
public MessageByteLimitCardinalityEstimatorConfiguration getMessageByteLimitCardinalityEstimator() {
|
|
return messageByteLimitCardinalityEstimator;
|
|
}
|
|
|
|
public CommandStopListenerConfiguration getCommandStopListener() {
|
|
return commandStopListener;
|
|
}
|
|
|
|
public LinkDeviceSecretConfiguration getLinkDeviceSecretConfiguration() {
|
|
return linkDevice;
|
|
}
|
|
}
|