DocSpace-client/common/ASC.Core.Common/Tenants/TenantQuota.cs
pavelbannov 320a1f2250 Merge branch 'develop' into feature/backend-refactor
# Conflicts:
#	common/ASC.Api.Core/Core/BaseStartup.cs
#	common/ASC.Common/Caching/AscCache.cs
#	common/ASC.Common/Data/StreamExtension.cs
#	common/ASC.Common/Utils/RandomString.cs
#	common/ASC.Core.Common/Billing/CouponManager.cs
#	common/ASC.Core.Common/Billing/License/LicenseReader.cs
#	common/ASC.Core.Common/Core/UserGroupRef.cs
#	common/ASC.Core.Common/Data/DbTenantService.cs
#	common/ASC.Core.Common/Notify/Jabber/JabberServiceClientWcf.cs
#	common/ASC.Core.Common/Notify/Telegram/Dao/CachedTelegramDao.cs
#	common/ASC.Data.Backup.Core/Core/DbHelper.cs
#	common/ASC.Data.Backup.Core/Storage/BackupRepository.cs
#	common/ASC.Data.Backup.Core/Tasks/Data/TableInfo.cs
#	common/ASC.Data.Storage/BaseStorage.cs
#	common/ASC.Data.Storage/DiscStorage/DiscDataStore.cs
#	common/ASC.Data.Storage/GoogleCloud/GoogleCloudStorage.cs
#	common/ASC.Data.Storage/RackspaceCloud/RackspaceCloudStorage.cs
#	common/ASC.Data.Storage/S3/S3Storage.cs
#	common/ASC.Notify.Textile/JabberStyler.cs
#	common/ASC.Textile/Blocks/GlyphBlockModifier.cs
#	common/ASC.Textile/States/TableRowFormatterState.cs
#	common/services/ASC.ApiSystem/Classes/CommonMethods.cs
#	common/services/ASC.ApiSystem/Controllers/PortalController.cs
#	common/services/ASC.ClearEvents/Program.cs
#	common/services/ASC.TelegramService/Startup.cs
#	common/services/ASC.UrlShortener.Svc/Program.cs
#	products/ASC.Files/Core/Core/Entries/File.cs
#	products/ASC.Files/Core/Core/Entries/FileEntry.cs
#	products/ASC.Files/Core/Core/Entries/FileHelper.cs
#	products/ASC.Files/Core/Core/Entries/Folder.cs
#	products/ASC.Files/Core/Core/FileStorageService.cs
#	products/ASC.Files/Core/Core/Thirdparty/ProviderDao/ProviderDaoBase.cs
#	products/ASC.Files/Core/Helpers/ThirdpartyConfiguration.cs
#	products/ASC.Files/Core/HttpHandlers/FileHandler.ashx.cs
#	products/ASC.Files/Core/Services/DocumentService/Configuration.cs
#	products/ASC.Files/Core/Services/DocumentService/DocumentServiceConnector.cs
#	products/ASC.Files/Core/Services/DocumentService/DocumentServiceTracker.cs
#	products/ASC.Files/Core/Services/WCFService/FileOperations/FileDownloadOperation.cs
#	products/ASC.Files/Core/Services/WCFService/FileOperations/FileMoveCopyOperation.cs
#	products/ASC.Files/Core/Utils/EntryManager.cs
#	products/ASC.Files/Server/Helpers/FilesControllerHelper.cs
#	products/ASC.Files/Server/Startup.cs
#	products/ASC.Files/Service/Thumbnail/Builder.cs
#	products/ASC.Files/Service/Thumbnail/FileDataProvider.cs
#	products/ASC.People/Server/Startup.cs
#	web/ASC.Web.Core/Files/DocumentService.cs
#	web/ASC.Web.Core/Files/DocumentServiceLicense.cs
#	web/ASC.Web.Core/QuotaSync.cs
#	web/ASC.Web.Core/Sms/SmsKeyStorage.cs
#	web/ASC.Web.Core/Users/UserManagerWrapper.cs
#	web/ASC.Web.HealthChecks.UI/Program.cs
#	web/ASC.Web.Studio/Startup.cs
2022-02-10 13:16:33 +03:00

323 lines
9.5 KiB
C#

/*
*
* (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.
*
*/
namespace ASC.Core.Tenants
{
[DebuggerDisplay("{Name}")]
public class TenantQuota : ICloneable
{
public static readonly TenantQuota Default = new TenantQuota(Tenant.DEFAULT_TENANT)
{
Name = "Default",
MaxFileSize = 25 * 1024 * 1024, // 25Mb
MaxTotalSize = long.MaxValue,
ActiveUsers = int.MaxValue,
};
public int Id { get; set; }
public string Name { get; set; }
public long MaxFileSize { get; set; }
public long MaxTotalSize { get; set; }
public int ActiveUsers { get; set; }
public string Features { get; set; }
public decimal Price { get; set; }
public string AvangateId { get; set; }
public bool Visible { get; set; }
public bool Year
{
get { return GetFeature("year"); }
set { SetFeature("year", value); }
}
public bool Year3
{
get { return GetFeature("year3"); }
set { SetFeature("year3", value); }
}
public bool NonProfit
{
get { return GetFeature("non-profit"); }
set { SetFeature("non-profit", value); }
}
public bool Trial
{
get { return GetFeature("trial"); }
set { SetFeature("trial", value); }
}
public bool Free
{
get { return GetFeature("free"); }
set { SetFeature("free", value); }
}
public bool Open
{
get { return GetFeature("open"); }
set { SetFeature("open", value); }
}
public bool ControlPanel
{
get { return GetFeature("controlpanel"); }
set { SetFeature("controlpanel", value); }
}
public bool Update
{
get { return GetFeature("update"); }
set { SetFeature("update", value); }
}
public bool Support
{
get { return GetFeature("support"); }
set { SetFeature("support", value); }
}
public bool Audit
{
get { return GetFeature("audit"); }
set { SetFeature("audit", value); }
}
public bool DocsEdition
{
get { return GetFeature("docs"); }
set { SetFeature("docs", value); }
}
public bool HasDomain
{
get { return GetFeature("domain"); }
set { SetFeature("domain", value); }
}
public bool HealthCheck
{
get { return GetFeature("healthcheck"); }
set { SetFeature("healthcheck", value); }
}
public bool HasMigration
{
get { return GetFeature("migration"); }
set { SetFeature("migration", value); }
}
public bool Ldap
{
get { return GetFeature("ldap"); }
set { SetFeature("ldap", value); }
}
public bool Sso
{
get { return GetFeature("sso"); }
set { SetFeature("sso", value); }
}
public bool Branding
{
get { return GetFeature("branding"); }
set { SetFeature("branding", value); }
}
public bool SSBranding
{
get { return GetFeature("ssbranding"); }
set { SetFeature("ssbranding", value); }
}
public bool WhiteLabel
{
get { return GetFeature("whitelabel"); }
set { SetFeature("whitelabel", value); }
}
public bool Customization
{
get { return GetFeature("customization"); }
set { SetFeature("customization", value); }
}
public bool DiscEncryption
{
get { return GetFeature("discencryption"); }
set { SetFeature("discencryption", value); }
}
public bool PrivacyRoom
{
get { return GetFeature("privacyroom"); }
set { SetFeature("privacyroom", value); }
}
public bool EnableMailServer
{
get { return GetFeature("mailserver"); }
set { SetFeature("mailserver", value); }
}
public int CountAdmin
{
get
{
var features = (Features ?? string.Empty).Split(' ', ',', ';').ToList();
var admin = features.FirstOrDefault(f => f.StartsWith("admin:"));
int countAdmin;
if (admin == null || !int.TryParse(admin.Replace("admin:", ""), out countAdmin))
{
countAdmin = int.MaxValue;
}
return countAdmin;
}
set
{
var features = (Features ?? string.Empty).Split(' ', ',', ';').ToList();
var admin = features.FirstOrDefault(f => f.StartsWith("admin:"));
features.Remove(admin);
if (value > 0)
{
features.Add("admin:" + value);
}
Features = string.Join(",", features.ToArray());
}
}
public bool Restore
{
get { return GetFeature("restore"); }
set { SetFeature("restore", value); }
}
public bool AutoBackup
{
get { return GetFeature("autobackup"); }
set { SetFeature("autobackup", value); }
}
public bool Oauth
{
get { return GetFeature("oauth"); }
set { SetFeature("oauth", value); }
}
public bool ContentSearch
{
get { return GetFeature("contentsearch"); }
set { SetFeature("contentsearch", value); }
}
public int CountPortals
{
get
{
var features = (Features ?? string.Empty).Split(' ', ',', ';').ToList();
var portals = features.FirstOrDefault(f => f.StartsWith("portals:"));
if (portals == null || !int.TryParse(portals.Replace("portals:", ""), out var countPortals) || countPortals <= 0)
{
countPortals = 0;
}
return countPortals;
}
set
{
var features = (Features ?? string.Empty).Split(' ', ',', ';').ToList();
var portals = features.FirstOrDefault(f => f.StartsWith("portals:"));
features.Remove(portals);
if (value > 0)
{
features.Add("portals:" + value);
}
Features = string.Join(",", features.ToArray());
}
}
public bool ThirdParty
{
get { return GetFeature("thirdparty"); }
set { SetFeature("thirdparty", value); }
}
public TenantQuota()
{
}
public TenantQuota(int tenant)
{
Id = tenant;
}
public override int GetHashCode()
{
return Id.GetHashCode();
}
public override bool Equals(object obj)
{
return obj is TenantQuota q && q.Id == Id;
}
public bool GetFeature(string feature)
{
return !string.IsNullOrEmpty(Features) && Features.Split(' ', ',', ';').Contains(feature);
}
internal void SetFeature(string feature, bool set)
{
var features = (Features == null
? Array.Empty<string>()
: Features.Split(' ', ',', ';')).ToList();
if (set && !features.Contains(feature))
{
features.Add(feature);
}
else if (!set && features.Contains(feature))
{
features.Remove(feature);
}
Features = string.Join(",", features.ToArray());
}
public object Clone()
{
return MemberwiseClone();
}
}
}