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

233 lines
8.7 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.
*
*/
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using ASC.Common.Data;
2019-12-10 13:42:29 +00:00
using ASC.Core.Common.EF;
using ASC.Core.Common.EF.Context;
using ASC.Core.Common.EF.Model;
2019-07-29 09:15:48 +00:00
using ASC.Notify.Config;
using ASC.Notify.Messages;
2019-12-10 13:42:29 +00:00
2019-08-01 08:47:15 +00:00
using Google.Protobuf.Collections;
2019-12-10 13:42:29 +00:00
2019-10-21 13:50:20 +00:00
using Microsoft.Extensions.DependencyInjection;
2019-11-01 08:49:08 +00:00
using Microsoft.Extensions.DependencyInjection.Extensions;
using Microsoft.Extensions.Options;
2019-12-10 13:42:29 +00:00
2019-07-29 09:15:48 +00:00
using Newtonsoft.Json;
namespace ASC.Notify
{
public class DbWorker
{
private readonly string dbid;
private readonly object syncRoot = new object();
2019-10-21 13:50:20 +00:00
public IServiceProvider ServiceProvider { get; }
2019-07-29 09:15:48 +00:00
public NotifyServiceCfg NotifyServiceCfg { get; }
2019-11-01 08:49:08 +00:00
public DbWorker(IServiceProvider serviceProvider, IOptions<NotifyServiceCfg> notifyServiceCfg)
2019-07-29 09:15:48 +00:00
{
2019-10-21 13:50:20 +00:00
ServiceProvider = serviceProvider;
2019-11-01 08:49:08 +00:00
NotifyServiceCfg = notifyServiceCfg.Value;
2019-07-29 09:15:48 +00:00
dbid = NotifyServiceCfg.ConnectionStringName;
}
public int SaveMessage(NotifyMessage m)
{
2019-10-21 13:50:20 +00:00
using var scope = ServiceProvider.CreateScope();
using var db = scope.ServiceProvider.GetService<DbOptionsManager>().Get(dbid);
2019-12-10 13:42:29 +00:00
using var dbContext = scope.ServiceProvider.GetService<DbContextManager<NotifyDbContext>>().Get(dbid);
2019-08-15 15:08:40 +00:00
using var tx = db.BeginTransaction(IsolationLevel.ReadCommitted);
2019-12-10 13:42:29 +00:00
var notifyQueue = new NotifyQueue
{
NotifyId = 0,
TenantId = m.Tenant,
Sender = m.From,
Reciever = m.To,
Subject = m.Subject,
ContentType = m.ContentType,
Content = m.Content,
SenderType = m.Sender,
CreationDate = new DateTime(m.CreationDate),
ReplyTo = m.ReplyTo,
Attachments = m.EmbeddedAttachments.ToString()
};
notifyQueue = dbContext.NotifyQueue.Add(notifyQueue).Entity;
var id = notifyQueue.NotifyId;
var info = new NotifyInfo
{
NotifyId = id,
State = 0,
Attempts = 0,
ModifyDate = DateTime.UtcNow,
Priority = m.Priority
};
2019-08-15 15:08:40 +00:00
2019-12-10 13:42:29 +00:00
dbContext.NotifyInfo.Add(info);
2019-08-15 15:08:40 +00:00
tx.Commit();
2019-12-10 13:42:29 +00:00
return 1;
2019-07-29 09:15:48 +00:00
}
public IDictionary<int, NotifyMessage> GetMessages(int count)
{
lock (syncRoot)
{
2019-10-21 13:50:20 +00:00
using var scope = ServiceProvider.CreateScope();
2019-12-10 13:42:29 +00:00
using var dbContext = scope.ServiceProvider.GetService<DbContextManager<NotifyDbContext>>().Get(dbid);
using var tx = dbContext.Database.BeginTransaction();
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);
var messages = q
2019-08-15 15:08:40 +00:00
.ToDictionary(
2019-12-10 13:42:29 +00:00
r => r.queue.NotifyId,
2019-08-15 15:08:40 +00:00
r =>
{
var res = new NotifyMessage
2019-07-29 09:15:48 +00:00
{
2019-12-10 13:42:29 +00:00
Tenant = r.queue.TenantId,
From = r.queue.Sender,
To = r.queue.Reciever,
Subject = r.queue.Subject,
ContentType = r.queue.ContentType,
Content = r.queue.Content,
Sender = r.queue.SenderType,
CreationDate = r.queue.CreationDate.Ticks,
ReplyTo = r.queue.ReplyTo
2019-08-15 15:08:40 +00:00
};
try
{
2019-12-10 13:42:29 +00:00
res.EmbeddedAttachments.AddRange(JsonConvert.DeserializeObject<RepeatedField<NotifyMessageAttachment>>(r.queue.Attachments));
2019-08-15 15:08:40 +00:00
}
catch (Exception)
{
}
return res;
});
2019-12-10 13:42:29 +00:00
var info = dbContext.NotifyInfo.Where(r => messages.Keys.Any(a => a == r.NotifyId)).ToList();
foreach (var i in info)
{
i.State = (int)MailSendingState.Sending;
}
dbContext.SaveChanges();
2019-08-15 15:08:40 +00:00
return messages;
2019-07-29 09:15:48 +00:00
}
}
public void ResetStates()
{
2019-10-21 13:50:20 +00:00
using var scope = ServiceProvider.CreateScope();
2019-12-10 13:42:29 +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)
{
i.State = 0;
}
dbContext.SaveChanges();
tr.Commit();
2019-07-29 09:15:48 +00:00
}
public void SetState(int id, MailSendingState result)
{
2019-10-21 13:50:20 +00:00
using var scope = ServiceProvider.CreateScope();
2019-12-10 13:42:29 +00:00
using var dbContext = scope.ServiceProvider.GetService<DbContextManager<NotifyDbContext>>().Get(dbid);
using var tx = dbContext.Database.BeginTransaction();
2019-08-15 15:08:40 +00:00
if (result == MailSendingState.Sended)
2019-07-29 09:15:48 +00:00
{
2019-12-10 13:42:29 +00:00
var d = dbContext.NotifyInfo.Where(r => r.NotifyId == id).FirstOrDefault();
dbContext.NotifyInfo.Remove(d);
dbContext.SaveChanges();
2019-08-15 15:08:40 +00:00
}
else
{
if (result == MailSendingState.Error)
2019-07-29 09:15:48 +00:00
{
2019-12-10 13:42:29 +00:00
var attempts = dbContext.NotifyInfo.Where(r => r.NotifyId == id).Select(r => r.Attempts).FirstOrDefault();
2019-08-15 15:08:40 +00:00
if (NotifyServiceCfg.Process.MaxAttempts <= attempts + 1)
2019-07-29 09:15:48 +00:00
{
2019-08-15 15:08:40 +00:00
result = MailSendingState.FatalError;
2019-07-29 09:15:48 +00:00
}
}
2019-12-10 13:42:29 +00:00
var info = dbContext.NotifyInfo
.Where(r => r.NotifyId == id)
.ToList();
foreach (var i in info)
{
i.State = (int)result;
i.Attempts += 1;
i.ModifyDate = DateTime.UtcNow;
}
dbContext.SaveChanges();
2019-07-29 09:15:48 +00:00
}
2019-12-10 13:42:29 +00:00
2019-08-15 15:08:40 +00:00
tx.Commit();
2019-07-29 09:15:48 +00:00
}
}
2019-11-01 08:49:08 +00:00
public static class DbWorkerExtension
2019-11-01 08:49:08 +00:00
{
public static IServiceCollection AddDbWorker(this IServiceCollection services)
{
services.TryAddSingleton<DbWorker>();
return services
2019-12-10 13:42:29 +00:00
.AddNotifyDbContext();
2019-11-01 08:49:08 +00:00
}
}
2019-07-29 09:15:48 +00:00
}