DocSpace-client/common/ASC.Core.Common/Data/DbQuotaService.cs

153 lines
5.4 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 AutoMapper.QueryableExtensions;
2019-05-15 14:56:09 +00:00
namespace ASC.Core.Data
2020-10-22 17:57:18 +00:00
{
[Scope]
2020-02-20 08:05:10 +00:00
class ConfigureDbQuotaService : IConfigureNamedOptions<DbQuotaService>
{
private readonly DbContextManager<CoreDbContext> _dbContextManager;
2020-02-20 08:05:10 +00:00
public string DbId { get; set; }
public ConfigureDbQuotaService(DbContextManager<CoreDbContext> dbContextManager)
{
_dbContextManager = dbContextManager;
2020-02-20 08:05:10 +00:00
}
public void Configure(string name, DbQuotaService options)
{
options.LazyCoreDbContext = new Lazy<CoreDbContext>(() => _dbContextManager.Get(name));
2020-02-20 08:05:10 +00:00
}
public void Configure(DbQuotaService options)
{
options.LazyCoreDbContext = new Lazy<CoreDbContext>(() => _dbContextManager.Value);
2020-02-20 08:05:10 +00:00
}
}
2020-10-19 15:53:15 +00:00
[Scope]
2019-12-02 09:12:16 +00:00
class DbQuotaService : IQuotaService
{
internal CoreDbContext CoreDbContext => LazyCoreDbContext.Value;
2020-10-18 19:00:38 +00:00
internal Lazy<CoreDbContext> LazyCoreDbContext { get; set; }
private readonly IMapper _mapper;
2019-12-02 09:12:16 +00:00
public DbQuotaService(DbContextManager<CoreDbContext> dbContextManager, IMapper mapper)
2020-02-20 14:57:48 +00:00
{
2020-10-18 19:00:38 +00:00
LazyCoreDbContext = new Lazy<CoreDbContext>(() => dbContextManager.Value);
_mapper = mapper;
2020-02-20 14:57:48 +00:00
}
2019-05-15 14:56:09 +00:00
public IEnumerable<TenantQuota> GetTenantQuotas()
{
return CoreDbContext.Quotas
.ProjectTo<TenantQuota>(_mapper.ConfigurationProvider)
2019-12-02 09:12:16 +00:00
.ToList();
2019-05-15 14:56:09 +00:00
}
public TenantQuota GetTenantQuota(int id)
{
return CoreDbContext.Quotas
.Where(r => r.Tenant == id)
.ProjectTo<TenantQuota>(_mapper.ConfigurationProvider)
2019-05-15 14:56:09 +00:00
.SingleOrDefault();
}
public TenantQuota SaveTenantQuota(TenantQuota quota)
{
if (quota == null)
{
throw new ArgumentNullException(nameof(quota));
}
2019-12-02 09:12:16 +00:00
CoreDbContext.AddOrUpdate(r => r.Quotas, _mapper.Map<TenantQuota, DbQuota>(quota));
2019-12-02 09:12:16 +00:00
CoreDbContext.SaveChanges();
2019-05-15 14:56:09 +00:00
return quota;
}
public void RemoveTenantQuota(int id)
2019-12-02 09:12:16 +00:00
{
2019-12-02 12:04:22 +00:00
using var tr = CoreDbContext.Database.BeginTransaction();
2019-12-02 09:12:16 +00:00
var d = CoreDbContext.Quotas
.Where(r => r.Tenant == id)
.SingleOrDefault();
2019-12-02 12:04:22 +00:00
2020-01-20 15:09:52 +00:00
if (d != null)
{
CoreDbContext.Quotas.Remove(d);
CoreDbContext.SaveChanges();
}
2019-12-02 12:04:22 +00:00
tr.Commit();
2019-05-15 14:56:09 +00:00
}
public void SetTenantQuotaRow(TenantQuotaRow row, bool exchange)
{
if (row == null)
{
throw new ArgumentNullException(nameof(row));
}
2019-08-15 15:08:40 +00:00
2019-12-02 09:12:16 +00:00
using var tx = CoreDbContext.Database.BeginTransaction();
var counter = CoreDbContext.QuotaRows
.Where(r => r.Path == row.Path && r.Tenant == row.Tenant)
.Select(r => r.Counter)
2020-12-04 13:48:54 +00:00
.Take(1)
2019-12-02 09:12:16 +00:00
.FirstOrDefault();
var dbQuotaRow = new DbQuotaRow
{
Tenant = row.Tenant,
Path = row.Path,
Counter = exchange ? counter + row.Counter : row.Counter,
Tag = row.Tag,
LastModified = DateTime.UtcNow
};
CoreDbContext.AddOrUpdate(r => r.QuotaRows, _mapper.Map<TenantQuotaRow, DbQuotaRow>(row));
2019-12-02 09:12:16 +00:00
CoreDbContext.SaveChanges();
2019-08-15 15:08:40 +00:00
tx.Commit();
2019-05-15 14:56:09 +00:00
}
2020-12-28 13:22:08 +00:00
public IEnumerable<TenantQuotaRow> FindTenantQuotaRows(int tenantId)
{
IQueryable<DbQuotaRow> q = CoreDbContext.QuotaRows;
2019-12-02 09:12:16 +00:00
if (tenantId != Tenant.DefaultTenant)
2019-12-02 09:12:16 +00:00
{
2020-12-28 13:22:08 +00:00
q = q.Where(r => r.Tenant == tenantId);
2019-05-15 14:56:09 +00:00
}
return q.ProjectTo<TenantQuotaRow>(_mapper.ConfigurationProvider).ToList();
2019-05-15 14:56:09 +00:00
}
}
}