1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

New: Support for SSL connections to Plex Media Server

This commit is contained in:
Mark McDowall 2015-06-04 14:10:38 -07:00
parent eb8af60029
commit 860d7ed079
3 changed files with 7 additions and 8 deletions

View File

@ -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)

View File

@ -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())
{

View File

@ -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