mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-25 01:02:05 +00:00
New: Support for SSL connections to Plex Media Server
This commit is contained in:
parent
eb8af60029
commit
860d7ed079
3 changed files with 7 additions and 8 deletions
|
@ -160,7 +160,9 @@ private RestRequest GetMyPlexRequest(string resource, Method method)
|
|||
|
||||
private RestClient GetPlexServerClient(PlexServerSettings settings)
|
||||
{
|
||||
return RestClientFactory.BuildClient(String.Format("http://{0}:{1}", settings.Host, settings.Port));
|
||||
var protocol = settings.UseSsl ? "https" : "http";
|
||||
|
||||
return RestClientFactory.BuildClient(String.Format("{0}://{1}:{2}", protocol, settings.Host, settings.Port));
|
||||
}
|
||||
|
||||
private RestRequest GetPlexServerRequest(string resource, Method method, PlexServerSettings settings)
|
||||
|
|
|
@ -144,13 +144,7 @@ public ValidationFailure Test(PlexServerSettings settings)
|
|||
{
|
||||
try
|
||||
{
|
||||
var sections = GetSections(new PlexServerSettings
|
||||
{
|
||||
Host = settings.Host,
|
||||
Port = settings.Port,
|
||||
Username = settings.Username,
|
||||
Password = settings.Password
|
||||
});
|
||||
var sections = GetSections(settings);
|
||||
|
||||
if (sections.Empty())
|
||||
{
|
||||
|
|
|
@ -40,6 +40,9 @@ public PlexServerSettings()
|
|||
[FieldDefinition(4, Label = "Update Library", Type = FieldType.Checkbox)]
|
||||
public Boolean UpdateLibrary { get; set; }
|
||||
|
||||
[FieldDefinition(5, Label = "Use SSL", Type = FieldType.Checkbox, HelpText = "Connect to Plex over HTTPS instead of HTTP")]
|
||||
public Boolean UseSsl { get; set; }
|
||||
|
||||
public bool IsValid
|
||||
{
|
||||
get
|
||||
|
|
Loading…
Reference in a new issue