DocSpace-buildtools/common/ASC.MessagingSystem/DbSender/MessagesRepository.cs

267 lines
9.3 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.
*
*/
using IsolationLevel = System.Data.IsolationLevel;
namespace ASC.MessagingSystem.DbSender
{
[Singletone(Additional = typeof(MessagesRepositoryExtension))]
public class MessagesRepository : IDisposable
{
private DateTime lastSave = DateTime.UtcNow;
private readonly TimeSpan CacheTime;
private readonly IDictionary<string, EventMessage> Cache;
private Parser Parser { get; set; }
private readonly Timer Timer;
private bool timerStarted;
public ILog Log { get; set; }
private IServiceProvider ServiceProvider { get; }
public MessagesRepository(IServiceProvider serviceProvider, IOptionsMonitor<ILog> options)
{
CacheTime = TimeSpan.FromMinutes(1);
Cache = new Dictionary<string, EventMessage>();
timerStarted = false;
Log = options.CurrentValue;
ServiceProvider = serviceProvider;
Timer = new Timer(FlushCache);
}
public void Add(EventMessage message)
{
// messages with action code < 2000 are related to login-history
if ((int)message.Action < 2000)
{
using var scope = ServiceProvider.CreateScope();
using var ef = scope.ServiceProvider.GetService<DbContextManager<MessagesContext>>().Get("messages");
AddLoginEvent(message, ef);
return;
}
var now = DateTime.UtcNow;
var key = string.Format("{0}|{1}|{2}|{3}", message.TenantId, message.UserId, message.Id, now.Ticks);
lock (Cache)
{
Cache[key] = message;
if (!timerStarted)
{
Timer.Change(0, 100);
timerStarted = true;
}
}
}
private void FlushCache(object state)
{
List<EventMessage> events = null;
if (CacheTime < DateTime.UtcNow - lastSave || Cache.Count > 100)
{
lock (Cache)
{
Timer.Change(-1, -1);
timerStarted = false;
events = new List<EventMessage>(Cache.Values);
Cache.Clear();
lastSave = DateTime.UtcNow;
}
}
if (events == null) return;
using var scope = ServiceProvider.CreateScope();
using var ef = scope.ServiceProvider.GetService<DbContextManager<Messages>>().Get("messages");
using var tx = ef.Database.BeginTransaction(IsolationLevel.ReadUncommitted);
var dict = new Dictionary<string, ClientInfo>();
foreach (var message in events)
{
if (!string.IsNullOrEmpty(message.UAHeader))
{
try
{
ClientInfo clientInfo;
if (dict.TryGetValue(message.UAHeader, out clientInfo))
{
}
else
{
Parser = Parser ?? Parser.GetDefault();
clientInfo = Parser.Parse(message.UAHeader);
dict.Add(message.UAHeader, clientInfo);
}
if (clientInfo != null)
{
message.Browser = GetBrowser(clientInfo);
message.Platform = GetPlatform(clientInfo);
}
}
catch (Exception e)
{
Log.Error("FlushCache " + message.Id, e);
}
}
// messages with action code < 2000 are related to login-history
if ((int)message.Action >= 2000)
{
AddAuditEvent(message, ef);
}
}
tx.Commit();
}
private static void AddLoginEvent(EventMessage message, MessagesContext dbContext)
{
var le = new LoginEvent
{
Ip = message.IP,
Login = message.Initiator,
Browser = message.Browser,
Platform = message.Platform,
Date = message.Date,
TenantId = message.TenantId,
UserId = message.UserId,
Page = message.Page,
Action = (int)message.Action
};
if (message.Description != null && message.Description.Count > 0)
{
le.DescriptionRaw =
JsonConvert.SerializeObject(message.Description, new JsonSerializerSettings
{
DateTimeZoneHandling = DateTimeZoneHandling.Utc
});
}
dbContext.LoginEvents.Add(le);
dbContext.SaveChanges();
}
private static void AddAuditEvent(EventMessage message, Messages dbContext)
{
var ae = new AuditEvent
{
Ip = message.IP,
Initiator = message.Initiator,
Browser = message.Browser,
Platform = message.Platform,
Date = message.Date,
TenantId = message.TenantId,
UserId = message.UserId,
Page = message.Page,
Action = (int)message.Action,
Target = message.Target?.ToString()
};
if (message.Description != null && message.Description.Count > 0)
{
ae.DescriptionRaw =
JsonConvert.SerializeObject(GetSafeDescription(message.Description), new JsonSerializerSettings
{
DateTimeZoneHandling = DateTimeZoneHandling.Utc
});
}
dbContext.AuditEvents.Add(ae);
dbContext.SaveChanges();
}
private static IList<string> GetSafeDescription(IEnumerable<string> description)
{
const int maxLength = 15000;
var currentLength = 0;
var safe = new List<string>();
foreach (var d in description.Where(r => r != null))
{
if (currentLength + d.Length <= maxLength)
{
currentLength += d.Length;
safe.Add(d);
}
else
{
safe.Add(d.Substring(0, maxLength - currentLength - 3) + "...");
break;
}
}
return safe;
}
private static string GetBrowser(ClientInfo clientInfo)
{
return clientInfo == null
? null
: $"{clientInfo.UA.Family} {clientInfo.UA.Major}";
}
private static string GetPlatform(ClientInfo clientInfo)
{
return clientInfo == null
? null
: $"{clientInfo.OS.Family} {clientInfo.OS.Major}";
}
public void Dispose()
{
if (Timer != null)
{
Timer.Dispose();
}
}
}
public class Messages : MessagesContext
{
public DbSet<DbTenant> Tenants { get; set; }
public DbSet<DbWebstudioSettings> WebstudioSettings { get; set; }
}
public static class MessagesRepositoryExtension
{
public static void Register(DIHelper services)
{
services.TryAdd<DbContextManager<MessagesContext>>();
}
}
}