2012-02-12 12:52:51 +03:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Text;
|
|
|
|
using NLog;
|
|
|
|
using NzbDrone.Core.Model;
|
2012-02-28 08:52:03 +03:00
|
|
|
using NzbDrone.Core.Repository.Quality;
|
2012-02-12 12:52:51 +03:00
|
|
|
using SignalR;
|
|
|
|
using SignalR.Hosting.AspNet;
|
|
|
|
using SignalR.Hubs;
|
|
|
|
using SignalR.Infrastructure;
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
|
|
{
|
|
|
|
public class SignalRProvider : Hub
|
|
|
|
{
|
2012-02-13 02:37:55 +03:00
|
|
|
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
|
2012-02-12 12:52:51 +03:00
|
|
|
|
2012-10-14 00:15:21 +03:00
|
|
|
public virtual void UpdateEpisodeStatus(int episodeId, EpisodeStatusType episodeStatus, QualityModel quality)
|
2012-02-12 12:52:51 +03:00
|
|
|
{
|
2012-02-28 08:52:03 +03:00
|
|
|
try
|
|
|
|
{
|
|
|
|
logger.Trace("Sending Status update to client. EpisodeId: {0}, Status: {1}", episodeId, episodeStatus);
|
2012-02-12 12:52:51 +03:00
|
|
|
|
2012-11-03 21:23:47 +03:00
|
|
|
Clients.updatedStatus(new
|
2012-02-28 08:52:03 +03:00
|
|
|
{
|
|
|
|
EpisodeId = episodeId,
|
|
|
|
EpisodeStatus = episodeStatus.ToString(),
|
2012-10-14 03:36:16 +03:00
|
|
|
Quality = (quality == null ? String.Empty : quality.Quality.ToString())
|
2012-02-28 08:52:03 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
catch (Exception ex)
|
|
|
|
{
|
2012-11-21 19:14:57 +03:00
|
|
|
logger.TraceException("Error", ex);
|
2012-02-28 08:52:03 +03:00
|
|
|
throw;
|
|
|
|
}
|
2012-02-12 12:52:51 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|