DocSpace-client/common/ASC.Data.Backup.Core/Tasks/ColumnMapper.cs

164 lines
5.5 KiB
C#
Raw Permalink Normal View History

2022-03-15 18:00:53 +00:00
// (c) Copyright Ascensio System SIA 2010-2022
//
// This program is a free software product.
// You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL 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 details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
//
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
//
// The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
//
// Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks.
//
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
namespace ASC.Data.Backup.Tasks;
public class ColumnMapper
2020-05-20 15:14:44 +00:00
{
private readonly Dictionary<string, object> _mappings = new Dictionary<string, object>();
private readonly Dictionary<string, object> _newMappings = new Dictionary<string, object>();
private readonly DateTime _now = DateTime.UtcNow;
public int GetTenantMapping()
2020-05-20 15:14:44 +00:00
{
var mapping = GetMapping("tenants_tenants", "id");
2020-05-20 15:14:44 +00:00
return mapping != null ? Convert.ToInt32(mapping) : -1;
}
2020-05-20 15:14:44 +00:00
public string GetUserMapping(string oldValue)
{
var mapping = GetMapping("core_user", "id", oldValue);
return mapping != null ? Convert.ToString(mapping) : null;
}
2020-05-20 15:14:44 +00:00
public void SetDateMapping(string tableName, KeyValuePair<string, bool> column, object oldValue)
{
if (!column.Value)
2020-05-20 15:14:44 +00:00
{
SetMapping(tableName, column.Key, oldValue, _now);
2022-02-09 18:33:50 +00:00
return;
2020-05-20 15:14:44 +00:00
}
var newValue = Convert.ToDateTime(oldValue);
var tenantCreationDate = GetTenantCreationDate();
if (tenantCreationDate != DateTime.MinValue && newValue > DateTime.MinValue.AddDays(1) && newValue < DateTime.MaxValue.AddDays(-1))
2020-05-20 15:14:44 +00:00
{
newValue = newValue.AddDays(_now.Subtract(tenantCreationDate).Days);
}
2022-02-09 18:33:50 +00:00
SetMapping(tableName, column.Key, oldValue, newValue);
}
2020-05-20 15:14:44 +00:00
public void SetMapping(string tableName, string columnName, object oldValue, object newValue)
{
if (tableName == "tenants_tenants")
{
var mapping = new MappingWithCondition { NewValue = newValue, OldValue = oldValue };
AddMappingInternal(GetMappingKey(tableName, columnName), mapping);
2020-05-20 15:14:44 +00:00
}
AddMappingInternal(GetMappingKey(tableName, columnName, oldValue), newValue);
}
2020-05-20 15:14:44 +00:00
public object GetMapping(string tableName, string columnName)
{
var mappingKey = GetMappingKey(tableName, columnName);
2022-02-09 18:33:50 +00:00
return HasMapping(mappingKey) ? ((MappingWithCondition)GetMappingInternal(mappingKey)).NewValue : null;
}
2020-05-20 15:14:44 +00:00
public object GetMapping(string tableName, string columnName, object oldValue)
{
var mappingKey = GetMappingKey(tableName, columnName, oldValue);
if (HasMapping(mappingKey))
2020-05-20 15:14:44 +00:00
{
return GetMappingInternal(mappingKey);
2020-05-20 15:14:44 +00:00
}
mappingKey = GetMappingKey(tableName, columnName);
if (HasMapping(mappingKey))
2020-05-20 15:14:44 +00:00
{
var mapping = (MappingWithCondition)GetMappingInternal(mappingKey);
2022-02-09 18:33:50 +00:00
return mapping.NewValue;
}
2022-02-09 18:33:50 +00:00
return null;
}
2022-02-09 18:33:50 +00:00
public void Commit()
{
foreach (var mapping in _newMappings)
{
_mappings[mapping.Key] = mapping.Value;
2020-05-20 15:14:44 +00:00
}
_newMappings.Clear();
}
2022-02-09 18:33:50 +00:00
public void Rollback()
{
_newMappings.Clear();
}
2020-05-20 15:14:44 +00:00
private DateTime GetTenantCreationDate()
{
var mappingKey = GetMappingKey("tenants_tenants", "creationdatetime");
if (HasMapping(mappingKey))
2020-05-20 15:14:44 +00:00
{
var mapping = (MappingWithCondition)GetMappingInternal(mappingKey);
2020-05-20 15:14:44 +00:00
return mapping != null ? Convert.ToDateTime(mapping.OldValue) : DateTime.MinValue;
2022-02-09 18:33:50 +00:00
}
return DateTime.MinValue;
}
2022-02-09 18:33:50 +00:00
private void AddMappingInternal(string key, object value)
{
_newMappings[key] = value;
}
2020-05-20 15:14:44 +00:00
private object GetMappingInternal(string key)
{
return _newMappings.ContainsKey(key) ? _newMappings[key] : _mappings[key];
}
2020-05-20 15:14:44 +00:00
private bool HasMapping(string key)
{
return _newMappings.ContainsKey(key) || _mappings.ContainsKey(key);
}
2020-05-20 15:14:44 +00:00
private static string GetMappingKey(string tableName, string columnName)
2022-04-14 19:42:15 +00:00
{
return $"t:{tableName};c:{columnName}".ToLowerInvariant();
}
2020-05-20 15:14:44 +00:00
private static string GetMappingKey(string tableName, string columnName, object oldValue)
{
return string.Format("{0};v:{1}", GetMappingKey(tableName, columnName), oldValue).ToLowerInvariant();
}
2020-05-20 15:14:44 +00:00
private class MappingWithCondition
{
public object NewValue { get; set; }
public object OldValue { get; set; }
2020-05-20 15:14:44 +00:00
}
}