DocSpace-buildtools/common/ASC.Core.Common/Tenants/TenantQuota.cs

326 lines
9.0 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, IMapFrom<DbQuota>
{
public static readonly TenantQuota Default = new TenantQuota(Tenants.Tenant.DefaultTenant)
{
Name = "Default",
MaxFileSize = 25 * 1024 * 1024, // 25Mb
MaxTotalSize = long.MaxValue,
ActiveUsers = int.MaxValue,
};
public int Tenant { 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 => GetFeature("year");
set => SetFeature("year", value);
}
public bool Year3
{
get => GetFeature("year3");
set => SetFeature("year3", value);
}
public bool NonProfit
{
get => GetFeature("non-profit");
set => SetFeature("non-profit", value);
}
public bool Trial
{
get => GetFeature("trial");
set => SetFeature("trial", value);
}
public bool Free
{
get => GetFeature("free");
set => SetFeature("free", value);
}
public bool Open
{
get => GetFeature("open");
set => SetFeature("open", value);
}
public bool ControlPanel
{
get => GetFeature("controlpanel");
set => SetFeature("controlpanel", value);
}
public bool Update
{
get => GetFeature("update");
set => SetFeature("update", value);
}
public bool Support
{
get => GetFeature("support");
set => SetFeature("support", value);
}
public bool Audit
{
get => GetFeature("audit");
set => SetFeature("audit", value);
}
public bool DocsEdition
{
get => GetFeature("docs");
set => SetFeature("docs", value);
}
public bool HasDomain
{
get => GetFeature("domain");
set => SetFeature("domain", value);
}
public bool HealthCheck
{
get => GetFeature("healthcheck");
set => SetFeature("healthcheck", value);
}
public bool HasMigration
{
get => GetFeature("migration");
set => SetFeature("migration", value);
}
public bool Ldap
{
get => GetFeature("ldap");
set => SetFeature("ldap", value);
}
public bool Sso
{
get => GetFeature("sso");
set => SetFeature("sso", value);
}
public bool Branding
{
get => GetFeature("branding");
set => SetFeature("branding", value);
}
public bool SSBranding
{
get => GetFeature("ssbranding");
set => SetFeature("ssbranding", value);
}
public bool WhiteLabel
{
get => GetFeature("whitelabel");
set => SetFeature("whitelabel", value);
}
public bool Customization
{
get => GetFeature("customization");
set => SetFeature("customization", value);
}
public bool DiscEncryption
{
get => GetFeature("discencryption");
set => SetFeature("discencryption", value);
}
public bool PrivacyRoom
{
get => GetFeature("privacyroom");
set => SetFeature("privacyroom", value);
}
public bool EnableMailServer
{
get => 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 => GetFeature("restore");
set => SetFeature("restore", value);
}
public bool AutoBackup
{
get => GetFeature("autobackup");
set => SetFeature("autobackup", value);
}
public bool Oauth
{
get => GetFeature("oauth");
set => SetFeature("oauth", value);
}
public bool ContentSearch
{
get => 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 => GetFeature("thirdparty");
set => SetFeature("thirdparty", value);
}
public TenantQuota() { }
public TenantQuota(int tenant)
{
Tenant = tenant;
}
public override int GetHashCode()
{
return Tenant.GetHashCode();
}
public override bool Equals(object obj)
{
return obj is TenantQuota q && q.Tenant == Tenant;
}
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();
}
public void Mapping(Profile profile)
{
profile.CreateMap<DbQuota, TenantQuota>()
.ForMember(dest => dest.ActiveUsers, opt =>
opt.MapFrom(src => src.ActiveUsers != 0 ? src.ActiveUsers : int.MaxValue))
.ForMember(dest => dest.MaxFileSize, opt => opt.MapFrom(src => ByteConverter.GetInBytes(src.MaxFileSize)))
.ForMember(dest => dest.MaxTotalSize, opt => opt.MapFrom(src => ByteConverter.GetInBytes(src.MaxTotalSize)));
}
}