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

188 lines
6.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 System;
using System.Collections.Generic;
2019-08-15 12:04:42 +00:00
using System.Linq;
2019-12-02 09:12:16 +00:00
using System.Linq.Expressions;
using ASC.Core.Common.EF;
2019-05-15 14:56:09 +00:00
using ASC.Core.Tenants;
namespace ASC.Core.Data
{
2019-12-02 09:12:16 +00:00
class DbQuotaService : IQuotaService
{
2019-12-02 12:04:22 +00:00
private Expression<Func<DbQuota, TenantQuota>> FromDbQuotaToTenantQuota { get; set; }
private Expression<Func<DbQuotaRow, TenantQuotaRow>> FromDbQuotaRowToTenantQuotaRow { get; set; }
2019-12-02 09:12:16 +00:00
private CoreDbContext CoreDbContext { get; set; }
public DbQuotaService(DbContextManager<CoreDbContext> dbContextManager)
{
CoreDbContext = dbContextManager.Value;
FromDbQuotaToTenantQuota = r => new TenantQuota()
{
Name = r.Name,
ActiveUsers = r.ActiveUsers != 0 ? r.ActiveUsers : int.MaxValue,
AvangateId = r.AvangateId,
Features = r.Features,
MaxFileSize = GetInBytes(r.MaxFileSize),
MaxTotalSize = GetInBytes(r.MaxTotalSize),
Price = r.Price,
Price2 = r.Price2,
Visible = r.Visible
};
FromDbQuotaRowToTenantQuotaRow = r => new TenantQuotaRow
{
Counter = r.Counter,
Path = r.Path,
Tag = r.Tag,
Tenant = r.Tenant
};
2019-05-15 14:56:09 +00:00
}
public IEnumerable<TenantQuota> GetTenantQuotas()
{
2019-12-02 09:12:16 +00:00
return
CoreDbContext.Quotas
.Select(FromDbQuotaToTenantQuota)
.ToList();
2019-05-15 14:56:09 +00:00
}
public TenantQuota GetTenantQuota(int id)
{
2019-12-02 09:12:16 +00:00
return
CoreDbContext.Quotas
.Where(r => r.Tenant == id)
.Select(FromDbQuotaToTenantQuota)
2019-05-15 14:56:09 +00:00
.SingleOrDefault();
}
public TenantQuota SaveTenantQuota(TenantQuota quota)
{
if (quota == null) throw new ArgumentNullException("quota");
2019-12-02 09:12:16 +00:00
var dbQuota = new DbQuota
{
Tenant = quota.Id,
Name = quota.Name,
MaxFileSize = GetInMBytes(quota.MaxFileSize),
MaxTotalSize = GetInMBytes(quota.MaxTotalSize),
ActiveUsers = quota.ActiveUsers,
Features = quota.Features,
Price = quota.Price,
Price2 = quota.Price2,
AvangateId = quota.AvangateId,
Visible = quota.Visible
};
CoreDbContext.Quotas.Add(dbQuota);
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
2019-12-02 09:12:16 +00:00
CoreDbContext.Quotas.Remove(d);
2019-12-02 12:04:22 +00:00
CoreDbContext.SaveChanges();
tr.Commit();
2019-05-15 14:56:09 +00:00
}
public void SetTenantQuotaRow(TenantQuotaRow row, bool exchange)
{
if (row == null) throw new ArgumentNullException("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)
.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.QuotaRows.Add(dbQuotaRow);
CoreDbContext.SaveChanges();
2019-08-15 15:08:40 +00:00
tx.Commit();
2019-05-15 14:56:09 +00:00
}
public IEnumerable<TenantQuotaRow> FindTenantQuotaRows(TenantQuotaRowQuery query)
{
if (query == null) throw new ArgumentNullException("query");
2019-12-02 09:12:16 +00:00
IQueryable<DbQuotaRow> q = CoreDbContext.QuotaRows;
2019-05-15 14:56:09 +00:00
if (query.Tenant != Tenant.DEFAULT_TENANT)
2019-12-02 09:12:16 +00:00
{
q = q.Where(r => r.Tenant == query.Tenant);
2019-05-15 14:56:09 +00:00
}
if (!string.IsNullOrEmpty(query.Path))
2019-12-02 09:12:16 +00:00
{
q = q.Where(r => r.Path == query.Path);
}
2019-08-15 13:00:20 +00:00
if (query.LastModified != default)
2019-12-02 09:12:16 +00:00
{
q = q.Where(r => r.LastModified >= query.LastModified);
2019-05-15 14:56:09 +00:00
}
2019-12-02 09:12:16 +00:00
return q.Select(FromDbQuotaRowToTenantQuotaRow).ToList();
2019-05-15 14:56:09 +00:00
}
private static long GetInBytes(long bytes)
{
const long MB = 1024 * 1024;
return bytes < MB ? bytes * MB : bytes;
}
private static long GetInMBytes(long bytes)
{
const long MB = 1024 * 1024;
return bytes < MB * MB ? bytes / MB : bytes;
}
}
}