deveel/deveel.identity.mongodb

View on GitHub
src/Deveel.Identity.MongoDb/Security/MongoDbRoleStoreProvider_T.cs

Summary

Maintainability
A
30 mins
Test Coverage
// Copyright 2022 Deveel
// 
// 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
// 
//     http://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.

using System;

using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;

namespace Deveel.Security {
    public class MongoDbRoleStoreProvider<TRole> : MongoDbStoreProviderBase, IMongoDbRoleStoreProvider<TRole>
        where TRole : MongoRole {
        public MongoDbRoleStoreProvider(IOptions<MongoDbStoreOptions> options, IOptions<MongoDbMultiTenancyOptions> multiTenancy)
            : base(options, multiTenancy) {
        }

        public MongoDbRoleStoreProvider(IOptions<MongoDbStoreOptions> options, IOptions<MongoDbMultiTenancyOptions> multiTenancy, ILoggerFactory loggerFactory)
            : base(options, multiTenancy, loggerFactory) {
        }

        public MongoDbRoleStoreProvider(MongoDbStoreOptions options, MongoDbMultiTenancyOptions multiTenancy)
            : base(options, multiTenancy) {
        }

        public MongoDbRoleStoreProvider(MongoDbStoreOptions options, MongoDbMultiTenancyOptions multiTenancy, ILoggerFactory loggerFactory)
            : base(options, multiTenancy, loggerFactory) {
        }

        protected ILogger<MongoDbRoleStore<TRole>> CreateLogger() => CreateLogger<MongoDbRoleStore<TRole>>();

        public MongoDbRoleStore<TRole> GetStore(string tenantId) {
            var options = GetStoreOptions(tenantId);

            var logger = CreateLogger();
            return new MongoDbRoleStore<TRole>(options, logger);
        }
    }
}