2022-06-02 08:18:31 +02:00
|
|
|
using NPoco;
|
2021-02-09 10:22:42 +01:00
|
|
|
using Umbraco.Cms.Core.Models;
|
|
|
|
|
using Umbraco.Cms.Core.Models.Entities;
|
|
|
|
|
using Umbraco.Cms.Core.Models.Membership;
|
|
|
|
|
using Umbraco.Cms.Core.Persistence.Repositories;
|
2021-02-12 13:36:50 +01:00
|
|
|
using Umbraco.Cms.Infrastructure.Persistence.Dtos;
|
2022-01-13 17:44:11 +00:00
|
|
|
using Umbraco.Cms.Infrastructure.Scoping;
|
2021-02-12 13:36:50 +01:00
|
|
|
using Umbraco.Extensions;
|
2014-01-10 17:03:00 +11:00
|
|
|
|
2022-06-02 08:18:31 +02:00
|
|
|
namespace Umbraco.Cms.Infrastructure.Persistence.Repositories.Implement;
|
|
|
|
|
|
|
|
|
|
public class NotificationsRepository : INotificationsRepository
|
2014-01-10 17:03:00 +11:00
|
|
|
{
|
2022-06-02 08:18:31 +02:00
|
|
|
private readonly IScopeAccessor _scopeAccessor;
|
2014-01-10 17:03:00 +11:00
|
|
|
|
2022-06-02 08:18:31 +02:00
|
|
|
public NotificationsRepository(IScopeAccessor scopeAccessor) => _scopeAccessor = scopeAccessor;
|
2014-01-10 17:03:00 +11:00
|
|
|
|
2022-06-02 08:18:31 +02:00
|
|
|
private IScope? AmbientScope => _scopeAccessor.AmbientScope;
|
2017-12-14 17:04:44 +01:00
|
|
|
|
2022-06-02 08:18:31 +02:00
|
|
|
public IEnumerable<Notification>? GetUsersNotifications(IEnumerable<int> userIds, string? action, IEnumerable<int> nodeIds, Guid objectType)
|
|
|
|
|
{
|
|
|
|
|
var nodeIdsA = nodeIds.ToArray();
|
|
|
|
|
Sql<ISqlContext>? sql = AmbientScope?.SqlContext.Sql()
|
|
|
|
|
.Select(
|
|
|
|
|
"DISTINCT umbracoNode.id nodeId, umbracoUser.id userId, umbracoNode.nodeObjectType, umbracoUser2NodeNotify.action")
|
|
|
|
|
.From<User2NodeNotifyDto>()
|
|
|
|
|
.InnerJoin<NodeDto>().On<User2NodeNotifyDto, NodeDto>(left => left.NodeId, right => right.NodeId)
|
|
|
|
|
.InnerJoin<UserDto>().On<User2NodeNotifyDto, UserDto>(left => left.UserId, right => right.Id)
|
|
|
|
|
.Where<NodeDto>(x => x.NodeObjectType == objectType)
|
|
|
|
|
.Where<UserDto>(x => x.Disabled == false) // only approved users
|
|
|
|
|
.Where<User2NodeNotifyDto>(x => x.Action == action); // on the specified action
|
|
|
|
|
if (nodeIdsA.Length > 0)
|
2016-09-01 12:13:58 +02:00
|
|
|
{
|
2022-02-24 09:24:56 +01:00
|
|
|
sql?
|
2022-06-02 08:18:31 +02:00
|
|
|
.WhereIn<NodeDto>(x => x.NodeId, nodeIdsA); // for the specified nodes
|
2016-09-01 12:13:58 +02:00
|
|
|
}
|
|
|
|
|
|
2022-06-02 08:18:31 +02:00
|
|
|
sql?
|
|
|
|
|
.OrderBy<UserDto>(x => x.Id)
|
|
|
|
|
.OrderBy<NodeDto>(dto => dto.NodeId);
|
|
|
|
|
return AmbientScope?.Database.Fetch<UserNotificationDto>(sql)
|
|
|
|
|
.Select(x => new Notification(x.NodeId, x.UserId, x.Action, objectType));
|
|
|
|
|
}
|
2014-01-10 17:03:00 +11:00
|
|
|
|
2022-06-02 08:18:31 +02:00
|
|
|
public IEnumerable<Notification>? GetUserNotifications(IUser user)
|
|
|
|
|
{
|
|
|
|
|
Sql<ISqlContext>? sql = AmbientScope?.SqlContext.Sql()
|
|
|
|
|
.Select(
|
|
|
|
|
"DISTINCT umbracoNode.id AS nodeId, umbracoUser2NodeNotify.userId, umbracoNode.nodeObjectType, umbracoUser2NodeNotify.action")
|
|
|
|
|
.From<User2NodeNotifyDto>()
|
|
|
|
|
.InnerJoin<NodeDto>()
|
|
|
|
|
.On<User2NodeNotifyDto, NodeDto>(dto => dto.NodeId, dto => dto.NodeId)
|
|
|
|
|
.Where<User2NodeNotifyDto>(dto => dto.UserId == user.Id)
|
|
|
|
|
.OrderBy<NodeDto>(dto => dto.NodeId);
|
2016-03-22 14:39:08 +01:00
|
|
|
|
2022-06-02 08:18:31 +02:00
|
|
|
List<UserNotificationDto>? dtos = AmbientScope?.Database.Fetch<UserNotificationDto>(sql);
|
2014-01-10 17:03:00 +11:00
|
|
|
|
2022-06-02 08:18:31 +02:00
|
|
|
// need to map the results
|
|
|
|
|
return dtos?.Select(d => new Notification(d.NodeId, d.UserId, d.Action, d.NodeObjectType)).ToList();
|
|
|
|
|
}
|
2014-01-10 17:03:00 +11:00
|
|
|
|
2022-06-02 08:18:31 +02:00
|
|
|
public IEnumerable<Notification> SetNotifications(IUser user, IEntity entity, string[] actions)
|
|
|
|
|
{
|
|
|
|
|
DeleteNotifications(user, entity);
|
|
|
|
|
return actions.Select(action => CreateNotification(user, entity, action)).ToList();
|
|
|
|
|
}
|
2014-01-10 17:03:00 +11:00
|
|
|
|
2022-06-02 08:18:31 +02:00
|
|
|
public IEnumerable<Notification>? GetEntityNotifications(IEntity entity)
|
|
|
|
|
{
|
|
|
|
|
Sql<ISqlContext>? sql = AmbientScope?.SqlContext.Sql()
|
|
|
|
|
.Select(
|
|
|
|
|
"DISTINCT umbracoNode.id as nodeId, umbracoUser2NodeNotify.userId, umbracoNode.nodeObjectType, umbracoUser2NodeNotify.action")
|
|
|
|
|
.From<User2NodeNotifyDto>()
|
|
|
|
|
.InnerJoin<NodeDto>()
|
|
|
|
|
.On<User2NodeNotifyDto, NodeDto>(dto => dto.NodeId, dto => dto.NodeId)
|
|
|
|
|
.Where<User2NodeNotifyDto>(dto => dto.NodeId == entity.Id)
|
|
|
|
|
.OrderBy<NodeDto>(dto => dto.NodeId);
|
2014-01-10 17:03:00 +11:00
|
|
|
|
2022-06-02 08:18:31 +02:00
|
|
|
List<UserNotificationDto>? dtos = AmbientScope?.Database.Fetch<UserNotificationDto>(sql);
|
|
|
|
|
|
|
|
|
|
// need to map the results
|
|
|
|
|
return dtos?.Select(d => new Notification(d.NodeId, d.UserId, d.Action, d.NodeObjectType)).ToList();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int DeleteNotifications(IEntity entity) =>
|
|
|
|
|
AmbientScope?.Database.Delete<User2NodeNotifyDto>("WHERE nodeId = @nodeId", new { nodeId = entity.Id }) ?? 0;
|
|
|
|
|
|
|
|
|
|
public int DeleteNotifications(IUser user) =>
|
|
|
|
|
AmbientScope?.Database.Delete<User2NodeNotifyDto>("WHERE userId = @userId", new { userId = user.Id }) ?? 0;
|
|
|
|
|
|
|
|
|
|
public int DeleteNotifications(IUser user, IEntity entity) =>
|
|
|
|
|
|
|
|
|
|
// delete all settings on the node for this user
|
|
|
|
|
AmbientScope?.Database.Delete<User2NodeNotifyDto>(
|
|
|
|
|
"WHERE userId = @userId AND nodeId = @nodeId",
|
|
|
|
|
new { userId = user.Id, nodeId = entity.Id }) ?? 0;
|
|
|
|
|
|
|
|
|
|
public Notification CreateNotification(IUser user, IEntity entity, string action)
|
|
|
|
|
{
|
|
|
|
|
Sql<ISqlContext>? sql = AmbientScope?.SqlContext.Sql()
|
|
|
|
|
.Select("DISTINCT nodeObjectType")
|
|
|
|
|
.From<NodeDto>()
|
|
|
|
|
.Where<NodeDto>(nodeDto => nodeDto.NodeId == entity.Id);
|
|
|
|
|
Guid? nodeType = AmbientScope?.Database.ExecuteScalar<Guid>(sql);
|
|
|
|
|
|
|
|
|
|
var dto = new User2NodeNotifyDto { Action = action, NodeId = entity.Id, UserId = user.Id };
|
|
|
|
|
AmbientScope?.Database.Insert(dto);
|
|
|
|
|
return new Notification(dto.NodeId, dto.UserId, dto.Action, nodeType);
|
2014-01-10 17:03:00 +11:00
|
|
|
}
|
2017-07-20 11:21:28 +02:00
|
|
|
}
|