mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-19 21:03:17 -07:00
Added Jellyfin to the landing page media checks
This commit is contained in:
parent
996219cdf9
commit
53d605095b
1 changed files with 31 additions and 2 deletions
|
@ -4,6 +4,7 @@ using System.Threading.Tasks;
|
|||
using Microsoft.AspNetCore.Authorization;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Ombi.Api.Emby;
|
||||
using Ombi.Api.Jellyfin;
|
||||
using Ombi.Api.Plex;
|
||||
using Ombi.Core.Settings;
|
||||
using Ombi.Core.Settings.Models.External;
|
||||
|
@ -18,19 +19,22 @@ namespace Ombi.Controllers.V1
|
|||
public class LandingPageController : ControllerBase
|
||||
{
|
||||
public LandingPageController(ISettingsService<PlexSettings> plex, ISettingsService<EmbySettings> emby,
|
||||
IPlexApi plexApi, IEmbyApiFactory embyApi)
|
||||
IPlexApi plexApi, IEmbyApiFactory embyApi, ISettingsService<JellyfinSettings> jellyfin, IJellyfinApi jellyfinApi)
|
||||
{
|
||||
_plexSettings = plex;
|
||||
_embySettings = emby;
|
||||
_plexApi = plexApi;
|
||||
_embyApi = embyApi;
|
||||
_jellyfin = jellyfin;
|
||||
_jellyfinApi = jellyfinApi;
|
||||
}
|
||||
|
||||
private readonly IPlexApi _plexApi;
|
||||
private readonly IEmbyApiFactory _embyApi;
|
||||
private readonly ISettingsService<PlexSettings> _plexSettings;
|
||||
private readonly ISettingsService<EmbySettings> _embySettings;
|
||||
|
||||
private readonly ISettingsService<JellyfinSettings> _jellyfin;
|
||||
private readonly IJellyfinApi _jellyfinApi;
|
||||
|
||||
[HttpGet]
|
||||
public async Task<MediaSeverAvailibilityViewModel> GetMediaServerStatus()
|
||||
|
@ -86,6 +90,31 @@ namespace Ombi.Controllers.V1
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
var jellyfin = await _jellyfin.GetSettingsAsync();
|
||||
if (jellyfin.Enable)
|
||||
{
|
||||
foreach (var server in jellyfin.Servers)
|
||||
{
|
||||
try
|
||||
{
|
||||
var result = await _jellyfinApi.GetUsers(server.FullUri, server.ApiKey);
|
||||
if (result.Any())
|
||||
{
|
||||
model.ServersAvailable++;
|
||||
}
|
||||
else
|
||||
{
|
||||
model.ServersUnavailable++;
|
||||
}
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
model.ServersUnavailable++;
|
||||
}
|
||||
}
|
||||
}
|
||||
return model;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue