mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
145 lines
5.0 KiB
145 lines
5.0 KiB
using ErsatzTV.Core; |
|
using ErsatzTV.Core.Domain; |
|
using ErsatzTV.Core.Interfaces.Plex; |
|
using ErsatzTV.Core.Plex; |
|
using ErsatzTV.Infrastructure.Plex.Models; |
|
using Microsoft.Extensions.Logging; |
|
using Refit; |
|
|
|
namespace ErsatzTV.Infrastructure.Plex; |
|
|
|
public class PlexTvApiClient : IPlexTvApiClient |
|
{ |
|
private const string AppName = "ErsatzTV"; |
|
private readonly ILogger<PlexTvApiClient> _logger; |
|
private readonly IPlexSecretStore _plexSecretStore; |
|
|
|
private readonly IPlexTvApi _plexTvApi; |
|
|
|
public PlexTvApiClient(IPlexTvApi plexTvApi, IPlexSecretStore plexSecretStore, ILogger<PlexTvApiClient> logger) |
|
{ |
|
_plexTvApi = plexTvApi; |
|
_plexSecretStore = plexSecretStore; |
|
_logger = logger; |
|
} |
|
|
|
public async Task<Either<BaseError, List<PlexMediaSource>>> GetServers() |
|
{ |
|
try |
|
{ |
|
var result = new List<PlexMediaSource>(); |
|
string clientIdentifier = await _plexSecretStore.GetClientIdentifier(); |
|
foreach (PlexUserAuthToken token in await _plexSecretStore.GetUserAuthTokens()) |
|
{ |
|
List<PlexResource> httpResources = await _plexTvApi.GetResources( |
|
0, |
|
clientIdentifier, |
|
token.AuthToken); |
|
|
|
List<PlexResource> httpsResources = await _plexTvApi.GetResources( |
|
1, |
|
clientIdentifier, |
|
token.AuthToken); |
|
|
|
var allServers = httpResources.Filter(resource => resource.HttpsRequired == false) |
|
.Append(httpsResources.Filter(resource => resource.HttpsRequired)) |
|
.Filter(r => r.Provides.Split(",").Any(p => p == "server")) |
|
.ToList(); |
|
|
|
IEnumerable<PlexResource> ownedServers = allServers; |
|
|
|
string allowSharedServers = Environment.GetEnvironmentVariable("ETV_ALLOW_SHARED_PLEX_SERVERS"); |
|
if (string.IsNullOrWhiteSpace(allowSharedServers)) |
|
{ |
|
ownedServers = ownedServers.Filter(r => r.Owned); |
|
} |
|
|
|
foreach (PlexResource resource in ownedServers) |
|
{ |
|
var serverAuthToken = new PlexServerAuthToken( |
|
resource.ClientIdentifier, |
|
resource.AccessToken); |
|
|
|
await _plexSecretStore.UpsertServerAuthToken(serverAuthToken); |
|
List<PlexResourceConnection> sortedConnections = resource.HttpsRequired |
|
? resource.Connections |
|
: resource.Connections.OrderBy(c => c.Local ? 0 : 1).ToList(); |
|
|
|
var source = new PlexMediaSource |
|
{ |
|
ServerName = resource.Name, |
|
ProductVersion = resource.ProductVersion, |
|
Platform = resource.Platform, |
|
PlatformVersion = resource.PlatformVersion, |
|
ClientIdentifier = resource.ClientIdentifier, |
|
Connections = sortedConnections |
|
.Map(c => new PlexConnection { Uri = c.Uri }).ToList() |
|
}; |
|
|
|
result.Add(source); |
|
} |
|
} |
|
|
|
return result; |
|
} |
|
catch (ApiException apiException) |
|
{ |
|
if (apiException.ReasonPhrase == "Unauthorized") |
|
{ |
|
await _plexSecretStore.DeleteAll(); |
|
} |
|
|
|
return BaseError.New(apiException.Message); |
|
} |
|
catch (Exception ex) |
|
{ |
|
_logger.LogError(ex, "Error getting plex servers"); |
|
return BaseError.New(ex.Message); |
|
} |
|
} |
|
|
|
public async Task<Either<BaseError, PlexAuthPin>> StartPinFlow() |
|
{ |
|
try |
|
{ |
|
string clientIdentifier = await _plexSecretStore.GetClientIdentifier(); |
|
PlexPinResponse pinResponse = await _plexTvApi.StartPinFlow(AppName, clientIdentifier); |
|
return new PlexAuthPin(pinResponse.Id, pinResponse.Code, clientIdentifier); |
|
} |
|
catch (Exception ex) |
|
{ |
|
_logger.LogError(ex, "Error starting plex pin flow"); |
|
return BaseError.New(ex.Message); |
|
} |
|
} |
|
|
|
public async Task<bool> TryCompletePinFlow(PlexAuthPin authPin) |
|
{ |
|
try |
|
{ |
|
PlexTokenResponse response = await _plexTvApi.GetPinStatus( |
|
authPin.Id, |
|
authPin.Code, |
|
authPin.ClientIdentifier); |
|
|
|
if (!string.IsNullOrWhiteSpace(response.AuthToken)) |
|
{ |
|
PlexUserResponse user = await _plexTvApi.GetUser( |
|
AppName, |
|
authPin.ClientIdentifier, |
|
response.AuthToken); |
|
|
|
var token = new PlexUserAuthToken(user.Email, user.AuthToken); |
|
await _plexSecretStore.UpsertUserAuthToken(token); |
|
|
|
return true; |
|
} |
|
} |
|
catch (Exception ex) |
|
{ |
|
_logger.LogError(ex, "Error completing plex pin flow"); |
|
} |
|
|
|
return false; |
|
} |
|
}
|
|
|