Kephas.Tenants 11.1.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Kephas.Tenants --version 11.1.0
NuGet\Install-Package Kephas.Tenants -Version 11.1.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Kephas.Tenants" Version="11.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Kephas.Tenants --version 11.1.0
#r "nuget: Kephas.Tenants, 11.1.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Kephas.Tenants as a Cake Addin
#addin nuget:?package=Kephas.Tenants&version=11.1.0

// Install Kephas.Tenants as a Cake Tool
#tool nuget:?package=Kephas.Tenants&version=11.1.0

Tenants

Introduction

This package adds support for multi-tenant applications.

How it works:

  • Include the Kephas.Tenants package in the application deployment.
  • The application receives the tenant identifier through the tenant command line argument or the KEPHASAPP_Tenant environment variable.
  • The tenant is available in code through IAppArgs.Tenant() extension method or the IContext.Tenant() extension method.
    • Note that IAppArgs are available through dependency injection and IContext instances through the parameter received in context dependent invocations.
  • When setting up the IAmbientServices during application bootstrapping, make sure to invoke the ambientServices.WithTenantSupoport().
    • Do this typically before setting up the application runtime (for example WithStaticAppRuntime, WithDynamicAppRuntime, or WithPluginsAppRuntime), to make sure the runtime accesses the correct locations.

What is the immediate effect:

  • Tenant administrative mode
    • When the application was started without a tenant identifier specified either in command line arguments or in the environment variables. This mode should allow tenant management actions.
    • The folder locations are not changed.
  • Tenant specific mode
    • The tenant identifier is passed to the running application.
    • The folder locations (config, licenses, plugins) are found in the {tenant} subdirectory of the original folder locations.

Check the following packages for more information:

Example

public static IAmbientServices SetupAmbientServices(
    this IAmbientServices ambientServices,
    Func<IAmbientServices, IEncryptionService> encryptionServiceFactory,
    IConfiguration? configuration,
    IAppArgs appArgs)
{
    return ambientServices
        .WithDefaultLicensingManager(encryptionServiceFactory(ambientServices))
        // Do not forget setting up the tenant support right *after* setting up the application runtime.
        .WithTenantSupport(appArgs)
        //
        .WithDynamicAppRuntime()
        .WithSerilogManager(configuration);
}

Security

Tenants management

A global scope tenantsmanagement permission is provided to require in endpoints or other application actions affecting overall tenants management.

Tenant admin

A global scope tenantadmin permission is provided to require in endpoints or other application actions affecting management of the tenant.

Example

/// <summary>
/// Endpoint message for adding a tenant.
/// </summary>
[RequiresPermission(typeof(TenantsManagementPermission))]
public class AddTenantMessage : IMessage
{
    //...
}

/// <summary>
/// Endpoint message for changing the tenant information.
/// </summary>
[RequiresPermission(typeof(TenantAdminPermission))]
public class ChangeTenantInfoMessage : IMessage
{
    //...
}

Configuration

Tenant specific

The TenantSettings are available through the injectable IConfiguration<TenantSettings> service. It provides:

  • DisplayName (string): The tenant's display name.
  • Domains (string[]): an array of domain owned by the tenant. These domains are typically used in the authorization process to identify the tenant a user belongs to.

Example

var config = injector.Resolve<IConfiguration<TenantSettings>>();
var settings = config.GetSettings(context);
settings.DisplayName = "My changed name";
await config.UpdateSettingsAsync(settings, context).PreserveThreadingContext();

Tenant management

The TenantsManagementSettings are available through the injectable IConfiguration<TenantsManagementSettings> service. It provides:

  • GlobalAdmin (GlobalAdminSettings): settings for the global tenants administrator.
  • Tenants (TenantSettings[]): list of settings for the application tenants.

IO

By default, the AmbientServices registers the FolderLocationsManager implementation for the service ILocationsManager. This normalizes the paths and resolves them relative to the application location. Instead, by using IAmbientServices.WithTenantSupport(), this global service is replaced with TenantFolderLocationsManager which appends the tenant identifier prefixed by dot (.) to each of the folders. This has the following effects:

  • The configuration, licenses, plugins, and other locations dependent on the ILocationsManager service will return different locations for different tenants.
  • By prefixing the tenant path element with dot (.), this location is considered hidden by other services and, therefore ignored (checked with location.IsHiddenLocation() extension method).
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
11.1.0 428 4/13/2022
11.1.0-dev.4 123 4/6/2022
11.1.0-dev.3 103 3/30/2022
11.1.0-dev.2 117 3/23/2022
11.1.0-dev.1 104 3/23/2022
11.0.0 431 3/11/2022
11.0.0-dev.7 113 3/7/2022
11.0.0-dev.6 110 2/28/2022
11.0.0-dev.5 111 2/26/2022
11.0.0-dev.4 114 2/24/2022
11.0.0-dev.3 111 2/23/2022
11.0.0-dev.2 116 2/18/2022

Please check https://github.com/kephas-software/kephas/releases for the change log.
           Also check the documentation and the samples from https://github.com/kephas-software/kephas/wiki and https://github.com/kephas-software/kephas/tree/master/Samples.