DocSpace-buildtools/common/services/ASC.Notify/DbWorker.cs

190 lines
6.8 KiB
C#
Raw Normal View History

2019-07-29 09:15:48 +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.
*
*/
2022-02-16 13:14:31 +00:00
namespace ASC.Notify;
[Singletone(Additional = typeof(DbWorkerExtension))]
public class DbWorker
2019-07-29 09:15:48 +00:00
{
2022-02-16 13:14:31 +00:00
private readonly string _dbid;
private readonly object _syncRoot = new object();
2022-02-18 13:56:23 +00:00
private readonly IMapper _mapper;
2022-02-16 13:14:31 +00:00
private readonly IServiceScopeFactory _serviceScopeFactory;
2022-02-16 13:14:31 +00:00
public NotifyServiceCfg NotifyServiceCfg { get; }
2022-02-18 13:56:23 +00:00
public DbWorker(IServiceScopeFactory serviceScopeFactory, IOptions<NotifyServiceCfg> notifyServiceCfg, IMapper mapper)
2019-07-29 09:15:48 +00:00
{
_serviceScopeFactory = serviceScopeFactory;
2022-02-16 13:14:31 +00:00
NotifyServiceCfg = notifyServiceCfg.Value;
_dbid = NotifyServiceCfg.ConnectionStringName;
2022-02-18 13:56:23 +00:00
_mapper = mapper;
2022-02-16 13:14:31 +00:00
}
2019-07-29 09:15:48 +00:00
2022-02-16 13:14:31 +00:00
public int SaveMessage(NotifyMessage m)
{
using var scope = _serviceScopeFactory.CreateScope();
2022-02-16 13:14:31 +00:00
using var dbContext = scope.ServiceProvider.GetService<DbContextManager<NotifyDbContext>>().Get(_dbid);
using var tx = dbContext.Database.BeginTransaction(IsolationLevel.ReadCommitted);
2019-07-29 09:15:48 +00:00
2022-02-18 13:56:23 +00:00
var notifyQueue = _mapper.Map<NotifyMessage, NotifyQueue>(m);
2022-02-16 13:14:31 +00:00
notifyQueue = dbContext.NotifyQueue.Add(notifyQueue).Entity;
dbContext.SaveChanges();
var id = notifyQueue.NotifyId;
var info = new NotifyInfo
{
NotifyId = id,
State = 0,
Attempts = 0,
ModifyDate = DateTime.UtcNow,
Priority = m.Priority
};
dbContext.NotifyInfo.Add(info);
dbContext.SaveChanges();
tx.Commit();
2019-07-29 09:15:48 +00:00
2022-02-16 13:14:31 +00:00
return 1;
}
public IDictionary<int, NotifyMessage> GetMessages(int count)
{
lock (_syncRoot)
2019-07-29 09:15:48 +00:00
{
using var scope = _serviceScopeFactory.CreateScope();
using var dbContext = scope.ServiceProvider.GetService<DbContextManager<NotifyDbContext>>().Get(_dbid);
2022-02-16 13:14:31 +00:00
using var tx = dbContext.Database.BeginTransaction();
2019-08-15 15:08:40 +00:00
2022-02-16 13:14:31 +00:00
var q = dbContext.NotifyQueue
.Join(dbContext.NotifyInfo, r => r.NotifyId, r => r.NotifyId, (queue, info) => new { queue, info })
.Where(r => r.info.State == (int)MailSendingState.NotSended || r.info.State == (int)MailSendingState.Error && r.info.ModifyDate < DateTime.UtcNow - TimeSpan.Parse(NotifyServiceCfg.Process.AttemptsInterval))
.OrderBy(i => i.info.Priority)
.ThenBy(i => i.info.NotifyId)
.Take(count);
2019-12-10 13:42:29 +00:00
2022-02-16 13:14:31 +00:00
var messages = q
.ToDictionary(
r => r.queue.NotifyId,
r =>
{
2022-02-18 13:56:23 +00:00
var res = _mapper.Map<NotifyQueue, NotifyMessage>(r.queue);
2022-02-16 13:14:31 +00:00
try
{
2022-02-18 12:54:39 +00:00
res.Attachments.AddRange(JsonConvert.DeserializeObject<RepeatedField<NotifyMessageAttachment>>(r.queue.Attachments));
2022-02-16 13:14:31 +00:00
}
catch (Exception)
{
2019-08-15 15:08:40 +00:00
2022-02-16 13:14:31 +00:00
}
2022-02-18 13:56:23 +00:00
2022-02-16 13:14:31 +00:00
return res;
});
2019-12-10 13:42:29 +00:00
2022-02-16 13:14:31 +00:00
var info = dbContext.NotifyInfo.Where(r => messages.Keys.Any(a => a == r.NotifyId)).ToList();
2019-07-29 09:15:48 +00:00
2022-02-16 13:14:31 +00:00
foreach (var i in info)
2019-07-29 09:15:48 +00:00
{
2022-02-16 13:14:31 +00:00
i.State = (int)MailSendingState.Sending;
}
2019-12-10 13:42:29 +00:00
2022-02-16 13:14:31 +00:00
dbContext.SaveChanges();
tx.Commit();
2019-08-15 15:08:40 +00:00
2022-02-16 13:14:31 +00:00
return messages;
2019-07-29 09:15:48 +00:00
}
2022-02-16 13:14:31 +00:00
}
2019-07-29 09:15:48 +00:00
2022-02-16 13:14:31 +00:00
public void ResetStates()
{
using var scope = _serviceScopeFactory.CreateScope();
2022-02-16 13:14:31 +00:00
using var dbContext = scope.ServiceProvider.GetService<DbContextManager<NotifyDbContext>>().Get(_dbid);
var tr = dbContext.Database.BeginTransaction();
var info = dbContext.NotifyInfo.Where(r => r.State == 1).ToList();
foreach (var i in info)
2019-07-29 09:15:48 +00:00
{
2022-02-16 13:14:31 +00:00
i.State = 0;
}
2019-12-10 13:42:29 +00:00
2022-02-16 13:14:31 +00:00
dbContext.SaveChanges();
tr.Commit();
}
2019-12-10 13:42:29 +00:00
2022-02-16 13:14:31 +00:00
public void SetState(int id, MailSendingState result)
{
using var scope = _serviceScopeFactory.CreateScope();
2022-02-16 13:14:31 +00:00
using var dbContext = scope.ServiceProvider.GetService<DbContextManager<NotifyDbContext>>().Get(_dbid);
using var tx = dbContext.Database.BeginTransaction();
2019-12-10 13:42:29 +00:00
2022-02-16 13:14:31 +00:00
if (result == MailSendingState.Sended)
{
var d = dbContext.NotifyInfo.Where(r => r.NotifyId == id).FirstOrDefault();
dbContext.NotifyInfo.Remove(d);
2019-12-10 13:42:29 +00:00
dbContext.SaveChanges();
2019-07-29 09:15:48 +00:00
}
2022-02-16 13:14:31 +00:00
else
2019-07-29 09:15:48 +00:00
{
2022-02-16 13:14:31 +00:00
if (result == MailSendingState.Error)
2019-07-29 09:15:48 +00:00
{
2022-02-16 13:14:31 +00:00
var attempts = dbContext.NotifyInfo.Where(r => r.NotifyId == id).Select(r => r.Attempts).FirstOrDefault();
if (NotifyServiceCfg.Process.MaxAttempts <= attempts + 1)
2019-07-29 09:15:48 +00:00
{
2022-02-16 13:14:31 +00:00
result = MailSendingState.FatalError;
2019-07-29 09:15:48 +00:00
}
2022-02-16 13:14:31 +00:00
}
2019-12-10 13:42:29 +00:00
2022-02-16 13:14:31 +00:00
var info = dbContext.NotifyInfo
.Where(r => r.NotifyId == id)
.ToList();
2019-12-10 13:42:29 +00:00
2022-02-16 13:14:31 +00:00
foreach (var i in info)
{
i.State = (int)result;
i.Attempts += 1;
i.ModifyDate = DateTime.UtcNow;
2019-07-29 09:15:48 +00:00
}
2019-12-10 13:42:29 +00:00
2022-02-16 13:14:31 +00:00
dbContext.SaveChanges();
2019-07-29 09:15:48 +00:00
}
2022-02-16 13:14:31 +00:00
tx.Commit();
2019-07-29 09:15:48 +00:00
}
2022-02-16 13:14:31 +00:00
}
2020-10-27 15:34:22 +00:00
2022-02-16 13:14:31 +00:00
public static class DbWorkerExtension
{
public static void Register(DIHelper services)
2020-10-27 15:34:22 +00:00
{
2022-02-16 13:14:31 +00:00
services.TryAdd<DbContextManager<NotifyDbContext>>();
2020-10-27 15:34:22 +00:00
}
2019-07-29 09:15:48 +00:00
}