Introducing SharedFlat

栏目: IT技术 · 发布时间: 5年前

内容简介:A multitenant web application is one that responds differently depending on how it is addressed (the tenant). This kind of architecture has become very popular, because a single code base and deployment can serve many different tenants.There are a few libr

Introduction

A multitenant web application is one that responds differently depending on how it is addressed (the tenant). This kind of architecture has become very popular, because a single code base and deployment can serve many different tenants.

There are a few libraries out there that help ASP.NET Core developers implement such architectures, but, since I wrote a book on ASP.NET Multitenant Applications a few years ago, I decided to write something from scratch for ASP.NET Core – and here is SharedFlat !

For the sake of the examples, let’s assume two tenants that correspond to two different domain names, abc.com ( abc ) and xyz.net ( xyz ).

Concepts

SharedFlatis available at GitHub and NuGet and you are free to have a look, fork and suggest improvements. It is still in early stages, mind you!

It was designed around the following key tenets:

What is a tenant?

A tenant is a unique entity, identified by a name, and the application must respond appropriately to in, in terms of:

  • User interface: each tenant may have one or more different UI aspects

  • Data: each tenant should have access to different data

  • Behavior: the application should behave (maybe slightly) differently, for each tenant

The current tenant is always returned by the implementation of the ITenantService interface:

public interface ITenantService
{
string GetCurrentTenant();
}

Simple, don’t you think? The returned tenant information is the tenant’s name (or code, if you prefer).

How do we identify a tenant?

Now, the first thing to know is, how do we identify the current tenant? Well, there are different strategies for this, but they all implement this interface:

public interface ITenantIdentificationService
{
string GetCurrentTenant(HttpContext context);
}

The strategies itself can be various:

  • Using the request’s HTTP Host header : useful for scenarios where we have multiple domains pointing to the same IP address and we want to distinguish the tenant by the requested host

  • Using a query string field: more for debugging purposes

  • Using the source IP of the request: for when we want to force IPs to be of a specific tenant

  • Static: for testing purposes only

  • Dynamic: when we decide in code, at runtime, what the tenant is

  • Some header’s value

Introducing SharedFlat

The ITenantService that we saw first will have to somehow delegate to one of these implementations for getting the current tenant. We need to register one implementation by using one of the following extension methods:

services.AddTenantIdentification()
.DynamicTenant(ctx => "abc.com")    //dynamic
.TenantForQueryString()             //query string
.TenantForSourceIP()                //source IP
.TenantForHost()                    //host header
.TenantForHeader()                  //some header
.StaticTenant("abc.com");           //static

Of course, only one of these methods ( DynamicTenant , TenantForQueryString , TenantForSourceIP , TenantForHost, TenantForHeader , StaticTenant ) should be called.

Some of these different strategies need configuration. For example, to map a host name to a tenant name, we use code like this:

services.AddTenantIdentification()
.TenantForSourceIP(options =>
{
options.Mapping.Default = "abc";
options.Mapping
.Add("192.168.1.0", "xyz")
.Add("10.0.0.0", "abc");
});

Some tenant identification services also expose an interface ITenantsEnumerationService , which allows listing all the known tenants (their name, or code). This service can be retrieved from the DI, but only if the registered identification service supports it:

public IActionResult Index([FromServices] ITenantsEnumerationService svc)
{
var tenants = svc.GetAllTenants();
return View(tenants);
}

Configuration per tenant

It is also very important to get different configuration depending on the current tenant. Almost all of the tenant identification strategies (except StaticTenantIdentificationService and DynamicTenantIdentificationService ) support a mapping between “something” and a tenant code. This “something” may be the source IP ( SourceIPTenantIdentificationService ), the request’s Host header ( HostTenantIdentificationService ), etc. There is a standard configuration section that you can add to your appsettings.json file:

{
"Tenants": {
"Default": "",
"Tenants": {
"xyz.net": "xyz",
"abc.com": "abc"
}
}
}

You can load the configuration using an extension method:

services.AddTenantIdentification()
.TenantForHost(options =>
{
Configuration.BindTenantsMapping(options.Mapping);
});

Or you can just set the values manually, as we’ve seen before.

If you want to set some per-tenant configuration, you should use the Options Pattern with a named configuration (one per tenant):

services.Configure<SomeClass>("abc", options =>
{
options.Foo = "bar";
});

And then you need to retrieve it like this:

public HomeController(IOptionsSnapshot<SomeClass> optionsSnapshot, ITenantService tenantService)
{
var tenant = tenantService.GetCurrentTenant();
var options = optionsSnapshot.Get(tenant);
//…
}

There is yet another option: you can have a class that implements ITenantConfiguration , which is defined as:

public interface ITenantConfiguration
{
string Tenant { get; }
void ConfigureServices(IConfiguration configuration, IServiceCollection services);
}

You can have one class per tenant and in there you can register services that are specific for it. In order for it to work, you need to call the AddTenantConfiguration extension method:

services.AddTenantIdentification()
.TenantForHost(options =>
{
Configuration.BindTenantsMapping(options.Mapping);
})
.AddTenantConfiguration();

Conclusion

This is all I have for now, stay tuned for more on SharedFlat !


以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

数字化生存

数字化生存

尼葛洛庞帝 / 胡泳 等 / 海南出版社 / 1997-2 / 16.80元

《数字化生存》可以说是二十世纪信息技术及理念发展的圣经,此书的流行和传播对上个世纪信息时代的启蒙、发展产生了深远的影响,本书深入浅出地讲解了信息技术的基本概念、趋势和应用、巨大的价值和数字时代的宏伟蓝图,阐明了信息技术、互联网对时代和人们生活的影响和价值。作者尼葛洛庞帝成为了信息技术投资和趋势分析领域的教父,他的知名度和因此带来的无形价值不可估量。一起来看看 《数字化生存》 这本书的介绍吧!

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

SHA 加密
SHA 加密

SHA 加密工具

HSV CMYK 转换工具
HSV CMYK 转换工具

HSV CMYK互换工具