From 37aa6b938d01d72cba6d4c0ffa5452bb87006d54 Mon Sep 17 00:00:00 2001 From: tidusjar Date: Fri, 4 Mar 2016 13:19:17 +0000 Subject: [PATCH] Some styling --- PlexRequests.Api/ApiRequest.cs | 18 ++++++--- PlexRequests.Api/Models/PlexError.cs | 38 +++++++++++++++++++ PlexRequests.Api/PlexRequests.Api.csproj | 1 + PlexRequests.UI/Content/custom.css | 27 ++++++++----- PlexRequests.UI/Modules/AdminModule.cs | 17 ++++++++- PlexRequests.UI/Program.cs | 2 +- .../Views/Admin/Authentication.cshtml | 22 +++++------ .../Views/Admin/CouchPotato.cshtml | 6 +-- PlexRequests.UI/Views/Admin/Settings.cshtml | 8 ++-- 9 files changed, 102 insertions(+), 37 deletions(-) create mode 100644 PlexRequests.Api/Models/PlexError.cs diff --git a/PlexRequests.Api/ApiRequest.cs b/PlexRequests.Api/ApiRequest.cs index f5f573066..e1a67e852 100644 --- a/PlexRequests.Api/ApiRequest.cs +++ b/PlexRequests.Api/ApiRequest.cs @@ -39,7 +39,7 @@ namespace PlexRequests.Api { public class ApiRequest : IApiRequest { - + /// /// An API request handler /// @@ -54,7 +54,7 @@ namespace PlexRequests.Api var response = client.Execute(request); if (response.ErrorException != null) - { + { var message = "Error retrieving response. Check inner details for more info."; throw new ApplicationException(message, response.ErrorException); } @@ -75,7 +75,8 @@ namespace PlexRequests.Api throw new ApplicationException(message, response.ErrorException); } - return Deserialize(response.Content); + var result = Deserialize(response.Content); + return result; } public T Deserialize(string input) @@ -83,8 +84,15 @@ namespace PlexRequests.Api { var ser = new XmlSerializer(typeof(T)); - using (var sr = new StringReader(input)) - return (T)ser.Deserialize(sr); + try + { + using (var sr = new StringReader(input)) + return (T)ser.Deserialize(sr); + } + catch (InvalidOperationException) + { + return null; + } } } } diff --git a/PlexRequests.Api/Models/PlexError.cs b/PlexRequests.Api/Models/PlexError.cs new file mode 100644 index 000000000..7dc696fc9 --- /dev/null +++ b/PlexRequests.Api/Models/PlexError.cs @@ -0,0 +1,38 @@ +#region Copyright +// /************************************************************************ +// Copyright (c) 2016 Jamie Rees +// File: PlexError.cs +// Created By: Jamie Rees +// +// Permission is hereby granted, free of charge, to any person obtaining +// a copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to +// permit persons to whom the Software is furnished to do so, subject to +// the following conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +// ************************************************************************/ +#endregion +using System.Xml.Serialization; + +namespace PlexRequests.Api.Models +{ + [XmlRoot(ElementName = "errors")] + public class PlexError + { + [XmlElement(ElementName = "error")] + public string Error { get; set; } + + } +} diff --git a/PlexRequests.Api/PlexRequests.Api.csproj b/PlexRequests.Api/PlexRequests.Api.csproj index 7c3aaae4d..911371a69 100644 --- a/PlexRequests.Api/PlexRequests.Api.csproj +++ b/PlexRequests.Api/PlexRequests.Api.csproj @@ -62,6 +62,7 @@ + diff --git a/PlexRequests.UI/Content/custom.css b/PlexRequests.UI/Content/custom.css index 66b9c0ba4..e8f009e7f 100644 --- a/PlexRequests.UI/Content/custom.css +++ b/PlexRequests.UI/Content/custom.css @@ -1,11 +1,20 @@ @media (min-width: 768px ) { - .row { - position: relative; - } + .row { + position: relative; + } - .bottom-align-text { - position: absolute; - bottom: 0; - right: 0; - } -} \ No newline at end of file + .bottom-align-text { + position: absolute; + bottom: 0; + right: 0; + } +} + +.multiSelect { + background-color: #4e5d6c; +} + +.form-control-custom { + background-color: #4e5d6c !important; + color: white !important; +} diff --git a/PlexRequests.UI/Modules/AdminModule.cs b/PlexRequests.UI/Modules/AdminModule.cs index 007fec367..a69c996d0 100644 --- a/PlexRequests.UI/Modules/AdminModule.cs +++ b/PlexRequests.UI/Modules/AdminModule.cs @@ -117,6 +117,12 @@ namespace PlexRequests.UI.Modules var plex = new PlexApi(); var model = plex.GetToken(user.username, user.password); + + if (model.user == null) + { + return Response.AsJson(new { Result = false, Message = "Incorrect username or password!" }); + } + var oldSettings = AuthService.GetSettings(); if (oldSettings != null) { @@ -132,15 +138,22 @@ namespace PlexRequests.UI.Modules AuthService.SaveSettings(newModel); } - return Response.AsJson(new {Result = true, AuthToken = model.user.authentication_token}); + return Response.AsJson(new { Result = true, AuthToken = model.user.authentication_token }); } private Response GetUsers() { var token = AuthService.GetSettings().PlexAuthToken; + if (token == null) + { + return Response.AsJson(string.Empty); + } var api = new PlexApi(); var users = api.GetUsers(token); + if (users == null) + { return Response.AsJson(string.Empty); } + var usernames = users.User.Select(x => x.Username); return Response.AsJson(usernames); //TODO usernames are not populated. } @@ -162,6 +175,6 @@ namespace PlexRequests.UI.Modules return Context.GetRedirect("~/admin/couchpotato"); } - + } } \ No newline at end of file diff --git a/PlexRequests.UI/Program.cs b/PlexRequests.UI/Program.cs index 6ebc947a3..48fde4c94 100644 --- a/PlexRequests.UI/Program.cs +++ b/PlexRequests.UI/Program.cs @@ -130,7 +130,7 @@ namespace PlexRequests.UI // Step 5. Activate the configuration LogManager.Configuration = config; } - catch (Exception e) + catch (Exception ) { throw; diff --git a/PlexRequests.UI/Views/Admin/Authentication.cshtml b/PlexRequests.UI/Views/Admin/Authentication.cshtml index 6a97851ee..2ab4930da 100644 --- a/PlexRequests.UI/Views/Admin/Authentication.cshtml +++ b/PlexRequests.UI/Views/Admin/Authentication.cshtml @@ -1,7 +1,7 @@ @Html.Partial("/Admin/_Sidebar")
-
+
Authentication Settings @@ -40,17 +40,17 @@
- +
- +
-
- +
+
@@ -66,20 +66,16 @@

- +
-
-
+
-
-
-
-
+
@@ -137,7 +133,7 @@ dataType: "json", success: function (response) { if (response.length > 1) { - $(response).each(function(user) { + $(response).each(function() { $('#users').append(""); }); } else { diff --git a/PlexRequests.UI/Views/Admin/CouchPotato.cshtml b/PlexRequests.UI/Views/Admin/CouchPotato.cshtml index 82fc522bb..651a87855 100644 --- a/PlexRequests.UI/Views/Admin/CouchPotato.cshtml +++ b/PlexRequests.UI/Views/Admin/CouchPotato.cshtml @@ -34,7 +34,7 @@
- +
@@ -42,7 +42,7 @@
- +
@@ -50,7 +50,7 @@
- +
diff --git a/PlexRequests.UI/Views/Admin/Settings.cshtml b/PlexRequests.UI/Views/Admin/Settings.cshtml index 2f09f59cc..d5f4a1b70 100644 --- a/PlexRequests.UI/Views/Admin/Settings.cshtml +++ b/PlexRequests.UI/Views/Admin/Settings.cshtml @@ -13,14 +13,14 @@ }
- +
Request Plex Settings
- +
You will have to restart after changing the port. @@ -58,9 +58,9 @@
-
+