DocSpace-client/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
{
2022-04-15 10:27:48 +00:00
private readonly INotifySource _notifySource;
2022-02-15 11:52:43 +00:00
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; }
2022-03-17 16:57:02 +00:00
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>();
2022-03-17 16:57:02 +00:00
_requaredTags = new List<string>();
_interceptors = new List<ISendInterceptor>();
2022-04-01 14:17:24 +00:00
_options = options;
2022-04-15 10:27:48 +00:00
_notifySource = notifySource ?? throw new ArgumentNullException(nameof(notifySource));
2022-02-15 11:52:43 +00:00
Recipient = recipient ?? throw new ArgumentNullException(nameof(recipient));
NotifyAction = action ?? throw new ArgumentNullException(nameof(action));
ObjectID = objectID;
2022-03-17 16:57:02 +00:00
_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;
2022-03-17 16:57:02 +00:00
foreach (var interceptor in _interceptors)
2022-02-15 11:52:43 +00:00
{
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)
{
2022-03-17 16:57:02 +00:00
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;
}
2022-03-17 16:57:02 +00:00
var index = Array.IndexOf(_senderNames, senderName);
2022-02-15 11:52:43 +00:00
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");
}
2022-03-17 16:57:02 +00:00
return _patterns[index];
2022-02-15 11:52:43 +00:00
}
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-15 10:27:48 +00:00
var newRequest = new NotifyRequest(_options, _notifySource, NotifyAction, ObjectID, recipient)
2020-09-08 08:42:13 +00:00
{
2022-03-17 16:57:02 +00:00
_senderNames = _senderNames,
_patterns = _patterns,
2022-02-15 11:52:43 +00:00
Arguments = new List<ITagValue>(Arguments),
2022-03-17 16:57:02 +00:00
_requaredTags = _requaredTags,
2022-02-15 11:52:43 +00:00
CurrentSender = CurrentSender,
CurrentMessage = CurrentMessage
};
2022-03-17 16:57:02 +00:00
newRequest._interceptors.AddRange(_interceptors);
2022-02-15 11:52:43 +00:00
return newRequest;
}
internal NoticeMessage CreateMessage(IDirectRecipient recipient)
{
return new NoticeMessage(recipient, NotifyAction, ObjectID);
}
public IActionProvider GetActionProvider(IServiceScope scope)
{
2022-04-15 10:27:48 +00:00
return ((INotifySource)scope.ServiceProvider.GetService(_notifySource.GetType())).GetActionProvider();
2022-02-15 11:52:43 +00:00
}
public IPatternProvider GetPatternProvider(IServiceScope scope)
{
2022-04-15 10:27:48 +00:00
return ((INotifySource)scope.ServiceProvider.GetService(_notifySource.GetType())).GetPatternProvider();
2022-02-15 11:52:43 +00:00
}
public IRecipientProvider GetRecipientsProvider(IServiceScope scope)
{
2022-04-15 10:27:48 +00:00
return ((INotifySource)scope.ServiceProvider.GetService(_notifySource.GetType())).GetRecipientsProvider();
2022-02-15 11:52:43 +00:00
}
public ISubscriptionProvider GetSubscriptionProvider(IServiceScope scope)
{
2022-04-15 10:27:48 +00:00
return ((INotifySource)scope.ServiceProvider.GetService(_notifySource.GetType())).GetSubscriptionProvider();
2022-02-15 11:52:43 +00:00
}
}