mirror of
https://github.com/LukeHagar/plexcsharp.git
synced 2025-12-06 20:47:49 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
92be5b3a91 | ||
|
|
a183f389bc | ||
|
|
4a443f6f2e |
File diff suppressed because one or more lines are too long
@@ -12,7 +12,7 @@ generation:
|
|||||||
auth:
|
auth:
|
||||||
oAuth2ClientCredentialsEnabled: true
|
oAuth2ClientCredentialsEnabled: true
|
||||||
csharp:
|
csharp:
|
||||||
version: 0.8.7
|
version: 0.9.2
|
||||||
additionalDependencies: []
|
additionalDependencies: []
|
||||||
author: LukeHagar
|
author: LukeHagar
|
||||||
clientServerStatusCodesAsErrors: true
|
clientServerStatusCodesAsErrors: true
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
speakeasyVersion: 1.405.4
|
speakeasyVersion: 1.405.8
|
||||||
sources:
|
sources:
|
||||||
my-source:
|
my-source:
|
||||||
sourceNamespace: my-source
|
sourceNamespace: my-source
|
||||||
@@ -16,8 +16,8 @@ sources:
|
|||||||
- main
|
- main
|
||||||
plexapi:
|
plexapi:
|
||||||
sourceNamespace: plexapi
|
sourceNamespace: plexapi
|
||||||
sourceRevisionDigest: sha256:c52cde0b8d51e160f7b9f1a3d3ea4dbb1aca6d5caad714e549201fb757fadd57
|
sourceRevisionDigest: sha256:c6ab8f13847c7cdc4ab3752f517164d7da08266726255aa0d614b1eaea66fb0e
|
||||||
sourceBlobDigest: sha256:f417b03ff71356808554313f24c3d06d670474bf51bc9a0631de1ad49c13a361
|
sourceBlobDigest: sha256:64c7694915a0828aeb256d10d2fa0ea477681785b818916b6681be8cc5ffb93b
|
||||||
tags:
|
tags:
|
||||||
- latest
|
- latest
|
||||||
- main
|
- main
|
||||||
@@ -25,10 +25,10 @@ targets:
|
|||||||
plexcsharp:
|
plexcsharp:
|
||||||
source: plexapi
|
source: plexapi
|
||||||
sourceNamespace: plexapi
|
sourceNamespace: plexapi
|
||||||
sourceRevisionDigest: sha256:c52cde0b8d51e160f7b9f1a3d3ea4dbb1aca6d5caad714e549201fb757fadd57
|
sourceRevisionDigest: sha256:c6ab8f13847c7cdc4ab3752f517164d7da08266726255aa0d614b1eaea66fb0e
|
||||||
sourceBlobDigest: sha256:f417b03ff71356808554313f24c3d06d670474bf51bc9a0631de1ad49c13a361
|
sourceBlobDigest: sha256:64c7694915a0828aeb256d10d2fa0ea477681785b818916b6681be8cc5ffb93b
|
||||||
codeSamplesNamespace: code-samples-csharp-plexcsharp
|
codeSamplesNamespace: code-samples-csharp-plexcsharp
|
||||||
codeSamplesRevisionDigest: sha256:079471bc5703da7562a487278e4faa04f3b790ed98e2ad88494d994e665021c6
|
codeSamplesRevisionDigest: sha256:92500227f7e52cdceac29cb2915dfe637ad1432c312c69dd3acb197b357a3577
|
||||||
workflow:
|
workflow:
|
||||||
workflowVersion: 1.0.0
|
workflowVersion: 1.0.0
|
||||||
speakeasyVersion: latest
|
speakeasyVersion: latest
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// Get Server Activities
|
/// Get Server Activities
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetServerActivitiesResponse> GetServerActivitiesAsync();
|
Task<GetServerActivitiesResponse> GetServerActivitiesAsync(RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Cancel Server Activities
|
/// Cancel Server Activities
|
||||||
@@ -54,7 +54,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// Cancel Server Activities
|
/// Cancel Server Activities
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<CancelServerActivitiesResponse> CancelServerActivitiesAsync(string activityUUID);
|
Task<CancelServerActivitiesResponse> CancelServerActivitiesAsync(string activityUUID, RetryConfig? retryConfig = null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -74,10 +74,10 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
{
|
{
|
||||||
public SDKConfig SDKConfiguration { get; private set; }
|
public SDKConfig SDKConfiguration { get; private set; }
|
||||||
private const string _language = "csharp";
|
private const string _language = "csharp";
|
||||||
private const string _sdkVersion = "0.8.7";
|
private const string _sdkVersion = "0.9.2";
|
||||||
private const string _sdkGenVersion = "2.428.1";
|
private const string _sdkGenVersion = "2.429.0";
|
||||||
private const string _openapiDocVersion = "0.0.3";
|
private const string _openapiDocVersion = "0.0.3";
|
||||||
private const string _userAgent = "speakeasy-sdk/csharp 0.8.7 2.428.1 0.0.3 LukeHagar.PlexAPI.SDK";
|
private const string _userAgent = "speakeasy-sdk/csharp 0.9.2 2.429.0 0.0.3 LukeHagar.PlexAPI.SDK";
|
||||||
private string _serverUrl = "";
|
private string _serverUrl = "";
|
||||||
private ISpeakeasyHttpClient _client;
|
private ISpeakeasyHttpClient _client;
|
||||||
private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
|
private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
|
||||||
@@ -90,7 +90,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
SDKConfiguration = config;
|
SDKConfiguration = config;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetServerActivitiesResponse> GetServerActivitiesAsync()
|
public async Task<GetServerActivitiesResponse> GetServerActivitiesAsync(RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
||||||
|
|
||||||
@@ -107,11 +107,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getServerActivities", null, _securitySource);
|
var hookCtx = new HookContext("getServerActivities", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -187,7 +220,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<CancelServerActivitiesResponse> CancelServerActivitiesAsync(string activityUUID)
|
public async Task<CancelServerActivitiesResponse> CancelServerActivitiesAsync(string activityUUID, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new CancelServerActivitiesRequest()
|
var request = new CancelServerActivitiesRequest()
|
||||||
{
|
{
|
||||||
@@ -207,11 +240,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("cancelServerActivities", null, _securitySource);
|
var hookCtx = new HookContext("cancelServerActivities", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetTransientTokenResponse> GetTransientTokenAsync(GetTransientTokenQueryParamType type, Scope scope);
|
Task<GetTransientTokenResponse> GetTransientTokenAsync(GetTransientTokenQueryParamType type, Scope scope, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get Source Connection Information
|
/// Get Source Connection Information
|
||||||
@@ -51,7 +51,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetSourceConnectionInformationResponse> GetSourceConnectionInformationAsync(string source);
|
Task<GetSourceConnectionInformationResponse> GetSourceConnectionInformationAsync(string source, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get Token Details
|
/// Get Token Details
|
||||||
@@ -60,7 +60,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// Get the User data from the provided X-Plex-Token
|
/// Get the User data from the provided X-Plex-Token
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetTokenDetailsResponse> GetTokenDetailsAsync(string? serverUrl = null);
|
Task<GetTokenDetailsResponse> GetTokenDetailsAsync(string? serverUrl = null, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get User Sign In Data
|
/// Get User Sign In Data
|
||||||
@@ -69,7 +69,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// Sign in user with username and password and return user data with Plex authentication token
|
/// Sign in user with username and password and return user data with Plex authentication token
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<PostUsersSignInDataResponse> PostUsersSignInDataAsync(PostUsersSignInDataRequest? request = null, string? serverUrl = null);
|
Task<PostUsersSignInDataResponse> PostUsersSignInDataAsync(PostUsersSignInDataRequest? request = null, string? serverUrl = null, RetryConfig? retryConfig = null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -95,10 +95,10 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
};
|
};
|
||||||
public SDKConfig SDKConfiguration { get; private set; }
|
public SDKConfig SDKConfiguration { get; private set; }
|
||||||
private const string _language = "csharp";
|
private const string _language = "csharp";
|
||||||
private const string _sdkVersion = "0.8.7";
|
private const string _sdkVersion = "0.9.2";
|
||||||
private const string _sdkGenVersion = "2.428.1";
|
private const string _sdkGenVersion = "2.429.0";
|
||||||
private const string _openapiDocVersion = "0.0.3";
|
private const string _openapiDocVersion = "0.0.3";
|
||||||
private const string _userAgent = "speakeasy-sdk/csharp 0.8.7 2.428.1 0.0.3 LukeHagar.PlexAPI.SDK";
|
private const string _userAgent = "speakeasy-sdk/csharp 0.9.2 2.429.0 0.0.3 LukeHagar.PlexAPI.SDK";
|
||||||
private string _serverUrl = "";
|
private string _serverUrl = "";
|
||||||
private ISpeakeasyHttpClient _client;
|
private ISpeakeasyHttpClient _client;
|
||||||
private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
|
private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
|
||||||
@@ -111,7 +111,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
SDKConfiguration = config;
|
SDKConfiguration = config;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetTransientTokenResponse> GetTransientTokenAsync(GetTransientTokenQueryParamType type, Scope scope)
|
public async Task<GetTransientTokenResponse> GetTransientTokenAsync(GetTransientTokenQueryParamType type, Scope scope, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new GetTransientTokenRequest()
|
var request = new GetTransientTokenRequest()
|
||||||
{
|
{
|
||||||
@@ -132,11 +132,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getTransientToken", null, _securitySource);
|
var hookCtx = new HookContext("getTransientToken", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -204,7 +237,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetSourceConnectionInformationResponse> GetSourceConnectionInformationAsync(string source)
|
public async Task<GetSourceConnectionInformationResponse> GetSourceConnectionInformationAsync(string source, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new GetSourceConnectionInformationRequest()
|
var request = new GetSourceConnectionInformationRequest()
|
||||||
{
|
{
|
||||||
@@ -224,11 +257,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getSourceConnectionInformation", null, _securitySource);
|
var hookCtx = new HookContext("getSourceConnectionInformation", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -296,7 +362,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetTokenDetailsResponse> GetTokenDetailsAsync(string? serverUrl = null)
|
public async Task<GetTokenDetailsResponse> GetTokenDetailsAsync(string? serverUrl = null, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = Utilities.TemplateUrl(GetTokenDetailsServerList[0], new Dictionary<string, string>(){
|
string baseUrl = Utilities.TemplateUrl(GetTokenDetailsServerList[0], new Dictionary<string, string>(){
|
||||||
});
|
});
|
||||||
@@ -318,11 +384,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getTokenDetails", null, _securitySource);
|
var hookCtx = new HookContext("getTokenDetails", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -398,13 +497,13 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<PostUsersSignInDataResponse> PostUsersSignInDataAsync(PostUsersSignInDataRequest? request = null, string? serverUrl = null)
|
public async Task<PostUsersSignInDataResponse> PostUsersSignInDataAsync(PostUsersSignInDataRequest? request = null, string? serverUrl = null, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
request.ClientID ??= SDKConfiguration.ClientID;
|
request.ClientID ??= SDKConfiguration.ClientID;
|
||||||
request.ClientName ??= SDKConfiguration.ClientName;
|
request.ClientName ??= SDKConfiguration.ClientName;
|
||||||
request.ClientVersion ??= SDKConfiguration.ClientVersion;
|
request.ClientVersion ??= SDKConfiguration.ClientVersion;
|
||||||
request.ClientPlatform ??= SDKConfiguration.ClientPlatform;
|
request.Platform ??= SDKConfiguration.Platform;
|
||||||
request.DeviceName ??= SDKConfiguration.DeviceName;
|
request.DeviceNickname ??= SDKConfiguration.DeviceNickname;
|
||||||
|
|
||||||
string baseUrl = Utilities.TemplateUrl(PostUsersSignInDataServerList[0], new Dictionary<string, string>(){
|
string baseUrl = Utilities.TemplateUrl(PostUsersSignInDataServerList[0], new Dictionary<string, string>(){
|
||||||
});
|
});
|
||||||
@@ -412,10 +511,12 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
{
|
{
|
||||||
baseUrl = serverUrl;
|
baseUrl = serverUrl;
|
||||||
}
|
}
|
||||||
var urlString = URLBuilder.Build(baseUrl, "/users/signin", request);
|
|
||||||
|
var urlString = baseUrl + "/users/signin";
|
||||||
|
|
||||||
var httpRequest = new HttpRequestMessage(HttpMethod.Post, urlString);
|
var httpRequest = new HttpRequestMessage(HttpMethod.Post, urlString);
|
||||||
httpRequest.Headers.Add("user-agent", _userAgent);
|
httpRequest.Headers.Add("user-agent", _userAgent);
|
||||||
|
HeaderSerializer.PopulateHeaders(ref httpRequest, request);
|
||||||
|
|
||||||
var serializedBody = RequestBodySerializer.Serialize(request, "RequestBody", "form", false, true);
|
var serializedBody = RequestBodySerializer.Serialize(request, "RequestBody", "form", false, true);
|
||||||
if (serializedBody != null)
|
if (serializedBody != null)
|
||||||
@@ -426,11 +527,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("post-users-sign-in-data", null, null);
|
var hookCtx = new HookContext("post-users-sign-in-data", null, null);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// Returns a list of butler tasks
|
/// Returns a list of butler tasks
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetButlerTasksResponse> GetButlerTasksAsync();
|
Task<GetButlerTasksResponse> GetButlerTasksAsync(RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Start all Butler tasks
|
/// Start all Butler tasks
|
||||||
@@ -53,7 +53,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<StartAllTasksResponse> StartAllTasksAsync();
|
Task<StartAllTasksResponse> StartAllTasksAsync(RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Stop all Butler tasks
|
/// Stop all Butler tasks
|
||||||
@@ -63,7 +63,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<StopAllTasksResponse> StopAllTasksAsync();
|
Task<StopAllTasksResponse> StopAllTasksAsync(RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Start a single Butler task
|
/// Start a single Butler task
|
||||||
@@ -77,7 +77,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<StartTaskResponse> StartTaskAsync(TaskName taskName);
|
Task<StartTaskResponse> StartTaskAsync(TaskName taskName, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Stop a single Butler task
|
/// Stop a single Butler task
|
||||||
@@ -87,7 +87,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<StopTaskResponse> StopTaskAsync(PathParamTaskName taskName);
|
Task<StopTaskResponse> StopTaskAsync(PathParamTaskName taskName, RetryConfig? retryConfig = null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -101,10 +101,10 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
{
|
{
|
||||||
public SDKConfig SDKConfiguration { get; private set; }
|
public SDKConfig SDKConfiguration { get; private set; }
|
||||||
private const string _language = "csharp";
|
private const string _language = "csharp";
|
||||||
private const string _sdkVersion = "0.8.7";
|
private const string _sdkVersion = "0.9.2";
|
||||||
private const string _sdkGenVersion = "2.428.1";
|
private const string _sdkGenVersion = "2.429.0";
|
||||||
private const string _openapiDocVersion = "0.0.3";
|
private const string _openapiDocVersion = "0.0.3";
|
||||||
private const string _userAgent = "speakeasy-sdk/csharp 0.8.7 2.428.1 0.0.3 LukeHagar.PlexAPI.SDK";
|
private const string _userAgent = "speakeasy-sdk/csharp 0.9.2 2.429.0 0.0.3 LukeHagar.PlexAPI.SDK";
|
||||||
private string _serverUrl = "";
|
private string _serverUrl = "";
|
||||||
private ISpeakeasyHttpClient _client;
|
private ISpeakeasyHttpClient _client;
|
||||||
private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
|
private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
|
||||||
@@ -117,7 +117,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
SDKConfiguration = config;
|
SDKConfiguration = config;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetButlerTasksResponse> GetButlerTasksAsync()
|
public async Task<GetButlerTasksResponse> GetButlerTasksAsync(RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
||||||
|
|
||||||
@@ -134,11 +134,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getButlerTasks", null, _securitySource);
|
var hookCtx = new HookContext("getButlerTasks", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -214,7 +247,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<StartAllTasksResponse> StartAllTasksAsync()
|
public async Task<StartAllTasksResponse> StartAllTasksAsync(RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
||||||
|
|
||||||
@@ -231,11 +264,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("startAllTasks", null, _securitySource);
|
var hookCtx = new HookContext("startAllTasks", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -303,7 +369,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<StopAllTasksResponse> StopAllTasksAsync()
|
public async Task<StopAllTasksResponse> StopAllTasksAsync(RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
||||||
|
|
||||||
@@ -320,11 +386,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("stopAllTasks", null, _securitySource);
|
var hookCtx = new HookContext("stopAllTasks", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -392,7 +491,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<StartTaskResponse> StartTaskAsync(TaskName taskName)
|
public async Task<StartTaskResponse> StartTaskAsync(TaskName taskName, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new StartTaskRequest()
|
var request = new StartTaskRequest()
|
||||||
{
|
{
|
||||||
@@ -412,11 +511,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("startTask", null, _securitySource);
|
var hookCtx = new HookContext("startTask", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -484,7 +616,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<StopTaskResponse> StopTaskAsync(PathParamTaskName taskName)
|
public async Task<StopTaskResponse> StopTaskAsync(PathParamTaskName taskName, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new StopTaskRequest()
|
var request = new StopTaskRequest()
|
||||||
{
|
{
|
||||||
@@ -504,11 +636,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("stopTask", null, _securitySource);
|
var hookCtx = new HookContext("stopTask", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode == 404 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode == 404 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// Get Global Hubs filtered by the parameters provided.
|
/// Get Global Hubs filtered by the parameters provided.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetGlobalHubsResponse> GetGlobalHubsAsync(double? count = null, OnlyTransient? onlyTransient = null);
|
Task<GetGlobalHubsResponse> GetGlobalHubsAsync(double? count = null, OnlyTransient? onlyTransient = null, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get Recently Added
|
/// Get Recently Added
|
||||||
@@ -49,7 +49,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetRecentlyAddedResponse> GetRecentlyAddedAsync(GetRecentlyAddedRequest request);
|
Task<GetRecentlyAddedResponse> GetRecentlyAddedAsync(GetRecentlyAddedRequest request, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get library specific hubs
|
/// Get library specific hubs
|
||||||
@@ -59,7 +59,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetLibraryHubsResponse> GetLibraryHubsAsync(double sectionId, double? count = null, QueryParamOnlyTransient? onlyTransient = null);
|
Task<GetLibraryHubsResponse> GetLibraryHubsAsync(double sectionId, double? count = null, QueryParamOnlyTransient? onlyTransient = null, RetryConfig? retryConfig = null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -73,10 +73,10 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
{
|
{
|
||||||
public SDKConfig SDKConfiguration { get; private set; }
|
public SDKConfig SDKConfiguration { get; private set; }
|
||||||
private const string _language = "csharp";
|
private const string _language = "csharp";
|
||||||
private const string _sdkVersion = "0.8.7";
|
private const string _sdkVersion = "0.9.2";
|
||||||
private const string _sdkGenVersion = "2.428.1";
|
private const string _sdkGenVersion = "2.429.0";
|
||||||
private const string _openapiDocVersion = "0.0.3";
|
private const string _openapiDocVersion = "0.0.3";
|
||||||
private const string _userAgent = "speakeasy-sdk/csharp 0.8.7 2.428.1 0.0.3 LukeHagar.PlexAPI.SDK";
|
private const string _userAgent = "speakeasy-sdk/csharp 0.9.2 2.429.0 0.0.3 LukeHagar.PlexAPI.SDK";
|
||||||
private string _serverUrl = "";
|
private string _serverUrl = "";
|
||||||
private ISpeakeasyHttpClient _client;
|
private ISpeakeasyHttpClient _client;
|
||||||
private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
|
private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
|
||||||
@@ -89,7 +89,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
SDKConfiguration = config;
|
SDKConfiguration = config;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetGlobalHubsResponse> GetGlobalHubsAsync(double? count = null, OnlyTransient? onlyTransient = null)
|
public async Task<GetGlobalHubsResponse> GetGlobalHubsAsync(double? count = null, OnlyTransient? onlyTransient = null, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new GetGlobalHubsRequest()
|
var request = new GetGlobalHubsRequest()
|
||||||
{
|
{
|
||||||
@@ -110,11 +110,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getGlobalHubs", null, _securitySource);
|
var hookCtx = new HookContext("getGlobalHubs", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -190,7 +223,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetRecentlyAddedResponse> GetRecentlyAddedAsync(GetRecentlyAddedRequest request)
|
public async Task<GetRecentlyAddedResponse> GetRecentlyAddedAsync(GetRecentlyAddedRequest request, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
||||||
var urlString = URLBuilder.Build(baseUrl, "/hubs/home/recentlyAdded", request);
|
var urlString = URLBuilder.Build(baseUrl, "/hubs/home/recentlyAdded", request);
|
||||||
@@ -206,11 +239,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("get-recently-added", null, _securitySource);
|
var hookCtx = new HookContext("get-recently-added", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -264,7 +330,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetLibraryHubsResponse> GetLibraryHubsAsync(double sectionId, double? count = null, QueryParamOnlyTransient? onlyTransient = null)
|
public async Task<GetLibraryHubsResponse> GetLibraryHubsAsync(double sectionId, double? count = null, QueryParamOnlyTransient? onlyTransient = null, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new GetLibraryHubsRequest()
|
var request = new GetLibraryHubsRequest()
|
||||||
{
|
{
|
||||||
@@ -286,11 +352,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getLibraryHubs", null, _securitySource);
|
var hookCtx = new HookContext("getLibraryHubs", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// This resource returns hash values for local files
|
/// This resource returns hash values for local files
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetFileHashResponse> GetFileHashAsync(string url, double? type = null);
|
Task<GetFileHashResponse> GetFileHashAsync(string url, double? type = null, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get Recently Added
|
/// Get Recently Added
|
||||||
@@ -49,7 +49,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetRecentlyAddedLibraryResponse> GetRecentlyAddedLibraryAsync(GetRecentlyAddedLibraryRequest request);
|
Task<GetRecentlyAddedLibraryResponse> GetRecentlyAddedLibraryAsync(GetRecentlyAddedLibraryRequest request, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get All Libraries
|
/// Get All Libraries
|
||||||
@@ -64,7 +64,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetAllLibrariesResponse> GetAllLibrariesAsync();
|
Task<GetAllLibrariesResponse> GetAllLibrariesAsync(RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get Library Details
|
/// Get Library Details
|
||||||
@@ -112,7 +112,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetLibraryDetailsResponse> GetLibraryDetailsAsync(int sectionKey, IncludeDetails? includeDetails = null);
|
Task<GetLibraryDetailsResponse> GetLibraryDetailsAsync(int sectionKey, IncludeDetails? includeDetails = null, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Delete Library Section
|
/// Delete Library Section
|
||||||
@@ -121,7 +121,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// Delete a library using a specific section id
|
/// Delete a library using a specific section id
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<DeleteLibraryResponse> DeleteLibraryAsync(int sectionKey);
|
Task<DeleteLibraryResponse> DeleteLibraryAsync(int sectionKey, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get Library Items
|
/// Get Library Items
|
||||||
@@ -150,7 +150,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetLibraryItemsResponse> GetLibraryItemsAsync(GetLibraryItemsRequest request);
|
Task<GetLibraryItemsResponse> GetLibraryItemsAsync(GetLibraryItemsRequest request, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Refresh Metadata Of The Library
|
/// Refresh Metadata Of The Library
|
||||||
@@ -160,7 +160,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetRefreshLibraryMetadataResponse> GetRefreshLibraryMetadataAsync(int sectionKey, Force? force = null);
|
Task<GetRefreshLibraryMetadataResponse> GetRefreshLibraryMetadataAsync(int sectionKey, Force? force = null, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Search Library
|
/// Search Library
|
||||||
@@ -187,7 +187,17 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetSearchLibraryResponse> GetSearchLibraryAsync(int sectionKey, GetSearchLibraryQueryParamType type);
|
Task<GetSearchLibraryResponse> GetSearchLibraryAsync(int sectionKey, GetSearchLibraryQueryParamType type, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Search All Libraries
|
||||||
|
///
|
||||||
|
/// <remarks>
|
||||||
|
/// Search the provided query across all library sections, or a single section, and return matches as hubs, split up by type.<br/>
|
||||||
|
///
|
||||||
|
/// </remarks>
|
||||||
|
/// </summary>
|
||||||
|
Task<GetSearchAllLibrariesResponse> GetSearchAllLibrariesAsync(GetSearchAllLibrariesRequest request, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get Metadata by RatingKey
|
/// Get Metadata by RatingKey
|
||||||
@@ -197,7 +207,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetMetaDataByRatingKeyResponse> GetMetaDataByRatingKeyAsync(long ratingKey);
|
Task<GetMetaDataByRatingKeyResponse> GetMetaDataByRatingKeyAsync(long ratingKey, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get Items Children
|
/// Get Items Children
|
||||||
@@ -207,7 +217,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetMetadataChildrenResponse> GetMetadataChildrenAsync(double ratingKey, string? includeElements = null);
|
Task<GetMetadataChildrenResponse> GetMetadataChildrenAsync(double ratingKey, string? includeElements = null, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get Top Watched Content
|
/// Get Top Watched Content
|
||||||
@@ -217,7 +227,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetTopWatchedContentResponse> GetTopWatchedContentAsync(GetTopWatchedContentQueryParamType type, long? includeGuids = null);
|
Task<GetTopWatchedContentResponse> GetTopWatchedContentAsync(GetTopWatchedContentQueryParamType type, long? includeGuids = null, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get On Deck
|
/// Get On Deck
|
||||||
@@ -227,7 +237,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetOnDeckResponse> GetOnDeckAsync();
|
Task<GetOnDeckResponse> GetOnDeckAsync(RetryConfig? retryConfig = null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -241,10 +251,10 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
{
|
{
|
||||||
public SDKConfig SDKConfiguration { get; private set; }
|
public SDKConfig SDKConfiguration { get; private set; }
|
||||||
private const string _language = "csharp";
|
private const string _language = "csharp";
|
||||||
private const string _sdkVersion = "0.8.7";
|
private const string _sdkVersion = "0.9.2";
|
||||||
private const string _sdkGenVersion = "2.428.1";
|
private const string _sdkGenVersion = "2.429.0";
|
||||||
private const string _openapiDocVersion = "0.0.3";
|
private const string _openapiDocVersion = "0.0.3";
|
||||||
private const string _userAgent = "speakeasy-sdk/csharp 0.8.7 2.428.1 0.0.3 LukeHagar.PlexAPI.SDK";
|
private const string _userAgent = "speakeasy-sdk/csharp 0.9.2 2.429.0 0.0.3 LukeHagar.PlexAPI.SDK";
|
||||||
private string _serverUrl = "";
|
private string _serverUrl = "";
|
||||||
private ISpeakeasyHttpClient _client;
|
private ISpeakeasyHttpClient _client;
|
||||||
private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
|
private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
|
||||||
@@ -257,7 +267,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
SDKConfiguration = config;
|
SDKConfiguration = config;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetFileHashResponse> GetFileHashAsync(string url, double? type = null)
|
public async Task<GetFileHashResponse> GetFileHashAsync(string url, double? type = null, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new GetFileHashRequest()
|
var request = new GetFileHashRequest()
|
||||||
{
|
{
|
||||||
@@ -278,11 +288,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getFileHash", null, _securitySource);
|
var hookCtx = new HookContext("getFileHash", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -350,7 +393,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetRecentlyAddedLibraryResponse> GetRecentlyAddedLibraryAsync(GetRecentlyAddedLibraryRequest request)
|
public async Task<GetRecentlyAddedLibraryResponse> GetRecentlyAddedLibraryAsync(GetRecentlyAddedLibraryRequest request, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
||||||
var urlString = URLBuilder.Build(baseUrl, "/library/recentlyAdded", request);
|
var urlString = URLBuilder.Build(baseUrl, "/library/recentlyAdded", request);
|
||||||
@@ -366,11 +409,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("get-recently-added-library", null, _securitySource);
|
var hookCtx = new HookContext("get-recently-added-library", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -446,7 +522,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetAllLibrariesResponse> GetAllLibrariesAsync()
|
public async Task<GetAllLibrariesResponse> GetAllLibrariesAsync(RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
||||||
|
|
||||||
@@ -463,11 +539,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("get-all-libraries", null, _securitySource);
|
var hookCtx = new HookContext("get-all-libraries", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -543,7 +652,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetLibraryDetailsResponse> GetLibraryDetailsAsync(int sectionKey, IncludeDetails? includeDetails = null)
|
public async Task<GetLibraryDetailsResponse> GetLibraryDetailsAsync(int sectionKey, IncludeDetails? includeDetails = null, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new GetLibraryDetailsRequest()
|
var request = new GetLibraryDetailsRequest()
|
||||||
{
|
{
|
||||||
@@ -564,11 +673,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("get-library-details", null, _securitySource);
|
var hookCtx = new HookContext("get-library-details", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -644,7 +786,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<DeleteLibraryResponse> DeleteLibraryAsync(int sectionKey)
|
public async Task<DeleteLibraryResponse> DeleteLibraryAsync(int sectionKey, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new DeleteLibraryRequest()
|
var request = new DeleteLibraryRequest()
|
||||||
{
|
{
|
||||||
@@ -664,11 +806,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("deleteLibrary", null, _securitySource);
|
var hookCtx = new HookContext("deleteLibrary", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -736,7 +911,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetLibraryItemsResponse> GetLibraryItemsAsync(GetLibraryItemsRequest request)
|
public async Task<GetLibraryItemsResponse> GetLibraryItemsAsync(GetLibraryItemsRequest request, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
||||||
var urlString = URLBuilder.Build(baseUrl, "/library/sections/{sectionKey}/{tag}", request);
|
var urlString = URLBuilder.Build(baseUrl, "/library/sections/{sectionKey}/{tag}", request);
|
||||||
@@ -752,11 +927,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("get-library-items", null, _securitySource);
|
var hookCtx = new HookContext("get-library-items", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -832,7 +1040,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetRefreshLibraryMetadataResponse> GetRefreshLibraryMetadataAsync(int sectionKey, Force? force = null)
|
public async Task<GetRefreshLibraryMetadataResponse> GetRefreshLibraryMetadataAsync(int sectionKey, Force? force = null, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new GetRefreshLibraryMetadataRequest()
|
var request = new GetRefreshLibraryMetadataRequest()
|
||||||
{
|
{
|
||||||
@@ -853,11 +1061,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("get-refresh-library-metadata", null, _securitySource);
|
var hookCtx = new HookContext("get-refresh-library-metadata", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -925,7 +1166,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetSearchLibraryResponse> GetSearchLibraryAsync(int sectionKey, GetSearchLibraryQueryParamType type)
|
public async Task<GetSearchLibraryResponse> GetSearchLibraryAsync(int sectionKey, GetSearchLibraryQueryParamType type, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new GetSearchLibraryRequest()
|
var request = new GetSearchLibraryRequest()
|
||||||
{
|
{
|
||||||
@@ -946,11 +1187,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("get-search-library", null, _securitySource);
|
var hookCtx = new HookContext("get-search-library", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -1026,7 +1300,143 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetMetaDataByRatingKeyResponse> GetMetaDataByRatingKeyAsync(long ratingKey)
|
public async Task<GetSearchAllLibrariesResponse> GetSearchAllLibrariesAsync(GetSearchAllLibrariesRequest request, RetryConfig? retryConfig = null)
|
||||||
|
{
|
||||||
|
if (request == null)
|
||||||
|
{
|
||||||
|
request = new GetSearchAllLibrariesRequest();
|
||||||
|
}
|
||||||
|
request.ClientID ??= SDKConfiguration.ClientID;
|
||||||
|
|
||||||
|
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
||||||
|
var urlString = URLBuilder.Build(baseUrl, "/library/search", request);
|
||||||
|
|
||||||
|
var httpRequest = new HttpRequestMessage(HttpMethod.Get, urlString);
|
||||||
|
httpRequest.Headers.Add("user-agent", _userAgent);
|
||||||
|
HeaderSerializer.PopulateHeaders(ref httpRequest, request);
|
||||||
|
|
||||||
|
if (_securitySource != null)
|
||||||
|
{
|
||||||
|
httpRequest = new SecurityMetadata(_securitySource).Apply(httpRequest);
|
||||||
|
}
|
||||||
|
|
||||||
|
var hookCtx = new HookContext("get-search-all-libraries", null, _securitySource);
|
||||||
|
|
||||||
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
|
HttpResponseMessage httpResponse;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
httpResponse = await retries.Run();
|
||||||
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
|
{
|
||||||
|
var _httpResponse = await this.SDKConfiguration.Hooks.AfterErrorAsync(new AfterErrorContext(hookCtx), httpResponse, null);
|
||||||
|
if (_httpResponse != null)
|
||||||
|
{
|
||||||
|
httpResponse = _httpResponse;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception error)
|
||||||
|
{
|
||||||
|
var _httpResponse = await this.SDKConfiguration.Hooks.AfterErrorAsync(new AfterErrorContext(hookCtx), null, error);
|
||||||
|
if (_httpResponse != null)
|
||||||
|
{
|
||||||
|
httpResponse = _httpResponse;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
throw;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
httpResponse = await this.SDKConfiguration.Hooks.AfterSuccessAsync(new AfterSuccessContext(hookCtx), httpResponse);
|
||||||
|
|
||||||
|
var contentType = httpResponse.Content.Headers.ContentType?.MediaType;
|
||||||
|
int responseStatusCode = (int)httpResponse.StatusCode;
|
||||||
|
if(responseStatusCode == 200)
|
||||||
|
{
|
||||||
|
if(Utilities.IsContentTypeMatch("application/json", contentType))
|
||||||
|
{
|
||||||
|
var obj = ResponseBodyDeserializer.Deserialize<GetSearchAllLibrariesResponseBody>(await httpResponse.Content.ReadAsStringAsync(), NullValueHandling.Ignore);
|
||||||
|
var response = new GetSearchAllLibrariesResponse()
|
||||||
|
{
|
||||||
|
StatusCode = responseStatusCode,
|
||||||
|
ContentType = contentType,
|
||||||
|
RawResponse = httpResponse
|
||||||
|
};
|
||||||
|
response.Object = obj;
|
||||||
|
return response;
|
||||||
|
}
|
||||||
|
|
||||||
|
throw new Models.Errors.SDKException("Unknown content type received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
|
}
|
||||||
|
else if(responseStatusCode == 400)
|
||||||
|
{
|
||||||
|
if(Utilities.IsContentTypeMatch("application/json", contentType))
|
||||||
|
{
|
||||||
|
var obj = ResponseBodyDeserializer.Deserialize<GetSearchAllLibrariesBadRequest>(await httpResponse.Content.ReadAsStringAsync(), NullValueHandling.Ignore);
|
||||||
|
obj!.RawResponse = httpResponse;
|
||||||
|
throw obj!;
|
||||||
|
}
|
||||||
|
|
||||||
|
throw new Models.Errors.SDKException("Unknown content type received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
|
}
|
||||||
|
else if(responseStatusCode == 401)
|
||||||
|
{
|
||||||
|
if(Utilities.IsContentTypeMatch("application/json", contentType))
|
||||||
|
{
|
||||||
|
var obj = ResponseBodyDeserializer.Deserialize<GetSearchAllLibrariesUnauthorized>(await httpResponse.Content.ReadAsStringAsync(), NullValueHandling.Ignore);
|
||||||
|
obj!.RawResponse = httpResponse;
|
||||||
|
throw obj!;
|
||||||
|
}
|
||||||
|
|
||||||
|
throw new Models.Errors.SDKException("Unknown content type received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
|
}
|
||||||
|
else if(responseStatusCode >= 400 && responseStatusCode < 500 || responseStatusCode >= 500 && responseStatusCode < 600)
|
||||||
|
{
|
||||||
|
throw new Models.Errors.SDKException("API error occurred", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
|
}
|
||||||
|
|
||||||
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task<GetMetaDataByRatingKeyResponse> GetMetaDataByRatingKeyAsync(long ratingKey, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new GetMetaDataByRatingKeyRequest()
|
var request = new GetMetaDataByRatingKeyRequest()
|
||||||
{
|
{
|
||||||
@@ -1046,11 +1456,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("get-meta-data-by-rating-key", null, _securitySource);
|
var hookCtx = new HookContext("get-meta-data-by-rating-key", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -1126,7 +1569,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetMetadataChildrenResponse> GetMetadataChildrenAsync(double ratingKey, string? includeElements = null)
|
public async Task<GetMetadataChildrenResponse> GetMetadataChildrenAsync(double ratingKey, string? includeElements = null, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new GetMetadataChildrenRequest()
|
var request = new GetMetadataChildrenRequest()
|
||||||
{
|
{
|
||||||
@@ -1147,11 +1590,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getMetadataChildren", null, _securitySource);
|
var hookCtx = new HookContext("getMetadataChildren", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -1227,7 +1703,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetTopWatchedContentResponse> GetTopWatchedContentAsync(GetTopWatchedContentQueryParamType type, long? includeGuids = null)
|
public async Task<GetTopWatchedContentResponse> GetTopWatchedContentAsync(GetTopWatchedContentQueryParamType type, long? includeGuids = null, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new GetTopWatchedContentRequest()
|
var request = new GetTopWatchedContentRequest()
|
||||||
{
|
{
|
||||||
@@ -1248,11 +1724,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getTopWatchedContent", null, _securitySource);
|
var hookCtx = new HookContext("getTopWatchedContent", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -1328,7 +1837,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetOnDeckResponse> GetOnDeckAsync()
|
public async Task<GetOnDeckResponse> GetOnDeckAsync(RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
||||||
|
|
||||||
@@ -1345,11 +1854,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getOnDeck", null, _securitySource);
|
var hookCtx = new HookContext("getOnDeck", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<LogLineResponse> LogLineAsync(Level level, string message, string source);
|
Task<LogLineResponse> LogLineAsync(Level level, string message, string source, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Logging a multi-line message
|
/// Logging a multi-line message
|
||||||
@@ -70,7 +70,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<LogMultiLineResponse> LogMultiLineAsync(string request);
|
Task<LogMultiLineResponse> LogMultiLineAsync(string request, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Enabling Papertrail
|
/// Enabling Papertrail
|
||||||
@@ -80,7 +80,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<EnablePaperTrailResponse> EnablePaperTrailAsync();
|
Task<EnablePaperTrailResponse> EnablePaperTrailAsync(RetryConfig? retryConfig = null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -94,10 +94,10 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
{
|
{
|
||||||
public SDKConfig SDKConfiguration { get; private set; }
|
public SDKConfig SDKConfiguration { get; private set; }
|
||||||
private const string _language = "csharp";
|
private const string _language = "csharp";
|
||||||
private const string _sdkVersion = "0.8.7";
|
private const string _sdkVersion = "0.9.2";
|
||||||
private const string _sdkGenVersion = "2.428.1";
|
private const string _sdkGenVersion = "2.429.0";
|
||||||
private const string _openapiDocVersion = "0.0.3";
|
private const string _openapiDocVersion = "0.0.3";
|
||||||
private const string _userAgent = "speakeasy-sdk/csharp 0.8.7 2.428.1 0.0.3 LukeHagar.PlexAPI.SDK";
|
private const string _userAgent = "speakeasy-sdk/csharp 0.9.2 2.429.0 0.0.3 LukeHagar.PlexAPI.SDK";
|
||||||
private string _serverUrl = "";
|
private string _serverUrl = "";
|
||||||
private ISpeakeasyHttpClient _client;
|
private ISpeakeasyHttpClient _client;
|
||||||
private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
|
private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
|
||||||
@@ -110,7 +110,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
SDKConfiguration = config;
|
SDKConfiguration = config;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<LogLineResponse> LogLineAsync(Level level, string message, string source)
|
public async Task<LogLineResponse> LogLineAsync(Level level, string message, string source, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new LogLineRequest()
|
var request = new LogLineRequest()
|
||||||
{
|
{
|
||||||
@@ -132,11 +132,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("logLine", null, _securitySource);
|
var hookCtx = new HookContext("logLine", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -204,7 +237,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<LogMultiLineResponse> LogMultiLineAsync(string request)
|
public async Task<LogMultiLineResponse> LogMultiLineAsync(string request, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
||||||
|
|
||||||
@@ -227,11 +260,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("logMultiLine", null, _securitySource);
|
var hookCtx = new HookContext("logMultiLine", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -299,7 +365,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<EnablePaperTrailResponse> EnablePaperTrailAsync()
|
public async Task<EnablePaperTrailResponse> EnablePaperTrailAsync(RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
||||||
|
|
||||||
@@ -316,11 +382,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("enablePaperTrail", null, _securitySource);
|
var hookCtx = new HookContext("enablePaperTrail", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode == 403 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode == 403 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<IsPackable>true</IsPackable>
|
<IsPackable>true</IsPackable>
|
||||||
<PackageId>LukeHagar.PlexAPI.SDK</PackageId>
|
<PackageId>LukeHagar.PlexAPI.SDK</PackageId>
|
||||||
<Version>0.8.7</Version>
|
<Version>0.9.2</Version>
|
||||||
<TargetFramework>net8.0</TargetFramework>
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
<Authors>LukeHagar</Authors>
|
<Authors>LukeHagar</Authors>
|
||||||
<Copyright>Copyright (c) LukeHagar 2024</Copyright>
|
<Copyright>Copyright (c) LukeHagar 2024</Copyright>
|
||||||
@@ -33,7 +33,7 @@ The following SDKs are generated from the OpenAPI Specification. They are automa
|
|||||||
| Swift | [GitHub](https://github.com/LukeHagar/plexswift) | [Releases](https://github.com/LukeHagar/plexswift/releases) | - |
|
| Swift | [GitHub](https://github.com/LukeHagar/plexswift) | [Releases](https://github.com/LukeHagar/plexswift/releases) | - |
|
||||||
| PHP | [GitHub](https://github.com/LukeHagar/plexphp) | [Releases](https://github.com/LukeHagar/plexphp/releases) | - |
|
| PHP | [GitHub](https://github.com/LukeHagar/plexphp) | [Releases](https://github.com/LukeHagar/plexphp/releases) | - |
|
||||||
| Java | [GitHub](https://github.com/LukeHagar/plexjava) | [Releases](https://github.com/LukeHagar/plexjava/releases) | - |
|
| Java | [GitHub](https://github.com/LukeHagar/plexjava) | [Releases](https://github.com/LukeHagar/plexjava/releases) | - |
|
||||||
| C# | [GitHub](https://github.com/LukeHagar/plexcsharp) | [Releases](https://github.com/LukeHagar/plexcsharp/releases) | -
|
| C# | [GitHub](https://github.com/LukeHagar/plexcsharp) | [Releases](https://github.com/LukeHagar/plexcsharp/releases) | -
|
||||||
</Description>
|
</Description>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// This will mark the provided media key as Played.
|
/// This will mark the provided media key as Played.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<MarkPlayedResponse> MarkPlayedAsync(double key);
|
Task<MarkPlayedResponse> MarkPlayedAsync(double key, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Mark Media Unplayed
|
/// Mark Media Unplayed
|
||||||
@@ -48,7 +48,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// This will mark the provided media key as Unplayed.
|
/// This will mark the provided media key as Unplayed.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<MarkUnplayedResponse> MarkUnplayedAsync(double key);
|
Task<MarkUnplayedResponse> MarkUnplayedAsync(double key, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Update Media Play Progress
|
/// Update Media Play Progress
|
||||||
@@ -58,7 +58,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<UpdatePlayProgressResponse> UpdatePlayProgressAsync(string key, double time, string state);
|
Task<UpdatePlayProgressResponse> UpdatePlayProgressAsync(string key, double time, string state, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get Banner Image
|
/// Get Banner Image
|
||||||
@@ -67,7 +67,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// Gets the banner image of the media item
|
/// Gets the banner image of the media item
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetBannerImageResponse> GetBannerImageAsync(GetBannerImageRequest request);
|
Task<GetBannerImageResponse> GetBannerImageAsync(GetBannerImageRequest request, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get Thumb Image
|
/// Get Thumb Image
|
||||||
@@ -76,7 +76,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// Gets the thumbnail image of the media item
|
/// Gets the thumbnail image of the media item
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetThumbImageResponse> GetThumbImageAsync(GetThumbImageRequest request);
|
Task<GetThumbImageResponse> GetThumbImageAsync(GetThumbImageRequest request, RetryConfig? retryConfig = null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -90,10 +90,10 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
{
|
{
|
||||||
public SDKConfig SDKConfiguration { get; private set; }
|
public SDKConfig SDKConfiguration { get; private set; }
|
||||||
private const string _language = "csharp";
|
private const string _language = "csharp";
|
||||||
private const string _sdkVersion = "0.8.7";
|
private const string _sdkVersion = "0.9.2";
|
||||||
private const string _sdkGenVersion = "2.428.1";
|
private const string _sdkGenVersion = "2.429.0";
|
||||||
private const string _openapiDocVersion = "0.0.3";
|
private const string _openapiDocVersion = "0.0.3";
|
||||||
private const string _userAgent = "speakeasy-sdk/csharp 0.8.7 2.428.1 0.0.3 LukeHagar.PlexAPI.SDK";
|
private const string _userAgent = "speakeasy-sdk/csharp 0.9.2 2.429.0 0.0.3 LukeHagar.PlexAPI.SDK";
|
||||||
private string _serverUrl = "";
|
private string _serverUrl = "";
|
||||||
private ISpeakeasyHttpClient _client;
|
private ISpeakeasyHttpClient _client;
|
||||||
private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
|
private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
|
||||||
@@ -106,7 +106,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
SDKConfiguration = config;
|
SDKConfiguration = config;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<MarkPlayedResponse> MarkPlayedAsync(double key)
|
public async Task<MarkPlayedResponse> MarkPlayedAsync(double key, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new MarkPlayedRequest()
|
var request = new MarkPlayedRequest()
|
||||||
{
|
{
|
||||||
@@ -126,11 +126,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("markPlayed", null, _securitySource);
|
var hookCtx = new HookContext("markPlayed", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -198,7 +231,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<MarkUnplayedResponse> MarkUnplayedAsync(double key)
|
public async Task<MarkUnplayedResponse> MarkUnplayedAsync(double key, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new MarkUnplayedRequest()
|
var request = new MarkUnplayedRequest()
|
||||||
{
|
{
|
||||||
@@ -218,11 +251,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("markUnplayed", null, _securitySource);
|
var hookCtx = new HookContext("markUnplayed", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -290,7 +356,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<UpdatePlayProgressResponse> UpdatePlayProgressAsync(string key, double time, string state)
|
public async Task<UpdatePlayProgressResponse> UpdatePlayProgressAsync(string key, double time, string state, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new UpdatePlayProgressRequest()
|
var request = new UpdatePlayProgressRequest()
|
||||||
{
|
{
|
||||||
@@ -312,11 +378,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("updatePlayProgress", null, _securitySource);
|
var hookCtx = new HookContext("updatePlayProgress", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -384,13 +483,14 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetBannerImageResponse> GetBannerImageAsync(GetBannerImageRequest request)
|
public async Task<GetBannerImageResponse> GetBannerImageAsync(GetBannerImageRequest request, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
||||||
var urlString = URLBuilder.Build(baseUrl, "/library/metadata/{ratingKey}/banner", request);
|
var urlString = URLBuilder.Build(baseUrl, "/library/metadata/{ratingKey}/banner", request);
|
||||||
|
|
||||||
var httpRequest = new HttpRequestMessage(HttpMethod.Get, urlString);
|
var httpRequest = new HttpRequestMessage(HttpMethod.Get, urlString);
|
||||||
httpRequest.Headers.Add("user-agent", _userAgent);
|
httpRequest.Headers.Add("user-agent", _userAgent);
|
||||||
|
HeaderSerializer.PopulateHeaders(ref httpRequest, request);
|
||||||
|
|
||||||
if (_securitySource != null)
|
if (_securitySource != null)
|
||||||
{
|
{
|
||||||
@@ -400,11 +500,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("get-banner-image", null, _securitySource);
|
var hookCtx = new HookContext("get-banner-image", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -479,13 +612,14 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetThumbImageResponse> GetThumbImageAsync(GetThumbImageRequest request)
|
public async Task<GetThumbImageResponse> GetThumbImageAsync(GetThumbImageRequest request, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
||||||
var urlString = URLBuilder.Build(baseUrl, "/library/metadata/{ratingKey}/thumb", request);
|
var urlString = URLBuilder.Build(baseUrl, "/library/metadata/{ratingKey}/thumb", request);
|
||||||
|
|
||||||
var httpRequest = new HttpRequestMessage(HttpMethod.Get, urlString);
|
var httpRequest = new HttpRequestMessage(HttpMethod.Get, urlString);
|
||||||
httpRequest.Headers.Add("user-agent", _userAgent);
|
httpRequest.Headers.Add("user-agent", _userAgent);
|
||||||
|
HeaderSerializer.PopulateHeaders(ref httpRequest, request);
|
||||||
|
|
||||||
if (_securitySource != null)
|
if (_securitySource != null)
|
||||||
{
|
{
|
||||||
@@ -495,11 +629,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("get-thumb-image", null, _securitySource);
|
var hookCtx = new HookContext("get-thumb-image", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
|
|||||||
@@ -0,0 +1,34 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Errors
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Models.Errors;
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Net.Http;
|
||||||
|
using System;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Bad Request - A parameter was not specified, or was specified incorrectly.
|
||||||
|
/// </summary>
|
||||||
|
public class GetSearchAllLibrariesBadRequest : Exception
|
||||||
|
{
|
||||||
|
|
||||||
|
[JsonProperty("errors")]
|
||||||
|
public List<GetSearchAllLibrariesErrors>? Errors { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Raw HTTP response; suitable for custom response parsing
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("-")]
|
||||||
|
public HttpResponseMessage? RawResponse { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Errors
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
public class GetSearchAllLibrariesErrors
|
||||||
|
{
|
||||||
|
|
||||||
|
[JsonProperty("code")]
|
||||||
|
public int? Code { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("message")]
|
||||||
|
public string? Message { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("status")]
|
||||||
|
public int? Status { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Errors
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
public class GetSearchAllLibrariesLibraryErrors
|
||||||
|
{
|
||||||
|
|
||||||
|
[JsonProperty("code")]
|
||||||
|
public int? Code { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("message")]
|
||||||
|
public string? Message { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("status")]
|
||||||
|
public int? Status { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Errors
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Models.Errors;
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Net.Http;
|
||||||
|
using System;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
/// </summary>
|
||||||
|
public class GetSearchAllLibrariesUnauthorized : Exception
|
||||||
|
{
|
||||||
|
|
||||||
|
[JsonProperty("errors")]
|
||||||
|
public List<GetSearchAllLibrariesLibraryErrors>? Errors { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Raw HTTP response; suitable for custom response parsing
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("-")]
|
||||||
|
public HttpResponseMessage? RawResponse { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,243 +0,0 @@
|
|||||||
//------------------------------------------------------------------------------
|
|
||||||
// <auto-generated>
|
|
||||||
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
||||||
//
|
|
||||||
// Changes to this file may cause incorrect behavior and will be lost when
|
|
||||||
// the code is regenerated.
|
|
||||||
// </auto-generated>
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
#nullable enable
|
|
||||||
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|
||||||
{
|
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
|
||||||
using Newtonsoft.Json;
|
|
||||||
using System;
|
|
||||||
|
|
||||||
public enum Features
|
|
||||||
{
|
|
||||||
[JsonProperty("Android - Dolby Vision")]
|
|
||||||
AndroidDolbyVision,
|
|
||||||
[JsonProperty("Android - PiP")]
|
|
||||||
AndroidPiP,
|
|
||||||
[JsonProperty("CU Sunset")]
|
|
||||||
CUSunset,
|
|
||||||
[JsonProperty("HRK_enable_EUR")]
|
|
||||||
HRKEnableEUR,
|
|
||||||
[JsonProperty("TREBLE-show-features")]
|
|
||||||
TREBLEShowFeatures,
|
|
||||||
[JsonProperty("ad-countdown-timer")]
|
|
||||||
AdCountdownTimer,
|
|
||||||
[JsonProperty("adaptive_bitrate")]
|
|
||||||
AdaptiveBitrate,
|
|
||||||
[JsonProperty("album-types")]
|
|
||||||
AlbumTypes,
|
|
||||||
[JsonProperty("allow_dvr")]
|
|
||||||
AllowDvr,
|
|
||||||
[JsonProperty("amazon-loop-debug")]
|
|
||||||
AmazonLoopDebug,
|
|
||||||
[JsonProperty("avod-ad-analysis")]
|
|
||||||
AvodAdAnalysis,
|
|
||||||
[JsonProperty("avod-new-media")]
|
|
||||||
AvodNewMedia,
|
|
||||||
[JsonProperty("blacklist_get_signin")]
|
|
||||||
BlacklistGetSignin,
|
|
||||||
[JsonProperty("boost-voices")]
|
|
||||||
BoostVoices,
|
|
||||||
[JsonProperty("camera_upload")]
|
|
||||||
CameraUpload,
|
|
||||||
[JsonProperty("client-radio-stations")]
|
|
||||||
ClientRadioStations,
|
|
||||||
[JsonProperty("cloudflare-turnstile-required")]
|
|
||||||
CloudflareTurnstileRequired,
|
|
||||||
[JsonProperty("cloudsync")]
|
|
||||||
Cloudsync,
|
|
||||||
[JsonProperty("collections")]
|
|
||||||
Collections,
|
|
||||||
[JsonProperty("comments_and_replies_push_notifications")]
|
|
||||||
CommentsAndRepliesPushNotifications,
|
|
||||||
[JsonProperty("community_access_plex_tv")]
|
|
||||||
CommunityAccessPlexTv,
|
|
||||||
[JsonProperty("companions_sonos")]
|
|
||||||
CompanionsSonos,
|
|
||||||
[JsonProperty("content_filter")]
|
|
||||||
ContentFilter,
|
|
||||||
[JsonProperty("custom-home-removal")]
|
|
||||||
CustomHomeRemoval,
|
|
||||||
[JsonProperty("disable_home_user_friendships")]
|
|
||||||
DisableHomeUserFriendships,
|
|
||||||
[JsonProperty("disable_sharing_friendships")]
|
|
||||||
DisableSharingFriendships,
|
|
||||||
[JsonProperty("downloads-gating")]
|
|
||||||
DownloadsGating,
|
|
||||||
[JsonProperty("drm_support")]
|
|
||||||
DrmSupport,
|
|
||||||
[JsonProperty("dvr")]
|
|
||||||
Dvr,
|
|
||||||
[JsonProperty("dvr-block-unsupported-countries")]
|
|
||||||
DvrBlockUnsupportedCountries,
|
|
||||||
[JsonProperty("epg-recent-channels")]
|
|
||||||
EpgRecentChannels,
|
|
||||||
[JsonProperty("exclude restrictions")]
|
|
||||||
ExcludeRestrictions,
|
|
||||||
[JsonProperty("federated-auth")]
|
|
||||||
FederatedAuth,
|
|
||||||
[JsonProperty("friend_request_push_notifications")]
|
|
||||||
FriendRequestPushNotifications,
|
|
||||||
[JsonProperty("grandfather-sync")]
|
|
||||||
GrandfatherSync,
|
|
||||||
[JsonProperty("guided-upgrade")]
|
|
||||||
GuidedUpgrade,
|
|
||||||
[JsonProperty("hardware_transcoding")]
|
|
||||||
HardwareTranscoding,
|
|
||||||
[JsonProperty("home")]
|
|
||||||
Home,
|
|
||||||
[JsonProperty("hwtranscode")]
|
|
||||||
Hwtranscode,
|
|
||||||
[JsonProperty("imagga-v2")]
|
|
||||||
ImaggaV2,
|
|
||||||
[JsonProperty("increase-password-complexity")]
|
|
||||||
IncreasePasswordComplexity,
|
|
||||||
[JsonProperty("ios14-privacy-banner")]
|
|
||||||
Ios14PrivacyBanner,
|
|
||||||
[JsonProperty("iterable-notification-tokens")]
|
|
||||||
IterableNotificationTokens,
|
|
||||||
[JsonProperty("item_clusters")]
|
|
||||||
ItemClusters,
|
|
||||||
[JsonProperty("keep-payment-method")]
|
|
||||||
KeepPaymentMethod,
|
|
||||||
[JsonProperty("kevin-bacon")]
|
|
||||||
KevinBacon,
|
|
||||||
[JsonProperty("korea-consent")]
|
|
||||||
KoreaConsent,
|
|
||||||
[JsonProperty("le_isrg_root_x1")]
|
|
||||||
LeIsrgRootX1,
|
|
||||||
[JsonProperty("lets_encrypt")]
|
|
||||||
LetsEncrypt,
|
|
||||||
[JsonProperty("lightning-dvr-pivot")]
|
|
||||||
LightningDvrPivot,
|
|
||||||
[JsonProperty("live-tv-support-incomplete-segments")]
|
|
||||||
LiveTvSupportIncompleteSegments,
|
|
||||||
[JsonProperty("livetv")]
|
|
||||||
Livetv,
|
|
||||||
[JsonProperty("lyrics")]
|
|
||||||
Lyrics,
|
|
||||||
[JsonProperty("metadata_search")]
|
|
||||||
MetadataSearch,
|
|
||||||
[JsonProperty("music-analysis")]
|
|
||||||
MusicAnalysis,
|
|
||||||
[JsonProperty("music_videos")]
|
|
||||||
MusicVideos,
|
|
||||||
[JsonProperty("new_plex_pass_prices")]
|
|
||||||
NewPlexPassPrices,
|
|
||||||
[JsonProperty("news-provider-sunset-modal")]
|
|
||||||
NewsProviderSunsetModal,
|
|
||||||
[JsonProperty("nominatim")]
|
|
||||||
Nominatim,
|
|
||||||
[JsonProperty("pass")]
|
|
||||||
Pass,
|
|
||||||
[JsonProperty("photos-favorites")]
|
|
||||||
PhotosFavorites,
|
|
||||||
[JsonProperty("photos-metadata-edition")]
|
|
||||||
PhotosMetadataEdition,
|
|
||||||
[JsonProperty("photosV6-edit")]
|
|
||||||
PhotosV6Edit,
|
|
||||||
[JsonProperty("photosV6-tv-albums")]
|
|
||||||
PhotosV6TvAlbums,
|
|
||||||
[JsonProperty("pms_health")]
|
|
||||||
PmsHealth,
|
|
||||||
[JsonProperty("premium-dashboard")]
|
|
||||||
PremiumDashboard,
|
|
||||||
[JsonProperty("premium_music_metadata")]
|
|
||||||
PremiumMusicMetadata,
|
|
||||||
[JsonProperty("radio")]
|
|
||||||
Radio,
|
|
||||||
[JsonProperty("rate-limit-client-token")]
|
|
||||||
RateLimitClientToken,
|
|
||||||
[JsonProperty("scrobbling-service-plex-tv")]
|
|
||||||
ScrobblingServicePlexTv,
|
|
||||||
[JsonProperty("session_bandwidth_restrictions")]
|
|
||||||
SessionBandwidthRestrictions,
|
|
||||||
[JsonProperty("session_kick")]
|
|
||||||
SessionKick,
|
|
||||||
[JsonProperty("shared_server_notification")]
|
|
||||||
SharedServerNotification,
|
|
||||||
[JsonProperty("shared_source_notification")]
|
|
||||||
SharedSourceNotification,
|
|
||||||
[JsonProperty("signin_notification")]
|
|
||||||
SigninNotification,
|
|
||||||
[JsonProperty("signin_with_apple")]
|
|
||||||
SigninWithApple,
|
|
||||||
[JsonProperty("silence-removal")]
|
|
||||||
SilenceRemoval,
|
|
||||||
[JsonProperty("sleep-timer")]
|
|
||||||
SleepTimer,
|
|
||||||
[JsonProperty("spring_serve_ad_provider")]
|
|
||||||
SpringServeAdProvider,
|
|
||||||
[JsonProperty("sync")]
|
|
||||||
Sync,
|
|
||||||
[JsonProperty("sweet-fades")]
|
|
||||||
SweetFades,
|
|
||||||
[JsonProperty("transcoder_cache")]
|
|
||||||
TranscoderCache,
|
|
||||||
[JsonProperty("trailers")]
|
|
||||||
Trailers,
|
|
||||||
[JsonProperty("tuner-sharing")]
|
|
||||||
TunerSharing,
|
|
||||||
[JsonProperty("two-factor-authentication")]
|
|
||||||
TwoFactorAuthentication,
|
|
||||||
[JsonProperty("unsupportedtuners")]
|
|
||||||
Unsupportedtuners,
|
|
||||||
[JsonProperty("upgrade-3ds2")]
|
|
||||||
Upgrade3ds2,
|
|
||||||
[JsonProperty("visualizers")]
|
|
||||||
Visualizers,
|
|
||||||
[JsonProperty("vod-schema")]
|
|
||||||
VodSchema,
|
|
||||||
[JsonProperty("vod_cloudflare")]
|
|
||||||
VodCloudflare,
|
|
||||||
[JsonProperty("volume-leveling")]
|
|
||||||
VolumeLeveling,
|
|
||||||
[JsonProperty("watch-together-invite")]
|
|
||||||
WatchTogetherInvite,
|
|
||||||
[JsonProperty("watchlist-rss")]
|
|
||||||
WatchlistRss,
|
|
||||||
[JsonProperty("web_server_dashboard")]
|
|
||||||
WebServerDashboard,
|
|
||||||
[JsonProperty("webhooks")]
|
|
||||||
Webhooks,
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class FeaturesExtension
|
|
||||||
{
|
|
||||||
public static string Value(this Features value)
|
|
||||||
{
|
|
||||||
return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Features ToEnum(this string value)
|
|
||||||
{
|
|
||||||
foreach(var field in typeof(Features).GetFields())
|
|
||||||
{
|
|
||||||
var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
|
|
||||||
if (attributes.Length == 0)
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
var attribute = attributes[0] as JsonPropertyAttribute;
|
|
||||||
if (attribute != null && attribute.PropertyName == value)
|
|
||||||
{
|
|
||||||
var enumVal = field.GetValue(null);
|
|
||||||
|
|
||||||
if (enumVal is Features)
|
|
||||||
{
|
|
||||||
return (Features)enumVal;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
throw new Exception($"Unknown value {value} for enum Features");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -90,6 +90,6 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
public int Hidden { get; set; } = default!;
|
public int Hidden { get; set; } = default!;
|
||||||
|
|
||||||
[JsonProperty("Location")]
|
[JsonProperty("Location")]
|
||||||
public List<Location> Location { get; set; } = default!;
|
public List<GetAllLibrariesLocation> Location { get; set; } = default!;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
public class GetAllLibrariesLocation
|
||||||
|
{
|
||||||
|
|
||||||
|
[JsonProperty("id")]
|
||||||
|
public int Id { get; set; } = default!;
|
||||||
|
|
||||||
|
[JsonProperty("path")]
|
||||||
|
public string Path { get; set; } = default!;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -33,9 +33,9 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
public long Upscale { get; set; } = default!;
|
public long Upscale { get; set; } = default!;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Plex Authentication Token
|
/// An authentication token, obtained from plex.tv
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=X-Plex-Token")]
|
[SpeakeasyMetadata("header:style=simple,explode=false,name=X-Plex-Token")]
|
||||||
public string XPlexToken { get; set; } = default!;
|
public string XPlexToken { get; set; } = default!;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
public class GetLibraryItemsLocation
|
||||||
|
{
|
||||||
|
|
||||||
|
[JsonProperty("path")]
|
||||||
|
public string? Path { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -21,43 +21,43 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
public int Id { get; set; } = default!;
|
public int Id { get; set; } = default!;
|
||||||
|
|
||||||
[JsonProperty("duration")]
|
[JsonProperty("duration")]
|
||||||
public int Duration { get; set; } = default!;
|
public int? Duration { get; set; }
|
||||||
|
|
||||||
[JsonProperty("bitrate")]
|
[JsonProperty("bitrate")]
|
||||||
public int Bitrate { get; set; } = default!;
|
public int? Bitrate { get; set; }
|
||||||
|
|
||||||
[JsonProperty("width")]
|
[JsonProperty("width")]
|
||||||
public int Width { get; set; } = default!;
|
public int? Width { get; set; }
|
||||||
|
|
||||||
[JsonProperty("height")]
|
[JsonProperty("height")]
|
||||||
public int Height { get; set; } = default!;
|
public int? Height { get; set; }
|
||||||
|
|
||||||
[JsonProperty("aspectRatio")]
|
[JsonProperty("aspectRatio")]
|
||||||
public double AspectRatio { get; set; } = default!;
|
public double? AspectRatio { get; set; }
|
||||||
|
|
||||||
[JsonProperty("audioProfile")]
|
[JsonProperty("audioProfile")]
|
||||||
public string? AudioProfile { get; set; }
|
public string? AudioProfile { get; set; }
|
||||||
|
|
||||||
[JsonProperty("audioChannels")]
|
[JsonProperty("audioChannels")]
|
||||||
public int AudioChannels { get; set; } = default!;
|
public int? AudioChannels { get; set; }
|
||||||
|
|
||||||
[JsonProperty("audioCodec")]
|
[JsonProperty("audioCodec")]
|
||||||
public string AudioCodec { get; set; } = default!;
|
public string? AudioCodec { get; set; }
|
||||||
|
|
||||||
[JsonProperty("videoCodec")]
|
[JsonProperty("videoCodec")]
|
||||||
public string VideoCodec { get; set; } = default!;
|
public string? VideoCodec { get; set; }
|
||||||
|
|
||||||
[JsonProperty("videoResolution")]
|
[JsonProperty("videoResolution")]
|
||||||
public string VideoResolution { get; set; } = default!;
|
public string? VideoResolution { get; set; }
|
||||||
|
|
||||||
[JsonProperty("container")]
|
[JsonProperty("container")]
|
||||||
public string Container { get; set; } = default!;
|
public string Container { get; set; } = default!;
|
||||||
|
|
||||||
[JsonProperty("videoFrameRate")]
|
[JsonProperty("videoFrameRate")]
|
||||||
public string VideoFrameRate { get; set; } = default!;
|
public string? VideoFrameRate { get; set; }
|
||||||
|
|
||||||
[JsonProperty("videoProfile")]
|
[JsonProperty("videoProfile")]
|
||||||
public string VideoProfile { get; set; } = default!;
|
public string? VideoProfile { get; set; }
|
||||||
|
|
||||||
[JsonProperty("hasVoiceActivity")]
|
[JsonProperty("hasVoiceActivity")]
|
||||||
public bool? HasVoiceActivity { get; set; }
|
public bool? HasVoiceActivity { get; set; }
|
||||||
|
|||||||
@@ -199,6 +199,9 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
[JsonProperty("Role")]
|
[JsonProperty("Role")]
|
||||||
public List<GetLibraryItemsRole>? Role { get; set; }
|
public List<GetLibraryItemsRole>? Role { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("Location")]
|
||||||
|
public List<GetLibraryItemsLocation>? Location { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The Guid object is only included in the response if the `includeGuids` parameter is set to `1`.<br/>
|
/// The Guid object is only included in the response if the `includeGuids` parameter is set to `1`.<br/>
|
||||||
///
|
///
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
public string Key { get; set; } = default!;
|
public string Key { get; set; } = default!;
|
||||||
|
|
||||||
[JsonProperty("duration")]
|
[JsonProperty("duration")]
|
||||||
public int Duration { get; set; } = default!;
|
public int? Duration { get; set; }
|
||||||
|
|
||||||
[JsonProperty("file")]
|
[JsonProperty("file")]
|
||||||
public string File { get; set; } = default!;
|
public string File { get; set; } = default!;
|
||||||
@@ -52,7 +52,7 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
public bool? OptimizedForStreaming { get; set; }
|
public bool? OptimizedForStreaming { get; set; }
|
||||||
|
|
||||||
[JsonProperty("videoProfile")]
|
[JsonProperty("videoProfile")]
|
||||||
public string VideoProfile { get; set; } = default!;
|
public string? VideoProfile { get; set; }
|
||||||
|
|
||||||
[JsonProperty("indexes")]
|
[JsonProperty("indexes")]
|
||||||
public string? Indexes { get; set; }
|
public string? Indexes { get; set; }
|
||||||
|
|||||||
@@ -15,6 +15,12 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
public class GetLibraryItemsRequest
|
public class GetLibraryItemsRequest
|
||||||
{
|
{
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A key representing a specific tag within the section.
|
||||||
|
/// </summary>
|
||||||
|
[SpeakeasyMetadata("pathParam:style=simple,explode=false,name=tag")]
|
||||||
|
public Tag Tag { get; set; } = default!;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The unique key of the Plex library. <br/>
|
/// The unique key of the Plex library. <br/>
|
||||||
///
|
///
|
||||||
@@ -26,12 +32,6 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
[SpeakeasyMetadata("pathParam:style=simple,explode=false,name=sectionKey")]
|
[SpeakeasyMetadata("pathParam:style=simple,explode=false,name=sectionKey")]
|
||||||
public int SectionKey { get; set; } = default!;
|
public int SectionKey { get; set; } = default!;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// A key representing a specific tag within the section.
|
|
||||||
/// </summary>
|
|
||||||
[SpeakeasyMetadata("pathParam:style=simple,explode=false,name=tag")]
|
|
||||||
public Tag Tag { get; set; } = default!;
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Adds the Guids object to the response<br/>
|
/// Adds the Guids object to the response<br/>
|
||||||
///
|
///
|
||||||
|
|||||||
@@ -15,9 +15,9 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
{
|
{
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Plex Authentication Token
|
/// An authentication token, obtained from plex.tv
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=X-Plex-Token")]
|
[SpeakeasyMetadata("header:style=simple,explode=false,name=X-Plex-Token")]
|
||||||
public string XPlexToken { get; set; } = default!;
|
public string XPlexToken { get; set; } = default!;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -27,21 +27,33 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
public bool? Strong { get; set; } = false;
|
public bool? Strong { get; set; } = false;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The unique identifier for the client application. This is used to track the client application and its usage. (UUID, serial number, or other number unique per device)
|
/// An opaque identifier unique to the client (UUID, serial number, or other unique device ID)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=X-Plex-Client-Identifier")]
|
[SpeakeasyMetadata("header:style=simple,explode=false,name=X-Plex-Client-Identifier")]
|
||||||
public string? ClientID { get; set; }
|
public string? ClientID { get; set; }
|
||||||
|
|
||||||
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=X-Plex-Product")]
|
/// <summary>
|
||||||
|
/// The name of the client application. (Plex Web, Plex Media Server, etc.)
|
||||||
|
/// </summary>
|
||||||
|
[SpeakeasyMetadata("header:style=simple,explode=false,name=X-Plex-Product")]
|
||||||
public string? ClientName { get; set; }
|
public string? ClientName { get; set; }
|
||||||
|
|
||||||
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=X-Plex-Device")]
|
/// <summary>
|
||||||
public string? DeviceName { get; set; }
|
/// A relatively friendly name for the client device
|
||||||
|
/// </summary>
|
||||||
|
[SpeakeasyMetadata("header:style=simple,explode=false,name=X-Plex-Device")]
|
||||||
|
public string? DeviceNickname { get; set; }
|
||||||
|
|
||||||
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=X-Plex-Version")]
|
/// <summary>
|
||||||
|
/// The version of the client application.
|
||||||
|
/// </summary>
|
||||||
|
[SpeakeasyMetadata("header:style=simple,explode=false,name=X-Plex-Version")]
|
||||||
public string? ClientVersion { get; set; }
|
public string? ClientVersion { get; set; }
|
||||||
|
|
||||||
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=X-Plex-Platform")]
|
/// <summary>
|
||||||
public string? ClientPlatform { get; set; }
|
/// The platform of the client application.
|
||||||
|
/// </summary>
|
||||||
|
[SpeakeasyMetadata("header:style=simple,explode=false,name=X-Plex-Platform")]
|
||||||
|
public string? Platform { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -199,6 +199,9 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
[JsonProperty("Role")]
|
[JsonProperty("Role")]
|
||||||
public List<Role>? Role { get; set; }
|
public List<Role>? Role { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("Location")]
|
||||||
|
public List<Location>? Location { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The Guid object is only included in the response if the `includeGuids` parameter is set to `1`.<br/>
|
/// The Guid object is only included in the response if the `includeGuids` parameter is set to `1`.<br/>
|
||||||
///
|
///
|
||||||
|
|||||||
@@ -0,0 +1,21 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
public class GetSearchAllLibrariesCollection
|
||||||
|
{
|
||||||
|
|
||||||
|
[JsonProperty("tag")]
|
||||||
|
public string? Tag { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
public class GetSearchAllLibrariesCountry
|
||||||
|
{
|
||||||
|
|
||||||
|
[JsonProperty("tag")]
|
||||||
|
public string? Tag { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
public class GetSearchAllLibrariesDirector
|
||||||
|
{
|
||||||
|
|
||||||
|
[JsonProperty("tag")]
|
||||||
|
public string? Tag { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,57 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using System;
|
||||||
|
|
||||||
|
public enum GetSearchAllLibrariesFlattenSeasons
|
||||||
|
{
|
||||||
|
[JsonProperty("0")]
|
||||||
|
False,
|
||||||
|
[JsonProperty("1")]
|
||||||
|
True,
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class GetSearchAllLibrariesFlattenSeasonsExtension
|
||||||
|
{
|
||||||
|
public static string Value(this GetSearchAllLibrariesFlattenSeasons value)
|
||||||
|
{
|
||||||
|
return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static GetSearchAllLibrariesFlattenSeasons ToEnum(this string value)
|
||||||
|
{
|
||||||
|
foreach(var field in typeof(GetSearchAllLibrariesFlattenSeasons).GetFields())
|
||||||
|
{
|
||||||
|
var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
|
||||||
|
if (attributes.Length == 0)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
var attribute = attributes[0] as JsonPropertyAttribute;
|
||||||
|
if (attribute != null && attribute.PropertyName == value)
|
||||||
|
{
|
||||||
|
var enumVal = field.GetValue(null);
|
||||||
|
|
||||||
|
if (enumVal is GetSearchAllLibrariesFlattenSeasons)
|
||||||
|
{
|
||||||
|
return (GetSearchAllLibrariesFlattenSeasons)enumVal;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
throw new Exception($"Unknown value {value} for enum GetSearchAllLibrariesFlattenSeasons");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
public class GetSearchAllLibrariesGenre
|
||||||
|
{
|
||||||
|
|
||||||
|
[JsonProperty("tag")]
|
||||||
|
public string? Tag { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,57 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using System;
|
||||||
|
|
||||||
|
public enum GetSearchAllLibrariesHasThumbnail
|
||||||
|
{
|
||||||
|
[JsonProperty("0")]
|
||||||
|
False,
|
||||||
|
[JsonProperty("1")]
|
||||||
|
True,
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class GetSearchAllLibrariesHasThumbnailExtension
|
||||||
|
{
|
||||||
|
public static string Value(this GetSearchAllLibrariesHasThumbnail value)
|
||||||
|
{
|
||||||
|
return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static GetSearchAllLibrariesHasThumbnail ToEnum(this string value)
|
||||||
|
{
|
||||||
|
foreach(var field in typeof(GetSearchAllLibrariesHasThumbnail).GetFields())
|
||||||
|
{
|
||||||
|
var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
|
||||||
|
if (attributes.Length == 0)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
var attribute = attributes[0] as JsonPropertyAttribute;
|
||||||
|
if (attribute != null && attribute.PropertyName == value)
|
||||||
|
{
|
||||||
|
var enumVal = field.GetValue(null);
|
||||||
|
|
||||||
|
if (enumVal is GetSearchAllLibrariesHasThumbnail)
|
||||||
|
{
|
||||||
|
return (GetSearchAllLibrariesHasThumbnail)enumVal;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
throw new Exception($"Unknown value {value} for enum GetSearchAllLibrariesHasThumbnail");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
public class GetSearchAllLibrariesImage
|
||||||
|
{
|
||||||
|
|
||||||
|
[JsonProperty("alt")]
|
||||||
|
public string Alt { get; set; } = default!;
|
||||||
|
|
||||||
|
[JsonProperty("type")]
|
||||||
|
public GetSearchAllLibrariesLibraryType Type { get; set; } = default!;
|
||||||
|
|
||||||
|
[JsonProperty("url")]
|
||||||
|
public string Url { get; set; } = default!;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,61 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using System;
|
||||||
|
|
||||||
|
public enum GetSearchAllLibrariesLibraryType
|
||||||
|
{
|
||||||
|
[JsonProperty("coverPoster")]
|
||||||
|
CoverPoster,
|
||||||
|
[JsonProperty("background")]
|
||||||
|
Background,
|
||||||
|
[JsonProperty("snapshot")]
|
||||||
|
Snapshot,
|
||||||
|
[JsonProperty("clearLogo")]
|
||||||
|
ClearLogo,
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class GetSearchAllLibrariesLibraryTypeExtension
|
||||||
|
{
|
||||||
|
public static string Value(this GetSearchAllLibrariesLibraryType value)
|
||||||
|
{
|
||||||
|
return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static GetSearchAllLibrariesLibraryType ToEnum(this string value)
|
||||||
|
{
|
||||||
|
foreach(var field in typeof(GetSearchAllLibrariesLibraryType).GetFields())
|
||||||
|
{
|
||||||
|
var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
|
||||||
|
if (attributes.Length == 0)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
var attribute = attributes[0] as JsonPropertyAttribute;
|
||||||
|
if (attribute != null && attribute.PropertyName == value)
|
||||||
|
{
|
||||||
|
var enumVal = field.GetValue(null);
|
||||||
|
|
||||||
|
if (enumVal is GetSearchAllLibrariesLibraryType)
|
||||||
|
{
|
||||||
|
return (GetSearchAllLibrariesLibraryType)enumVal;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
throw new Exception($"Unknown value {value} for enum GetSearchAllLibrariesLibraryType");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
public class GetSearchAllLibrariesLocation
|
||||||
|
{
|
||||||
|
|
||||||
|
[JsonProperty("path")]
|
||||||
|
public string? Path { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,74 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
public class GetSearchAllLibrariesMedia
|
||||||
|
{
|
||||||
|
|
||||||
|
[JsonProperty("id")]
|
||||||
|
public int Id { get; set; } = default!;
|
||||||
|
|
||||||
|
[JsonProperty("duration")]
|
||||||
|
public int? Duration { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("bitrate")]
|
||||||
|
public int? Bitrate { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("width")]
|
||||||
|
public int? Width { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("height")]
|
||||||
|
public int? Height { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("aspectRatio")]
|
||||||
|
public double? AspectRatio { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("audioProfile")]
|
||||||
|
public string? AudioProfile { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("audioChannels")]
|
||||||
|
public int? AudioChannels { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("audioCodec")]
|
||||||
|
public string? AudioCodec { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("videoCodec")]
|
||||||
|
public string? VideoCodec { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("videoResolution")]
|
||||||
|
public string? VideoResolution { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("container")]
|
||||||
|
public string Container { get; set; } = default!;
|
||||||
|
|
||||||
|
[JsonProperty("videoFrameRate")]
|
||||||
|
public string? VideoFrameRate { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("videoProfile")]
|
||||||
|
public string? VideoProfile { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("hasVoiceActivity")]
|
||||||
|
public bool? HasVoiceActivity { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("optimizedForStreaming")]
|
||||||
|
public GetSearchAllLibrariesOptimizedForStreaming? OptimizedForStreaming { get; set; } = LukeHagar.PlexAPI.SDK.Models.Requests.GetSearchAllLibrariesOptimizedForStreaming.Disable;
|
||||||
|
|
||||||
|
[JsonProperty("has64bitOffsets")]
|
||||||
|
public bool? Has64bitOffsets { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("Part")]
|
||||||
|
public List<GetSearchAllLibrariesPart> Part { get; set; } = default!;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
public class GetSearchAllLibrariesMediaContainer
|
||||||
|
{
|
||||||
|
|
||||||
|
[JsonProperty("size")]
|
||||||
|
public double Size { get; set; } = default!;
|
||||||
|
|
||||||
|
[JsonProperty("SearchResult")]
|
||||||
|
public List<SearchResult> SearchResult { get; set; } = default!;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,29 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
public class GetSearchAllLibrariesMediaGuid
|
||||||
|
{
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Can be one of the following formats:<br/>
|
||||||
|
///
|
||||||
|
/// <remarks>
|
||||||
|
/// imdb://tt13015952, tmdb://2434012, tvdb://7945991<br/>
|
||||||
|
///
|
||||||
|
/// </remarks>
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("id")]
|
||||||
|
public string Id { get; set; } = default!;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
public class GetSearchAllLibrariesMetaDataRating
|
||||||
|
{
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A URI or path to the rating image.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("image")]
|
||||||
|
public string Image { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The value of the rating.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("value")]
|
||||||
|
public float Value { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The type of rating (e.g., audience, critic).
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("type")]
|
||||||
|
public string Type { get; set; } = default!;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,297 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using NodaTime;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
public class GetSearchAllLibrariesMetadata
|
||||||
|
{
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The rating key (Media ID) of this media item.<br/>
|
||||||
|
///
|
||||||
|
/// <remarks>
|
||||||
|
/// Note: This is always an integer, but is represented as a string in the API.<br/>
|
||||||
|
///
|
||||||
|
/// </remarks>
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("ratingKey")]
|
||||||
|
public string RatingKey { get; set; } = default!;
|
||||||
|
|
||||||
|
[JsonProperty("key")]
|
||||||
|
public string Key { get; set; } = default!;
|
||||||
|
|
||||||
|
[JsonProperty("guid")]
|
||||||
|
public string Guid { get; set; } = default!;
|
||||||
|
|
||||||
|
[JsonProperty("studio")]
|
||||||
|
public string? Studio { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("skipChildren")]
|
||||||
|
public bool? SkipChildren { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("librarySectionID")]
|
||||||
|
public long? LibrarySectionID { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("librarySectionTitle")]
|
||||||
|
public string? LibrarySectionTitle { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("librarySectionKey")]
|
||||||
|
public string? LibrarySectionKey { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The type of media content<br/>
|
||||||
|
///
|
||||||
|
/// <remarks>
|
||||||
|
///
|
||||||
|
/// </remarks>
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("type")]
|
||||||
|
public GetSearchAllLibrariesType Type { get; set; } = default!;
|
||||||
|
|
||||||
|
[JsonProperty("title")]
|
||||||
|
public string Title { get; set; } = default!;
|
||||||
|
|
||||||
|
[JsonProperty("slug")]
|
||||||
|
public string? Slug { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("contentRating")]
|
||||||
|
public string? ContentRating { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("summary")]
|
||||||
|
public string Summary { get; set; } = default!;
|
||||||
|
|
||||||
|
[JsonProperty("rating")]
|
||||||
|
public double? Rating { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("audienceRating")]
|
||||||
|
public double? AudienceRating { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("year")]
|
||||||
|
public int? Year { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("seasonCount")]
|
||||||
|
public int? SeasonCount { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("tagline")]
|
||||||
|
public string? Tagline { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("flattenSeasons")]
|
||||||
|
public GetSearchAllLibrariesFlattenSeasons? FlattenSeasons { get; set; } = LukeHagar.PlexAPI.SDK.Models.Requests.GetSearchAllLibrariesFlattenSeasons.False;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Setting that indicates the episode ordering for the show <br/>
|
||||||
|
///
|
||||||
|
/// <remarks>
|
||||||
|
/// None = Library default, <br/>
|
||||||
|
/// tmdbAiring = The Movie Database (Aired), <br/>
|
||||||
|
/// aired = TheTVDB (Aired), <br/>
|
||||||
|
/// dvd = TheTVDB (DVD), <br/>
|
||||||
|
/// absolute = TheTVDB (Absolute)).<br/>
|
||||||
|
///
|
||||||
|
/// </remarks>
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("showOrdering")]
|
||||||
|
public GetSearchAllLibrariesShowOrdering? ShowOrdering { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("thumb")]
|
||||||
|
public string? Thumb { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("art")]
|
||||||
|
public string? Art { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("banner")]
|
||||||
|
public string? Banner { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("duration")]
|
||||||
|
public int? Duration { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("originallyAvailableAt")]
|
||||||
|
public LocalDate? OriginallyAvailableAt { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Unix epoch datetime in seconds
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("addedAt")]
|
||||||
|
public long AddedAt { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Unix epoch datetime in seconds
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("updatedAt")]
|
||||||
|
public long? UpdatedAt { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("audienceRatingImage")]
|
||||||
|
public string? AudienceRatingImage { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("chapterSource")]
|
||||||
|
public string? ChapterSource { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("primaryExtraKey")]
|
||||||
|
public string? PrimaryExtraKey { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("ratingImage")]
|
||||||
|
public string? RatingImage { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("grandparentRatingKey")]
|
||||||
|
public string? GrandparentRatingKey { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("grandparentGuid")]
|
||||||
|
public string? GrandparentGuid { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("grandparentKey")]
|
||||||
|
public string? GrandparentKey { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("grandparentTitle")]
|
||||||
|
public string? GrandparentTitle { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("grandparentThumb")]
|
||||||
|
public string? GrandparentThumb { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("parentSlug")]
|
||||||
|
public string? ParentSlug { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("grandparentSlug")]
|
||||||
|
public string? GrandparentSlug { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("grandparentArt")]
|
||||||
|
public string? GrandparentArt { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("grandparentTheme")]
|
||||||
|
public string? GrandparentTheme { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The Media object is only included when type query is `4` or higher.<br/>
|
||||||
|
///
|
||||||
|
/// <remarks>
|
||||||
|
///
|
||||||
|
/// </remarks>
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("Media")]
|
||||||
|
public List<GetSearchAllLibrariesMedia>? Media { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("Genre")]
|
||||||
|
public List<GetSearchAllLibrariesGenre>? Genre { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("Country")]
|
||||||
|
public List<GetSearchAllLibrariesCountry>? Country { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("Director")]
|
||||||
|
public List<GetSearchAllLibrariesDirector>? Director { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("Writer")]
|
||||||
|
public List<GetSearchAllLibrariesWriter>? Writer { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("Collection")]
|
||||||
|
public List<GetSearchAllLibrariesCollection>? Collection { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("Role")]
|
||||||
|
public List<GetSearchAllLibrariesRole>? Role { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("Location")]
|
||||||
|
public List<GetSearchAllLibrariesLocation>? Location { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The Guid object is only included in the response if the `includeGuids` parameter is set to `1`.<br/>
|
||||||
|
///
|
||||||
|
/// <remarks>
|
||||||
|
///
|
||||||
|
/// </remarks>
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("Guid")]
|
||||||
|
public List<GetSearchAllLibrariesMediaGuid>? MediaGuid { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("UltraBlurColors")]
|
||||||
|
public GetSearchAllLibrariesUltraBlurColors? UltraBlurColors { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("Rating")]
|
||||||
|
public List<GetSearchAllLibrariesMetaDataRating>? MetaDataRating { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("Image")]
|
||||||
|
public List<GetSearchAllLibrariesImage>? Image { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("titleSort")]
|
||||||
|
public string? TitleSort { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("viewCount")]
|
||||||
|
public int? ViewCount { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("lastViewedAt")]
|
||||||
|
public int? LastViewedAt { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("originalTitle")]
|
||||||
|
public string? OriginalTitle { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("viewOffset")]
|
||||||
|
public int? ViewOffset { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("skipCount")]
|
||||||
|
public int? SkipCount { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("index")]
|
||||||
|
public int? Index { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("theme")]
|
||||||
|
public string? Theme { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("leafCount")]
|
||||||
|
public int? LeafCount { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("viewedLeafCount")]
|
||||||
|
public int? ViewedLeafCount { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("childCount")]
|
||||||
|
public int? ChildCount { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("hasPremiumExtras")]
|
||||||
|
public string? HasPremiumExtras { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("hasPremiumPrimaryExtra")]
|
||||||
|
public string? HasPremiumPrimaryExtra { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The rating key of the parent item.<br/>
|
||||||
|
///
|
||||||
|
/// <remarks>
|
||||||
|
///
|
||||||
|
/// </remarks>
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("parentRatingKey")]
|
||||||
|
public string? ParentRatingKey { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("parentGuid")]
|
||||||
|
public string? ParentGuid { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("parentStudio")]
|
||||||
|
public string? ParentStudio { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("parentKey")]
|
||||||
|
public string? ParentKey { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("parentTitle")]
|
||||||
|
public string? ParentTitle { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("parentIndex")]
|
||||||
|
public int? ParentIndex { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("parentYear")]
|
||||||
|
public int? ParentYear { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("parentThumb")]
|
||||||
|
public string? ParentThumb { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("parentTheme")]
|
||||||
|
public string? ParentTheme { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
|
||||||
|
public enum GetSearchAllLibrariesOptimizedForStreaming
|
||||||
|
{
|
||||||
|
Disable = 0,
|
||||||
|
Enable = 1,
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,66 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
public class GetSearchAllLibrariesPart
|
||||||
|
{
|
||||||
|
|
||||||
|
[JsonProperty("id")]
|
||||||
|
public int Id { get; set; } = default!;
|
||||||
|
|
||||||
|
[JsonProperty("key")]
|
||||||
|
public string Key { get; set; } = default!;
|
||||||
|
|
||||||
|
[JsonProperty("duration")]
|
||||||
|
public int? Duration { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("file")]
|
||||||
|
public string File { get; set; } = default!;
|
||||||
|
|
||||||
|
[JsonProperty("size")]
|
||||||
|
public long Size { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The container format of the media file.<br/>
|
||||||
|
///
|
||||||
|
/// <remarks>
|
||||||
|
///
|
||||||
|
/// </remarks>
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("container")]
|
||||||
|
public string Container { get; set; } = default!;
|
||||||
|
|
||||||
|
[JsonProperty("audioProfile")]
|
||||||
|
public string? AudioProfile { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("has64bitOffsets")]
|
||||||
|
public bool? Has64bitOffsets { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("optimizedForStreaming")]
|
||||||
|
public bool? OptimizedForStreaming { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("videoProfile")]
|
||||||
|
public string? VideoProfile { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("indexes")]
|
||||||
|
public string? Indexes { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("hasThumbnail")]
|
||||||
|
public GetSearchAllLibrariesHasThumbnail? HasThumbnail { get; set; } = LukeHagar.PlexAPI.SDK.Models.Requests.GetSearchAllLibrariesHasThumbnail.False;
|
||||||
|
|
||||||
|
[JsonProperty("Stream")]
|
||||||
|
public List<GetSearchAllLibrariesStream>? Stream { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,59 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
public class GetSearchAllLibrariesRequest
|
||||||
|
{
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The search query term.
|
||||||
|
/// </summary>
|
||||||
|
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=query")]
|
||||||
|
public string Query { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// An opaque identifier unique to the client (UUID, serial number, or other unique device ID)
|
||||||
|
/// </summary>
|
||||||
|
[SpeakeasyMetadata("header:style=simple,explode=false,name=X-Plex-Client-Identifier")]
|
||||||
|
public string? ClientID { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Limit the number of results returned.
|
||||||
|
/// </summary>
|
||||||
|
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=limit")]
|
||||||
|
public long? Limit { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A comma-separated list of search types to include. Valid values are: movies, music, otherVideos, people, tv.<br/>
|
||||||
|
///
|
||||||
|
/// <remarks>
|
||||||
|
///
|
||||||
|
/// </remarks>
|
||||||
|
/// </summary>
|
||||||
|
[SpeakeasyMetadata("queryParam:style=form,explode=false,name=searchTypes")]
|
||||||
|
public List<SearchTypes>? SearchTypes { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Whether to include collections in the search results.
|
||||||
|
/// </summary>
|
||||||
|
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=includeCollections")]
|
||||||
|
public QueryParamIncludeCollections? IncludeCollections { get; set; } = LukeHagar.PlexAPI.SDK.Models.Requests.QueryParamIncludeCollections.Disable;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Whether to include external media in the search results.
|
||||||
|
/// </summary>
|
||||||
|
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=includeExternalMedia")]
|
||||||
|
public QueryParamIncludeExternalMedia? IncludeExternalMedia { get; set; } = LukeHagar.PlexAPI.SDK.Models.Requests.QueryParamIncludeExternalMedia.Disable;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,40 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using System.Net.Http;
|
||||||
|
using System;
|
||||||
|
|
||||||
|
public class GetSearchAllLibrariesResponse
|
||||||
|
{
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// HTTP response content type for this operation
|
||||||
|
/// </summary>
|
||||||
|
public string? ContentType { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// HTTP response status code for this operation
|
||||||
|
/// </summary>
|
||||||
|
public int StatusCode { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Raw HTTP response; suitable for custom response parsing
|
||||||
|
/// </summary>
|
||||||
|
public HttpResponseMessage RawResponse { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The libraries available on the Server
|
||||||
|
/// </summary>
|
||||||
|
public GetSearchAllLibrariesResponseBody? Object { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The libraries available on the Server
|
||||||
|
/// </summary>
|
||||||
|
public class GetSearchAllLibrariesResponseBody
|
||||||
|
{
|
||||||
|
|
||||||
|
[JsonProperty("MediaContainer")]
|
||||||
|
public GetSearchAllLibrariesMediaContainer MediaContainer { get; set; } = default!;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,54 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
public class GetSearchAllLibrariesRole
|
||||||
|
{
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The ID of the tag or actor.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("id")]
|
||||||
|
public long? Id { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The filter used to find the actor or tag.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("filter")]
|
||||||
|
public string? Filter { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The thumbnail of the actor
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("thumb")]
|
||||||
|
public string? Thumb { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The name of the tag or actor.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("tag")]
|
||||||
|
public string? Tag { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Unique identifier for the tag.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("tagKey")]
|
||||||
|
public string? TagKey { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The role of the actor or tag in the media.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("role")]
|
||||||
|
public string? Role { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,75 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using System;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Setting that indicates the episode ordering for the show <br/>
|
||||||
|
///
|
||||||
|
/// <remarks>
|
||||||
|
/// None = Library default, <br/>
|
||||||
|
/// tmdbAiring = The Movie Database (Aired), <br/>
|
||||||
|
/// aired = TheTVDB (Aired), <br/>
|
||||||
|
/// dvd = TheTVDB (DVD), <br/>
|
||||||
|
/// absolute = TheTVDB (Absolute)).<br/>
|
||||||
|
///
|
||||||
|
/// </remarks>
|
||||||
|
/// </summary>
|
||||||
|
public enum GetSearchAllLibrariesShowOrdering
|
||||||
|
{
|
||||||
|
[JsonProperty("None")]
|
||||||
|
None,
|
||||||
|
[JsonProperty("tmdbAiring")]
|
||||||
|
TmdbAiring,
|
||||||
|
[JsonProperty("aired")]
|
||||||
|
Aired,
|
||||||
|
[JsonProperty("dvd")]
|
||||||
|
Dvd,
|
||||||
|
[JsonProperty("absolute")]
|
||||||
|
Absolute,
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class GetSearchAllLibrariesShowOrderingExtension
|
||||||
|
{
|
||||||
|
public static string Value(this GetSearchAllLibrariesShowOrdering value)
|
||||||
|
{
|
||||||
|
return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static GetSearchAllLibrariesShowOrdering ToEnum(this string value)
|
||||||
|
{
|
||||||
|
foreach(var field in typeof(GetSearchAllLibrariesShowOrdering).GetFields())
|
||||||
|
{
|
||||||
|
var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
|
||||||
|
if (attributes.Length == 0)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
var attribute = attributes[0] as JsonPropertyAttribute;
|
||||||
|
if (attribute != null && attribute.PropertyName == value)
|
||||||
|
{
|
||||||
|
var enumVal = field.GetValue(null);
|
||||||
|
|
||||||
|
if (enumVal is GetSearchAllLibrariesShowOrdering)
|
||||||
|
{
|
||||||
|
return (GetSearchAllLibrariesShowOrdering)enumVal;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
throw new Exception($"Unknown value {value} for enum GetSearchAllLibrariesShowOrdering");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,234 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
public class GetSearchAllLibrariesStream
|
||||||
|
{
|
||||||
|
|
||||||
|
[JsonProperty("id")]
|
||||||
|
public long Id { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Type of stream (1 = video, 2 = audio, 3 = subtitle)
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("streamType")]
|
||||||
|
public long StreamType { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Indicates if this is the default stream
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("default")]
|
||||||
|
public bool? Default { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Indicates if the stream is selected
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("selected")]
|
||||||
|
public bool? Selected { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Codec used by the stream
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("codec")]
|
||||||
|
public string Codec { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The index of the stream
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("index")]
|
||||||
|
public long Index { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The bitrate of the stream in kbps
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("bitrate")]
|
||||||
|
public long? Bitrate { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The color primaries of the video stream
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("colorPrimaries")]
|
||||||
|
public string? ColorPrimaries { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The color range of the video stream
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("colorRange")]
|
||||||
|
public string? ColorRange { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The color space of the video stream
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("colorSpace")]
|
||||||
|
public string? ColorSpace { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The transfer characteristics (TRC) of the video stream
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("colorTrc")]
|
||||||
|
public string? ColorTrc { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The bit depth of the video stream
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("bitDepth")]
|
||||||
|
public long? BitDepth { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The chroma location of the video stream
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("chromaLocation")]
|
||||||
|
public string? ChromaLocation { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The identifier of the video stream
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("streamIdentifier")]
|
||||||
|
public string? StreamIdentifier { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The chroma subsampling format
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("chromaSubsampling")]
|
||||||
|
public string? ChromaSubsampling { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The coded height of the video stream
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("codedHeight")]
|
||||||
|
public long? CodedHeight { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The coded width of the video stream
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("codedWidth")]
|
||||||
|
public long? CodedWidth { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The frame rate of the video stream
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("frameRate")]
|
||||||
|
public double? FrameRate { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Indicates if the stream has a scaling matrix
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("hasScalingMatrix")]
|
||||||
|
public bool? HasScalingMatrix { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("hearingImpaired")]
|
||||||
|
public bool? HearingImpaired { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("closedCaptions")]
|
||||||
|
public bool? ClosedCaptions { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("embeddedInVideo")]
|
||||||
|
public string? EmbeddedInVideo { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The height of the video stream
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("height")]
|
||||||
|
public long? Height { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The level of the video codec
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("level")]
|
||||||
|
public long? Level { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The profile of the video codec
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("profile")]
|
||||||
|
public string? Profile { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Number of reference frames
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("refFrames")]
|
||||||
|
public long? RefFrames { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The scan type (progressive or interlaced)
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("scanType")]
|
||||||
|
public string? ScanType { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The width of the video stream
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("width")]
|
||||||
|
public long? Width { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Display title of the stream
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("displayTitle")]
|
||||||
|
public string? DisplayTitle { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Extended display title of the stream
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("extendedDisplayTitle")]
|
||||||
|
public string? ExtendedDisplayTitle { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Number of audio channels (for audio streams)
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("channels")]
|
||||||
|
public long? Channels { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The language of the stream (for audio/subtitle streams)
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("language")]
|
||||||
|
public string? Language { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Language tag of the stream
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("languageTag")]
|
||||||
|
public string? LanguageTag { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Language code of the stream
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("languageCode")]
|
||||||
|
public string? LanguageCode { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The audio channel layout
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("audioChannelLayout")]
|
||||||
|
public string? AudioChannelLayout { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Sampling rate of the audio stream in Hz
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("samplingRate")]
|
||||||
|
public long? SamplingRate { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Title of the subtitle track (for subtitle streams)
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("title")]
|
||||||
|
public string? Title { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Indicates if the subtitle stream can auto-sync
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("canAutoSync")]
|
||||||
|
public bool? CanAutoSync { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,68 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using System;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The type of media content<br/>
|
||||||
|
///
|
||||||
|
/// <remarks>
|
||||||
|
///
|
||||||
|
/// </remarks>
|
||||||
|
/// </summary>
|
||||||
|
public enum GetSearchAllLibrariesType
|
||||||
|
{
|
||||||
|
[JsonProperty("movie")]
|
||||||
|
Movie,
|
||||||
|
[JsonProperty("show")]
|
||||||
|
TvShow,
|
||||||
|
[JsonProperty("season")]
|
||||||
|
Season,
|
||||||
|
[JsonProperty("episode")]
|
||||||
|
Episode,
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class GetSearchAllLibrariesTypeExtension
|
||||||
|
{
|
||||||
|
public static string Value(this GetSearchAllLibrariesType value)
|
||||||
|
{
|
||||||
|
return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static GetSearchAllLibrariesType ToEnum(this string value)
|
||||||
|
{
|
||||||
|
foreach(var field in typeof(GetSearchAllLibrariesType).GetFields())
|
||||||
|
{
|
||||||
|
var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
|
||||||
|
if (attributes.Length == 0)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
var attribute = attributes[0] as JsonPropertyAttribute;
|
||||||
|
if (attribute != null && attribute.PropertyName == value)
|
||||||
|
{
|
||||||
|
var enumVal = field.GetValue(null);
|
||||||
|
|
||||||
|
if (enumVal is GetSearchAllLibrariesType)
|
||||||
|
{
|
||||||
|
return (GetSearchAllLibrariesType)enumVal;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
throw new Exception($"Unknown value {value} for enum GetSearchAllLibrariesType");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
public class GetSearchAllLibrariesUltraBlurColors
|
||||||
|
{
|
||||||
|
|
||||||
|
[JsonProperty("topLeft")]
|
||||||
|
public string TopLeft { get; set; } = default!;
|
||||||
|
|
||||||
|
[JsonProperty("topRight")]
|
||||||
|
public string TopRight { get; set; } = default!;
|
||||||
|
|
||||||
|
[JsonProperty("bottomRight")]
|
||||||
|
public string BottomRight { get; set; } = default!;
|
||||||
|
|
||||||
|
[JsonProperty("bottomLeft")]
|
||||||
|
public string BottomLeft { get; set; } = default!;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
public class GetSearchAllLibrariesWriter
|
||||||
|
{
|
||||||
|
|
||||||
|
[JsonProperty("tag")]
|
||||||
|
public string? Tag { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -39,9 +39,9 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
public IncludeIPv6? IncludeIPv6 { get; set; } = LukeHagar.PlexAPI.SDK.Models.Requests.IncludeIPv6.Disable;
|
public IncludeIPv6? IncludeIPv6 { get; set; } = LukeHagar.PlexAPI.SDK.Models.Requests.IncludeIPv6.Disable;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The unique identifier for the client application. This is used to track the client application and its usage. (UUID, serial number, or other number unique per device)
|
/// An opaque identifier unique to the client (UUID, serial number, or other unique device ID)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=X-Plex-Client-Identifier")]
|
[SpeakeasyMetadata("header:style=simple,explode=false,name=X-Plex-Client-Identifier")]
|
||||||
public string? ClientID { get; set; }
|
public string? ClientID { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -33,9 +33,9 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
public long Upscale { get; set; } = default!;
|
public long Upscale { get; set; } = default!;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Plex Authentication Token
|
/// An authentication token, obtained from plex.tv
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=X-Plex-Token")]
|
[SpeakeasyMetadata("header:style=simple,explode=false,name=X-Plex-Token")]
|
||||||
public string XPlexToken { get; set; } = default!;
|
public string XPlexToken { get; set; } = default!;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -21,21 +21,33 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
public long PinID { get; set; } = default!;
|
public long PinID { get; set; } = default!;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The unique identifier for the client application. This is used to track the client application and its usage. (UUID, serial number, or other number unique per device)
|
/// An opaque identifier unique to the client (UUID, serial number, or other unique device ID)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=X-Plex-Client-Identifier")]
|
[SpeakeasyMetadata("header:style=simple,explode=false,name=X-Plex-Client-Identifier")]
|
||||||
public string? ClientID { get; set; }
|
public string? ClientID { get; set; }
|
||||||
|
|
||||||
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=X-Plex-Product")]
|
/// <summary>
|
||||||
|
/// The name of the client application. (Plex Web, Plex Media Server, etc.)
|
||||||
|
/// </summary>
|
||||||
|
[SpeakeasyMetadata("header:style=simple,explode=false,name=X-Plex-Product")]
|
||||||
public string? ClientName { get; set; }
|
public string? ClientName { get; set; }
|
||||||
|
|
||||||
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=X-Plex-Device")]
|
/// <summary>
|
||||||
public string? DeviceName { get; set; }
|
/// A relatively friendly name for the client device
|
||||||
|
/// </summary>
|
||||||
|
[SpeakeasyMetadata("header:style=simple,explode=false,name=X-Plex-Device")]
|
||||||
|
public string? DeviceNickname { get; set; }
|
||||||
|
|
||||||
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=X-Plex-Version")]
|
/// <summary>
|
||||||
|
/// The version of the client application.
|
||||||
|
/// </summary>
|
||||||
|
[SpeakeasyMetadata("header:style=simple,explode=false,name=X-Plex-Version")]
|
||||||
public string? ClientVersion { get; set; }
|
public string? ClientVersion { get; set; }
|
||||||
|
|
||||||
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=X-Plex-Platform")]
|
/// <summary>
|
||||||
public string? ClientPlatform { get; set; }
|
/// The platform of the client application.
|
||||||
|
/// </summary>
|
||||||
|
[SpeakeasyMetadata("header:style=simple,explode=false,name=X-Plex-Platform")]
|
||||||
|
public string? Platform { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,243 +0,0 @@
|
|||||||
//------------------------------------------------------------------------------
|
|
||||||
// <auto-generated>
|
|
||||||
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
||||||
//
|
|
||||||
// Changes to this file may cause incorrect behavior and will be lost when
|
|
||||||
// the code is regenerated.
|
|
||||||
// </auto-generated>
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
#nullable enable
|
|
||||||
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|
||||||
{
|
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
|
||||||
using Newtonsoft.Json;
|
|
||||||
using System;
|
|
||||||
|
|
||||||
public enum GetTokenDetailsFeatures
|
|
||||||
{
|
|
||||||
[JsonProperty("Android - Dolby Vision")]
|
|
||||||
AndroidDolbyVision,
|
|
||||||
[JsonProperty("Android - PiP")]
|
|
||||||
AndroidPiP,
|
|
||||||
[JsonProperty("CU Sunset")]
|
|
||||||
CUSunset,
|
|
||||||
[JsonProperty("HRK_enable_EUR")]
|
|
||||||
HRKEnableEUR,
|
|
||||||
[JsonProperty("TREBLE-show-features")]
|
|
||||||
TREBLEShowFeatures,
|
|
||||||
[JsonProperty("ad-countdown-timer")]
|
|
||||||
AdCountdownTimer,
|
|
||||||
[JsonProperty("adaptive_bitrate")]
|
|
||||||
AdaptiveBitrate,
|
|
||||||
[JsonProperty("album-types")]
|
|
||||||
AlbumTypes,
|
|
||||||
[JsonProperty("allow_dvr")]
|
|
||||||
AllowDvr,
|
|
||||||
[JsonProperty("amazon-loop-debug")]
|
|
||||||
AmazonLoopDebug,
|
|
||||||
[JsonProperty("avod-ad-analysis")]
|
|
||||||
AvodAdAnalysis,
|
|
||||||
[JsonProperty("avod-new-media")]
|
|
||||||
AvodNewMedia,
|
|
||||||
[JsonProperty("blacklist_get_signin")]
|
|
||||||
BlacklistGetSignin,
|
|
||||||
[JsonProperty("boost-voices")]
|
|
||||||
BoostVoices,
|
|
||||||
[JsonProperty("camera_upload")]
|
|
||||||
CameraUpload,
|
|
||||||
[JsonProperty("client-radio-stations")]
|
|
||||||
ClientRadioStations,
|
|
||||||
[JsonProperty("cloudflare-turnstile-required")]
|
|
||||||
CloudflareTurnstileRequired,
|
|
||||||
[JsonProperty("cloudsync")]
|
|
||||||
Cloudsync,
|
|
||||||
[JsonProperty("collections")]
|
|
||||||
Collections,
|
|
||||||
[JsonProperty("comments_and_replies_push_notifications")]
|
|
||||||
CommentsAndRepliesPushNotifications,
|
|
||||||
[JsonProperty("community_access_plex_tv")]
|
|
||||||
CommunityAccessPlexTv,
|
|
||||||
[JsonProperty("companions_sonos")]
|
|
||||||
CompanionsSonos,
|
|
||||||
[JsonProperty("content_filter")]
|
|
||||||
ContentFilter,
|
|
||||||
[JsonProperty("custom-home-removal")]
|
|
||||||
CustomHomeRemoval,
|
|
||||||
[JsonProperty("disable_home_user_friendships")]
|
|
||||||
DisableHomeUserFriendships,
|
|
||||||
[JsonProperty("disable_sharing_friendships")]
|
|
||||||
DisableSharingFriendships,
|
|
||||||
[JsonProperty("downloads-gating")]
|
|
||||||
DownloadsGating,
|
|
||||||
[JsonProperty("drm_support")]
|
|
||||||
DrmSupport,
|
|
||||||
[JsonProperty("dvr")]
|
|
||||||
Dvr,
|
|
||||||
[JsonProperty("dvr-block-unsupported-countries")]
|
|
||||||
DvrBlockUnsupportedCountries,
|
|
||||||
[JsonProperty("epg-recent-channels")]
|
|
||||||
EpgRecentChannels,
|
|
||||||
[JsonProperty("exclude restrictions")]
|
|
||||||
ExcludeRestrictions,
|
|
||||||
[JsonProperty("federated-auth")]
|
|
||||||
FederatedAuth,
|
|
||||||
[JsonProperty("friend_request_push_notifications")]
|
|
||||||
FriendRequestPushNotifications,
|
|
||||||
[JsonProperty("grandfather-sync")]
|
|
||||||
GrandfatherSync,
|
|
||||||
[JsonProperty("guided-upgrade")]
|
|
||||||
GuidedUpgrade,
|
|
||||||
[JsonProperty("hardware_transcoding")]
|
|
||||||
HardwareTranscoding,
|
|
||||||
[JsonProperty("home")]
|
|
||||||
Home,
|
|
||||||
[JsonProperty("hwtranscode")]
|
|
||||||
Hwtranscode,
|
|
||||||
[JsonProperty("imagga-v2")]
|
|
||||||
ImaggaV2,
|
|
||||||
[JsonProperty("increase-password-complexity")]
|
|
||||||
IncreasePasswordComplexity,
|
|
||||||
[JsonProperty("ios14-privacy-banner")]
|
|
||||||
Ios14PrivacyBanner,
|
|
||||||
[JsonProperty("iterable-notification-tokens")]
|
|
||||||
IterableNotificationTokens,
|
|
||||||
[JsonProperty("item_clusters")]
|
|
||||||
ItemClusters,
|
|
||||||
[JsonProperty("keep-payment-method")]
|
|
||||||
KeepPaymentMethod,
|
|
||||||
[JsonProperty("kevin-bacon")]
|
|
||||||
KevinBacon,
|
|
||||||
[JsonProperty("korea-consent")]
|
|
||||||
KoreaConsent,
|
|
||||||
[JsonProperty("le_isrg_root_x1")]
|
|
||||||
LeIsrgRootX1,
|
|
||||||
[JsonProperty("lets_encrypt")]
|
|
||||||
LetsEncrypt,
|
|
||||||
[JsonProperty("lightning-dvr-pivot")]
|
|
||||||
LightningDvrPivot,
|
|
||||||
[JsonProperty("live-tv-support-incomplete-segments")]
|
|
||||||
LiveTvSupportIncompleteSegments,
|
|
||||||
[JsonProperty("livetv")]
|
|
||||||
Livetv,
|
|
||||||
[JsonProperty("lyrics")]
|
|
||||||
Lyrics,
|
|
||||||
[JsonProperty("metadata_search")]
|
|
||||||
MetadataSearch,
|
|
||||||
[JsonProperty("music-analysis")]
|
|
||||||
MusicAnalysis,
|
|
||||||
[JsonProperty("music_videos")]
|
|
||||||
MusicVideos,
|
|
||||||
[JsonProperty("new_plex_pass_prices")]
|
|
||||||
NewPlexPassPrices,
|
|
||||||
[JsonProperty("news-provider-sunset-modal")]
|
|
||||||
NewsProviderSunsetModal,
|
|
||||||
[JsonProperty("nominatim")]
|
|
||||||
Nominatim,
|
|
||||||
[JsonProperty("pass")]
|
|
||||||
Pass,
|
|
||||||
[JsonProperty("photos-favorites")]
|
|
||||||
PhotosFavorites,
|
|
||||||
[JsonProperty("photos-metadata-edition")]
|
|
||||||
PhotosMetadataEdition,
|
|
||||||
[JsonProperty("photosV6-edit")]
|
|
||||||
PhotosV6Edit,
|
|
||||||
[JsonProperty("photosV6-tv-albums")]
|
|
||||||
PhotosV6TvAlbums,
|
|
||||||
[JsonProperty("pms_health")]
|
|
||||||
PmsHealth,
|
|
||||||
[JsonProperty("premium-dashboard")]
|
|
||||||
PremiumDashboard,
|
|
||||||
[JsonProperty("premium_music_metadata")]
|
|
||||||
PremiumMusicMetadata,
|
|
||||||
[JsonProperty("radio")]
|
|
||||||
Radio,
|
|
||||||
[JsonProperty("rate-limit-client-token")]
|
|
||||||
RateLimitClientToken,
|
|
||||||
[JsonProperty("scrobbling-service-plex-tv")]
|
|
||||||
ScrobblingServicePlexTv,
|
|
||||||
[JsonProperty("session_bandwidth_restrictions")]
|
|
||||||
SessionBandwidthRestrictions,
|
|
||||||
[JsonProperty("session_kick")]
|
|
||||||
SessionKick,
|
|
||||||
[JsonProperty("shared_server_notification")]
|
|
||||||
SharedServerNotification,
|
|
||||||
[JsonProperty("shared_source_notification")]
|
|
||||||
SharedSourceNotification,
|
|
||||||
[JsonProperty("signin_notification")]
|
|
||||||
SigninNotification,
|
|
||||||
[JsonProperty("signin_with_apple")]
|
|
||||||
SigninWithApple,
|
|
||||||
[JsonProperty("silence-removal")]
|
|
||||||
SilenceRemoval,
|
|
||||||
[JsonProperty("sleep-timer")]
|
|
||||||
SleepTimer,
|
|
||||||
[JsonProperty("spring_serve_ad_provider")]
|
|
||||||
SpringServeAdProvider,
|
|
||||||
[JsonProperty("sync")]
|
|
||||||
Sync,
|
|
||||||
[JsonProperty("sweet-fades")]
|
|
||||||
SweetFades,
|
|
||||||
[JsonProperty("transcoder_cache")]
|
|
||||||
TranscoderCache,
|
|
||||||
[JsonProperty("trailers")]
|
|
||||||
Trailers,
|
|
||||||
[JsonProperty("tuner-sharing")]
|
|
||||||
TunerSharing,
|
|
||||||
[JsonProperty("two-factor-authentication")]
|
|
||||||
TwoFactorAuthentication,
|
|
||||||
[JsonProperty("unsupportedtuners")]
|
|
||||||
Unsupportedtuners,
|
|
||||||
[JsonProperty("upgrade-3ds2")]
|
|
||||||
Upgrade3ds2,
|
|
||||||
[JsonProperty("visualizers")]
|
|
||||||
Visualizers,
|
|
||||||
[JsonProperty("vod-schema")]
|
|
||||||
VodSchema,
|
|
||||||
[JsonProperty("vod_cloudflare")]
|
|
||||||
VodCloudflare,
|
|
||||||
[JsonProperty("volume-leveling")]
|
|
||||||
VolumeLeveling,
|
|
||||||
[JsonProperty("watch-together-invite")]
|
|
||||||
WatchTogetherInvite,
|
|
||||||
[JsonProperty("watchlist-rss")]
|
|
||||||
WatchlistRss,
|
|
||||||
[JsonProperty("web_server_dashboard")]
|
|
||||||
WebServerDashboard,
|
|
||||||
[JsonProperty("webhooks")]
|
|
||||||
Webhooks,
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class GetTokenDetailsFeaturesExtension
|
|
||||||
{
|
|
||||||
public static string Value(this GetTokenDetailsFeatures value)
|
|
||||||
{
|
|
||||||
return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static GetTokenDetailsFeatures ToEnum(this string value)
|
|
||||||
{
|
|
||||||
foreach(var field in typeof(GetTokenDetailsFeatures).GetFields())
|
|
||||||
{
|
|
||||||
var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
|
|
||||||
if (attributes.Length == 0)
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
var attribute = attributes[0] as JsonPropertyAttribute;
|
|
||||||
if (attribute != null && attribute.PropertyName == value)
|
|
||||||
{
|
|
||||||
var enumVal = field.GetValue(null);
|
|
||||||
|
|
||||||
if (enumVal is GetTokenDetailsFeatures)
|
|
||||||
{
|
|
||||||
return (GetTokenDetailsFeatures)enumVal;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
throw new Exception($"Unknown value {value} for enum GetTokenDetailsFeatures");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -21,7 +21,7 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
/// List of features allowed on your Plex Pass subscription
|
/// List of features allowed on your Plex Pass subscription
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("features")]
|
[JsonProperty("features")]
|
||||||
public List<GetTokenDetailsFeatures>? Features { get; set; }
|
public List<string>? Features { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// If the account's Plex Pass subscription is active
|
/// If the account's Plex Pass subscription is active
|
||||||
|
|||||||
@@ -22,9 +22,9 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
public Filter Filter { get; set; } = default!;
|
public Filter Filter { get; set; } = default!;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Plex Authentication Token
|
/// An authentication token, obtained from plex.tv
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=X-Plex-Token")]
|
[SpeakeasyMetadata("header:style=simple,explode=false,name=X-Plex-Token")]
|
||||||
public string XPlexToken { get; set; } = default!;
|
public string XPlexToken { get; set; } = default!;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
@@ -15,10 +15,7 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
public class Location
|
public class Location
|
||||||
{
|
{
|
||||||
|
|
||||||
[JsonProperty("id")]
|
|
||||||
public int Id { get; set; } = default!;
|
|
||||||
|
|
||||||
[JsonProperty("path")]
|
[JsonProperty("path")]
|
||||||
public string Path { get; set; } = default!;
|
public string? Path { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -21,43 +21,43 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
public int Id { get; set; } = default!;
|
public int Id { get; set; } = default!;
|
||||||
|
|
||||||
[JsonProperty("duration")]
|
[JsonProperty("duration")]
|
||||||
public int Duration { get; set; } = default!;
|
public int? Duration { get; set; }
|
||||||
|
|
||||||
[JsonProperty("bitrate")]
|
[JsonProperty("bitrate")]
|
||||||
public int Bitrate { get; set; } = default!;
|
public int? Bitrate { get; set; }
|
||||||
|
|
||||||
[JsonProperty("width")]
|
[JsonProperty("width")]
|
||||||
public int Width { get; set; } = default!;
|
public int? Width { get; set; }
|
||||||
|
|
||||||
[JsonProperty("height")]
|
[JsonProperty("height")]
|
||||||
public int Height { get; set; } = default!;
|
public int? Height { get; set; }
|
||||||
|
|
||||||
[JsonProperty("aspectRatio")]
|
[JsonProperty("aspectRatio")]
|
||||||
public double AspectRatio { get; set; } = default!;
|
public double? AspectRatio { get; set; }
|
||||||
|
|
||||||
[JsonProperty("audioProfile")]
|
[JsonProperty("audioProfile")]
|
||||||
public string? AudioProfile { get; set; }
|
public string? AudioProfile { get; set; }
|
||||||
|
|
||||||
[JsonProperty("audioChannels")]
|
[JsonProperty("audioChannels")]
|
||||||
public int AudioChannels { get; set; } = default!;
|
public int? AudioChannels { get; set; }
|
||||||
|
|
||||||
[JsonProperty("audioCodec")]
|
[JsonProperty("audioCodec")]
|
||||||
public string AudioCodec { get; set; } = default!;
|
public string? AudioCodec { get; set; }
|
||||||
|
|
||||||
[JsonProperty("videoCodec")]
|
[JsonProperty("videoCodec")]
|
||||||
public string VideoCodec { get; set; } = default!;
|
public string? VideoCodec { get; set; }
|
||||||
|
|
||||||
[JsonProperty("videoResolution")]
|
[JsonProperty("videoResolution")]
|
||||||
public string VideoResolution { get; set; } = default!;
|
public string? VideoResolution { get; set; }
|
||||||
|
|
||||||
[JsonProperty("container")]
|
[JsonProperty("container")]
|
||||||
public string Container { get; set; } = default!;
|
public string Container { get; set; } = default!;
|
||||||
|
|
||||||
[JsonProperty("videoFrameRate")]
|
[JsonProperty("videoFrameRate")]
|
||||||
public string VideoFrameRate { get; set; } = default!;
|
public string? VideoFrameRate { get; set; }
|
||||||
|
|
||||||
[JsonProperty("videoProfile")]
|
[JsonProperty("videoProfile")]
|
||||||
public string VideoProfile { get; set; } = default!;
|
public string? VideoProfile { get; set; }
|
||||||
|
|
||||||
[JsonProperty("hasVoiceActivity")]
|
[JsonProperty("hasVoiceActivity")]
|
||||||
public bool? HasVoiceActivity { get; set; }
|
public bool? HasVoiceActivity { get; set; }
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
public string Key { get; set; } = default!;
|
public string Key { get; set; } = default!;
|
||||||
|
|
||||||
[JsonProperty("duration")]
|
[JsonProperty("duration")]
|
||||||
public int Duration { get; set; } = default!;
|
public int? Duration { get; set; }
|
||||||
|
|
||||||
[JsonProperty("file")]
|
[JsonProperty("file")]
|
||||||
public string File { get; set; } = default!;
|
public string File { get; set; } = default!;
|
||||||
@@ -52,7 +52,7 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
public bool? OptimizedForStreaming { get; set; }
|
public bool? OptimizedForStreaming { get; set; }
|
||||||
|
|
||||||
[JsonProperty("videoProfile")]
|
[JsonProperty("videoProfile")]
|
||||||
public string VideoProfile { get; set; } = default!;
|
public string? VideoProfile { get; set; }
|
||||||
|
|
||||||
[JsonProperty("indexes")]
|
[JsonProperty("indexes")]
|
||||||
public string? Indexes { get; set; }
|
public string? Indexes { get; set; }
|
||||||
|
|||||||
@@ -1,243 +0,0 @@
|
|||||||
//------------------------------------------------------------------------------
|
|
||||||
// <auto-generated>
|
|
||||||
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
||||||
//
|
|
||||||
// Changes to this file may cause incorrect behavior and will be lost when
|
|
||||||
// the code is regenerated.
|
|
||||||
// </auto-generated>
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
#nullable enable
|
|
||||||
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|
||||||
{
|
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
|
||||||
using Newtonsoft.Json;
|
|
||||||
using System;
|
|
||||||
|
|
||||||
public enum PostUsersSignInDataAuthenticationFeatures
|
|
||||||
{
|
|
||||||
[JsonProperty("Android - Dolby Vision")]
|
|
||||||
AndroidDolbyVision,
|
|
||||||
[JsonProperty("Android - PiP")]
|
|
||||||
AndroidPiP,
|
|
||||||
[JsonProperty("CU Sunset")]
|
|
||||||
CUSunset,
|
|
||||||
[JsonProperty("HRK_enable_EUR")]
|
|
||||||
HRKEnableEUR,
|
|
||||||
[JsonProperty("TREBLE-show-features")]
|
|
||||||
TREBLEShowFeatures,
|
|
||||||
[JsonProperty("ad-countdown-timer")]
|
|
||||||
AdCountdownTimer,
|
|
||||||
[JsonProperty("adaptive_bitrate")]
|
|
||||||
AdaptiveBitrate,
|
|
||||||
[JsonProperty("album-types")]
|
|
||||||
AlbumTypes,
|
|
||||||
[JsonProperty("allow_dvr")]
|
|
||||||
AllowDvr,
|
|
||||||
[JsonProperty("amazon-loop-debug")]
|
|
||||||
AmazonLoopDebug,
|
|
||||||
[JsonProperty("avod-ad-analysis")]
|
|
||||||
AvodAdAnalysis,
|
|
||||||
[JsonProperty("avod-new-media")]
|
|
||||||
AvodNewMedia,
|
|
||||||
[JsonProperty("blacklist_get_signin")]
|
|
||||||
BlacklistGetSignin,
|
|
||||||
[JsonProperty("boost-voices")]
|
|
||||||
BoostVoices,
|
|
||||||
[JsonProperty("camera_upload")]
|
|
||||||
CameraUpload,
|
|
||||||
[JsonProperty("client-radio-stations")]
|
|
||||||
ClientRadioStations,
|
|
||||||
[JsonProperty("cloudflare-turnstile-required")]
|
|
||||||
CloudflareTurnstileRequired,
|
|
||||||
[JsonProperty("cloudsync")]
|
|
||||||
Cloudsync,
|
|
||||||
[JsonProperty("collections")]
|
|
||||||
Collections,
|
|
||||||
[JsonProperty("comments_and_replies_push_notifications")]
|
|
||||||
CommentsAndRepliesPushNotifications,
|
|
||||||
[JsonProperty("community_access_plex_tv")]
|
|
||||||
CommunityAccessPlexTv,
|
|
||||||
[JsonProperty("companions_sonos")]
|
|
||||||
CompanionsSonos,
|
|
||||||
[JsonProperty("content_filter")]
|
|
||||||
ContentFilter,
|
|
||||||
[JsonProperty("custom-home-removal")]
|
|
||||||
CustomHomeRemoval,
|
|
||||||
[JsonProperty("disable_home_user_friendships")]
|
|
||||||
DisableHomeUserFriendships,
|
|
||||||
[JsonProperty("disable_sharing_friendships")]
|
|
||||||
DisableSharingFriendships,
|
|
||||||
[JsonProperty("downloads-gating")]
|
|
||||||
DownloadsGating,
|
|
||||||
[JsonProperty("drm_support")]
|
|
||||||
DrmSupport,
|
|
||||||
[JsonProperty("dvr")]
|
|
||||||
Dvr,
|
|
||||||
[JsonProperty("dvr-block-unsupported-countries")]
|
|
||||||
DvrBlockUnsupportedCountries,
|
|
||||||
[JsonProperty("epg-recent-channels")]
|
|
||||||
EpgRecentChannels,
|
|
||||||
[JsonProperty("exclude restrictions")]
|
|
||||||
ExcludeRestrictions,
|
|
||||||
[JsonProperty("federated-auth")]
|
|
||||||
FederatedAuth,
|
|
||||||
[JsonProperty("friend_request_push_notifications")]
|
|
||||||
FriendRequestPushNotifications,
|
|
||||||
[JsonProperty("grandfather-sync")]
|
|
||||||
GrandfatherSync,
|
|
||||||
[JsonProperty("guided-upgrade")]
|
|
||||||
GuidedUpgrade,
|
|
||||||
[JsonProperty("hardware_transcoding")]
|
|
||||||
HardwareTranscoding,
|
|
||||||
[JsonProperty("home")]
|
|
||||||
Home,
|
|
||||||
[JsonProperty("hwtranscode")]
|
|
||||||
Hwtranscode,
|
|
||||||
[JsonProperty("imagga-v2")]
|
|
||||||
ImaggaV2,
|
|
||||||
[JsonProperty("increase-password-complexity")]
|
|
||||||
IncreasePasswordComplexity,
|
|
||||||
[JsonProperty("ios14-privacy-banner")]
|
|
||||||
Ios14PrivacyBanner,
|
|
||||||
[JsonProperty("iterable-notification-tokens")]
|
|
||||||
IterableNotificationTokens,
|
|
||||||
[JsonProperty("item_clusters")]
|
|
||||||
ItemClusters,
|
|
||||||
[JsonProperty("keep-payment-method")]
|
|
||||||
KeepPaymentMethod,
|
|
||||||
[JsonProperty("kevin-bacon")]
|
|
||||||
KevinBacon,
|
|
||||||
[JsonProperty("korea-consent")]
|
|
||||||
KoreaConsent,
|
|
||||||
[JsonProperty("le_isrg_root_x1")]
|
|
||||||
LeIsrgRootX1,
|
|
||||||
[JsonProperty("lets_encrypt")]
|
|
||||||
LetsEncrypt,
|
|
||||||
[JsonProperty("lightning-dvr-pivot")]
|
|
||||||
LightningDvrPivot,
|
|
||||||
[JsonProperty("live-tv-support-incomplete-segments")]
|
|
||||||
LiveTvSupportIncompleteSegments,
|
|
||||||
[JsonProperty("livetv")]
|
|
||||||
Livetv,
|
|
||||||
[JsonProperty("lyrics")]
|
|
||||||
Lyrics,
|
|
||||||
[JsonProperty("metadata_search")]
|
|
||||||
MetadataSearch,
|
|
||||||
[JsonProperty("music-analysis")]
|
|
||||||
MusicAnalysis,
|
|
||||||
[JsonProperty("music_videos")]
|
|
||||||
MusicVideos,
|
|
||||||
[JsonProperty("new_plex_pass_prices")]
|
|
||||||
NewPlexPassPrices,
|
|
||||||
[JsonProperty("news-provider-sunset-modal")]
|
|
||||||
NewsProviderSunsetModal,
|
|
||||||
[JsonProperty("nominatim")]
|
|
||||||
Nominatim,
|
|
||||||
[JsonProperty("pass")]
|
|
||||||
Pass,
|
|
||||||
[JsonProperty("photos-favorites")]
|
|
||||||
PhotosFavorites,
|
|
||||||
[JsonProperty("photos-metadata-edition")]
|
|
||||||
PhotosMetadataEdition,
|
|
||||||
[JsonProperty("photosV6-edit")]
|
|
||||||
PhotosV6Edit,
|
|
||||||
[JsonProperty("photosV6-tv-albums")]
|
|
||||||
PhotosV6TvAlbums,
|
|
||||||
[JsonProperty("pms_health")]
|
|
||||||
PmsHealth,
|
|
||||||
[JsonProperty("premium-dashboard")]
|
|
||||||
PremiumDashboard,
|
|
||||||
[JsonProperty("premium_music_metadata")]
|
|
||||||
PremiumMusicMetadata,
|
|
||||||
[JsonProperty("radio")]
|
|
||||||
Radio,
|
|
||||||
[JsonProperty("rate-limit-client-token")]
|
|
||||||
RateLimitClientToken,
|
|
||||||
[JsonProperty("scrobbling-service-plex-tv")]
|
|
||||||
ScrobblingServicePlexTv,
|
|
||||||
[JsonProperty("session_bandwidth_restrictions")]
|
|
||||||
SessionBandwidthRestrictions,
|
|
||||||
[JsonProperty("session_kick")]
|
|
||||||
SessionKick,
|
|
||||||
[JsonProperty("shared_server_notification")]
|
|
||||||
SharedServerNotification,
|
|
||||||
[JsonProperty("shared_source_notification")]
|
|
||||||
SharedSourceNotification,
|
|
||||||
[JsonProperty("signin_notification")]
|
|
||||||
SigninNotification,
|
|
||||||
[JsonProperty("signin_with_apple")]
|
|
||||||
SigninWithApple,
|
|
||||||
[JsonProperty("silence-removal")]
|
|
||||||
SilenceRemoval,
|
|
||||||
[JsonProperty("sleep-timer")]
|
|
||||||
SleepTimer,
|
|
||||||
[JsonProperty("spring_serve_ad_provider")]
|
|
||||||
SpringServeAdProvider,
|
|
||||||
[JsonProperty("sync")]
|
|
||||||
Sync,
|
|
||||||
[JsonProperty("sweet-fades")]
|
|
||||||
SweetFades,
|
|
||||||
[JsonProperty("transcoder_cache")]
|
|
||||||
TranscoderCache,
|
|
||||||
[JsonProperty("trailers")]
|
|
||||||
Trailers,
|
|
||||||
[JsonProperty("tuner-sharing")]
|
|
||||||
TunerSharing,
|
|
||||||
[JsonProperty("two-factor-authentication")]
|
|
||||||
TwoFactorAuthentication,
|
|
||||||
[JsonProperty("unsupportedtuners")]
|
|
||||||
Unsupportedtuners,
|
|
||||||
[JsonProperty("upgrade-3ds2")]
|
|
||||||
Upgrade3ds2,
|
|
||||||
[JsonProperty("visualizers")]
|
|
||||||
Visualizers,
|
|
||||||
[JsonProperty("vod-schema")]
|
|
||||||
VodSchema,
|
|
||||||
[JsonProperty("vod_cloudflare")]
|
|
||||||
VodCloudflare,
|
|
||||||
[JsonProperty("volume-leveling")]
|
|
||||||
VolumeLeveling,
|
|
||||||
[JsonProperty("watch-together-invite")]
|
|
||||||
WatchTogetherInvite,
|
|
||||||
[JsonProperty("watchlist-rss")]
|
|
||||||
WatchlistRss,
|
|
||||||
[JsonProperty("web_server_dashboard")]
|
|
||||||
WebServerDashboard,
|
|
||||||
[JsonProperty("webhooks")]
|
|
||||||
Webhooks,
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class PostUsersSignInDataAuthenticationFeaturesExtension
|
|
||||||
{
|
|
||||||
public static string Value(this PostUsersSignInDataAuthenticationFeatures value)
|
|
||||||
{
|
|
||||||
return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static PostUsersSignInDataAuthenticationFeatures ToEnum(this string value)
|
|
||||||
{
|
|
||||||
foreach(var field in typeof(PostUsersSignInDataAuthenticationFeatures).GetFields())
|
|
||||||
{
|
|
||||||
var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
|
|
||||||
if (attributes.Length == 0)
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
var attribute = attributes[0] as JsonPropertyAttribute;
|
|
||||||
if (attribute != null && attribute.PropertyName == value)
|
|
||||||
{
|
|
||||||
var enumVal = field.GetValue(null);
|
|
||||||
|
|
||||||
if (enumVal is PostUsersSignInDataAuthenticationFeatures)
|
|
||||||
{
|
|
||||||
return (PostUsersSignInDataAuthenticationFeatures)enumVal;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
throw new Exception($"Unknown value {value} for enum PostUsersSignInDataAuthenticationFeatures");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -21,7 +21,7 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
/// List of features allowed on your Plex Pass subscription
|
/// List of features allowed on your Plex Pass subscription
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("features")]
|
[JsonProperty("features")]
|
||||||
public List<PostUsersSignInDataAuthenticationFeatures>? Features { get; set; }
|
public List<string>? Features { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// If the account's Plex Pass subscription is active
|
/// If the account's Plex Pass subscription is active
|
||||||
|
|||||||
@@ -1,243 +0,0 @@
|
|||||||
//------------------------------------------------------------------------------
|
|
||||||
// <auto-generated>
|
|
||||||
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
||||||
//
|
|
||||||
// Changes to this file may cause incorrect behavior and will be lost when
|
|
||||||
// the code is regenerated.
|
|
||||||
// </auto-generated>
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
#nullable enable
|
|
||||||
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|
||||||
{
|
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
|
||||||
using Newtonsoft.Json;
|
|
||||||
using System;
|
|
||||||
|
|
||||||
public enum PostUsersSignInDataFeatures
|
|
||||||
{
|
|
||||||
[JsonProperty("Android - Dolby Vision")]
|
|
||||||
AndroidDolbyVision,
|
|
||||||
[JsonProperty("Android - PiP")]
|
|
||||||
AndroidPiP,
|
|
||||||
[JsonProperty("CU Sunset")]
|
|
||||||
CUSunset,
|
|
||||||
[JsonProperty("HRK_enable_EUR")]
|
|
||||||
HRKEnableEUR,
|
|
||||||
[JsonProperty("TREBLE-show-features")]
|
|
||||||
TREBLEShowFeatures,
|
|
||||||
[JsonProperty("ad-countdown-timer")]
|
|
||||||
AdCountdownTimer,
|
|
||||||
[JsonProperty("adaptive_bitrate")]
|
|
||||||
AdaptiveBitrate,
|
|
||||||
[JsonProperty("album-types")]
|
|
||||||
AlbumTypes,
|
|
||||||
[JsonProperty("allow_dvr")]
|
|
||||||
AllowDvr,
|
|
||||||
[JsonProperty("amazon-loop-debug")]
|
|
||||||
AmazonLoopDebug,
|
|
||||||
[JsonProperty("avod-ad-analysis")]
|
|
||||||
AvodAdAnalysis,
|
|
||||||
[JsonProperty("avod-new-media")]
|
|
||||||
AvodNewMedia,
|
|
||||||
[JsonProperty("blacklist_get_signin")]
|
|
||||||
BlacklistGetSignin,
|
|
||||||
[JsonProperty("boost-voices")]
|
|
||||||
BoostVoices,
|
|
||||||
[JsonProperty("camera_upload")]
|
|
||||||
CameraUpload,
|
|
||||||
[JsonProperty("client-radio-stations")]
|
|
||||||
ClientRadioStations,
|
|
||||||
[JsonProperty("cloudflare-turnstile-required")]
|
|
||||||
CloudflareTurnstileRequired,
|
|
||||||
[JsonProperty("cloudsync")]
|
|
||||||
Cloudsync,
|
|
||||||
[JsonProperty("collections")]
|
|
||||||
Collections,
|
|
||||||
[JsonProperty("comments_and_replies_push_notifications")]
|
|
||||||
CommentsAndRepliesPushNotifications,
|
|
||||||
[JsonProperty("community_access_plex_tv")]
|
|
||||||
CommunityAccessPlexTv,
|
|
||||||
[JsonProperty("companions_sonos")]
|
|
||||||
CompanionsSonos,
|
|
||||||
[JsonProperty("content_filter")]
|
|
||||||
ContentFilter,
|
|
||||||
[JsonProperty("custom-home-removal")]
|
|
||||||
CustomHomeRemoval,
|
|
||||||
[JsonProperty("disable_home_user_friendships")]
|
|
||||||
DisableHomeUserFriendships,
|
|
||||||
[JsonProperty("disable_sharing_friendships")]
|
|
||||||
DisableSharingFriendships,
|
|
||||||
[JsonProperty("downloads-gating")]
|
|
||||||
DownloadsGating,
|
|
||||||
[JsonProperty("drm_support")]
|
|
||||||
DrmSupport,
|
|
||||||
[JsonProperty("dvr")]
|
|
||||||
Dvr,
|
|
||||||
[JsonProperty("dvr-block-unsupported-countries")]
|
|
||||||
DvrBlockUnsupportedCountries,
|
|
||||||
[JsonProperty("epg-recent-channels")]
|
|
||||||
EpgRecentChannels,
|
|
||||||
[JsonProperty("exclude restrictions")]
|
|
||||||
ExcludeRestrictions,
|
|
||||||
[JsonProperty("federated-auth")]
|
|
||||||
FederatedAuth,
|
|
||||||
[JsonProperty("friend_request_push_notifications")]
|
|
||||||
FriendRequestPushNotifications,
|
|
||||||
[JsonProperty("grandfather-sync")]
|
|
||||||
GrandfatherSync,
|
|
||||||
[JsonProperty("guided-upgrade")]
|
|
||||||
GuidedUpgrade,
|
|
||||||
[JsonProperty("hardware_transcoding")]
|
|
||||||
HardwareTranscoding,
|
|
||||||
[JsonProperty("home")]
|
|
||||||
Home,
|
|
||||||
[JsonProperty("hwtranscode")]
|
|
||||||
Hwtranscode,
|
|
||||||
[JsonProperty("imagga-v2")]
|
|
||||||
ImaggaV2,
|
|
||||||
[JsonProperty("increase-password-complexity")]
|
|
||||||
IncreasePasswordComplexity,
|
|
||||||
[JsonProperty("ios14-privacy-banner")]
|
|
||||||
Ios14PrivacyBanner,
|
|
||||||
[JsonProperty("iterable-notification-tokens")]
|
|
||||||
IterableNotificationTokens,
|
|
||||||
[JsonProperty("item_clusters")]
|
|
||||||
ItemClusters,
|
|
||||||
[JsonProperty("keep-payment-method")]
|
|
||||||
KeepPaymentMethod,
|
|
||||||
[JsonProperty("kevin-bacon")]
|
|
||||||
KevinBacon,
|
|
||||||
[JsonProperty("korea-consent")]
|
|
||||||
KoreaConsent,
|
|
||||||
[JsonProperty("le_isrg_root_x1")]
|
|
||||||
LeIsrgRootX1,
|
|
||||||
[JsonProperty("lets_encrypt")]
|
|
||||||
LetsEncrypt,
|
|
||||||
[JsonProperty("lightning-dvr-pivot")]
|
|
||||||
LightningDvrPivot,
|
|
||||||
[JsonProperty("live-tv-support-incomplete-segments")]
|
|
||||||
LiveTvSupportIncompleteSegments,
|
|
||||||
[JsonProperty("livetv")]
|
|
||||||
Livetv,
|
|
||||||
[JsonProperty("lyrics")]
|
|
||||||
Lyrics,
|
|
||||||
[JsonProperty("metadata_search")]
|
|
||||||
MetadataSearch,
|
|
||||||
[JsonProperty("music-analysis")]
|
|
||||||
MusicAnalysis,
|
|
||||||
[JsonProperty("music_videos")]
|
|
||||||
MusicVideos,
|
|
||||||
[JsonProperty("new_plex_pass_prices")]
|
|
||||||
NewPlexPassPrices,
|
|
||||||
[JsonProperty("news-provider-sunset-modal")]
|
|
||||||
NewsProviderSunsetModal,
|
|
||||||
[JsonProperty("nominatim")]
|
|
||||||
Nominatim,
|
|
||||||
[JsonProperty("pass")]
|
|
||||||
Pass,
|
|
||||||
[JsonProperty("photos-favorites")]
|
|
||||||
PhotosFavorites,
|
|
||||||
[JsonProperty("photos-metadata-edition")]
|
|
||||||
PhotosMetadataEdition,
|
|
||||||
[JsonProperty("photosV6-edit")]
|
|
||||||
PhotosV6Edit,
|
|
||||||
[JsonProperty("photosV6-tv-albums")]
|
|
||||||
PhotosV6TvAlbums,
|
|
||||||
[JsonProperty("pms_health")]
|
|
||||||
PmsHealth,
|
|
||||||
[JsonProperty("premium-dashboard")]
|
|
||||||
PremiumDashboard,
|
|
||||||
[JsonProperty("premium_music_metadata")]
|
|
||||||
PremiumMusicMetadata,
|
|
||||||
[JsonProperty("radio")]
|
|
||||||
Radio,
|
|
||||||
[JsonProperty("rate-limit-client-token")]
|
|
||||||
RateLimitClientToken,
|
|
||||||
[JsonProperty("scrobbling-service-plex-tv")]
|
|
||||||
ScrobblingServicePlexTv,
|
|
||||||
[JsonProperty("session_bandwidth_restrictions")]
|
|
||||||
SessionBandwidthRestrictions,
|
|
||||||
[JsonProperty("session_kick")]
|
|
||||||
SessionKick,
|
|
||||||
[JsonProperty("shared_server_notification")]
|
|
||||||
SharedServerNotification,
|
|
||||||
[JsonProperty("shared_source_notification")]
|
|
||||||
SharedSourceNotification,
|
|
||||||
[JsonProperty("signin_notification")]
|
|
||||||
SigninNotification,
|
|
||||||
[JsonProperty("signin_with_apple")]
|
|
||||||
SigninWithApple,
|
|
||||||
[JsonProperty("silence-removal")]
|
|
||||||
SilenceRemoval,
|
|
||||||
[JsonProperty("sleep-timer")]
|
|
||||||
SleepTimer,
|
|
||||||
[JsonProperty("spring_serve_ad_provider")]
|
|
||||||
SpringServeAdProvider,
|
|
||||||
[JsonProperty("sync")]
|
|
||||||
Sync,
|
|
||||||
[JsonProperty("sweet-fades")]
|
|
||||||
SweetFades,
|
|
||||||
[JsonProperty("transcoder_cache")]
|
|
||||||
TranscoderCache,
|
|
||||||
[JsonProperty("trailers")]
|
|
||||||
Trailers,
|
|
||||||
[JsonProperty("tuner-sharing")]
|
|
||||||
TunerSharing,
|
|
||||||
[JsonProperty("two-factor-authentication")]
|
|
||||||
TwoFactorAuthentication,
|
|
||||||
[JsonProperty("unsupportedtuners")]
|
|
||||||
Unsupportedtuners,
|
|
||||||
[JsonProperty("upgrade-3ds2")]
|
|
||||||
Upgrade3ds2,
|
|
||||||
[JsonProperty("visualizers")]
|
|
||||||
Visualizers,
|
|
||||||
[JsonProperty("vod-schema")]
|
|
||||||
VodSchema,
|
|
||||||
[JsonProperty("vod_cloudflare")]
|
|
||||||
VodCloudflare,
|
|
||||||
[JsonProperty("volume-leveling")]
|
|
||||||
VolumeLeveling,
|
|
||||||
[JsonProperty("watch-together-invite")]
|
|
||||||
WatchTogetherInvite,
|
|
||||||
[JsonProperty("watchlist-rss")]
|
|
||||||
WatchlistRss,
|
|
||||||
[JsonProperty("web_server_dashboard")]
|
|
||||||
WebServerDashboard,
|
|
||||||
[JsonProperty("webhooks")]
|
|
||||||
Webhooks,
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class PostUsersSignInDataFeaturesExtension
|
|
||||||
{
|
|
||||||
public static string Value(this PostUsersSignInDataFeatures value)
|
|
||||||
{
|
|
||||||
return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static PostUsersSignInDataFeatures ToEnum(this string value)
|
|
||||||
{
|
|
||||||
foreach(var field in typeof(PostUsersSignInDataFeatures).GetFields())
|
|
||||||
{
|
|
||||||
var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
|
|
||||||
if (attributes.Length == 0)
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
var attribute = attributes[0] as JsonPropertyAttribute;
|
|
||||||
if (attribute != null && attribute.PropertyName == value)
|
|
||||||
{
|
|
||||||
var enumVal = field.GetValue(null);
|
|
||||||
|
|
||||||
if (enumVal is PostUsersSignInDataFeatures)
|
|
||||||
{
|
|
||||||
return (PostUsersSignInDataFeatures)enumVal;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
throw new Exception($"Unknown value {value} for enum PostUsersSignInDataFeatures");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -16,22 +16,34 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
{
|
{
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The unique identifier for the client application. This is used to track the client application and its usage. (UUID, serial number, or other number unique per device)
|
/// An opaque identifier unique to the client (UUID, serial number, or other unique device ID)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=X-Plex-Client-Identifier")]
|
[SpeakeasyMetadata("header:style=simple,explode=false,name=X-Plex-Client-Identifier")]
|
||||||
public string? ClientID { get; set; }
|
public string? ClientID { get; set; }
|
||||||
|
|
||||||
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=X-Plex-Product")]
|
/// <summary>
|
||||||
|
/// The name of the client application. (Plex Web, Plex Media Server, etc.)
|
||||||
|
/// </summary>
|
||||||
|
[SpeakeasyMetadata("header:style=simple,explode=false,name=X-Plex-Product")]
|
||||||
public string? ClientName { get; set; }
|
public string? ClientName { get; set; }
|
||||||
|
|
||||||
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=X-Plex-Device")]
|
/// <summary>
|
||||||
public string? DeviceName { get; set; }
|
/// A relatively friendly name for the client device
|
||||||
|
/// </summary>
|
||||||
|
[SpeakeasyMetadata("header:style=simple,explode=false,name=X-Plex-Device")]
|
||||||
|
public string? DeviceNickname { get; set; }
|
||||||
|
|
||||||
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=X-Plex-Version")]
|
/// <summary>
|
||||||
|
/// The version of the client application.
|
||||||
|
/// </summary>
|
||||||
|
[SpeakeasyMetadata("header:style=simple,explode=false,name=X-Plex-Version")]
|
||||||
public string? ClientVersion { get; set; }
|
public string? ClientVersion { get; set; }
|
||||||
|
|
||||||
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=X-Plex-Platform")]
|
/// <summary>
|
||||||
public string? ClientPlatform { get; set; }
|
/// The platform of the client application.
|
||||||
|
/// </summary>
|
||||||
|
[SpeakeasyMetadata("header:style=simple,explode=false,name=X-Plex-Platform")]
|
||||||
|
public string? Platform { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Login credentials
|
/// Login credentials
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
/// List of features allowed on your Plex Pass subscription
|
/// List of features allowed on your Plex Pass subscription
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("features")]
|
[JsonProperty("features")]
|
||||||
public List<PostUsersSignInDataFeatures>? Features { get; set; }
|
public List<string>? Features { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// If the account's Plex Pass subscription is active
|
/// If the account's Plex Pass subscription is active
|
||||||
|
|||||||
@@ -0,0 +1,23 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Whether to include collections in the search results.
|
||||||
|
/// </summary>
|
||||||
|
public enum QueryParamIncludeCollections
|
||||||
|
{
|
||||||
|
Disable = 0,
|
||||||
|
Enable = 1,
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Whether to include external media in the search results.
|
||||||
|
/// </summary>
|
||||||
|
public enum QueryParamIncludeExternalMedia
|
||||||
|
{
|
||||||
|
Disable = 0,
|
||||||
|
Enable = 1,
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
25
LukeHagar/PlexAPI/SDK/Models/Requests/SearchResult.cs
Normal file
25
LukeHagar/PlexAPI/SDK/Models/Requests/SearchResult.cs
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
public class SearchResult
|
||||||
|
{
|
||||||
|
|
||||||
|
[JsonProperty("score")]
|
||||||
|
public float Score { get; set; } = default!;
|
||||||
|
|
||||||
|
[JsonProperty("Metadata")]
|
||||||
|
public GetSearchAllLibrariesMetadata Metadata { get; set; } = default!;
|
||||||
|
}
|
||||||
|
}
|
||||||
63
LukeHagar/PlexAPI/SDK/Models/Requests/SearchTypes.cs
Normal file
63
LukeHagar/PlexAPI/SDK/Models/Requests/SearchTypes.cs
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost when
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using System;
|
||||||
|
|
||||||
|
public enum SearchTypes
|
||||||
|
{
|
||||||
|
[JsonProperty("movies")]
|
||||||
|
Movies,
|
||||||
|
[JsonProperty("music")]
|
||||||
|
Music,
|
||||||
|
[JsonProperty("otherVideos")]
|
||||||
|
OtherVideos,
|
||||||
|
[JsonProperty("people")]
|
||||||
|
People,
|
||||||
|
[JsonProperty("tv")]
|
||||||
|
Tv,
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class SearchTypesExtension
|
||||||
|
{
|
||||||
|
public static string Value(this SearchTypes value)
|
||||||
|
{
|
||||||
|
return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static SearchTypes ToEnum(this string value)
|
||||||
|
{
|
||||||
|
foreach(var field in typeof(SearchTypes).GetFields())
|
||||||
|
{
|
||||||
|
var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
|
||||||
|
if (attributes.Length == 0)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
var attribute = attributes[0] as JsonPropertyAttribute;
|
||||||
|
if (attribute != null && attribute.PropertyName == value)
|
||||||
|
{
|
||||||
|
var enumVal = field.GetValue(null);
|
||||||
|
|
||||||
|
if (enumVal is SearchTypes)
|
||||||
|
{
|
||||||
|
return (SearchTypes)enumVal;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
throw new Exception($"Unknown value {value} for enum SearchTypes");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -24,7 +24,7 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
/// List of features allowed on your Plex Pass subscription
|
/// List of features allowed on your Plex Pass subscription
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("features")]
|
[JsonProperty("features")]
|
||||||
public List<Features>? Features { get; set; }
|
public List<string>? Features { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// If the account's Plex Pass subscription is active
|
/// If the account's Plex Pass subscription is active
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<CreatePlaylistResponse> CreatePlaylistAsync(CreatePlaylistRequest request);
|
Task<CreatePlaylistResponse> CreatePlaylistAsync(CreatePlaylistRequest request, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get All Playlists
|
/// Get All Playlists
|
||||||
@@ -54,7 +54,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// Get All Playlists given the specified filters.
|
/// Get All Playlists given the specified filters.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetPlaylistsResponse> GetPlaylistsAsync(PlaylistType? playlistType = null, QueryParamSmart? smart = null);
|
Task<GetPlaylistsResponse> GetPlaylistsAsync(PlaylistType? playlistType = null, QueryParamSmart? smart = null, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieve Playlist
|
/// Retrieve Playlist
|
||||||
@@ -65,7 +65,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetPlaylistResponse> GetPlaylistAsync(double playlistID);
|
Task<GetPlaylistResponse> GetPlaylistAsync(double playlistID, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a Playlist
|
/// Deletes a Playlist
|
||||||
@@ -75,7 +75,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<DeletePlaylistResponse> DeletePlaylistAsync(double playlistID);
|
Task<DeletePlaylistResponse> DeletePlaylistAsync(double playlistID, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Update a Playlist
|
/// Update a Playlist
|
||||||
@@ -85,7 +85,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<UpdatePlaylistResponse> UpdatePlaylistAsync(double playlistID, string? title = null, string? summary = null);
|
Task<UpdatePlaylistResponse> UpdatePlaylistAsync(double playlistID, string? title = null, string? summary = null, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieve Playlist Contents
|
/// Retrieve Playlist Contents
|
||||||
@@ -98,7 +98,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetPlaylistContentsResponse> GetPlaylistContentsAsync(double playlistID, GetPlaylistContentsQueryParamType type);
|
Task<GetPlaylistContentsResponse> GetPlaylistContentsAsync(double playlistID, GetPlaylistContentsQueryParamType type, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Delete Playlist Contents
|
/// Delete Playlist Contents
|
||||||
@@ -108,7 +108,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<ClearPlaylistContentsResponse> ClearPlaylistContentsAsync(double playlistID);
|
Task<ClearPlaylistContentsResponse> ClearPlaylistContentsAsync(double playlistID, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Adding to a Playlist
|
/// Adding to a Playlist
|
||||||
@@ -119,7 +119,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<AddPlaylistContentsResponse> AddPlaylistContentsAsync(double playlistID, string uri, double? playQueueID = null);
|
Task<AddPlaylistContentsResponse> AddPlaylistContentsAsync(double playlistID, string uri, double? playQueueID = null, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Upload Playlist
|
/// Upload Playlist
|
||||||
@@ -129,7 +129,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<UploadPlaylistResponse> UploadPlaylistAsync(string path, QueryParamForce force, long sectionID);
|
Task<UploadPlaylistResponse> UploadPlaylistAsync(string path, QueryParamForce force, long sectionID, RetryConfig? retryConfig = null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -146,10 +146,10 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
{
|
{
|
||||||
public SDKConfig SDKConfiguration { get; private set; }
|
public SDKConfig SDKConfiguration { get; private set; }
|
||||||
private const string _language = "csharp";
|
private const string _language = "csharp";
|
||||||
private const string _sdkVersion = "0.8.7";
|
private const string _sdkVersion = "0.9.2";
|
||||||
private const string _sdkGenVersion = "2.428.1";
|
private const string _sdkGenVersion = "2.429.0";
|
||||||
private const string _openapiDocVersion = "0.0.3";
|
private const string _openapiDocVersion = "0.0.3";
|
||||||
private const string _userAgent = "speakeasy-sdk/csharp 0.8.7 2.428.1 0.0.3 LukeHagar.PlexAPI.SDK";
|
private const string _userAgent = "speakeasy-sdk/csharp 0.9.2 2.429.0 0.0.3 LukeHagar.PlexAPI.SDK";
|
||||||
private string _serverUrl = "";
|
private string _serverUrl = "";
|
||||||
private ISpeakeasyHttpClient _client;
|
private ISpeakeasyHttpClient _client;
|
||||||
private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
|
private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
|
||||||
@@ -162,7 +162,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
SDKConfiguration = config;
|
SDKConfiguration = config;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<CreatePlaylistResponse> CreatePlaylistAsync(CreatePlaylistRequest request)
|
public async Task<CreatePlaylistResponse> CreatePlaylistAsync(CreatePlaylistRequest request, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
||||||
var urlString = URLBuilder.Build(baseUrl, "/playlists", request);
|
var urlString = URLBuilder.Build(baseUrl, "/playlists", request);
|
||||||
@@ -178,11 +178,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("createPlaylist", null, _securitySource);
|
var hookCtx = new HookContext("createPlaylist", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -258,7 +291,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetPlaylistsResponse> GetPlaylistsAsync(PlaylistType? playlistType = null, QueryParamSmart? smart = null)
|
public async Task<GetPlaylistsResponse> GetPlaylistsAsync(PlaylistType? playlistType = null, QueryParamSmart? smart = null, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new GetPlaylistsRequest()
|
var request = new GetPlaylistsRequest()
|
||||||
{
|
{
|
||||||
@@ -279,11 +312,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getPlaylists", null, _securitySource);
|
var hookCtx = new HookContext("getPlaylists", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -359,7 +425,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetPlaylistResponse> GetPlaylistAsync(double playlistID)
|
public async Task<GetPlaylistResponse> GetPlaylistAsync(double playlistID, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new GetPlaylistRequest()
|
var request = new GetPlaylistRequest()
|
||||||
{
|
{
|
||||||
@@ -379,11 +445,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getPlaylist", null, _securitySource);
|
var hookCtx = new HookContext("getPlaylist", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -459,7 +558,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<DeletePlaylistResponse> DeletePlaylistAsync(double playlistID)
|
public async Task<DeletePlaylistResponse> DeletePlaylistAsync(double playlistID, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new DeletePlaylistRequest()
|
var request = new DeletePlaylistRequest()
|
||||||
{
|
{
|
||||||
@@ -479,11 +578,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("deletePlaylist", null, _securitySource);
|
var hookCtx = new HookContext("deletePlaylist", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -551,7 +683,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<UpdatePlaylistResponse> UpdatePlaylistAsync(double playlistID, string? title = null, string? summary = null)
|
public async Task<UpdatePlaylistResponse> UpdatePlaylistAsync(double playlistID, string? title = null, string? summary = null, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new UpdatePlaylistRequest()
|
var request = new UpdatePlaylistRequest()
|
||||||
{
|
{
|
||||||
@@ -573,11 +705,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("updatePlaylist", null, _securitySource);
|
var hookCtx = new HookContext("updatePlaylist", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -645,7 +810,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetPlaylistContentsResponse> GetPlaylistContentsAsync(double playlistID, GetPlaylistContentsQueryParamType type)
|
public async Task<GetPlaylistContentsResponse> GetPlaylistContentsAsync(double playlistID, GetPlaylistContentsQueryParamType type, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new GetPlaylistContentsRequest()
|
var request = new GetPlaylistContentsRequest()
|
||||||
{
|
{
|
||||||
@@ -666,11 +831,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getPlaylistContents", null, _securitySource);
|
var hookCtx = new HookContext("getPlaylistContents", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -746,7 +944,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<ClearPlaylistContentsResponse> ClearPlaylistContentsAsync(double playlistID)
|
public async Task<ClearPlaylistContentsResponse> ClearPlaylistContentsAsync(double playlistID, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new ClearPlaylistContentsRequest()
|
var request = new ClearPlaylistContentsRequest()
|
||||||
{
|
{
|
||||||
@@ -766,11 +964,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("clearPlaylistContents", null, _securitySource);
|
var hookCtx = new HookContext("clearPlaylistContents", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -838,7 +1069,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<AddPlaylistContentsResponse> AddPlaylistContentsAsync(double playlistID, string uri, double? playQueueID = null)
|
public async Task<AddPlaylistContentsResponse> AddPlaylistContentsAsync(double playlistID, string uri, double? playQueueID = null, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new AddPlaylistContentsRequest()
|
var request = new AddPlaylistContentsRequest()
|
||||||
{
|
{
|
||||||
@@ -860,11 +1091,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("addPlaylistContents", null, _securitySource);
|
var hookCtx = new HookContext("addPlaylistContents", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -940,7 +1204,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<UploadPlaylistResponse> UploadPlaylistAsync(string path, QueryParamForce force, long sectionID)
|
public async Task<UploadPlaylistResponse> UploadPlaylistAsync(string path, QueryParamForce force, long sectionID, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new UploadPlaylistRequest()
|
var request = new UploadPlaylistRequest()
|
||||||
{
|
{
|
||||||
@@ -962,11 +1226,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("uploadPlaylist", null, _securitySource);
|
var hookCtx = new HookContext("uploadPlaylist", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// Get Companions Data
|
/// Get Companions Data
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetCompanionsDataResponse> GetCompanionsDataAsync(string? serverUrl = null);
|
Task<GetCompanionsDataResponse> GetCompanionsDataAsync(string? serverUrl = null, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get list of friends of the user logged in
|
/// Get list of friends of the user logged in
|
||||||
@@ -48,7 +48,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// Get friends of provided auth token.
|
/// Get friends of provided auth token.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetUserFriendsResponse> GetUserFriendsAsync(string? serverUrl = null);
|
Task<GetUserFriendsResponse> GetUserFriendsAsync(string? serverUrl = null, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get Geo Data
|
/// Get Geo Data
|
||||||
@@ -57,7 +57,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// Returns the geolocation and locale data of the caller
|
/// Returns the geolocation and locale data of the caller
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetGeoDataResponse> GetGeoDataAsync(string? serverUrl = null);
|
Task<GetGeoDataResponse> GetGeoDataAsync(string? serverUrl = null, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get Plex Home Data
|
/// Get Plex Home Data
|
||||||
@@ -66,7 +66,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// Retrieves the home data for the authenticated user, including details like home ID, name, guest access information, and subscription status.
|
/// Retrieves the home data for the authenticated user, including details like home ID, name, guest access information, and subscription status.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetHomeDataResponse> GetHomeDataAsync();
|
Task<GetHomeDataResponse> GetHomeDataAsync(RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get Server Resources
|
/// Get Server Resources
|
||||||
@@ -75,7 +75,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// Get Plex server access tokens and server connections
|
/// Get Plex server access tokens and server connections
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetServerResourcesResponse> GetServerResourcesAsync(IncludeHttps? includeHttps = null, IncludeRelay? includeRelay = null, IncludeIPv6? includeIPv6 = null, string? clientID = null, string? serverUrl = null);
|
Task<GetServerResourcesResponse> GetServerResourcesAsync(IncludeHttps? includeHttps = null, IncludeRelay? includeRelay = null, IncludeIPv6? includeIPv6 = null, string? clientID = null, string? serverUrl = null, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get a Pin
|
/// Get a Pin
|
||||||
@@ -84,7 +84,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// Retrieve a Pin ID from Plex.tv to use for authentication flows
|
/// Retrieve a Pin ID from Plex.tv to use for authentication flows
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetPinResponse> GetPinAsync(GetPinRequest? request = null, string? serverUrl = null);
|
Task<GetPinResponse> GetPinAsync(GetPinRequest? request = null, string? serverUrl = null, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get Access Token by PinId
|
/// Get Access Token by PinId
|
||||||
@@ -93,7 +93,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// Retrieve an Access Token from Plex.tv after the Pin has been authenticated
|
/// Retrieve an Access Token from Plex.tv after the Pin has been authenticated
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetTokenByPinIdResponse> GetTokenByPinIdAsync(GetTokenByPinIdRequest request, string? serverUrl = null);
|
Task<GetTokenByPinIdResponse> GetTokenByPinIdAsync(GetTokenByPinIdRequest request, string? serverUrl = null, RetryConfig? retryConfig = null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -143,10 +143,10 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
};
|
};
|
||||||
public SDKConfig SDKConfiguration { get; private set; }
|
public SDKConfig SDKConfiguration { get; private set; }
|
||||||
private const string _language = "csharp";
|
private const string _language = "csharp";
|
||||||
private const string _sdkVersion = "0.8.7";
|
private const string _sdkVersion = "0.9.2";
|
||||||
private const string _sdkGenVersion = "2.428.1";
|
private const string _sdkGenVersion = "2.429.0";
|
||||||
private const string _openapiDocVersion = "0.0.3";
|
private const string _openapiDocVersion = "0.0.3";
|
||||||
private const string _userAgent = "speakeasy-sdk/csharp 0.8.7 2.428.1 0.0.3 LukeHagar.PlexAPI.SDK";
|
private const string _userAgent = "speakeasy-sdk/csharp 0.9.2 2.429.0 0.0.3 LukeHagar.PlexAPI.SDK";
|
||||||
private string _serverUrl = "";
|
private string _serverUrl = "";
|
||||||
private ISpeakeasyHttpClient _client;
|
private ISpeakeasyHttpClient _client;
|
||||||
private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
|
private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
|
||||||
@@ -159,7 +159,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
SDKConfiguration = config;
|
SDKConfiguration = config;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetCompanionsDataResponse> GetCompanionsDataAsync(string? serverUrl = null)
|
public async Task<GetCompanionsDataResponse> GetCompanionsDataAsync(string? serverUrl = null, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = Utilities.TemplateUrl(GetCompanionsDataServerList[0], new Dictionary<string, string>(){
|
string baseUrl = Utilities.TemplateUrl(GetCompanionsDataServerList[0], new Dictionary<string, string>(){
|
||||||
});
|
});
|
||||||
@@ -181,11 +181,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getCompanionsData", null, _securitySource);
|
var hookCtx = new HookContext("getCompanionsData", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -261,7 +294,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetUserFriendsResponse> GetUserFriendsAsync(string? serverUrl = null)
|
public async Task<GetUserFriendsResponse> GetUserFriendsAsync(string? serverUrl = null, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = Utilities.TemplateUrl(GetUserFriendsServerList[0], new Dictionary<string, string>(){
|
string baseUrl = Utilities.TemplateUrl(GetUserFriendsServerList[0], new Dictionary<string, string>(){
|
||||||
});
|
});
|
||||||
@@ -283,11 +316,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getUserFriends", null, _securitySource);
|
var hookCtx = new HookContext("getUserFriends", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -363,7 +429,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetGeoDataResponse> GetGeoDataAsync(string? serverUrl = null)
|
public async Task<GetGeoDataResponse> GetGeoDataAsync(string? serverUrl = null, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = Utilities.TemplateUrl(GetGeoDataServerList[0], new Dictionary<string, string>(){
|
string baseUrl = Utilities.TemplateUrl(GetGeoDataServerList[0], new Dictionary<string, string>(){
|
||||||
});
|
});
|
||||||
@@ -380,11 +446,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getGeoData", null, null);
|
var hookCtx = new HookContext("getGeoData", null, null);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -460,7 +559,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetHomeDataResponse> GetHomeDataAsync()
|
public async Task<GetHomeDataResponse> GetHomeDataAsync(RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
||||||
|
|
||||||
@@ -477,11 +576,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getHomeData", null, _securitySource);
|
var hookCtx = new HookContext("getHomeData", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -557,7 +689,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetServerResourcesResponse> GetServerResourcesAsync(IncludeHttps? includeHttps = null, IncludeRelay? includeRelay = null, IncludeIPv6? includeIPv6 = null, string? clientID = null, string? serverUrl = null)
|
public async Task<GetServerResourcesResponse> GetServerResourcesAsync(IncludeHttps? includeHttps = null, IncludeRelay? includeRelay = null, IncludeIPv6? includeIPv6 = null, string? clientID = null, string? serverUrl = null, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new GetServerResourcesRequest()
|
var request = new GetServerResourcesRequest()
|
||||||
{
|
{
|
||||||
@@ -578,6 +710,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
|
|
||||||
var httpRequest = new HttpRequestMessage(HttpMethod.Get, urlString);
|
var httpRequest = new HttpRequestMessage(HttpMethod.Get, urlString);
|
||||||
httpRequest.Headers.Add("user-agent", _userAgent);
|
httpRequest.Headers.Add("user-agent", _userAgent);
|
||||||
|
HeaderSerializer.PopulateHeaders(ref httpRequest, request);
|
||||||
|
|
||||||
if (_securitySource != null)
|
if (_securitySource != null)
|
||||||
{
|
{
|
||||||
@@ -587,11 +720,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("get-server-resources", null, _securitySource);
|
var hookCtx = new HookContext("get-server-resources", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -667,13 +833,13 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetPinResponse> GetPinAsync(GetPinRequest? request = null, string? serverUrl = null)
|
public async Task<GetPinResponse> GetPinAsync(GetPinRequest? request = null, string? serverUrl = null, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
request.ClientID ??= SDKConfiguration.ClientID;
|
request.ClientID ??= SDKConfiguration.ClientID;
|
||||||
request.ClientName ??= SDKConfiguration.ClientName;
|
request.ClientName ??= SDKConfiguration.ClientName;
|
||||||
request.ClientVersion ??= SDKConfiguration.ClientVersion;
|
request.ClientVersion ??= SDKConfiguration.ClientVersion;
|
||||||
request.ClientPlatform ??= SDKConfiguration.ClientPlatform;
|
request.Platform ??= SDKConfiguration.Platform;
|
||||||
request.DeviceName ??= SDKConfiguration.DeviceName;
|
request.DeviceNickname ??= SDKConfiguration.DeviceNickname;
|
||||||
|
|
||||||
string baseUrl = Utilities.TemplateUrl(GetPinServerList[0], new Dictionary<string, string>(){
|
string baseUrl = Utilities.TemplateUrl(GetPinServerList[0], new Dictionary<string, string>(){
|
||||||
});
|
});
|
||||||
@@ -685,15 +851,49 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
|
|
||||||
var httpRequest = new HttpRequestMessage(HttpMethod.Post, urlString);
|
var httpRequest = new HttpRequestMessage(HttpMethod.Post, urlString);
|
||||||
httpRequest.Headers.Add("user-agent", _userAgent);
|
httpRequest.Headers.Add("user-agent", _userAgent);
|
||||||
|
HeaderSerializer.PopulateHeaders(ref httpRequest, request);
|
||||||
|
|
||||||
var hookCtx = new HookContext("getPin", null, null);
|
var hookCtx = new HookContext("getPin", null, null);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -758,7 +958,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetTokenByPinIdResponse> GetTokenByPinIdAsync(GetTokenByPinIdRequest request, string? serverUrl = null)
|
public async Task<GetTokenByPinIdResponse> GetTokenByPinIdAsync(GetTokenByPinIdRequest request, string? serverUrl = null, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
if (request == null)
|
if (request == null)
|
||||||
{
|
{
|
||||||
@@ -767,8 +967,8 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
request.ClientID ??= SDKConfiguration.ClientID;
|
request.ClientID ??= SDKConfiguration.ClientID;
|
||||||
request.ClientName ??= SDKConfiguration.ClientName;
|
request.ClientName ??= SDKConfiguration.ClientName;
|
||||||
request.ClientVersion ??= SDKConfiguration.ClientVersion;
|
request.ClientVersion ??= SDKConfiguration.ClientVersion;
|
||||||
request.ClientPlatform ??= SDKConfiguration.ClientPlatform;
|
request.Platform ??= SDKConfiguration.Platform;
|
||||||
request.DeviceName ??= SDKConfiguration.DeviceName;
|
request.DeviceNickname ??= SDKConfiguration.DeviceNickname;
|
||||||
|
|
||||||
string baseUrl = Utilities.TemplateUrl(GetTokenByPinIdServerList[0], new Dictionary<string, string>(){
|
string baseUrl = Utilities.TemplateUrl(GetTokenByPinIdServerList[0], new Dictionary<string, string>(){
|
||||||
});
|
});
|
||||||
@@ -780,15 +980,49 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
|
|
||||||
var httpRequest = new HttpRequestMessage(HttpMethod.Get, urlString);
|
var httpRequest = new HttpRequestMessage(HttpMethod.Get, urlString);
|
||||||
httpRequest.Headers.Add("user-agent", _userAgent);
|
httpRequest.Headers.Add("user-agent", _userAgent);
|
||||||
|
HeaderSerializer.PopulateHeaders(ref httpRequest, request);
|
||||||
|
|
||||||
var hookCtx = new HookContext("getTokenByPinId", null, null);
|
var hookCtx = new HookContext("getTokenByPinId", null, null);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 404 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 404 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
|
|||||||
@@ -92,7 +92,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// | Swift | <a href="https://github.com/LukeHagar/plexswift">GitHub</a> | <a href="https://github.com/LukeHagar/plexswift/releases">Releases</a> | - |<br/>
|
/// | Swift | <a href="https://github.com/LukeHagar/plexswift">GitHub</a> | <a href="https://github.com/LukeHagar/plexswift/releases">Releases</a> | - |<br/>
|
||||||
/// | PHP | <a href="https://github.com/LukeHagar/plexphp">GitHub</a> | <a href="https://github.com/LukeHagar/plexphp/releases">Releases</a> | - |<br/>
|
/// | PHP | <a href="https://github.com/LukeHagar/plexphp">GitHub</a> | <a href="https://github.com/LukeHagar/plexphp/releases">Releases</a> | - |<br/>
|
||||||
/// | Java | <a href="https://github.com/LukeHagar/plexjava">GitHub</a> | <a href="https://github.com/LukeHagar/plexjava/releases">Releases</a> | - |<br/>
|
/// | Java | <a href="https://github.com/LukeHagar/plexjava">GitHub</a> | <a href="https://github.com/LukeHagar/plexjava/releases">Releases</a> | - |<br/>
|
||||||
/// | C# | <a href="https://github.com/LukeHagar/plexcsharp">GitHub</a> | <a href="https://github.com/LukeHagar/plexcsharp/releases">Releases</a> | - <br/>
|
/// | C# | <a href="https://github.com/LukeHagar/plexcsharp">GitHub</a> | <a href="https://github.com/LukeHagar/plexcsharp/releases">Releases</a> | -<br/>
|
||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -269,8 +269,8 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
public string? ClientID;
|
public string? ClientID;
|
||||||
public string? ClientName;
|
public string? ClientName;
|
||||||
public string? ClientVersion;
|
public string? ClientVersion;
|
||||||
public string? ClientPlatform;
|
public string? Platform;
|
||||||
public string? DeviceName;
|
public string? DeviceNickname;
|
||||||
public SDKHooks Hooks = new SDKHooks();
|
public SDKHooks Hooks = new SDKHooks();
|
||||||
public RetryConfig? RetryConfig = null;
|
public RetryConfig? RetryConfig = null;
|
||||||
|
|
||||||
@@ -322,7 +322,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// | Swift | <a href="https://github.com/LukeHagar/plexswift">GitHub</a> | <a href="https://github.com/LukeHagar/plexswift/releases">Releases</a> | - |<br/>
|
/// | Swift | <a href="https://github.com/LukeHagar/plexswift">GitHub</a> | <a href="https://github.com/LukeHagar/plexswift/releases">Releases</a> | - |<br/>
|
||||||
/// | PHP | <a href="https://github.com/LukeHagar/plexphp">GitHub</a> | <a href="https://github.com/LukeHagar/plexphp/releases">Releases</a> | - |<br/>
|
/// | PHP | <a href="https://github.com/LukeHagar/plexphp">GitHub</a> | <a href="https://github.com/LukeHagar/plexphp/releases">Releases</a> | - |<br/>
|
||||||
/// | Java | <a href="https://github.com/LukeHagar/plexjava">GitHub</a> | <a href="https://github.com/LukeHagar/plexjava/releases">Releases</a> | - |<br/>
|
/// | Java | <a href="https://github.com/LukeHagar/plexjava">GitHub</a> | <a href="https://github.com/LukeHagar/plexjava/releases">Releases</a> | - |<br/>
|
||||||
/// | C# | <a href="https://github.com/LukeHagar/plexcsharp">GitHub</a> | <a href="https://github.com/LukeHagar/plexcsharp/releases">Releases</a> | - <br/>
|
/// | C# | <a href="https://github.com/LukeHagar/plexcsharp">GitHub</a> | <a href="https://github.com/LukeHagar/plexcsharp/releases">Releases</a> | -<br/>
|
||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -331,10 +331,10 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
public SDKConfig SDKConfiguration { get; private set; }
|
public SDKConfig SDKConfiguration { get; private set; }
|
||||||
|
|
||||||
private const string _language = "csharp";
|
private const string _language = "csharp";
|
||||||
private const string _sdkVersion = "0.8.7";
|
private const string _sdkVersion = "0.9.2";
|
||||||
private const string _sdkGenVersion = "2.428.1";
|
private const string _sdkGenVersion = "2.429.0";
|
||||||
private const string _openapiDocVersion = "0.0.3";
|
private const string _openapiDocVersion = "0.0.3";
|
||||||
private const string _userAgent = "speakeasy-sdk/csharp 0.8.7 2.428.1 0.0.3 LukeHagar.PlexAPI.SDK";
|
private const string _userAgent = "speakeasy-sdk/csharp 0.9.2 2.429.0 0.0.3 LukeHagar.PlexAPI.SDK";
|
||||||
private string _serverUrl = "";
|
private string _serverUrl = "";
|
||||||
private int _serverIndex = 0;
|
private int _serverIndex = 0;
|
||||||
private ISpeakeasyHttpClient _client;
|
private ISpeakeasyHttpClient _client;
|
||||||
@@ -356,7 +356,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
public ISessions Sessions { get; private set; }
|
public ISessions Sessions { get; private set; }
|
||||||
public IUpdater Updater { get; private set; }
|
public IUpdater Updater { get; private set; }
|
||||||
|
|
||||||
public PlexAPI(string? accessToken = null, Func<string>? accessTokenSource = null, string? clientID = null, string? clientName = null, string? clientVersion = null, string? clientPlatform = null, string? deviceName = null, int? serverIndex = null, ServerProtocol? protocol = null, string? ip = null, string? port = null, string? serverUrl = null, Dictionary<string, string>? urlParams = null, ISpeakeasyHttpClient? client = null, RetryConfig? retryConfig = null)
|
public PlexAPI(string? accessToken = null, Func<string>? accessTokenSource = null, string? clientID = null, string? clientName = null, string? clientVersion = null, string? platform = null, string? deviceNickname = null, int? serverIndex = null, ServerProtocol? protocol = null, string? ip = null, string? port = null, string? serverUrl = null, Dictionary<string, string>? urlParams = null, ISpeakeasyHttpClient? client = null, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
if (serverIndex != null)
|
if (serverIndex != null)
|
||||||
{
|
{
|
||||||
@@ -401,8 +401,8 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
ClientID = clientID,
|
ClientID = clientID,
|
||||||
ClientName = clientName,
|
ClientName = clientName,
|
||||||
ClientVersion = clientVersion,
|
ClientVersion = clientVersion,
|
||||||
ClientPlatform = clientPlatform,
|
Platform = platform,
|
||||||
DeviceName = deviceName,
|
DeviceNickname = deviceNickname,
|
||||||
ServerDefaults = serverDefaults,
|
ServerDefaults = serverDefaults,
|
||||||
ServerIndex = _serverIndex,
|
ServerIndex = _serverIndex,
|
||||||
ServerUrl = _serverUrl,
|
ServerUrl = _serverUrl,
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<PerformSearchResponse> PerformSearchAsync(string query, double? sectionId = null, double? limit = null);
|
Task<PerformSearchResponse> PerformSearchAsync(string query, double? sectionId = null, double? limit = null, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Perform a voice search
|
/// Perform a voice search
|
||||||
@@ -64,7 +64,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<PerformVoiceSearchResponse> PerformVoiceSearchAsync(string query, double? sectionId = null, double? limit = null);
|
Task<PerformVoiceSearchResponse> PerformVoiceSearchAsync(string query, double? sectionId = null, double? limit = null, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get Search Results
|
/// Get Search Results
|
||||||
@@ -73,7 +73,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// This will search the database for the string provided.
|
/// This will search the database for the string provided.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetSearchResultsResponse> GetSearchResultsAsync(string query);
|
Task<GetSearchResultsResponse> GetSearchResultsAsync(string query, RetryConfig? retryConfig = null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -87,10 +87,10 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
{
|
{
|
||||||
public SDKConfig SDKConfiguration { get; private set; }
|
public SDKConfig SDKConfiguration { get; private set; }
|
||||||
private const string _language = "csharp";
|
private const string _language = "csharp";
|
||||||
private const string _sdkVersion = "0.8.7";
|
private const string _sdkVersion = "0.9.2";
|
||||||
private const string _sdkGenVersion = "2.428.1";
|
private const string _sdkGenVersion = "2.429.0";
|
||||||
private const string _openapiDocVersion = "0.0.3";
|
private const string _openapiDocVersion = "0.0.3";
|
||||||
private const string _userAgent = "speakeasy-sdk/csharp 0.8.7 2.428.1 0.0.3 LukeHagar.PlexAPI.SDK";
|
private const string _userAgent = "speakeasy-sdk/csharp 0.9.2 2.429.0 0.0.3 LukeHagar.PlexAPI.SDK";
|
||||||
private string _serverUrl = "";
|
private string _serverUrl = "";
|
||||||
private ISpeakeasyHttpClient _client;
|
private ISpeakeasyHttpClient _client;
|
||||||
private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
|
private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
|
||||||
@@ -103,7 +103,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
SDKConfiguration = config;
|
SDKConfiguration = config;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<PerformSearchResponse> PerformSearchAsync(string query, double? sectionId = null, double? limit = null)
|
public async Task<PerformSearchResponse> PerformSearchAsync(string query, double? sectionId = null, double? limit = null, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new PerformSearchRequest()
|
var request = new PerformSearchRequest()
|
||||||
{
|
{
|
||||||
@@ -125,11 +125,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("performSearch", null, _securitySource);
|
var hookCtx = new HookContext("performSearch", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -197,7 +230,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<PerformVoiceSearchResponse> PerformVoiceSearchAsync(string query, double? sectionId = null, double? limit = null)
|
public async Task<PerformVoiceSearchResponse> PerformVoiceSearchAsync(string query, double? sectionId = null, double? limit = null, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new PerformVoiceSearchRequest()
|
var request = new PerformVoiceSearchRequest()
|
||||||
{
|
{
|
||||||
@@ -219,11 +252,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("performVoiceSearch", null, _securitySource);
|
var hookCtx = new HookContext("performVoiceSearch", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -291,7 +357,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetSearchResultsResponse> GetSearchResultsAsync(string query)
|
public async Task<GetSearchResultsResponse> GetSearchResultsAsync(string query, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new GetSearchResultsRequest()
|
var request = new GetSearchResultsRequest()
|
||||||
{
|
{
|
||||||
@@ -311,11 +377,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getSearchResults", null, _securitySource);
|
var hookCtx = new HookContext("getSearchResults", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// Get Server Capabilities
|
/// Get Server Capabilities
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetServerCapabilitiesResponse> GetServerCapabilitiesAsync();
|
Task<GetServerCapabilitiesResponse> GetServerCapabilitiesAsync(RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get Server Preferences
|
/// Get Server Preferences
|
||||||
@@ -48,7 +48,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// Get Server Preferences
|
/// Get Server Preferences
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetServerPreferencesResponse> GetServerPreferencesAsync();
|
Task<GetServerPreferencesResponse> GetServerPreferencesAsync(RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get Available Clients
|
/// Get Available Clients
|
||||||
@@ -57,7 +57,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// Get Available Clients
|
/// Get Available Clients
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetAvailableClientsResponse> GetAvailableClientsAsync();
|
Task<GetAvailableClientsResponse> GetAvailableClientsAsync(RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get Devices
|
/// Get Devices
|
||||||
@@ -66,7 +66,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// Get Devices
|
/// Get Devices
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetDevicesResponse> GetDevicesAsync();
|
Task<GetDevicesResponse> GetDevicesAsync(RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get Server Identity
|
/// Get Server Identity
|
||||||
@@ -75,7 +75,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// This request is useful to determine if the server is online or offline
|
/// This request is useful to determine if the server is online or offline
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetServerIdentityResponse> GetServerIdentityAsync();
|
Task<GetServerIdentityResponse> GetServerIdentityAsync(RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get MyPlex Account
|
/// Get MyPlex Account
|
||||||
@@ -84,7 +84,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// Returns MyPlex Account Information
|
/// Returns MyPlex Account Information
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetMyPlexAccountResponse> GetMyPlexAccountAsync();
|
Task<GetMyPlexAccountResponse> GetMyPlexAccountAsync(RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get a Resized Photo
|
/// Get a Resized Photo
|
||||||
@@ -94,7 +94,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetResizedPhotoResponse> GetResizedPhotoAsync(GetResizedPhotoRequest request);
|
Task<GetResizedPhotoResponse> GetResizedPhotoAsync(GetResizedPhotoRequest request, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get Media Providers
|
/// Get Media Providers
|
||||||
@@ -103,7 +103,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// Retrieves media providers and their features from the Plex server.
|
/// Retrieves media providers and their features from the Plex server.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetMediaProvidersResponse> GetMediaProvidersAsync(string xPlexToken);
|
Task<GetMediaProvidersResponse> GetMediaProvidersAsync(string xPlexToken, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get Server List
|
/// Get Server List
|
||||||
@@ -112,7 +112,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// Get Server List
|
/// Get Server List
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetServerListResponse> GetServerListAsync();
|
Task<GetServerListResponse> GetServerListAsync(RetryConfig? retryConfig = null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -126,10 +126,10 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
{
|
{
|
||||||
public SDKConfig SDKConfiguration { get; private set; }
|
public SDKConfig SDKConfiguration { get; private set; }
|
||||||
private const string _language = "csharp";
|
private const string _language = "csharp";
|
||||||
private const string _sdkVersion = "0.8.7";
|
private const string _sdkVersion = "0.9.2";
|
||||||
private const string _sdkGenVersion = "2.428.1";
|
private const string _sdkGenVersion = "2.429.0";
|
||||||
private const string _openapiDocVersion = "0.0.3";
|
private const string _openapiDocVersion = "0.0.3";
|
||||||
private const string _userAgent = "speakeasy-sdk/csharp 0.8.7 2.428.1 0.0.3 LukeHagar.PlexAPI.SDK";
|
private const string _userAgent = "speakeasy-sdk/csharp 0.9.2 2.429.0 0.0.3 LukeHagar.PlexAPI.SDK";
|
||||||
private string _serverUrl = "";
|
private string _serverUrl = "";
|
||||||
private ISpeakeasyHttpClient _client;
|
private ISpeakeasyHttpClient _client;
|
||||||
private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
|
private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
|
||||||
@@ -142,7 +142,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
SDKConfiguration = config;
|
SDKConfiguration = config;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetServerCapabilitiesResponse> GetServerCapabilitiesAsync()
|
public async Task<GetServerCapabilitiesResponse> GetServerCapabilitiesAsync(RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
||||||
|
|
||||||
@@ -159,11 +159,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getServerCapabilities", null, _securitySource);
|
var hookCtx = new HookContext("getServerCapabilities", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -239,7 +272,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetServerPreferencesResponse> GetServerPreferencesAsync()
|
public async Task<GetServerPreferencesResponse> GetServerPreferencesAsync(RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
||||||
|
|
||||||
@@ -256,11 +289,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getServerPreferences", null, _securitySource);
|
var hookCtx = new HookContext("getServerPreferences", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -336,7 +402,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetAvailableClientsResponse> GetAvailableClientsAsync()
|
public async Task<GetAvailableClientsResponse> GetAvailableClientsAsync(RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
||||||
|
|
||||||
@@ -353,11 +419,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getAvailableClients", null, _securitySource);
|
var hookCtx = new HookContext("getAvailableClients", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -433,7 +532,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetDevicesResponse> GetDevicesAsync()
|
public async Task<GetDevicesResponse> GetDevicesAsync(RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
||||||
|
|
||||||
@@ -450,11 +549,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getDevices", null, _securitySource);
|
var hookCtx = new HookContext("getDevices", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -530,7 +662,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetServerIdentityResponse> GetServerIdentityAsync()
|
public async Task<GetServerIdentityResponse> GetServerIdentityAsync(RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
||||||
|
|
||||||
@@ -542,11 +674,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("get-server-identity", null, null);
|
var hookCtx = new HookContext("get-server-identity", null, null);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 408 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 408 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -611,7 +776,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetMyPlexAccountResponse> GetMyPlexAccountAsync()
|
public async Task<GetMyPlexAccountResponse> GetMyPlexAccountAsync(RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
||||||
|
|
||||||
@@ -628,11 +793,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getMyPlexAccount", null, _securitySource);
|
var hookCtx = new HookContext("getMyPlexAccount", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -708,7 +906,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetResizedPhotoResponse> GetResizedPhotoAsync(GetResizedPhotoRequest request)
|
public async Task<GetResizedPhotoResponse> GetResizedPhotoAsync(GetResizedPhotoRequest request, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
||||||
var urlString = URLBuilder.Build(baseUrl, "/photo/:/transcode", request);
|
var urlString = URLBuilder.Build(baseUrl, "/photo/:/transcode", request);
|
||||||
@@ -724,11 +922,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getResizedPhoto", null, _securitySource);
|
var hookCtx = new HookContext("getResizedPhoto", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -796,17 +1027,19 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetMediaProvidersResponse> GetMediaProvidersAsync(string xPlexToken)
|
public async Task<GetMediaProvidersResponse> GetMediaProvidersAsync(string xPlexToken, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new GetMediaProvidersRequest()
|
var request = new GetMediaProvidersRequest()
|
||||||
{
|
{
|
||||||
XPlexToken = xPlexToken,
|
XPlexToken = xPlexToken,
|
||||||
};
|
};
|
||||||
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
||||||
var urlString = URLBuilder.Build(baseUrl, "/media/providers", request);
|
|
||||||
|
var urlString = baseUrl + "/media/providers";
|
||||||
|
|
||||||
var httpRequest = new HttpRequestMessage(HttpMethod.Get, urlString);
|
var httpRequest = new HttpRequestMessage(HttpMethod.Get, urlString);
|
||||||
httpRequest.Headers.Add("user-agent", _userAgent);
|
httpRequest.Headers.Add("user-agent", _userAgent);
|
||||||
|
HeaderSerializer.PopulateHeaders(ref httpRequest, request);
|
||||||
|
|
||||||
if (_securitySource != null)
|
if (_securitySource != null)
|
||||||
{
|
{
|
||||||
@@ -816,11 +1049,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("get-media-providers", null, _securitySource);
|
var hookCtx = new HookContext("get-media-providers", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -896,7 +1162,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetServerListResponse> GetServerListAsync()
|
public async Task<GetServerListResponse> GetServerListAsync(RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
||||||
|
|
||||||
@@ -913,11 +1179,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getServerList", null, _securitySource);
|
var hookCtx = new HookContext("getServerList", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// This will retrieve the "Now Playing" Information of the PMS.
|
/// This will retrieve the "Now Playing" Information of the PMS.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetSessionsResponse> GetSessionsAsync();
|
Task<GetSessionsResponse> GetSessionsAsync(RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get Session History
|
/// Get Session History
|
||||||
@@ -48,7 +48,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// This will Retrieve a listing of all history views.
|
/// This will Retrieve a listing of all history views.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetSessionHistoryResponse> GetSessionHistoryAsync(string? sort = null, long? accountId = null, QueryParamFilter? filter = null, long? librarySectionID = null);
|
Task<GetSessionHistoryResponse> GetSessionHistoryAsync(string? sort = null, long? accountId = null, QueryParamFilter? filter = null, long? librarySectionID = null, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get Transcode Sessions
|
/// Get Transcode Sessions
|
||||||
@@ -57,7 +57,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// Get Transcode Sessions
|
/// Get Transcode Sessions
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetTranscodeSessionsResponse> GetTranscodeSessionsAsync();
|
Task<GetTranscodeSessionsResponse> GetTranscodeSessionsAsync(RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Stop a Transcode Session
|
/// Stop a Transcode Session
|
||||||
@@ -66,7 +66,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// Stop a Transcode Session
|
/// Stop a Transcode Session
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<StopTranscodeSessionResponse> StopTranscodeSessionAsync(string sessionKey);
|
Task<StopTranscodeSessionResponse> StopTranscodeSessionAsync(string sessionKey, RetryConfig? retryConfig = null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -80,10 +80,10 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
{
|
{
|
||||||
public SDKConfig SDKConfiguration { get; private set; }
|
public SDKConfig SDKConfiguration { get; private set; }
|
||||||
private const string _language = "csharp";
|
private const string _language = "csharp";
|
||||||
private const string _sdkVersion = "0.8.7";
|
private const string _sdkVersion = "0.9.2";
|
||||||
private const string _sdkGenVersion = "2.428.1";
|
private const string _sdkGenVersion = "2.429.0";
|
||||||
private const string _openapiDocVersion = "0.0.3";
|
private const string _openapiDocVersion = "0.0.3";
|
||||||
private const string _userAgent = "speakeasy-sdk/csharp 0.8.7 2.428.1 0.0.3 LukeHagar.PlexAPI.SDK";
|
private const string _userAgent = "speakeasy-sdk/csharp 0.9.2 2.429.0 0.0.3 LukeHagar.PlexAPI.SDK";
|
||||||
private string _serverUrl = "";
|
private string _serverUrl = "";
|
||||||
private ISpeakeasyHttpClient _client;
|
private ISpeakeasyHttpClient _client;
|
||||||
private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
|
private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
|
||||||
@@ -96,7 +96,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
SDKConfiguration = config;
|
SDKConfiguration = config;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetSessionsResponse> GetSessionsAsync()
|
public async Task<GetSessionsResponse> GetSessionsAsync(RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
||||||
|
|
||||||
@@ -113,11 +113,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getSessions", null, _securitySource);
|
var hookCtx = new HookContext("getSessions", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -193,7 +226,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetSessionHistoryResponse> GetSessionHistoryAsync(string? sort = null, long? accountId = null, QueryParamFilter? filter = null, long? librarySectionID = null)
|
public async Task<GetSessionHistoryResponse> GetSessionHistoryAsync(string? sort = null, long? accountId = null, QueryParamFilter? filter = null, long? librarySectionID = null, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new GetSessionHistoryRequest()
|
var request = new GetSessionHistoryRequest()
|
||||||
{
|
{
|
||||||
@@ -216,11 +249,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getSessionHistory", null, _securitySource);
|
var hookCtx = new HookContext("getSessionHistory", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -296,7 +362,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetTranscodeSessionsResponse> GetTranscodeSessionsAsync()
|
public async Task<GetTranscodeSessionsResponse> GetTranscodeSessionsAsync(RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
||||||
|
|
||||||
@@ -313,11 +379,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getTranscodeSessions", null, _securitySource);
|
var hookCtx = new HookContext("getTranscodeSessions", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -393,7 +492,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<StopTranscodeSessionResponse> StopTranscodeSessionAsync(string sessionKey)
|
public async Task<StopTranscodeSessionResponse> StopTranscodeSessionAsync(string sessionKey, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new StopTranscodeSessionRequest()
|
var request = new StopTranscodeSessionRequest()
|
||||||
{
|
{
|
||||||
@@ -413,11 +512,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("stopTranscodeSession", null, _securitySource);
|
var hookCtx = new HookContext("stopTranscodeSession", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// This will return the media statistics for the server
|
/// This will return the media statistics for the server
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetStatisticsResponse> GetStatisticsAsync(long? timespan = null);
|
Task<GetStatisticsResponse> GetStatisticsAsync(long? timespan = null, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get Resources Statistics
|
/// Get Resources Statistics
|
||||||
@@ -48,7 +48,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// This will return the resources for the server
|
/// This will return the resources for the server
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetResourcesStatisticsResponse> GetResourcesStatisticsAsync(long? timespan = null);
|
Task<GetResourcesStatisticsResponse> GetResourcesStatisticsAsync(long? timespan = null, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get Bandwidth Statistics
|
/// Get Bandwidth Statistics
|
||||||
@@ -57,7 +57,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// This will return the bandwidth statistics for the server
|
/// This will return the bandwidth statistics for the server
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetBandwidthStatisticsResponse> GetBandwidthStatisticsAsync(long? timespan = null);
|
Task<GetBandwidthStatisticsResponse> GetBandwidthStatisticsAsync(long? timespan = null, RetryConfig? retryConfig = null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -71,10 +71,10 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
{
|
{
|
||||||
public SDKConfig SDKConfiguration { get; private set; }
|
public SDKConfig SDKConfiguration { get; private set; }
|
||||||
private const string _language = "csharp";
|
private const string _language = "csharp";
|
||||||
private const string _sdkVersion = "0.8.7";
|
private const string _sdkVersion = "0.9.2";
|
||||||
private const string _sdkGenVersion = "2.428.1";
|
private const string _sdkGenVersion = "2.429.0";
|
||||||
private const string _openapiDocVersion = "0.0.3";
|
private const string _openapiDocVersion = "0.0.3";
|
||||||
private const string _userAgent = "speakeasy-sdk/csharp 0.8.7 2.428.1 0.0.3 LukeHagar.PlexAPI.SDK";
|
private const string _userAgent = "speakeasy-sdk/csharp 0.9.2 2.429.0 0.0.3 LukeHagar.PlexAPI.SDK";
|
||||||
private string _serverUrl = "";
|
private string _serverUrl = "";
|
||||||
private ISpeakeasyHttpClient _client;
|
private ISpeakeasyHttpClient _client;
|
||||||
private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
|
private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
|
||||||
@@ -87,7 +87,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
SDKConfiguration = config;
|
SDKConfiguration = config;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetStatisticsResponse> GetStatisticsAsync(long? timespan = null)
|
public async Task<GetStatisticsResponse> GetStatisticsAsync(long? timespan = null, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new GetStatisticsRequest()
|
var request = new GetStatisticsRequest()
|
||||||
{
|
{
|
||||||
@@ -107,11 +107,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getStatistics", null, _securitySource);
|
var hookCtx = new HookContext("getStatistics", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -187,7 +220,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetResourcesStatisticsResponse> GetResourcesStatisticsAsync(long? timespan = null)
|
public async Task<GetResourcesStatisticsResponse> GetResourcesStatisticsAsync(long? timespan = null, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new GetResourcesStatisticsRequest()
|
var request = new GetResourcesStatisticsRequest()
|
||||||
{
|
{
|
||||||
@@ -207,11 +240,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getResourcesStatistics", null, _securitySource);
|
var hookCtx = new HookContext("getResourcesStatistics", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -287,7 +353,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetBandwidthStatisticsResponse> GetBandwidthStatisticsAsync(long? timespan = null)
|
public async Task<GetBandwidthStatisticsResponse> GetBandwidthStatisticsAsync(long? timespan = null, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new GetBandwidthStatisticsRequest()
|
var request = new GetBandwidthStatisticsRequest()
|
||||||
{
|
{
|
||||||
@@ -307,11 +373,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getBandwidthStatistics", null, _securitySource);
|
var hookCtx = new HookContext("getBandwidthStatistics", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// Querying status of updates
|
/// Querying status of updates
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetUpdateStatusResponse> GetUpdateStatusAsync();
|
Task<GetUpdateStatusResponse> GetUpdateStatusAsync(RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Checking for updates
|
/// Checking for updates
|
||||||
@@ -49,7 +49,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// Checking for updates
|
/// Checking for updates
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<CheckForUpdatesResponse> CheckForUpdatesAsync(Download? download = null);
|
Task<CheckForUpdatesResponse> CheckForUpdatesAsync(Download? download = null, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Apply Updates
|
/// Apply Updates
|
||||||
@@ -59,7 +59,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<ApplyUpdatesResponse> ApplyUpdatesAsync(Tonight? tonight = null, Skip? skip = null);
|
Task<ApplyUpdatesResponse> ApplyUpdatesAsync(Tonight? tonight = null, Skip? skip = null, RetryConfig? retryConfig = null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -74,10 +74,10 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
{
|
{
|
||||||
public SDKConfig SDKConfiguration { get; private set; }
|
public SDKConfig SDKConfiguration { get; private set; }
|
||||||
private const string _language = "csharp";
|
private const string _language = "csharp";
|
||||||
private const string _sdkVersion = "0.8.7";
|
private const string _sdkVersion = "0.9.2";
|
||||||
private const string _sdkGenVersion = "2.428.1";
|
private const string _sdkGenVersion = "2.429.0";
|
||||||
private const string _openapiDocVersion = "0.0.3";
|
private const string _openapiDocVersion = "0.0.3";
|
||||||
private const string _userAgent = "speakeasy-sdk/csharp 0.8.7 2.428.1 0.0.3 LukeHagar.PlexAPI.SDK";
|
private const string _userAgent = "speakeasy-sdk/csharp 0.9.2 2.429.0 0.0.3 LukeHagar.PlexAPI.SDK";
|
||||||
private string _serverUrl = "";
|
private string _serverUrl = "";
|
||||||
private ISpeakeasyHttpClient _client;
|
private ISpeakeasyHttpClient _client;
|
||||||
private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
|
private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
|
||||||
@@ -90,7 +90,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
SDKConfiguration = config;
|
SDKConfiguration = config;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetUpdateStatusResponse> GetUpdateStatusAsync()
|
public async Task<GetUpdateStatusResponse> GetUpdateStatusAsync(RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
||||||
|
|
||||||
@@ -107,11 +107,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getUpdateStatus", null, _securitySource);
|
var hookCtx = new HookContext("getUpdateStatus", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -187,7 +220,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<CheckForUpdatesResponse> CheckForUpdatesAsync(Download? download = null)
|
public async Task<CheckForUpdatesResponse> CheckForUpdatesAsync(Download? download = null, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new CheckForUpdatesRequest()
|
var request = new CheckForUpdatesRequest()
|
||||||
{
|
{
|
||||||
@@ -207,11 +240,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("checkForUpdates", null, _securitySource);
|
var hookCtx = new HookContext("checkForUpdates", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -279,7 +345,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<ApplyUpdatesResponse> ApplyUpdatesAsync(Tonight? tonight = null, Skip? skip = null)
|
public async Task<ApplyUpdatesResponse> ApplyUpdatesAsync(Tonight? tonight = null, Skip? skip = null, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
var request = new ApplyUpdatesRequest()
|
var request = new ApplyUpdatesRequest()
|
||||||
{
|
{
|
||||||
@@ -300,11 +366,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("applyUpdates", null, _securitySource);
|
var hookCtx = new HookContext("applyUpdates", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode == 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode == 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// Get the timeline for a media item
|
/// Get the timeline for a media item
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetTimelineResponse> GetTimelineAsync(GetTimelineRequest request);
|
Task<GetTimelineResponse> GetTimelineAsync(GetTimelineRequest request, RetryConfig? retryConfig = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Start Universal Transcode
|
/// Start Universal Transcode
|
||||||
@@ -48,7 +48,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// Begin a Universal Transcode Session
|
/// Begin a Universal Transcode Session
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<StartUniversalTranscodeResponse> StartUniversalTranscodeAsync(StartUniversalTranscodeRequest request);
|
Task<StartUniversalTranscodeResponse> StartUniversalTranscodeAsync(StartUniversalTranscodeRequest request, RetryConfig? retryConfig = null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -62,10 +62,10 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
{
|
{
|
||||||
public SDKConfig SDKConfiguration { get; private set; }
|
public SDKConfig SDKConfiguration { get; private set; }
|
||||||
private const string _language = "csharp";
|
private const string _language = "csharp";
|
||||||
private const string _sdkVersion = "0.8.7";
|
private const string _sdkVersion = "0.9.2";
|
||||||
private const string _sdkGenVersion = "2.428.1";
|
private const string _sdkGenVersion = "2.429.0";
|
||||||
private const string _openapiDocVersion = "0.0.3";
|
private const string _openapiDocVersion = "0.0.3";
|
||||||
private const string _userAgent = "speakeasy-sdk/csharp 0.8.7 2.428.1 0.0.3 LukeHagar.PlexAPI.SDK";
|
private const string _userAgent = "speakeasy-sdk/csharp 0.9.2 2.429.0 0.0.3 LukeHagar.PlexAPI.SDK";
|
||||||
private string _serverUrl = "";
|
private string _serverUrl = "";
|
||||||
private ISpeakeasyHttpClient _client;
|
private ISpeakeasyHttpClient _client;
|
||||||
private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
|
private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
|
||||||
@@ -78,7 +78,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
SDKConfiguration = config;
|
SDKConfiguration = config;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetTimelineResponse> GetTimelineAsync(GetTimelineRequest request)
|
public async Task<GetTimelineResponse> GetTimelineAsync(GetTimelineRequest request, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
||||||
var urlString = URLBuilder.Build(baseUrl, "/:/timeline", request);
|
var urlString = URLBuilder.Build(baseUrl, "/:/timeline", request);
|
||||||
@@ -94,11 +94,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("getTimeline", null, _securitySource);
|
var hookCtx = new HookContext("getTimeline", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
@@ -166,7 +199,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
throw new Models.Errors.SDKException("Unknown status code received", responseStatusCode, await httpResponse.Content.ReadAsStringAsync(), httpResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<StartUniversalTranscodeResponse> StartUniversalTranscodeAsync(StartUniversalTranscodeRequest request)
|
public async Task<StartUniversalTranscodeResponse> StartUniversalTranscodeAsync(StartUniversalTranscodeRequest request, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
string baseUrl = this.SDKConfiguration.GetTemplatedServerUrl();
|
||||||
var urlString = URLBuilder.Build(baseUrl, "/video/:/transcode/universal/start.mpd", request);
|
var urlString = URLBuilder.Build(baseUrl, "/video/:/transcode/universal/start.mpd", request);
|
||||||
@@ -182,11 +215,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("startUniversalTranscode", null, _securitySource);
|
var hookCtx = new HookContext("startUniversalTranscode", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
/// Get User Watchlist
|
/// Get User Watchlist
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task<GetWatchListResponse> GetWatchListAsync(GetWatchListRequest request, string? serverUrl = null);
|
Task<GetWatchListResponse> GetWatchListAsync(GetWatchListRequest request, string? serverUrl = null, RetryConfig? retryConfig = null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -59,10 +59,10 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
};
|
};
|
||||||
public SDKConfig SDKConfiguration { get; private set; }
|
public SDKConfig SDKConfiguration { get; private set; }
|
||||||
private const string _language = "csharp";
|
private const string _language = "csharp";
|
||||||
private const string _sdkVersion = "0.8.7";
|
private const string _sdkVersion = "0.9.2";
|
||||||
private const string _sdkGenVersion = "2.428.1";
|
private const string _sdkGenVersion = "2.429.0";
|
||||||
private const string _openapiDocVersion = "0.0.3";
|
private const string _openapiDocVersion = "0.0.3";
|
||||||
private const string _userAgent = "speakeasy-sdk/csharp 0.8.7 2.428.1 0.0.3 LukeHagar.PlexAPI.SDK";
|
private const string _userAgent = "speakeasy-sdk/csharp 0.9.2 2.429.0 0.0.3 LukeHagar.PlexAPI.SDK";
|
||||||
private string _serverUrl = "";
|
private string _serverUrl = "";
|
||||||
private ISpeakeasyHttpClient _client;
|
private ISpeakeasyHttpClient _client;
|
||||||
private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
|
private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
|
||||||
@@ -75,7 +75,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
SDKConfiguration = config;
|
SDKConfiguration = config;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<GetWatchListResponse> GetWatchListAsync(GetWatchListRequest request, string? serverUrl = null)
|
public async Task<GetWatchListResponse> GetWatchListAsync(GetWatchListRequest request, string? serverUrl = null, RetryConfig? retryConfig = null)
|
||||||
{
|
{
|
||||||
string baseUrl = Utilities.TemplateUrl(GetWatchListServerList[0], new Dictionary<string, string>(){
|
string baseUrl = Utilities.TemplateUrl(GetWatchListServerList[0], new Dictionary<string, string>(){
|
||||||
});
|
});
|
||||||
@@ -87,6 +87,7 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
|
|
||||||
var httpRequest = new HttpRequestMessage(HttpMethod.Get, urlString);
|
var httpRequest = new HttpRequestMessage(HttpMethod.Get, urlString);
|
||||||
httpRequest.Headers.Add("user-agent", _userAgent);
|
httpRequest.Headers.Add("user-agent", _userAgent);
|
||||||
|
HeaderSerializer.PopulateHeaders(ref httpRequest, request);
|
||||||
|
|
||||||
if (_securitySource != null)
|
if (_securitySource != null)
|
||||||
{
|
{
|
||||||
@@ -96,11 +97,44 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
var hookCtx = new HookContext("get-watch-list", null, _securitySource);
|
var hookCtx = new HookContext("get-watch-list", null, _securitySource);
|
||||||
|
|
||||||
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
httpRequest = await this.SDKConfiguration.Hooks.BeforeRequestAsync(new BeforeRequestContext(hookCtx), httpRequest);
|
||||||
|
if (retryConfig == null)
|
||||||
|
{
|
||||||
|
if (this.SDKConfiguration.RetryConfig != null)
|
||||||
|
{
|
||||||
|
retryConfig = this.SDKConfiguration.RetryConfig;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var backoff = new BackoffStrategy(
|
||||||
|
initialIntervalMs: 500L,
|
||||||
|
maxIntervalMs: 60000L,
|
||||||
|
maxElapsedTimeMs: 3600000L,
|
||||||
|
exponent: 1.5
|
||||||
|
);
|
||||||
|
retryConfig = new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: backoff,
|
||||||
|
retryConnectionErrors: true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<string> statusCodes = new List<string>
|
||||||
|
{
|
||||||
|
"5XX",
|
||||||
|
};
|
||||||
|
|
||||||
|
Func<Task<HttpResponseMessage>> retrySend = async () =>
|
||||||
|
{
|
||||||
|
var _httpRequest = await _client.CloneAsync(httpRequest);
|
||||||
|
return await _client.SendAsync(_httpRequest);
|
||||||
|
};
|
||||||
|
var retries = new LukeHagar.PlexAPI.SDK.Utils.Retries.Retries(retrySend, retryConfig, statusCodes);
|
||||||
|
|
||||||
HttpResponseMessage httpResponse;
|
HttpResponseMessage httpResponse;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
httpResponse = await _client.SendAsync(httpRequest);
|
httpResponse = await retries.Run();
|
||||||
int _statusCode = (int)httpResponse.StatusCode;
|
int _statusCode = (int)httpResponse.StatusCode;
|
||||||
|
|
||||||
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
if (_statusCode == 400 || _statusCode == 401 || _statusCode >= 400 && _statusCode < 500 || _statusCode >= 500 && _statusCode < 600)
|
||||||
|
|||||||
125
NUGET.md
125
NUGET.md
@@ -12,11 +12,11 @@ using LukeHagar.PlexAPI.SDK.Models.Components;
|
|||||||
|
|
||||||
var sdk = new PlexAPI(
|
var sdk = new PlexAPI(
|
||||||
accessToken: "<YOUR_API_KEY_HERE>",
|
accessToken: "<YOUR_API_KEY_HERE>",
|
||||||
clientID: "gcgzw5rz2xovp84b4vha3a40",
|
clientID: "3381b62b-9ab7-4e37-827b-203e9809eb58",
|
||||||
clientName: "Plex Web",
|
clientName: "Plex for Roku",
|
||||||
clientVersion: "4.133.0",
|
clientVersion: "2.4.1",
|
||||||
clientPlatform: "Chrome",
|
platform: "Roku",
|
||||||
deviceName: "Linux"
|
deviceNickname: "Roku 3"
|
||||||
);
|
);
|
||||||
|
|
||||||
var res = await sdk.Server.GetServerCapabilitiesAsync();
|
var res = await sdk.Server.GetServerCapabilitiesAsync();
|
||||||
@@ -25,55 +25,68 @@ var res = await sdk.Server.GetServerCapabilitiesAsync();
|
|||||||
```
|
```
|
||||||
<!-- End SDK Example Usage [usage] -->
|
<!-- End SDK Example Usage [usage] -->
|
||||||
|
|
||||||
<!-- Start Global Parameters [global-parameters] -->
|
<!-- Start Retries [retries] -->
|
||||||
## Global Parameters
|
## Retries
|
||||||
|
|
||||||
## Global Parameters
|
Some of the endpoints in this SDK support retries. If you use the SDK without any configuration, it will fall back to the default retry strategy provided by the API. However, the default retry strategy can be overridden on a per-operation basis, or across the entire SDK.
|
||||||
|
|
||||||
Certain parameters are configured globally. These parameters may be set on the SDK client instance itself during initialization. When configured as an option during SDK initialization, These global values will be used as defaults on the operations that use them. When such operations are called, there is a place in each to override the global value, if needed.
|
|
||||||
|
|
||||||
For example, you can set `ClientID` to `"gcgzw5rz2xovp84b4vha3a40"` at SDK initialization and then you do not have to pass the same value on calls to operations like `GetServerResources`. But if you want to do so you may, which will locally override the global setting. See the example code below for a demonstration.
|
|
||||||
|
|
||||||
|
|
||||||
### Available Globals
|
|
||||||
|
|
||||||
The following global parameters are available.
|
|
||||||
|
|
||||||
| Name | Type | Required | Description |
|
|
||||||
| ---- | ---- |:--------:| ----------- |
|
|
||||||
| clientID | string | | The unique identifier for the client application. This is used to track the client application and its usage. (UUID, serial number, or other number unique per device) |
|
|
||||||
| clientName | string | | The ClientName parameter. |
|
|
||||||
| clientVersion | string | | The ClientVersion parameter. |
|
|
||||||
| clientPlatform | string | | The ClientPlatform parameter. |
|
|
||||||
| deviceName | string | | The DeviceName parameter. |
|
|
||||||
|
|
||||||
|
|
||||||
### Example
|
|
||||||
|
|
||||||
|
To change the default retry strategy for a single API call, simply pass a `RetryConfig` to the call:
|
||||||
```csharp
|
```csharp
|
||||||
using LukeHagar.PlexAPI.SDK;
|
using LukeHagar.PlexAPI.SDK;
|
||||||
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
|
||||||
using LukeHagar.PlexAPI.SDK.Models.Components;
|
using LukeHagar.PlexAPI.SDK.Models.Components;
|
||||||
|
|
||||||
var sdk = new PlexAPI(
|
var sdk = new PlexAPI(
|
||||||
accessToken: "<YOUR_API_KEY_HERE>",
|
accessToken: "<YOUR_API_KEY_HERE>",
|
||||||
clientID: "gcgzw5rz2xovp84b4vha3a40",
|
clientID: "3381b62b-9ab7-4e37-827b-203e9809eb58",
|
||||||
clientName: "Plex Web",
|
clientName: "Plex for Roku",
|
||||||
clientVersion: "4.133.0",
|
clientVersion: "2.4.1",
|
||||||
clientPlatform: "Chrome",
|
platform: "Roku",
|
||||||
deviceName: "Linux"
|
deviceNickname: "Roku 3"
|
||||||
);
|
);
|
||||||
|
|
||||||
var res = await sdk.Plex.GetServerResourcesAsync(
|
var res = await sdk.Server.GetServerCapabilitiesAsync(retryConfig: new RetryConfig(
|
||||||
includeHttps: LukeHagar.PlexAPI.SDK.Models.Requests.IncludeHttps.Enable,
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
includeRelay: LukeHagar.PlexAPI.SDK.Models.Requests.IncludeRelay.Enable,
|
backoff: new BackoffStrategy(
|
||||||
includeIPv6: LukeHagar.PlexAPI.SDK.Models.Requests.IncludeIPv6.Enable,
|
initialIntervalMs: 1L,
|
||||||
clientID: "gcgzw5rz2xovp84b4vha3a40"
|
maxIntervalMs: 50L,
|
||||||
);
|
maxElapsedTimeMs: 100L,
|
||||||
|
exponent: 1.1
|
||||||
|
),
|
||||||
|
retryConnectionErrors: false
|
||||||
|
));
|
||||||
|
|
||||||
// handle response
|
// handle response
|
||||||
```
|
```
|
||||||
<!-- End Global Parameters [global-parameters] -->
|
|
||||||
|
If you'd like to override the default retry strategy for all operations that support retries, you can use the `RetryConfig` optional parameter when intitializing the SDK:
|
||||||
|
```csharp
|
||||||
|
using LukeHagar.PlexAPI.SDK;
|
||||||
|
using LukeHagar.PlexAPI.SDK.Models.Components;
|
||||||
|
|
||||||
|
var sdk = new PlexAPI(
|
||||||
|
retryConfig: new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: new BackoffStrategy(
|
||||||
|
initialIntervalMs: 1L,
|
||||||
|
maxIntervalMs: 50L,
|
||||||
|
maxElapsedTimeMs: 100L,
|
||||||
|
exponent: 1.1
|
||||||
|
),
|
||||||
|
retryConnectionErrors: false
|
||||||
|
),
|
||||||
|
accessToken: "<YOUR_API_KEY_HERE>",
|
||||||
|
clientID: "3381b62b-9ab7-4e37-827b-203e9809eb58",
|
||||||
|
clientName: "Plex for Roku",
|
||||||
|
clientVersion: "2.4.1",
|
||||||
|
platform: "Roku",
|
||||||
|
deviceNickname: "Roku 3"
|
||||||
|
);
|
||||||
|
|
||||||
|
var res = await sdk.Server.GetServerCapabilitiesAsync();
|
||||||
|
|
||||||
|
// handle response
|
||||||
|
```
|
||||||
|
<!-- End Retries [retries] -->
|
||||||
|
|
||||||
<!-- Start Error Handling [errors] -->
|
<!-- Start Error Handling [errors] -->
|
||||||
## Error Handling
|
## Error Handling
|
||||||
@@ -107,11 +120,11 @@ using LukeHagar.PlexAPI.SDK.Models.Errors;
|
|||||||
|
|
||||||
var sdk = new PlexAPI(
|
var sdk = new PlexAPI(
|
||||||
accessToken: "<YOUR_API_KEY_HERE>",
|
accessToken: "<YOUR_API_KEY_HERE>",
|
||||||
clientID: "gcgzw5rz2xovp84b4vha3a40",
|
clientID: "3381b62b-9ab7-4e37-827b-203e9809eb58",
|
||||||
clientName: "Plex Web",
|
clientName: "Plex for Roku",
|
||||||
clientVersion: "4.133.0",
|
clientVersion: "2.4.1",
|
||||||
clientPlatform: "Chrome",
|
platform: "Roku",
|
||||||
deviceName: "Linux"
|
deviceNickname: "Roku 3"
|
||||||
);
|
);
|
||||||
|
|
||||||
try
|
try
|
||||||
@@ -175,11 +188,11 @@ using LukeHagar.PlexAPI.SDK.Models.Components;
|
|||||||
|
|
||||||
var sdk = new PlexAPI(
|
var sdk = new PlexAPI(
|
||||||
accessToken: "<YOUR_API_KEY_HERE>",
|
accessToken: "<YOUR_API_KEY_HERE>",
|
||||||
clientID: "gcgzw5rz2xovp84b4vha3a40",
|
clientID: "3381b62b-9ab7-4e37-827b-203e9809eb58",
|
||||||
clientName: "Plex Web",
|
clientName: "Plex for Roku",
|
||||||
clientVersion: "4.133.0",
|
clientVersion: "2.4.1",
|
||||||
clientPlatform: "Chrome",
|
platform: "Roku",
|
||||||
deviceName: "Linux"
|
deviceNickname: "Roku 3"
|
||||||
);
|
);
|
||||||
|
|
||||||
var res = await sdk.Plex.GetCompanionsDataAsync(serverUrl: "https://plex.tv/api/v2");
|
var res = await sdk.Plex.GetCompanionsDataAsync(serverUrl: "https://plex.tv/api/v2");
|
||||||
@@ -206,11 +219,11 @@ using LukeHagar.PlexAPI.SDK.Models.Components;
|
|||||||
|
|
||||||
var sdk = new PlexAPI(
|
var sdk = new PlexAPI(
|
||||||
accessToken: "<YOUR_API_KEY_HERE>",
|
accessToken: "<YOUR_API_KEY_HERE>",
|
||||||
clientID: "gcgzw5rz2xovp84b4vha3a40",
|
clientID: "3381b62b-9ab7-4e37-827b-203e9809eb58",
|
||||||
clientName: "Plex Web",
|
clientName: "Plex for Roku",
|
||||||
clientVersion: "4.133.0",
|
clientVersion: "2.4.1",
|
||||||
clientPlatform: "Chrome",
|
platform: "Roku",
|
||||||
deviceName: "Linux"
|
deviceNickname: "Roku 3"
|
||||||
);
|
);
|
||||||
|
|
||||||
var res = await sdk.Server.GetServerCapabilitiesAsync();
|
var res = await sdk.Server.GetServerCapabilitiesAsync();
|
||||||
|
|||||||
128
README.md
128
README.md
@@ -36,11 +36,11 @@ using LukeHagar.PlexAPI.SDK.Models.Components;
|
|||||||
|
|
||||||
var sdk = new PlexAPI(
|
var sdk = new PlexAPI(
|
||||||
accessToken: "<YOUR_API_KEY_HERE>",
|
accessToken: "<YOUR_API_KEY_HERE>",
|
||||||
clientID: "gcgzw5rz2xovp84b4vha3a40",
|
clientID: "3381b62b-9ab7-4e37-827b-203e9809eb58",
|
||||||
clientName: "Plex Web",
|
clientName: "Plex for Roku",
|
||||||
clientVersion: "4.133.0",
|
clientVersion: "2.4.1",
|
||||||
clientPlatform: "Chrome",
|
platform: "Roku",
|
||||||
deviceName: "Linux"
|
deviceNickname: "Roku 3"
|
||||||
);
|
);
|
||||||
|
|
||||||
var res = await sdk.Server.GetServerCapabilitiesAsync();
|
var res = await sdk.Server.GetServerCapabilitiesAsync();
|
||||||
@@ -91,6 +91,7 @@ var res = await sdk.Server.GetServerCapabilitiesAsync();
|
|||||||
* [GetLibraryItems](docs/sdks/library/README.md#getlibraryitems) - Get Library Items
|
* [GetLibraryItems](docs/sdks/library/README.md#getlibraryitems) - Get Library Items
|
||||||
* [GetRefreshLibraryMetadata](docs/sdks/library/README.md#getrefreshlibrarymetadata) - Refresh Metadata Of The Library
|
* [GetRefreshLibraryMetadata](docs/sdks/library/README.md#getrefreshlibrarymetadata) - Refresh Metadata Of The Library
|
||||||
* [GetSearchLibrary](docs/sdks/library/README.md#getsearchlibrary) - Search Library
|
* [GetSearchLibrary](docs/sdks/library/README.md#getsearchlibrary) - Search Library
|
||||||
|
* [GetSearchAllLibraries](docs/sdks/library/README.md#getsearchalllibraries) - Search All Libraries
|
||||||
* [GetMetaDataByRatingKey](docs/sdks/library/README.md#getmetadatabyratingkey) - Get Metadata by RatingKey
|
* [GetMetaDataByRatingKey](docs/sdks/library/README.md#getmetadatabyratingkey) - Get Metadata by RatingKey
|
||||||
* [GetMetadataChildren](docs/sdks/library/README.md#getmetadatachildren) - Get Items Children
|
* [GetMetadataChildren](docs/sdks/library/README.md#getmetadatachildren) - Get Items Children
|
||||||
* [GetTopWatchedContent](docs/sdks/library/README.md#gettopwatchedcontent) - Get Top Watched Content
|
* [GetTopWatchedContent](docs/sdks/library/README.md#gettopwatchedcontent) - Get Top Watched Content
|
||||||
@@ -216,11 +217,11 @@ using LukeHagar.PlexAPI.SDK.Models.Components;
|
|||||||
|
|
||||||
var sdk = new PlexAPI(
|
var sdk = new PlexAPI(
|
||||||
accessToken: "<YOUR_API_KEY_HERE>",
|
accessToken: "<YOUR_API_KEY_HERE>",
|
||||||
clientID: "gcgzw5rz2xovp84b4vha3a40",
|
clientID: "3381b62b-9ab7-4e37-827b-203e9809eb58",
|
||||||
clientName: "Plex Web",
|
clientName: "Plex for Roku",
|
||||||
clientVersion: "4.133.0",
|
clientVersion: "2.4.1",
|
||||||
clientPlatform: "Chrome",
|
platform: "Roku",
|
||||||
deviceName: "Linux"
|
deviceNickname: "Roku 3"
|
||||||
);
|
);
|
||||||
|
|
||||||
var res = await sdk.Plex.GetCompanionsDataAsync(serverUrl: "https://plex.tv/api/v2");
|
var res = await sdk.Plex.GetCompanionsDataAsync(serverUrl: "https://plex.tv/api/v2");
|
||||||
@@ -247,11 +248,11 @@ using LukeHagar.PlexAPI.SDK.Models.Components;
|
|||||||
|
|
||||||
var sdk = new PlexAPI(
|
var sdk = new PlexAPI(
|
||||||
accessToken: "<YOUR_API_KEY_HERE>",
|
accessToken: "<YOUR_API_KEY_HERE>",
|
||||||
clientID: "gcgzw5rz2xovp84b4vha3a40",
|
clientID: "3381b62b-9ab7-4e37-827b-203e9809eb58",
|
||||||
clientName: "Plex Web",
|
clientName: "Plex for Roku",
|
||||||
clientVersion: "4.133.0",
|
clientVersion: "2.4.1",
|
||||||
clientPlatform: "Chrome",
|
platform: "Roku",
|
||||||
deviceName: "Linux"
|
deviceNickname: "Roku 3"
|
||||||
);
|
);
|
||||||
|
|
||||||
var res = await sdk.Server.GetServerCapabilitiesAsync();
|
var res = await sdk.Server.GetServerCapabilitiesAsync();
|
||||||
@@ -260,55 +261,68 @@ var res = await sdk.Server.GetServerCapabilitiesAsync();
|
|||||||
```
|
```
|
||||||
<!-- End Authentication [security] -->
|
<!-- End Authentication [security] -->
|
||||||
|
|
||||||
<!-- Start Global Parameters [global-parameters] -->
|
<!-- Start Retries [retries] -->
|
||||||
## Global Parameters
|
## Retries
|
||||||
|
|
||||||
## Global Parameters
|
Some of the endpoints in this SDK support retries. If you use the SDK without any configuration, it will fall back to the default retry strategy provided by the API. However, the default retry strategy can be overridden on a per-operation basis, or across the entire SDK.
|
||||||
|
|
||||||
Certain parameters are configured globally. These parameters may be set on the SDK client instance itself during initialization. When configured as an option during SDK initialization, These global values will be used as defaults on the operations that use them. When such operations are called, there is a place in each to override the global value, if needed.
|
|
||||||
|
|
||||||
For example, you can set `ClientID` to `"gcgzw5rz2xovp84b4vha3a40"` at SDK initialization and then you do not have to pass the same value on calls to operations like `GetServerResources`. But if you want to do so you may, which will locally override the global setting. See the example code below for a demonstration.
|
|
||||||
|
|
||||||
|
|
||||||
### Available Globals
|
|
||||||
|
|
||||||
The following global parameters are available.
|
|
||||||
|
|
||||||
| Name | Type | Required | Description |
|
|
||||||
| ---- | ---- |:--------:| ----------- |
|
|
||||||
| clientID | string | | The unique identifier for the client application. This is used to track the client application and its usage. (UUID, serial number, or other number unique per device) |
|
|
||||||
| clientName | string | | The ClientName parameter. |
|
|
||||||
| clientVersion | string | | The ClientVersion parameter. |
|
|
||||||
| clientPlatform | string | | The ClientPlatform parameter. |
|
|
||||||
| deviceName | string | | The DeviceName parameter. |
|
|
||||||
|
|
||||||
|
|
||||||
### Example
|
|
||||||
|
|
||||||
|
To change the default retry strategy for a single API call, simply pass a `RetryConfig` to the call:
|
||||||
```csharp
|
```csharp
|
||||||
using LukeHagar.PlexAPI.SDK;
|
using LukeHagar.PlexAPI.SDK;
|
||||||
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
|
||||||
using LukeHagar.PlexAPI.SDK.Models.Components;
|
using LukeHagar.PlexAPI.SDK.Models.Components;
|
||||||
|
|
||||||
var sdk = new PlexAPI(
|
var sdk = new PlexAPI(
|
||||||
accessToken: "<YOUR_API_KEY_HERE>",
|
accessToken: "<YOUR_API_KEY_HERE>",
|
||||||
clientID: "gcgzw5rz2xovp84b4vha3a40",
|
clientID: "3381b62b-9ab7-4e37-827b-203e9809eb58",
|
||||||
clientName: "Plex Web",
|
clientName: "Plex for Roku",
|
||||||
clientVersion: "4.133.0",
|
clientVersion: "2.4.1",
|
||||||
clientPlatform: "Chrome",
|
platform: "Roku",
|
||||||
deviceName: "Linux"
|
deviceNickname: "Roku 3"
|
||||||
);
|
);
|
||||||
|
|
||||||
var res = await sdk.Plex.GetServerResourcesAsync(
|
var res = await sdk.Server.GetServerCapabilitiesAsync(retryConfig: new RetryConfig(
|
||||||
includeHttps: LukeHagar.PlexAPI.SDK.Models.Requests.IncludeHttps.Enable,
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
includeRelay: LukeHagar.PlexAPI.SDK.Models.Requests.IncludeRelay.Enable,
|
backoff: new BackoffStrategy(
|
||||||
includeIPv6: LukeHagar.PlexAPI.SDK.Models.Requests.IncludeIPv6.Enable,
|
initialIntervalMs: 1L,
|
||||||
clientID: "gcgzw5rz2xovp84b4vha3a40"
|
maxIntervalMs: 50L,
|
||||||
);
|
maxElapsedTimeMs: 100L,
|
||||||
|
exponent: 1.1
|
||||||
|
),
|
||||||
|
retryConnectionErrors: false
|
||||||
|
));
|
||||||
|
|
||||||
// handle response
|
// handle response
|
||||||
```
|
```
|
||||||
<!-- End Global Parameters [global-parameters] -->
|
|
||||||
|
If you'd like to override the default retry strategy for all operations that support retries, you can use the `RetryConfig` optional parameter when intitializing the SDK:
|
||||||
|
```csharp
|
||||||
|
using LukeHagar.PlexAPI.SDK;
|
||||||
|
using LukeHagar.PlexAPI.SDK.Models.Components;
|
||||||
|
|
||||||
|
var sdk = new PlexAPI(
|
||||||
|
retryConfig: new RetryConfig(
|
||||||
|
strategy: RetryConfig.RetryStrategy.BACKOFF,
|
||||||
|
backoff: new BackoffStrategy(
|
||||||
|
initialIntervalMs: 1L,
|
||||||
|
maxIntervalMs: 50L,
|
||||||
|
maxElapsedTimeMs: 100L,
|
||||||
|
exponent: 1.1
|
||||||
|
),
|
||||||
|
retryConnectionErrors: false
|
||||||
|
),
|
||||||
|
accessToken: "<YOUR_API_KEY_HERE>",
|
||||||
|
clientID: "3381b62b-9ab7-4e37-827b-203e9809eb58",
|
||||||
|
clientName: "Plex for Roku",
|
||||||
|
clientVersion: "2.4.1",
|
||||||
|
platform: "Roku",
|
||||||
|
deviceNickname: "Roku 3"
|
||||||
|
);
|
||||||
|
|
||||||
|
var res = await sdk.Server.GetServerCapabilitiesAsync();
|
||||||
|
|
||||||
|
// handle response
|
||||||
|
```
|
||||||
|
<!-- End Retries [retries] -->
|
||||||
|
|
||||||
<!-- Start Error Handling [errors] -->
|
<!-- Start Error Handling [errors] -->
|
||||||
## Error Handling
|
## Error Handling
|
||||||
@@ -342,11 +356,11 @@ using LukeHagar.PlexAPI.SDK.Models.Errors;
|
|||||||
|
|
||||||
var sdk = new PlexAPI(
|
var sdk = new PlexAPI(
|
||||||
accessToken: "<YOUR_API_KEY_HERE>",
|
accessToken: "<YOUR_API_KEY_HERE>",
|
||||||
clientID: "gcgzw5rz2xovp84b4vha3a40",
|
clientID: "3381b62b-9ab7-4e37-827b-203e9809eb58",
|
||||||
clientName: "Plex Web",
|
clientName: "Plex for Roku",
|
||||||
clientVersion: "4.133.0",
|
clientVersion: "2.4.1",
|
||||||
clientPlatform: "Chrome",
|
platform: "Roku",
|
||||||
deviceName: "Linux"
|
deviceNickname: "Roku 3"
|
||||||
);
|
);
|
||||||
|
|
||||||
try
|
try
|
||||||
@@ -413,7 +427,7 @@ The following SDKs are generated from the OpenAPI Specification. They are automa
|
|||||||
* [SDK Installation](#sdk-installation)
|
* [SDK Installation](#sdk-installation)
|
||||||
* [SDK Example Usage](#sdk-example-usage)
|
* [SDK Example Usage](#sdk-example-usage)
|
||||||
* [Available Resources and Operations](#available-resources-and-operations)
|
* [Available Resources and Operations](#available-resources-and-operations)
|
||||||
* [Global Parameters](#global-parameters)
|
* [Retries](#retries)
|
||||||
* [Error Handling](#error-handling)
|
* [Error Handling](#error-handling)
|
||||||
* [Server Selection](#server-selection)
|
* [Server Selection](#server-selection)
|
||||||
* [Authentication](#authentication)
|
* [Authentication](#authentication)
|
||||||
|
|||||||
32
RELEASES.md
32
RELEASES.md
@@ -334,4 +334,34 @@ Based on:
|
|||||||
### Generated
|
### Generated
|
||||||
- [csharp v0.8.7] .
|
- [csharp v0.8.7] .
|
||||||
### Releases
|
### Releases
|
||||||
- [NuGet v0.8.7] https://www.nuget.org/packages/LukeHagar.PlexAPI.SDK/0.8.7 - .
|
- [NuGet v0.8.7] https://www.nuget.org/packages/LukeHagar.PlexAPI.SDK/0.8.7 - .
|
||||||
|
|
||||||
|
## 2024-10-02 09:48:21
|
||||||
|
### Changes
|
||||||
|
Based on:
|
||||||
|
- OpenAPI Doc
|
||||||
|
- Speakeasy CLI 1.405.8 (2.429.0) https://github.com/speakeasy-api/speakeasy
|
||||||
|
### Generated
|
||||||
|
- [csharp v0.9.0] .
|
||||||
|
### Releases
|
||||||
|
- [NuGet v0.9.0] https://www.nuget.org/packages/LukeHagar.PlexAPI.SDK/0.9.0 - .
|
||||||
|
|
||||||
|
## 2024-10-02 10:45:12
|
||||||
|
### Changes
|
||||||
|
Based on:
|
||||||
|
- OpenAPI Doc
|
||||||
|
- Speakeasy CLI 1.405.8 (2.429.0) https://github.com/speakeasy-api/speakeasy
|
||||||
|
### Generated
|
||||||
|
- [csharp v0.9.1] .
|
||||||
|
### Releases
|
||||||
|
- [NuGet v0.9.1] https://www.nuget.org/packages/LukeHagar.PlexAPI.SDK/0.9.1 - .
|
||||||
|
|
||||||
|
## 2024-10-02 11:09:36
|
||||||
|
### Changes
|
||||||
|
Based on:
|
||||||
|
- OpenAPI Doc
|
||||||
|
- Speakeasy CLI 1.405.8 (2.429.0) https://github.com/speakeasy-api/speakeasy
|
||||||
|
### Generated
|
||||||
|
- [csharp v0.9.2] .
|
||||||
|
### Releases
|
||||||
|
- [NuGet v0.9.2] https://www.nuget.org/packages/LukeHagar.PlexAPI.SDK/0.9.2 - .
|
||||||
10
USAGE.md
10
USAGE.md
@@ -5,11 +5,11 @@ using LukeHagar.PlexAPI.SDK.Models.Components;
|
|||||||
|
|
||||||
var sdk = new PlexAPI(
|
var sdk = new PlexAPI(
|
||||||
accessToken: "<YOUR_API_KEY_HERE>",
|
accessToken: "<YOUR_API_KEY_HERE>",
|
||||||
clientID: "gcgzw5rz2xovp84b4vha3a40",
|
clientID: "3381b62b-9ab7-4e37-827b-203e9809eb58",
|
||||||
clientName: "Plex Web",
|
clientName: "Plex for Roku",
|
||||||
clientVersion: "4.133.0",
|
clientVersion: "2.4.1",
|
||||||
clientPlatform: "Chrome",
|
platform: "Roku",
|
||||||
deviceName: "Linux"
|
deviceNickname: "Roku 3"
|
||||||
);
|
);
|
||||||
|
|
||||||
var res = await sdk.Server.GetServerCapabilitiesAsync();
|
var res = await sdk.Server.GetServerCapabilitiesAsync();
|
||||||
|
|||||||
786
codeSamples.yaml
786
codeSamples.yaml
File diff suppressed because it is too large
Load Diff
11
docs/Models/Errors/GetSearchAllLibrariesBadRequest.md
Normal file
11
docs/Models/Errors/GetSearchAllLibrariesBadRequest.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetSearchAllLibrariesBadRequest
|
||||||
|
|
||||||
|
Bad Request - A parameter was not specified, or was specified incorrectly.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- |
|
||||||
|
| `Errors` | List<[GetSearchAllLibrariesErrors](../../Models/Errors/GetSearchAllLibrariesErrors.md)> | :heavy_minus_sign: | N/A |
|
||||||
|
| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
10
docs/Models/Errors/GetSearchAllLibrariesErrors.md
Normal file
10
docs/Models/Errors/GetSearchAllLibrariesErrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetSearchAllLibrariesErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||||
|
| `Code` | *int* | :heavy_minus_sign: | N/A | 1000 |
|
||||||
|
| `Message` | *string* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||||
|
| `Status` | *int* | :heavy_minus_sign: | N/A | 400 |
|
||||||
10
docs/Models/Errors/GetSearchAllLibrariesLibraryErrors.md
Normal file
10
docs/Models/Errors/GetSearchAllLibrariesLibraryErrors.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# GetSearchAllLibrariesLibraryErrors
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||||
|
| `Code` | *int* | :heavy_minus_sign: | N/A | 1001 |
|
||||||
|
| `Message` | *string* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||||
|
| `Status` | *int* | :heavy_minus_sign: | N/A | 401 |
|
||||||
11
docs/Models/Errors/GetSearchAllLibrariesUnauthorized.md
Normal file
11
docs/Models/Errors/GetSearchAllLibrariesUnauthorized.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# GetSearchAllLibrariesUnauthorized
|
||||||
|
|
||||||
|
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description |
|
||||||
|
| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- |
|
||||||
|
| `Errors` | List<[GetSearchAllLibrariesLibraryErrors](../../Models/Errors/GetSearchAllLibrariesLibraryErrors.md)> | :heavy_minus_sign: | N/A |
|
||||||
|
| `RawResponse` | [HttpResponseMessage](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpresponsemessage?view=net-5.0) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||||
@@ -1,102 +0,0 @@
|
|||||||
# Features
|
|
||||||
|
|
||||||
|
|
||||||
## Values
|
|
||||||
|
|
||||||
| Name | Value |
|
|
||||||
| --------------------------------------- | --------------------------------------- |
|
|
||||||
| `AndroidDolbyVision` | Android - Dolby Vision |
|
|
||||||
| `AndroidPiP` | Android - PiP |
|
|
||||||
| `CUSunset` | CU Sunset |
|
|
||||||
| `HRKEnableEUR` | HRK_enable_EUR |
|
|
||||||
| `TREBLEShowFeatures` | TREBLE-show-features |
|
|
||||||
| `AdCountdownTimer` | ad-countdown-timer |
|
|
||||||
| `AdaptiveBitrate` | adaptive_bitrate |
|
|
||||||
| `AlbumTypes` | album-types |
|
|
||||||
| `AllowDvr` | allow_dvr |
|
|
||||||
| `AmazonLoopDebug` | amazon-loop-debug |
|
|
||||||
| `AvodAdAnalysis` | avod-ad-analysis |
|
|
||||||
| `AvodNewMedia` | avod-new-media |
|
|
||||||
| `BlacklistGetSignin` | blacklist_get_signin |
|
|
||||||
| `BoostVoices` | boost-voices |
|
|
||||||
| `CameraUpload` | camera_upload |
|
|
||||||
| `ClientRadioStations` | client-radio-stations |
|
|
||||||
| `CloudflareTurnstileRequired` | cloudflare-turnstile-required |
|
|
||||||
| `Cloudsync` | cloudsync |
|
|
||||||
| `Collections` | collections |
|
|
||||||
| `CommentsAndRepliesPushNotifications` | comments_and_replies_push_notifications |
|
|
||||||
| `CommunityAccessPlexTv` | community_access_plex_tv |
|
|
||||||
| `CompanionsSonos` | companions_sonos |
|
|
||||||
| `ContentFilter` | content_filter |
|
|
||||||
| `CustomHomeRemoval` | custom-home-removal |
|
|
||||||
| `DisableHomeUserFriendships` | disable_home_user_friendships |
|
|
||||||
| `DisableSharingFriendships` | disable_sharing_friendships |
|
|
||||||
| `DownloadsGating` | downloads-gating |
|
|
||||||
| `DrmSupport` | drm_support |
|
|
||||||
| `Dvr` | dvr |
|
|
||||||
| `DvrBlockUnsupportedCountries` | dvr-block-unsupported-countries |
|
|
||||||
| `EpgRecentChannels` | epg-recent-channels |
|
|
||||||
| `ExcludeRestrictions` | exclude restrictions |
|
|
||||||
| `FederatedAuth` | federated-auth |
|
|
||||||
| `FriendRequestPushNotifications` | friend_request_push_notifications |
|
|
||||||
| `GrandfatherSync` | grandfather-sync |
|
|
||||||
| `GuidedUpgrade` | guided-upgrade |
|
|
||||||
| `HardwareTranscoding` | hardware_transcoding |
|
|
||||||
| `Home` | home |
|
|
||||||
| `Hwtranscode` | hwtranscode |
|
|
||||||
| `ImaggaV2` | imagga-v2 |
|
|
||||||
| `IncreasePasswordComplexity` | increase-password-complexity |
|
|
||||||
| `Ios14PrivacyBanner` | ios14-privacy-banner |
|
|
||||||
| `IterableNotificationTokens` | iterable-notification-tokens |
|
|
||||||
| `ItemClusters` | item_clusters |
|
|
||||||
| `KeepPaymentMethod` | keep-payment-method |
|
|
||||||
| `KevinBacon` | kevin-bacon |
|
|
||||||
| `KoreaConsent` | korea-consent |
|
|
||||||
| `LeIsrgRootX1` | le_isrg_root_x1 |
|
|
||||||
| `LetsEncrypt` | lets_encrypt |
|
|
||||||
| `LightningDvrPivot` | lightning-dvr-pivot |
|
|
||||||
| `LiveTvSupportIncompleteSegments` | live-tv-support-incomplete-segments |
|
|
||||||
| `Livetv` | livetv |
|
|
||||||
| `Lyrics` | lyrics |
|
|
||||||
| `MetadataSearch` | metadata_search |
|
|
||||||
| `MusicAnalysis` | music-analysis |
|
|
||||||
| `MusicVideos` | music_videos |
|
|
||||||
| `NewPlexPassPrices` | new_plex_pass_prices |
|
|
||||||
| `NewsProviderSunsetModal` | news-provider-sunset-modal |
|
|
||||||
| `Nominatim` | nominatim |
|
|
||||||
| `Pass` | pass |
|
|
||||||
| `PhotosFavorites` | photos-favorites |
|
|
||||||
| `PhotosMetadataEdition` | photos-metadata-edition |
|
|
||||||
| `PhotosV6Edit` | photosV6-edit |
|
|
||||||
| `PhotosV6TvAlbums` | photosV6-tv-albums |
|
|
||||||
| `PmsHealth` | pms_health |
|
|
||||||
| `PremiumDashboard` | premium-dashboard |
|
|
||||||
| `PremiumMusicMetadata` | premium_music_metadata |
|
|
||||||
| `Radio` | radio |
|
|
||||||
| `RateLimitClientToken` | rate-limit-client-token |
|
|
||||||
| `ScrobblingServicePlexTv` | scrobbling-service-plex-tv |
|
|
||||||
| `SessionBandwidthRestrictions` | session_bandwidth_restrictions |
|
|
||||||
| `SessionKick` | session_kick |
|
|
||||||
| `SharedServerNotification` | shared_server_notification |
|
|
||||||
| `SharedSourceNotification` | shared_source_notification |
|
|
||||||
| `SigninNotification` | signin_notification |
|
|
||||||
| `SigninWithApple` | signin_with_apple |
|
|
||||||
| `SilenceRemoval` | silence-removal |
|
|
||||||
| `SleepTimer` | sleep-timer |
|
|
||||||
| `SpringServeAdProvider` | spring_serve_ad_provider |
|
|
||||||
| `Sync` | sync |
|
|
||||||
| `SweetFades` | sweet-fades |
|
|
||||||
| `TranscoderCache` | transcoder_cache |
|
|
||||||
| `Trailers` | trailers |
|
|
||||||
| `TunerSharing` | tuner-sharing |
|
|
||||||
| `TwoFactorAuthentication` | two-factor-authentication |
|
|
||||||
| `Unsupportedtuners` | unsupportedtuners |
|
|
||||||
| `Upgrade3ds2` | upgrade-3ds2 |
|
|
||||||
| `Visualizers` | visualizers |
|
|
||||||
| `VodSchema` | vod-schema |
|
|
||||||
| `VodCloudflare` | vod_cloudflare |
|
|
||||||
| `VolumeLeveling` | volume-leveling |
|
|
||||||
| `WatchTogetherInvite` | watch-together-invite |
|
|
||||||
| `WatchlistRss` | watchlist-rss |
|
|
||||||
| `WebServerDashboard` | web_server_dashboard |
|
|
||||||
| `Webhooks` | webhooks |
|
|
||||||
@@ -3,26 +3,26 @@
|
|||||||
|
|
||||||
## Fields
|
## Fields
|
||||||
|
|
||||||
| Field | Type | Required | Description | Example |
|
| Field | Type | Required | Description | Example |
|
||||||
| --------------------------------------------------- | --------------------------------------------------- | --------------------------------------------------- | --------------------------------------------------- | --------------------------------------------------- |
|
| --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- |
|
||||||
| `AllowSync` | *bool* | :heavy_check_mark: | N/A | true |
|
| `AllowSync` | *bool* | :heavy_check_mark: | N/A | true |
|
||||||
| `Art` | *string* | :heavy_check_mark: | N/A | /:/resources/movie-fanart.jpg |
|
| `Art` | *string* | :heavy_check_mark: | N/A | /:/resources/movie-fanart.jpg |
|
||||||
| `Composite` | *string* | :heavy_check_mark: | N/A | /library/sections/1/composite/1705615584 |
|
| `Composite` | *string* | :heavy_check_mark: | N/A | /library/sections/1/composite/1705615584 |
|
||||||
| `Filters` | *bool* | :heavy_check_mark: | N/A | true |
|
| `Filters` | *bool* | :heavy_check_mark: | N/A | true |
|
||||||
| `Refreshing` | *bool* | :heavy_check_mark: | N/A | false |
|
| `Refreshing` | *bool* | :heavy_check_mark: | N/A | false |
|
||||||
| `Thumb` | *string* | :heavy_check_mark: | N/A | /:/resources/movie.png |
|
| `Thumb` | *string* | :heavy_check_mark: | N/A | /:/resources/movie.png |
|
||||||
| `Key` | *string* | :heavy_check_mark: | N/A | 1 |
|
| `Key` | *string* | :heavy_check_mark: | N/A | 1 |
|
||||||
| `Type` | *string* | :heavy_check_mark: | N/A | movie |
|
| `Type` | *string* | :heavy_check_mark: | N/A | movie |
|
||||||
| `Title` | *string* | :heavy_check_mark: | N/A | Movies |
|
| `Title` | *string* | :heavy_check_mark: | N/A | Movies |
|
||||||
| `Agent` | *string* | :heavy_check_mark: | N/A | tv.plex.agents.movie |
|
| `Agent` | *string* | :heavy_check_mark: | N/A | tv.plex.agents.movie |
|
||||||
| `Scanner` | *string* | :heavy_check_mark: | N/A | Plex Movie |
|
| `Scanner` | *string* | :heavy_check_mark: | N/A | Plex Movie |
|
||||||
| `Language` | *string* | :heavy_check_mark: | N/A | en-US |
|
| `Language` | *string* | :heavy_check_mark: | N/A | en-US |
|
||||||
| `Uuid` | *string* | :heavy_check_mark: | N/A | 322a231a-b7f7-49f5-920f-14c61199cd30 |
|
| `Uuid` | *string* | :heavy_check_mark: | N/A | 322a231a-b7f7-49f5-920f-14c61199cd30 |
|
||||||
| `UpdatedAt` | *long* | :heavy_check_mark: | Unix epoch datetime in seconds | 1556281940 |
|
| `UpdatedAt` | *long* | :heavy_check_mark: | Unix epoch datetime in seconds | 1556281940 |
|
||||||
| `CreatedAt` | *long* | :heavy_check_mark: | Unix epoch datetime in seconds | 1556281940 |
|
| `CreatedAt` | *long* | :heavy_check_mark: | Unix epoch datetime in seconds | 1556281940 |
|
||||||
| `ScannedAt` | *long* | :heavy_check_mark: | Unix epoch datetime in seconds | 1556281940 |
|
| `ScannedAt` | *long* | :heavy_check_mark: | Unix epoch datetime in seconds | 1556281940 |
|
||||||
| `Content` | *bool* | :heavy_check_mark: | N/A | true |
|
| `Content` | *bool* | :heavy_check_mark: | N/A | true |
|
||||||
| `Directory` | *bool* | :heavy_check_mark: | N/A | true |
|
| `Directory` | *bool* | :heavy_check_mark: | N/A | true |
|
||||||
| `ContentChangedAt` | *long* | :heavy_check_mark: | Unix epoch datetime in seconds | 1556281940 |
|
| `ContentChangedAt` | *long* | :heavy_check_mark: | Unix epoch datetime in seconds | 1556281940 |
|
||||||
| `Hidden` | *int* | :heavy_check_mark: | N/A | 0 |
|
| `Hidden` | *int* | :heavy_check_mark: | N/A | 0 |
|
||||||
| `Location` | List<[Location](../../Models/Requests/Location.md)> | :heavy_check_mark: | N/A | |
|
| `Location` | List<[GetAllLibrariesLocation](../../Models/Requests/GetAllLibrariesLocation.md)> | :heavy_check_mark: | N/A | |
|
||||||
9
docs/Models/Requests/GetAllLibrariesLocation.md
Normal file
9
docs/Models/Requests/GetAllLibrariesLocation.md
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
# GetAllLibrariesLocation
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ |
|
||||||
|
| `Id` | *int* | :heavy_check_mark: | N/A | 1 |
|
||||||
|
| `Path` | *string* | :heavy_check_mark: | N/A | /movies |
|
||||||
@@ -10,4 +10,4 @@
|
|||||||
| `Height` | *long* | :heavy_check_mark: | N/A | 396 |
|
| `Height` | *long* | :heavy_check_mark: | N/A | 396 |
|
||||||
| `MinSize` | *long* | :heavy_check_mark: | N/A | 1 |
|
| `MinSize` | *long* | :heavy_check_mark: | N/A | 1 |
|
||||||
| `Upscale` | *long* | :heavy_check_mark: | N/A | 1 |
|
| `Upscale` | *long* | :heavy_check_mark: | N/A | 1 |
|
||||||
| `XPlexToken` | *string* | :heavy_check_mark: | Plex Authentication Token | CV5xoxjTpFKUzBTShsaf |
|
| `XPlexToken` | *string* | :heavy_check_mark: | An authentication token, obtained from plex.tv | CV5xoxjTpFKUzBTShsaf |
|
||||||
8
docs/Models/Requests/GetLibraryItemsLocation.md
Normal file
8
docs/Models/Requests/GetLibraryItemsLocation.md
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
# GetLibraryItemsLocation
|
||||||
|
|
||||||
|
|
||||||
|
## Fields
|
||||||
|
|
||||||
|
| Field | Type | Required | Description | Example |
|
||||||
|
| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ |
|
||||||
|
| `Path` | *string* | :heavy_minus_sign: | N/A | /TV Shows/House |
|
||||||
@@ -6,19 +6,19 @@
|
|||||||
| Field | Type | Required | Description | Example |
|
| Field | Type | Required | Description | Example |
|
||||||
| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- |
|
| ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- |
|
||||||
| `Id` | *int* | :heavy_check_mark: | N/A | 119534 |
|
| `Id` | *int* | :heavy_check_mark: | N/A | 119534 |
|
||||||
| `Duration` | *int* | :heavy_check_mark: | N/A | 11558112 |
|
| `Duration` | *int* | :heavy_minus_sign: | N/A | 11558112 |
|
||||||
| `Bitrate` | *int* | :heavy_check_mark: | N/A | 25025 |
|
| `Bitrate` | *int* | :heavy_minus_sign: | N/A | 25025 |
|
||||||
| `Width` | *int* | :heavy_check_mark: | N/A | 3840 |
|
| `Width` | *int* | :heavy_minus_sign: | N/A | 3840 |
|
||||||
| `Height` | *int* | :heavy_check_mark: | N/A | 2072 |
|
| `Height` | *int* | :heavy_minus_sign: | N/A | 2072 |
|
||||||
| `AspectRatio` | *double* | :heavy_check_mark: | N/A | 1.85 |
|
| `AspectRatio` | *double* | :heavy_minus_sign: | N/A | 1.85 |
|
||||||
| `AudioProfile` | *string* | :heavy_minus_sign: | N/A | dts |
|
| `AudioProfile` | *string* | :heavy_minus_sign: | N/A | dts |
|
||||||
| `AudioChannels` | *int* | :heavy_check_mark: | N/A | 6 |
|
| `AudioChannels` | *int* | :heavy_minus_sign: | N/A | 6 |
|
||||||
| `AudioCodec` | *string* | :heavy_check_mark: | N/A | eac3 |
|
| `AudioCodec` | *string* | :heavy_minus_sign: | N/A | eac3 |
|
||||||
| `VideoCodec` | *string* | :heavy_check_mark: | N/A | hevc |
|
| `VideoCodec` | *string* | :heavy_minus_sign: | N/A | hevc |
|
||||||
| `VideoResolution` | *string* | :heavy_check_mark: | N/A | 4k |
|
| `VideoResolution` | *string* | :heavy_minus_sign: | N/A | 4k |
|
||||||
| `Container` | *string* | :heavy_check_mark: | N/A | mkv |
|
| `Container` | *string* | :heavy_check_mark: | N/A | mkv |
|
||||||
| `VideoFrameRate` | *string* | :heavy_check_mark: | N/A | 24p |
|
| `VideoFrameRate` | *string* | :heavy_minus_sign: | N/A | 24p |
|
||||||
| `VideoProfile` | *string* | :heavy_check_mark: | N/A | main 10 |
|
| `VideoProfile` | *string* | :heavy_minus_sign: | N/A | main 10 |
|
||||||
| `HasVoiceActivity` | *bool* | :heavy_minus_sign: | N/A | false |
|
| `HasVoiceActivity` | *bool* | :heavy_minus_sign: | N/A | false |
|
||||||
| `OptimizedForStreaming` | [GetLibraryItemsOptimizedForStreaming](../../Models/Requests/GetLibraryItemsOptimizedForStreaming.md) | :heavy_minus_sign: | N/A | 1 |
|
| `OptimizedForStreaming` | [GetLibraryItemsOptimizedForStreaming](../../Models/Requests/GetLibraryItemsOptimizedForStreaming.md) | :heavy_minus_sign: | N/A | 1 |
|
||||||
| `Has64bitOffsets` | *bool* | :heavy_minus_sign: | N/A | false |
|
| `Has64bitOffsets` | *bool* | :heavy_minus_sign: | N/A | false |
|
||||||
|
|||||||
@@ -52,6 +52,7 @@
|
|||||||
| `Writer` | List<[GetLibraryItemsWriter](../../Models/Requests/GetLibraryItemsWriter.md)> | :heavy_minus_sign: | N/A | |
|
| `Writer` | List<[GetLibraryItemsWriter](../../Models/Requests/GetLibraryItemsWriter.md)> | :heavy_minus_sign: | N/A | |
|
||||||
| `Collection` | List<[GetLibraryItemsCollection](../../Models/Requests/GetLibraryItemsCollection.md)> | :heavy_minus_sign: | N/A | |
|
| `Collection` | List<[GetLibraryItemsCollection](../../Models/Requests/GetLibraryItemsCollection.md)> | :heavy_minus_sign: | N/A | |
|
||||||
| `Role` | List<[GetLibraryItemsRole](../../Models/Requests/GetLibraryItemsRole.md)> | :heavy_minus_sign: | N/A | |
|
| `Role` | List<[GetLibraryItemsRole](../../Models/Requests/GetLibraryItemsRole.md)> | :heavy_minus_sign: | N/A | |
|
||||||
|
| `Location` | List<[GetLibraryItemsLocation](../../Models/Requests/GetLibraryItemsLocation.md)> | :heavy_minus_sign: | N/A | |
|
||||||
| `MediaGuid` | List<[GetLibraryItemsMediaGuid](../../Models/Requests/GetLibraryItemsMediaGuid.md)> | :heavy_minus_sign: | The Guid object is only included in the response if the `includeGuids` parameter is set to `1`.<br/> | |
|
| `MediaGuid` | List<[GetLibraryItemsMediaGuid](../../Models/Requests/GetLibraryItemsMediaGuid.md)> | :heavy_minus_sign: | The Guid object is only included in the response if the `includeGuids` parameter is set to `1`.<br/> | |
|
||||||
| `UltraBlurColors` | [GetLibraryItemsUltraBlurColors](../../Models/Requests/GetLibraryItemsUltraBlurColors.md) | :heavy_minus_sign: | N/A | |
|
| `UltraBlurColors` | [GetLibraryItemsUltraBlurColors](../../Models/Requests/GetLibraryItemsUltraBlurColors.md) | :heavy_minus_sign: | N/A | |
|
||||||
| `MetaDataRating` | List<[GetLibraryItemsMetaDataRating](../../Models/Requests/GetLibraryItemsMetaDataRating.md)> | :heavy_minus_sign: | N/A | |
|
| `MetaDataRating` | List<[GetLibraryItemsMetaDataRating](../../Models/Requests/GetLibraryItemsMetaDataRating.md)> | :heavy_minus_sign: | N/A | |
|
||||||
|
|||||||
@@ -7,14 +7,14 @@
|
|||||||
| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- |
|
| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- |
|
||||||
| `Id` | *int* | :heavy_check_mark: | N/A | 119542 |
|
| `Id` | *int* | :heavy_check_mark: | N/A | 119542 |
|
||||||
| `Key` | *string* | :heavy_check_mark: | N/A | /library/parts/119542/1680457526/file.mkv |
|
| `Key` | *string* | :heavy_check_mark: | N/A | /library/parts/119542/1680457526/file.mkv |
|
||||||
| `Duration` | *int* | :heavy_check_mark: | N/A | 11558112 |
|
| `Duration` | *int* | :heavy_minus_sign: | N/A | 11558112 |
|
||||||
| `File` | *string* | :heavy_check_mark: | N/A | /movies/Avatar The Way of Water (2022)/Avatar.The.Way.of.Water.2022.2160p.WEB-DL.DDP5.1.Atmos.DV.HDR10.HEVC-CMRG.mkv |
|
| `File` | *string* | :heavy_check_mark: | N/A | /movies/Avatar The Way of Water (2022)/Avatar.The.Way.of.Water.2022.2160p.WEB-DL.DDP5.1.Atmos.DV.HDR10.HEVC-CMRG.mkv |
|
||||||
| `Size` | *long* | :heavy_check_mark: | N/A | 36158371307 |
|
| `Size` | *long* | :heavy_check_mark: | N/A | 36158371307 |
|
||||||
| `Container` | *string* | :heavy_check_mark: | The container format of the media file.<br/> | mkv |
|
| `Container` | *string* | :heavy_check_mark: | The container format of the media file.<br/> | mkv |
|
||||||
| `AudioProfile` | *string* | :heavy_minus_sign: | N/A | dts |
|
| `AudioProfile` | *string* | :heavy_minus_sign: | N/A | dts |
|
||||||
| `Has64bitOffsets` | *bool* | :heavy_minus_sign: | N/A | false |
|
| `Has64bitOffsets` | *bool* | :heavy_minus_sign: | N/A | false |
|
||||||
| `OptimizedForStreaming` | *bool* | :heavy_minus_sign: | N/A | false |
|
| `OptimizedForStreaming` | *bool* | :heavy_minus_sign: | N/A | false |
|
||||||
| `VideoProfile` | *string* | :heavy_check_mark: | N/A | main 10 |
|
| `VideoProfile` | *string* | :heavy_minus_sign: | N/A | main 10 |
|
||||||
| `Indexes` | *string* | :heavy_minus_sign: | N/A | sd |
|
| `Indexes` | *string* | :heavy_minus_sign: | N/A | sd |
|
||||||
| `HasThumbnail` | [GetLibraryItemsHasThumbnail](../../Models/Requests/GetLibraryItemsHasThumbnail.md) | :heavy_minus_sign: | N/A | 1 |
|
| `HasThumbnail` | [GetLibraryItemsHasThumbnail](../../Models/Requests/GetLibraryItemsHasThumbnail.md) | :heavy_minus_sign: | N/A | 1 |
|
||||||
| `Stream` | List<[GetLibraryItemsStream](../../Models/Requests/GetLibraryItemsStream.md)> | :heavy_minus_sign: | N/A | |
|
| `Stream` | List<[GetLibraryItemsStream](../../Models/Requests/GetLibraryItemsStream.md)> | :heavy_minus_sign: | N/A | |
|
||||||
@@ -5,8 +5,8 @@
|
|||||||
|
|
||||||
| Field | Type | Required | Description | Example |
|
| Field | Type | Required | Description | Example |
|
||||||
| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
| `SectionKey` | *int* | :heavy_check_mark: | The unique key of the Plex library. <br/>Note: This is unique in the context of the Plex server.<br/> | 9518 |
|
|
||||||
| `Tag` | [Tag](../../Models/Requests/Tag.md) | :heavy_check_mark: | A key representing a specific tag within the section. | |
|
| `Tag` | [Tag](../../Models/Requests/Tag.md) | :heavy_check_mark: | A key representing a specific tag within the section. | |
|
||||||
|
| `SectionKey` | *int* | :heavy_check_mark: | The unique key of the Plex library. <br/>Note: This is unique in the context of the Plex server.<br/> | 9518 |
|
||||||
| `IncludeGuids` | [IncludeGuids](../../Models/Requests/IncludeGuids.md) | :heavy_minus_sign: | Adds the Guids object to the response<br/> | 1 |
|
| `IncludeGuids` | [IncludeGuids](../../Models/Requests/IncludeGuids.md) | :heavy_minus_sign: | Adds the Guids object to the response<br/> | 1 |
|
||||||
| `Type` | [GetLibraryItemsQueryParamType](../../Models/Requests/GetLibraryItemsQueryParamType.md) | :heavy_minus_sign: | The type of media to retrieve.<br/>1 = movie<br/>2 = show<br/>3 = season<br/>4 = episode<br/>E.g. A movie library will not return anything with type 3 as there are no seasons for movie libraries<br/> | 2 |
|
| `Type` | [GetLibraryItemsQueryParamType](../../Models/Requests/GetLibraryItemsQueryParamType.md) | :heavy_minus_sign: | The type of media to retrieve.<br/>1 = movie<br/>2 = show<br/>3 = season<br/>4 = episode<br/>E.g. A movie library will not return anything with type 3 as there are no seasons for movie libraries<br/> | 2 |
|
||||||
| `IncludeMeta` | [GetLibraryItemsQueryParamIncludeMeta](../../Models/Requests/GetLibraryItemsQueryParamIncludeMeta.md) | :heavy_minus_sign: | Adds the Meta object to the response<br/> | 1 |
|
| `IncludeMeta` | [GetLibraryItemsQueryParamIncludeMeta](../../Models/Requests/GetLibraryItemsQueryParamIncludeMeta.md) | :heavy_minus_sign: | Adds the Meta object to the response<br/> | 1 |
|
||||||
|
|||||||
@@ -3,6 +3,6 @@
|
|||||||
|
|
||||||
## Fields
|
## Fields
|
||||||
|
|
||||||
| Field | Type | Required | Description | Example |
|
| Field | Type | Required | Description | Example |
|
||||||
| ------------------------- | ------------------------- | ------------------------- | ------------------------- | ------------------------- |
|
| ---------------------------------------------- | ---------------------------------------------- | ---------------------------------------------- | ---------------------------------------------- | ---------------------------------------------- |
|
||||||
| `XPlexToken` | *string* | :heavy_check_mark: | Plex Authentication Token | CV5xoxjTpFKUzBTShsaf |
|
| `XPlexToken` | *string* | :heavy_check_mark: | An authentication token, obtained from plex.tv | CV5xoxjTpFKUzBTShsaf |
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user