All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.smallmind.mongodb.utility.spring.MongoClientSettingsFactoryBean Maven / Gradle / Ivy

There is a newer version: 6.2.0
Show newest version
/*
 * Copyright (c) 2007 through 2024 David Berkman
 *
 * This file is part of the SmallMind Code Project.
 *
 * The SmallMind Code Project is free software, you can redistribute
 * it and/or modify it under either, at your discretion...
 *
 * 1) The terms of GNU Affero General Public License as published by the
 * Free Software Foundation, either version 3 of the License, or (at
 * your option) any later version.
 *
 * ...or...
 *
 * 2) The terms of the Apache License, Version 2.0.
 *
 * The SmallMind Code Project is distributed in the hope that it will
 * be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * General Public License or Apache License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * and the Apache License along with the SmallMind Code Project. If not, see
 *  or .
 *
 * Additional permission under the GNU Affero GPL version 3 section 7
 * ------------------------------------------------------------------
 * If you modify this Program, or any covered work, by linking or
 * combining it with other code, such other code is not for that reason
 * alone subject to any of the requirements of the GNU Affero GPL
 * version 3.
 */
package org.smallmind.mongodb.utility.spring;

import java.io.IOException;
import java.security.KeyManagementException;
import java.security.KeyStoreException;
import java.security.NoSuchAlgorithmException;
import java.security.SecureRandom;
import java.security.cert.CertificateException;
import java.util.Arrays;
import javax.net.ssl.SSLContext;
import com.mongodb.MongoClientSettings;
import com.mongodb.MongoCredential;
import com.mongodb.ReadConcern;
import com.mongodb.ReadPreference;
import com.mongodb.ServerAddress;
import com.mongodb.WriteConcern;
import org.bson.UuidRepresentation;
import org.bson.codecs.configuration.CodecRegistries;
import org.bson.codecs.configuration.CodecRegistry;
import org.smallmind.nutsnbolts.resource.Resource;
import org.smallmind.nutsnbolts.resource.ResourceException;
import org.smallmind.nutsnbolts.ssl.TrustManagerUtility;
import org.springframework.beans.factory.FactoryBean;
import org.springframework.beans.factory.InitializingBean;

import static java.util.concurrent.TimeUnit.MILLISECONDS;
import static java.util.concurrent.TimeUnit.SECONDS;

public class MongoClientSettingsFactoryBean implements InitializingBean, FactoryBean {

  private MongoClientSettings.Builder settingsBuilder;
  private CodecRegistry codecRegistry;
  private Resource certResource;
  private MongoCredential mongoCredential;
  private ServerAddress[] serverAddresses;
  private ReadPreference readPreference;
  private ReadConcern readConcern;
  private WriteConcern writeConcern;
  private Boolean retryReads;
  private Boolean retryWrites;
  private Boolean sslEnabled;
  private Boolean writeConcernEnabled;
  private Integer socketConnectTimeoutMilliseconds;
  private Integer serverSelectionTimeoutMilliseconds;
  private Integer connectionPoolMinSize;
  private Integer connectionPoolMaxSize;
  private Integer connectionPoolMaxConnecting;
  private Integer connectionPoolMaxWaitTimeMilliseconds;
  private Integer connectionPoolMaxConnectionLifeTimeSeconds;
  private Integer connectionPoolMaxConnectionIdleTimeSeconds;

  public void setCodecRegistry (CodecRegistry codecRegistry) {

    this.codecRegistry = codecRegistry;
  }

  public void setCertResource (Resource certResource) {

    this.certResource = certResource;
  }

  public void setMongoCredential (MongoCredential mongoCredential) {

    this.mongoCredential = mongoCredential;
  }

  public void setServerAddresses (ServerAddress[] serverAddresses) {

    this.serverAddresses = serverAddresses;
  }

  public void setReadPreference (ReadPreference readPreference) {

    this.readPreference = readPreference;
  }

  public void setReadConcern (ReadConcern readConcern) {

    this.readConcern = readConcern;
  }

  public void setWriteConcern (WriteConcern writeConcern) {

    this.writeConcern = writeConcern;
  }

  public void setWriteConcernEnabled (Boolean writeConcernEnabled) {

    this.writeConcernEnabled = writeConcernEnabled;
  }

  public void setRetryReads (Boolean retryReads) {

    this.retryReads = retryReads;
  }

  public void setRetryWrites (Boolean retryWrites) {

    this.retryWrites = retryWrites;
  }

  public void setSslEnabled (Boolean sslEnabled) {

    this.sslEnabled = sslEnabled;
  }

  public void setSocketConnectTimeoutMilliseconds (Integer socketConnectTimeoutMilliseconds) {

    this.socketConnectTimeoutMilliseconds = socketConnectTimeoutMilliseconds;
  }

  public void setServerSelectionTimeoutMilliseconds (Integer serverSelectionTimeoutMilliseconds) {

    this.serverSelectionTimeoutMilliseconds = serverSelectionTimeoutMilliseconds;
  }

  public void setConnectionPoolMinSize (Integer connectionPoolMinSize) {

    this.connectionPoolMinSize = connectionPoolMinSize;
  }

  public void setConnectionPoolMaxSize (Integer connectionPoolMaxSize) {

    this.connectionPoolMaxSize = connectionPoolMaxSize;
  }

  public void setConnectionPoolMaxConnecting (Integer connectionPoolMaxConnecting) {

    this.connectionPoolMaxConnecting = connectionPoolMaxConnecting;
  }

  public void setConnectionPoolMaxWaitTimeMilliseconds (Integer connectionPoolMaxWaitTimeMilliseconds) {

    this.connectionPoolMaxWaitTimeMilliseconds = connectionPoolMaxWaitTimeMilliseconds;
  }

  public void setConnectionPoolMaxConnectionLifeTimeSeconds (Integer connectionPoolMaxConnectionLifeTimeSeconds) {

    this.connectionPoolMaxConnectionLifeTimeSeconds = connectionPoolMaxConnectionLifeTimeSeconds;
  }

  public void setConnectionPoolMaxConnectionIdleTimeSeconds (Integer connectionPoolMaxConnectionIdleTimeSeconds) {

    this.connectionPoolMaxConnectionIdleTimeSeconds = connectionPoolMaxConnectionIdleTimeSeconds;
  }

  @Override
  public boolean isSingleton () {

    return true;
  }

  @Override
  public Class getObjectType () {

    return MongoClientSettings.class;
  }

  @Override
  public MongoClientSettings getObject () {

    return settingsBuilder.build();
  }

  @Override
  public void afterPropertiesSet ()
    throws IOException, ResourceException, CertificateException, KeyStoreException, NoSuchAlgorithmException, KeyManagementException {

    SSLContext sslContext;

    settingsBuilder = MongoClientSettings.builder();

    if (socketConnectTimeoutMilliseconds != null) {
      settingsBuilder.applyToSocketSettings(builder -> builder.connectTimeout(socketConnectTimeoutMilliseconds, MILLISECONDS));
    }

    if (certResource == null) {
      sslContext = null;
    } else {
      sslContext = SSLContext.getInstance("TLS");
      sslContext.init(null, TrustManagerUtility.load("tlsCert", certResource), new SecureRandom());
    }

    settingsBuilder.applyToSslSettings(builder -> {
      if (sslContext != null) {
        builder.context(sslContext);
      }

      builder.enabled(Boolean.TRUE.equals(sslEnabled));
    });

    settingsBuilder.applyToConnectionPoolSettings(builder -> {
      if (connectionPoolMaxSize != null) {
        builder.maxSize(connectionPoolMaxSize);
      }
      if (connectionPoolMinSize != null) {
        builder.minSize(connectionPoolMinSize);
      }
      if (connectionPoolMaxConnecting != null) {
        builder.maxConnecting(connectionPoolMaxConnecting);
      }
      if (connectionPoolMaxWaitTimeMilliseconds != null) {
        builder.maxWaitTime(connectionPoolMaxWaitTimeMilliseconds, MILLISECONDS);
      }
      if (connectionPoolMaxConnectionLifeTimeSeconds != null) {
        builder.maxConnectionLifeTime(connectionPoolMaxConnectionLifeTimeSeconds, SECONDS);
      }
      if (connectionPoolMaxConnectionIdleTimeSeconds != null) {
        builder.maxConnectionIdleTime(connectionPoolMaxConnectionIdleTimeSeconds, SECONDS);
      }
    });
    settingsBuilder.applyToClusterSettings(builder -> {
      builder.hosts(Arrays.asList(serverAddresses));

      if (serverSelectionTimeoutMilliseconds != null) {
        builder.serverSelectionTimeout(serverSelectionTimeoutMilliseconds, MILLISECONDS);
      }
    });
    if (readPreference != null) {
      settingsBuilder.readPreference(readPreference);
    }
    if (readConcern != null) {
      settingsBuilder.readConcern(readConcern);
    }
    if (retryReads != null) {
      settingsBuilder.retryReads(retryReads);
    }
    if ((writeConcern != null) && (!Boolean.FALSE.equals(writeConcernEnabled))) {
      settingsBuilder.writeConcern(writeConcern);
    }
    if (retryWrites != null) {
      settingsBuilder.retryWrites(retryWrites);
    }
    if (mongoCredential != null) {
      settingsBuilder.credential(mongoCredential);
    }
    if (codecRegistry != null) {
      settingsBuilder.codecRegistry(CodecRegistries.fromRegistries(codecRegistry, MongoClientSettings.getDefaultCodecRegistry()));
    }

    settingsBuilder.uuidRepresentation(UuidRepresentation.STANDARD);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy