io.micronaut.data.mongodb.operations.DefaultMongoDatabaseNameProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micronaut-data-mongodb Show documentation
Show all versions of micronaut-data-mongodb Show documentation
Data Repository Support for Micronaut
/*
* Copyright 2017-2022 original authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.micronaut.data.mongodb.operations;
import io.micronaut.context.BeanContext;
import io.micronaut.core.annotation.Internal;
import io.micronaut.core.annotation.Nullable;
import io.micronaut.core.util.StringUtils;
import io.micronaut.data.annotation.Repository;
import io.micronaut.data.exceptions.DataAccessException;
import io.micronaut.data.model.PersistentEntity;
import io.micronaut.data.model.runtime.RuntimeEntityRegistry;
import io.micronaut.data.mongodb.annotation.MongoRepository;
import io.micronaut.data.mongodb.conf.MongoDataConfiguration;
import io.micronaut.data.repository.GenericRepository;
import io.micronaut.data.runtime.multitenancy.SchemaTenantResolver;
import io.micronaut.inject.BeanDefinition;
import io.micronaut.inject.qualifiers.Qualifiers;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
/**
* Internal implementation of {@link MongoDatabaseNameProvider}.
*
* @since 3.9.0
* @author Denis Stepanov
*/
@Internal
public final class DefaultMongoDatabaseNameProvider implements MongoDatabaseNameProvider {
private final RuntimeEntityRegistry runtimeEntityRegistry;
private final Map repoDatabaseConfig;
@Nullable
private final String defaultDatabaseName;
@Nullable
private final SchemaTenantResolver tenantResolver;
public DefaultMongoDatabaseNameProvider(BeanContext beanContext,
@Nullable String server,
RuntimeEntityRegistry runtimeEntityRegistry,
@Nullable String defaultDatabaseName,
@Nullable SchemaTenantResolver tenantResolver) {
this.runtimeEntityRegistry = runtimeEntityRegistry;
this.defaultDatabaseName = defaultDatabaseName;
this.tenantResolver = tenantResolver;
Collection> beanDefinitions = beanContext
.getBeanDefinitions(GenericRepository.class, Qualifiers.byStereotype(MongoRepository.class));
HashMap repoDatabaseConfig = new HashMap<>();
for (BeanDefinition beanDefinition : beanDefinitions) {
String targetSrv = beanDefinition.stringValue(Repository.class).orElse(null);
if (targetSrv == null || targetSrv.isEmpty() || targetSrv.equalsIgnoreCase(server)) {
String database = beanDefinition.stringValue(MongoRepository.class, "databaseName").orElse(null);
if (StringUtils.isNotEmpty(database)) {
repoDatabaseConfig.put(beanDefinition.getBeanType(), database);
}
}
}
this.repoDatabaseConfig = Collections.unmodifiableMap(repoDatabaseConfig);
}
@Override
public String provide(Class> type) {
return provide(runtimeEntityRegistry.getEntity(type));
}
@Override
public String provide(PersistentEntity persistentEntity, Class> repositoryClass) {
if (tenantResolver != null) {
String database = tenantResolver.resolveTenantSchemaName();
if (database != null) {
return database;
}
}
if (repositoryClass != null) {
String database = repoDatabaseConfig.get(repositoryClass);
if (database != null) {
return database;
}
}
if (defaultDatabaseName == null) {
throw new DataAccessException(MongoDataConfiguration.DATABASE_CONFIGURATION_ERROR_MESSAGE);
}
return defaultDatabaseName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy