mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-03 14:28:46 +01:00
Update to 3.5.2 and .net core 2.1
This commit is contained in:
@@ -1,40 +0,0 @@
|
||||
using MediaBrowser.Model.Notifications;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using MediaBrowser.Controller.Entities;
|
||||
|
||||
namespace MediaBrowser.Controller.Notifications
|
||||
{
|
||||
public interface INotificationManager
|
||||
{
|
||||
/// <summary>
|
||||
/// Sends the notification.
|
||||
/// </summary>
|
||||
/// <param name="request">The request.</param>
|
||||
/// <param name="cancellationToken">The cancellation token.</param>
|
||||
/// <returns>Task.</returns>
|
||||
Task SendNotification(NotificationRequest request, CancellationToken cancellationToken);
|
||||
|
||||
Task SendNotification(NotificationRequest request, BaseItem relatedItem, CancellationToken cancellationToken);
|
||||
|
||||
/// <summary>
|
||||
/// Adds the parts.
|
||||
/// </summary>
|
||||
/// <param name="services">The services.</param>
|
||||
/// <param name="notificationTypeFactories">The notification type factories.</param>
|
||||
void AddParts(IEnumerable<INotificationService> services, IEnumerable<INotificationTypeFactory> notificationTypeFactories);
|
||||
|
||||
/// <summary>
|
||||
/// Gets the notification types.
|
||||
/// </summary>
|
||||
/// <returns>IEnumerable{NotificationTypeInfo}.</returns>
|
||||
List<NotificationTypeInfo> GetNotificationTypes();
|
||||
|
||||
/// <summary>
|
||||
/// Gets the notification services.
|
||||
/// </summary>
|
||||
/// <returns>IEnumerable{NotificationServiceInfo}.</returns>
|
||||
IEnumerable<NotificationServiceInfo> GetNotificationServices();
|
||||
}
|
||||
}
|
||||
@@ -1,30 +0,0 @@
|
||||
using MediaBrowser.Controller.Entities;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MediaBrowser.Controller.Notifications
|
||||
{
|
||||
public interface INotificationService
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets the name.
|
||||
/// </summary>
|
||||
/// <value>The name.</value>
|
||||
string Name { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Sends the notification.
|
||||
/// </summary>
|
||||
/// <param name="request">The request.</param>
|
||||
/// <param name="cancellationToken">The cancellation token.</param>
|
||||
/// <returns>Task.</returns>
|
||||
Task SendNotification(UserNotification request, CancellationToken cancellationToken);
|
||||
|
||||
/// <summary>
|
||||
/// Determines whether [is enabled for user] [the specified user identifier].
|
||||
/// </summary>
|
||||
/// <param name="user">The user.</param>
|
||||
/// <returns><c>true</c> if [is enabled for user] [the specified user identifier]; otherwise, <c>false</c>.</returns>
|
||||
bool IsEnabledForUser(User user);
|
||||
}
|
||||
}
|
||||
@@ -1,14 +0,0 @@
|
||||
using MediaBrowser.Model.Notifications;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace MediaBrowser.Controller.Notifications
|
||||
{
|
||||
public interface INotificationTypeFactory
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets the notification types.
|
||||
/// </summary>
|
||||
/// <returns>IEnumerable{NotificationTypeInfo}.</returns>
|
||||
IEnumerable<NotificationTypeInfo> GetNotificationTypes();
|
||||
}
|
||||
}
|
||||
@@ -1,64 +0,0 @@
|
||||
using MediaBrowser.Model.Notifications;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MediaBrowser.Controller.Notifications
|
||||
{
|
||||
/// <summary>
|
||||
/// Interface INotificationsRepository
|
||||
/// </summary>
|
||||
public interface INotificationsRepository
|
||||
{
|
||||
/// <summary>
|
||||
/// Occurs when [notification added].
|
||||
/// </summary>
|
||||
event EventHandler<NotificationUpdateEventArgs> NotificationAdded;
|
||||
/// <summary>
|
||||
/// Occurs when [notifications marked read].
|
||||
/// </summary>
|
||||
event EventHandler<NotificationReadEventArgs> NotificationsMarkedRead;
|
||||
|
||||
/// <summary>
|
||||
/// Gets the notifications.
|
||||
/// </summary>
|
||||
/// <param name="query">The query.</param>
|
||||
/// <returns>NotificationResult.</returns>
|
||||
NotificationResult GetNotifications(NotificationQuery query);
|
||||
|
||||
/// <summary>
|
||||
/// Adds the notification.
|
||||
/// </summary>
|
||||
/// <param name="notification">The notification.</param>
|
||||
/// <param name="cancellationToken">The cancellation token.</param>
|
||||
/// <returns>Task.</returns>
|
||||
Task AddNotification(Notification notification, CancellationToken cancellationToken);
|
||||
|
||||
/// <summary>
|
||||
/// Marks the read.
|
||||
/// </summary>
|
||||
/// <param name="notificationIdList">The notification id list.</param>
|
||||
/// <param name="userId">The user id.</param>
|
||||
/// <param name="isRead">if set to <c>true</c> [is read].</param>
|
||||
/// <param name="cancellationToken">The cancellation token.</param>
|
||||
/// <returns>Task.</returns>
|
||||
Task MarkRead(IEnumerable<string> notificationIdList, string userId, bool isRead, CancellationToken cancellationToken);
|
||||
|
||||
/// <summary>
|
||||
/// Marks all read.
|
||||
/// </summary>
|
||||
/// <param name="userId">The user identifier.</param>
|
||||
/// <param name="isRead">if set to <c>true</c> [is read].</param>
|
||||
/// <param name="cancellationToken">The cancellation token.</param>
|
||||
/// <returns>Task.</returns>
|
||||
Task MarkAllRead(string userId, bool isRead, CancellationToken cancellationToken);
|
||||
|
||||
/// <summary>
|
||||
/// Gets the notifications summary.
|
||||
/// </summary>
|
||||
/// <param name="userId">The user id.</param>
|
||||
/// <returns>NotificationsSummary.</returns>
|
||||
NotificationsSummary GetNotificationsSummary(string userId);
|
||||
}
|
||||
}
|
||||
@@ -1,17 +0,0 @@
|
||||
using MediaBrowser.Model.Notifications;
|
||||
using System;
|
||||
|
||||
namespace MediaBrowser.Controller.Notifications
|
||||
{
|
||||
public class NotificationUpdateEventArgs : EventArgs
|
||||
{
|
||||
public Notification Notification { get; set; }
|
||||
}
|
||||
|
||||
public class NotificationReadEventArgs : EventArgs
|
||||
{
|
||||
public string[] IdList { get; set; }
|
||||
public string UserId { get; set; }
|
||||
public bool IsRead { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -1,21 +0,0 @@
|
||||
using MediaBrowser.Controller.Entities;
|
||||
using MediaBrowser.Model.Notifications;
|
||||
using System;
|
||||
|
||||
namespace MediaBrowser.Controller.Notifications
|
||||
{
|
||||
public class UserNotification
|
||||
{
|
||||
public string Name { get; set; }
|
||||
|
||||
public string Description { get; set; }
|
||||
|
||||
public string Url { get; set; }
|
||||
|
||||
public NotificationLevel Level { get; set; }
|
||||
|
||||
public DateTime Date { get; set; }
|
||||
|
||||
public User User { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user