DocSpace-client/common/ASC.Core.Common/MultiRegionHostedSolution.cs

298 lines
11 KiB
C#
Raw Normal View History

2019-05-15 14:56:09 +00:00
/*
*
* (c) Copyright Ascensio System Limited 2010-2018
*
* This program is freeware. You can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) version 3 as published by the Free Software Foundation (https://www.gnu.org/copyleft/gpl.html).
* In accordance with Section 7(a) of the GNU GPL its Section 15 shall be amended to the effect that
* Ascensio System SIA expressly excludes the warranty of non-infringement of any third-party rights.
*
* THIS PROGRAM IS DISTRIBUTED WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR
* FITNESS FOR A PARTICULAR PURPOSE. For more details, see GNU GPL at https://www.gnu.org/copyleft/gpl.html
*
* You can contact Ascensio System SIA by email at sales@onlyoffice.com
*
* The interactive user interfaces in modified source and object code versions of ONLYOFFICE must display
* Appropriate Legal Notices, as required under Section 5 of the GNU GPL version 3.
*
* Pursuant to Section 7 § 3(b) of the GNU GPL you must retain the original ONLYOFFICE logo which contains
* relevant author attributions when distributing the software. If the display of the logo in its graphic
* form is not reasonably feasible for technical reasons, you must include the words "Powered by ONLYOFFICE"
* in every copy of the program you distribute.
* Pursuant to Section 7 § 3(e) we decline to grant you any rights under trademark law for use of our trademarks.
*
*/
using System;
using System.Collections.Generic;
using System.Data.Common;
using System.Linq;
2019-11-06 15:03:09 +00:00
using System.Security;
2019-05-15 14:56:09 +00:00
using ASC.Common.Data;
using ASC.Common.Data.Sql;
2019-11-06 15:03:09 +00:00
using ASC.Common.Logging;
2019-08-15 12:04:42 +00:00
using ASC.Common.Utils;
2019-05-15 14:56:09 +00:00
using ASC.Core.Billing;
2019-11-06 15:03:09 +00:00
using ASC.Core.Security.Authentication;
using ASC.Core.Tenants;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Options;
2019-05-15 14:56:09 +00:00
namespace ASC.Core
{
public class MultiRegionHostedSolution
{
private readonly Dictionary<string, HostedSolution> regions = new Dictionary<string, HostedSolution>();
2019-11-06 15:03:09 +00:00
private readonly string dbid;
public IConfiguration Configuraion { get; }
public TenantDomainValidator TenantDomainValidator { get; }
public TimeZoneConverter TimeZoneConverter { get; }
public CookieStorage CookieStorage { get; }
public DbRegistry DbRegistry { get; }
public DbOptionsManager DbOptions { get; }
public TariffServiceStorage TariffServiceStorage { get; }
public IOptionsMonitor<ILog> Options { get; }
public MultiRegionHostedSolution(string dbid,
IConfiguration configuraion,
TenantDomainValidator tenantDomainValidator,
TimeZoneConverter timeZoneConverter,
CookieStorage cookieStorage,
DbRegistry dbRegistry,
DbOptionsManager dbOptions,
TariffServiceStorage tariffServiceStorage,
IOptionsMonitor<ILog> options)
2019-05-15 14:56:09 +00:00
{
2019-11-06 15:03:09 +00:00
this.dbid = dbid;
Configuraion = configuraion;
TenantDomainValidator = tenantDomainValidator;
TimeZoneConverter = timeZoneConverter;
CookieStorage = cookieStorage;
DbRegistry = dbRegistry;
DbOptions = dbOptions;
TariffServiceStorage = tariffServiceStorage;
Options = options;
2019-10-09 10:09:54 +00:00
Initialize();
2019-05-15 14:56:09 +00:00
}
public List<Tenant> GetTenants(DateTime from)
{
return GetRegionServices()
.SelectMany(r => r.GetTenants(from))
.ToList();
}
public List<Tenant> FindTenants(string login)
{
return FindTenants(login, null);
}
public List<Tenant> FindTenants(string login, string password)
{
var result = new List<Tenant>();
Exception error = null;
foreach (var service in GetRegionServices())
{
try
{
result.AddRange(service.FindTenants(login, password));
}
catch (SecurityException exception)
{
error = exception;
}
}
if (!result.Any() && error != null)
{
throw error;
}
return result;
}
public void RegisterTenant(string region, TenantRegistrationInfo ri, out Tenant tenant)
{
ri.HostedRegion = region;
GetRegionService(region).RegisterTenant(ri, out tenant);
}
public Tenant GetTenant(string domain)
{
foreach (var service in GetRegionServices())
{
var tenant = service.GetTenant(domain);
if (tenant != null)
{
return tenant;
}
}
return null;
}
public Tenant GetTenant(string region, int tenantId)
{
return GetRegionService(region).GetTenant(tenantId);
}
public Tenant SaveTenant(string region, Tenant tenant)
{
return GetRegionService(region).SaveTenant(tenant);
}
public string CreateAuthenticationCookie(string region, int tenantId, string login, string password)
{
2019-10-18 08:48:27 +00:00
return GetRegionService(region).CreateAuthenticationCookie(CookieStorage, tenantId, login, password);
2019-05-15 14:56:09 +00:00
}
public string CreateAuthenticationCookie(string region, int tenantId, Guid userId)
{
2019-10-18 08:48:27 +00:00
return GetRegionService(region).CreateAuthenticationCookie(CookieStorage, tenantId, userId);
2019-05-15 14:56:09 +00:00
}
public Tariff GetTariff(string region, int tenantId, bool withRequestToPaymentSystem = true)
{
return GetRegionService(region).GetTariff(tenantId, withRequestToPaymentSystem);
}
public void SetTariff(string region, int tenant, bool paid)
{
GetRegionService(region).SetTariff(tenant, paid);
}
public void SetTariff(string region, int tenant, Tariff tariff)
{
GetRegionService(region).SetTariff(tenant, tariff);
}
public void SaveButton(string region, int tariffId, string partnerId, string buttonUrl)
{
GetRegionService(region).SaveButton(tariffId, partnerId, buttonUrl);
}
public TenantQuota GetTenantQuota(string region, int tenant)
{
return GetRegionService(region).GetTenantQuota(tenant);
}
public void CheckTenantAddress(string address)
{
foreach (var service in GetRegionServices())
{
service.CheckTenantAddress(address);
}
}
public IEnumerable<string> GetRegions()
{
return GetRegionServices().Select(s => s.Region).ToList();
}
public IDbManager GetRegionDb(string region)
{
2019-10-21 12:33:02 +00:00
return DbOptions.Get(GetRegionService(region).DbId);
2019-05-15 14:56:09 +00:00
}
public IDbManager GetMultiRegionDb()
{
2019-10-21 12:33:02 +00:00
return new MultiRegionalDbManager(GetRegions().Select(r => DbOptions.Get(GetRegionService(r).DbId)));
2019-05-15 14:56:09 +00:00
}
public System.Configuration.ConnectionStringSettings GetRegionConnectionString(string region)
2019-05-15 14:56:09 +00:00
{
return DbRegistry.GetConnectionString(GetRegionService(region).DbId);
}
private IEnumerable<HostedSolution> GetRegionServices()
{
2019-08-15 13:16:39 +00:00
return regions.Where(x => !string.IsNullOrEmpty(x.Key))
2019-05-15 14:56:09 +00:00
.Select(x => x.Value);
}
private HostedSolution GetRegionService(string region)
{
return regions[region];
}
private void Initialize()
2019-11-06 15:03:09 +00:00
{
var connectionStrings = Configuraion.GetConnectionStrings();
var dbConnectionStrings = Configuraion.GetConnectionStrings(dbid);
2019-10-09 16:08:37 +00:00
2019-10-09 10:09:54 +00:00
if (Convert.ToBoolean(Configuraion["core.multi-hosted.config-only"] ?? "false"))
2019-05-15 14:56:09 +00:00
{
2019-10-09 16:08:37 +00:00
foreach (var cs in Configuraion.GetConnectionStrings())
2019-05-15 14:56:09 +00:00
{
2019-10-09 10:09:54 +00:00
if (cs.Name.StartsWith(dbid + "."))
2019-05-15 14:56:09 +00:00
{
2019-10-09 10:09:54 +00:00
var name = cs.Name.Substring(dbid.Length + 1);
2019-10-17 15:55:35 +00:00
regions[name] = new HostedSolution(Configuraion, TenantDomainValidator, TimeZoneConverter, DbRegistry, cs, TariffServiceStorage, Options, name);
2019-10-09 10:09:54 +00:00
}
}
2019-05-15 14:56:09 +00:00
2019-10-17 15:55:35 +00:00
regions[dbid] = new HostedSolution(Configuraion, TenantDomainValidator, TimeZoneConverter, DbRegistry, dbConnectionStrings, TariffServiceStorage, Options);
2019-10-09 10:09:54 +00:00
if (!regions.ContainsKey(string.Empty))
{
2019-10-17 15:55:35 +00:00
regions[string.Empty] = new HostedSolution(Configuraion, TenantDomainValidator, TimeZoneConverter, DbRegistry, dbConnectionStrings, TariffServiceStorage, Options);
2019-10-09 10:09:54 +00:00
}
}
else
{
2019-05-15 14:56:09 +00:00
2019-10-09 10:09:54 +00:00
var find = false;
2019-10-09 16:08:37 +00:00
foreach (var cs in connectionStrings)
2019-10-09 10:09:54 +00:00
{
if (cs.Name.StartsWith(dbid + "."))
{
var name = cs.Name.Substring(dbid.Length + 1);
2019-10-17 15:55:35 +00:00
regions[name] = new HostedSolution(Configuraion, TenantDomainValidator, TimeZoneConverter, DbRegistry, cs, TariffServiceStorage, Options, name);
2019-10-09 10:09:54 +00:00
find = true;
}
}
if (find)
{
2019-10-17 15:55:35 +00:00
regions[dbid] = new HostedSolution(Configuraion, TenantDomainValidator, TimeZoneConverter, DbRegistry, dbConnectionStrings, TariffServiceStorage, Options);
2019-10-09 10:09:54 +00:00
if (!regions.ContainsKey(string.Empty))
{
2019-10-17 15:55:35 +00:00
regions[string.Empty] = new HostedSolution(Configuraion, TenantDomainValidator, TimeZoneConverter, DbRegistry, dbConnectionStrings, TariffServiceStorage, Options);
2019-10-09 10:09:54 +00:00
}
}
else
{
2019-10-09 16:08:37 +00:00
foreach (var connectionString in connectionStrings)
2019-10-09 10:09:54 +00:00
{
try
2019-05-15 14:56:09 +00:00
{
2019-11-06 15:03:09 +00:00
using var db = DbOptions.Get(connectionString.Name);
var q = new SqlQuery("regions")
.Select("region")
.Select("connection_string")
.Select("provider");
db.ExecuteList(q)
.ForEach(r =>
{
var cs = new System.Configuration.ConnectionStringSettings((string)r[0], (string)r[1], (string)r[2]);
if (!DbRegistry.IsDatabaseRegistered(cs.Name))
{
DbRegistry.RegisterDatabase(cs.Name, cs);
}
if (!regions.ContainsKey(string.Empty))
{
regions[string.Empty] = new HostedSolution(Configuraion, TenantDomainValidator, TimeZoneConverter, DbRegistry, cs, TariffServiceStorage, Options, cs.Name);
}
regions[cs.Name] = new HostedSolution(Configuraion, TenantDomainValidator, TimeZoneConverter, DbRegistry, cs, TariffServiceStorage, Options, cs.Name);
2019-10-09 10:09:54 +00:00
});
2019-05-15 14:56:09 +00:00
}
2019-10-09 10:09:54 +00:00
catch (DbException) { }
2019-05-15 14:56:09 +00:00
}
}
}
}
}
}