DocSpace-client/web/ASC.Web.Core/Notify/NotificationControllerHelper.cs
Vashchuk Nikita efa04ae8ba added functionality for notifying users about events via AuditEvent,
fix notifyEngine,
edited letter format,
added method for getting roomsId and roomsTitle from a file/folder inside the room,
added method for getting sharing info from foldersIds and userGuid
2023-02-21 13:35:01 +05:00

109 lines
4.4 KiB
C#

// (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
namespace ASC.Web.Core.Notify;
[Scope]
public class NotificationControllerHelper
{
private readonly StudioNotifyHelper _studioNotifyHelper;
private readonly BadgesSettingsHelper _badgesSettingsHelper;
private readonly RoomsNotificationSettingsHelper _roomsNotificationSettingsHelper;
private readonly Guid _userId;
public NotificationControllerHelper(
StudioNotifyHelper studioNotifyHelper,
AuthContext authContext,
RoomsNotificationSettingsHelper roomsNotificationSettingsHelper,
BadgesSettingsHelper badgesSettingsHelper)
{
_studioNotifyHelper = studioNotifyHelper;
_badgesSettingsHelper = badgesSettingsHelper;
_roomsNotificationSettingsHelper = roomsNotificationSettingsHelper;
_userId = authContext.CurrentAccount.ID;
}
public bool GetNotificationStatus(NotificationType notificationType)
{
bool isEnabled;
switch (notificationType)
{
case NotificationType.Badges:
return _badgesSettingsHelper.GetEnabledForCurrentUser();
case NotificationType.RoomsActivity:
isEnabled = _studioNotifyHelper.IsSubscribedToNotify(_userId, Actions.RoomsActivity);
return isEnabled;
case NotificationType.DailyFeed:
isEnabled = _studioNotifyHelper.IsSubscribedToNotify(_userId, Actions.SendWhatsNew);
return isEnabled;
case NotificationType.UsefullTips:
isEnabled = _studioNotifyHelper.IsSubscribedToNotify(_userId, Actions.PeriodicNotify);
return isEnabled;
default:
throw new Exception("Incorrect parameters");
};
}
public void SetNotificationStatus(NotificationType notificationType, bool isEnabled)
{
switch (notificationType)
{
case NotificationType.Badges:
_badgesSettingsHelper.SetEnabledForCurrentUser(isEnabled);
break;
case NotificationType.RoomsActivity:
_studioNotifyHelper.SubscribeToNotify(_userId, Actions.RoomsActivity, isEnabled);
break;
case NotificationType.DailyFeed:
_studioNotifyHelper.SubscribeToNotify(_userId, Actions.SendWhatsNew, isEnabled);
break;
case NotificationType.UsefullTips:
_studioNotifyHelper.SubscribeToNotify(_userId, Actions.PeriodicNotify, isEnabled);
break;
}
}
public RoomsNotificationSettings GetSettings()
{
return _roomsNotificationSettingsHelper.GetSettingsForCurrentUser();
}
public RoomsNotificationSettings SetRoomsNotificationStatus(int roomsId, bool mute)
{
return _roomsNotificationSettingsHelper.SetForCurrentUser(roomsId, mute);
}
}
public enum NotificationType
{
Badges = 0,
RoomsActivity = 1,
DailyFeed = 2,
UsefullTips = 3
}