DocSpace-buildtools/common/ASC.Core.Common/Notify/Engine/NotifyRequest.cs

148 lines
5.8 KiB
C#
Raw 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
2022-02-15 11:52:43 +00:00
namespace ASC.Notify.Engine;
public class NotifyRequest
{
private INotifySource NotifySource { get; set; }
public INotifyAction NotifyAction { get; internal set; }
public string ObjectID { get; internal set; }
public IRecipient Recipient { get; internal set; }
public List<ITagValue> Arguments { get; internal set; }
public string CurrentSender { get; internal set; }
public INoticeMessage CurrentMessage { get; internal set; }
public Hashtable Properties { get; private set; }
internal string[] SenderNames;
internal IPattern[] Patterns;
internal List<string> RequaredTags;
internal List<ISendInterceptor> Interceptors;
internal bool IsNeedCheckSubscriptions;
2022-04-01 14:17:24 +00:00
private readonly ILog _log;
private readonly IOptionsMonitor<ILog> _options;
2022-02-15 11:52:43 +00:00
2022-04-01 14:17:24 +00:00
public NotifyRequest(IOptionsMonitor<ILog> options, INotifySource notifySource, INotifyAction action, string objectID, IRecipient recipient)
2022-02-15 11:52:43 +00:00
{
Properties = new Hashtable();
Arguments = new List<ITagValue>();
RequaredTags = new List<string>();
Interceptors = new List<ISendInterceptor>();
2022-04-01 14:17:24 +00:00
_options = options;
2022-02-15 11:52:43 +00:00
NotifySource = notifySource ?? throw new ArgumentNullException(nameof(notifySource));
Recipient = recipient ?? throw new ArgumentNullException(nameof(recipient));
NotifyAction = action ?? throw new ArgumentNullException(nameof(action));
ObjectID = objectID;
IsNeedCheckSubscriptions = true;
2022-04-01 14:17:24 +00:00
_log = options.Get("ASC.Notify");
2022-02-15 11:52:43 +00:00
}
internal bool Intercept(InterceptorPlace place, IServiceScope serviceScope)
{
var result = false;
foreach (var interceptor in Interceptors)
{
if ((interceptor.PreventPlace & place) == place)
{
2022-02-15 11:52:43 +00:00
try
{
if (interceptor.PreventSend(this, place, serviceScope))
{
result = true;
}
}
catch (Exception err)
{
2022-04-01 14:17:24 +00:00
_log.ErrorFormat("{0} {1} {2}: {3}", interceptor.Name, NotifyAction, Recipient, err);
2022-02-15 11:52:43 +00:00
}
}
2020-09-08 08:42:13 +00:00
}
2022-02-15 11:52:43 +00:00
return result;
}
internal IPattern GetSenderPattern(string senderName)
{
if (SenderNames == null || Patterns == null ||
SenderNames.Length == 0 || Patterns.Length == 0 ||
SenderNames.Length != Patterns.Length)
2020-09-08 08:42:13 +00:00
{
2022-02-15 11:52:43 +00:00
return null;
}
var index = Array.IndexOf(SenderNames, senderName);
if (index < 0)
2020-09-08 08:42:13 +00:00
{
2022-02-15 11:52:43 +00:00
throw new ApplicationException($"Sender with tag {senderName} dnot found");
}
return Patterns[index];
}
internal NotifyRequest Split(IRecipient recipient)
{
2022-03-09 17:15:51 +00:00
ArgumentNullException.ThrowIfNull(recipient);
2022-02-15 11:52:43 +00:00
2022-04-01 14:17:24 +00:00
var newRequest = new NotifyRequest(_options, NotifySource, NotifyAction, ObjectID, recipient)
2020-09-08 08:42:13 +00:00
{
2022-02-15 11:52:43 +00:00
SenderNames = SenderNames,
Patterns = Patterns,
Arguments = new List<ITagValue>(Arguments),
RequaredTags = RequaredTags,
CurrentSender = CurrentSender,
CurrentMessage = CurrentMessage
};
newRequest.Interceptors.AddRange(Interceptors);
return newRequest;
}
internal NoticeMessage CreateMessage(IDirectRecipient recipient)
{
return new NoticeMessage(recipient, NotifyAction, ObjectID);
}
public IActionProvider GetActionProvider(IServiceScope scope)
{
return ((INotifySource)scope.ServiceProvider.GetService(NotifySource.GetType())).GetActionProvider();
}
public IPatternProvider GetPatternProvider(IServiceScope scope)
{
return ((INotifySource)scope.ServiceProvider.GetService(NotifySource.GetType())).GetPatternProvider();
}
public IRecipientProvider GetRecipientsProvider(IServiceScope scope)
{
return ((INotifySource)scope.ServiceProvider.GetService(NotifySource.GetType())).GetRecipientsProvider();
}
public ISubscriptionProvider GetSubscriptionProvider(IServiceScope scope)
{
return ((INotifySource)scope.ServiceProvider.GetService(NotifySource.GetType())).GetSubscriptionProvider();
}
}