aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorcglatot <[email protected]>2020-10-08 21:49:37 +0100
committerGitHub <[email protected]>2020-10-08 21:49:37 +0100
commite2d1f7e7e403d504a78dcec2a26fef3d2bf76872 (patch)
tree84562acd5183c9ba78f1860b45a42c677aff6858
parent4cb8e38cb72ddd6e57841ce609a8ddee55b90d4f (diff)
parent084932661ec2e3c3dc330cfa2dfeb27f3a411d68 (diff)
downloadpasta-1.6.0.tar.gz
pasta-1.6.0.zip
Merge pull request #28 from cglatot/https-server-connections1.6.0
Fully support https server connections
-rw-r--r--css/main.css4
-rw-r--r--js/main.js197
2 files changed, 112 insertions, 89 deletions
diff --git a/css/main.css b/css/main.css
index 582e92c..97c5c42 100644
--- a/css/main.css
+++ b/css/main.css
@@ -371,10 +371,6 @@ table, td, tr, th {
animation: successFadeOut 1.75s ease-out;
}
-#serverTableContainer {
- display: none;
-}
-
/*==========================
MEDIA QUERIES
==========================*/
diff --git a/js/main.js b/js/main.js
index 813ba50..fc94dec 100644
--- a/js/main.js
+++ b/js/main.js
@@ -1,7 +1,7 @@
// Variables for the Authorised Devices card
var clientIdentifier; // UID for the device being used
var plexProduct = "PASTA"; // X-Plex-Product - Application name
-var pastaVersion = "1.5.2"; // X-Plex-Version - Application version
+var pastaVersion = "1.6.0"; // X-Plex-Version - Application version
var pastaPlatform; // X-Plex-Platform - Web Browser
var pastaPlatformVersion; // X-Plex-Platform-Version - Web Browser version
var deviceInfo; // X-Plex-Device - Operation system?
@@ -105,6 +105,61 @@ $(document).ready(() => {
}
});
+function validateEnableConnectBtn(context) {
+ // Apply validation highlighting to URL field
+ if (context == 'plexUrl') {
+ if ($('#plexUrl').val() != "") {
+ $('#plexUrl').removeClass("is-invalid").addClass("is-valid");
+ }
+ else {
+ $('#plexUrl').removeClass("is-valid").addClass("is-invalid");
+ }
+ }
+ else {
+ // Apply validation highlighting to Plex Token field
+ if ($('#plexToken').val() != "") {
+ $('#plexToken').removeClass("is-invalid").addClass("is-valid");
+ }
+ else {
+ $('#plexToken').removeClass("is-valid").addClass("is-invalid");
+ }
+ }
+
+ // Enable or disable the button, depending on field status
+ if (($('#plexUrl').val() != "") && ($('#plexToken').val() != "")) {
+ $("#btnConnectToPlex").prop("disabled", false);
+ }
+ else {
+ $("#btnConnectToPlex").prop("disabled", true);
+ }
+}
+
+function forgetDetails() {
+ localStorage.removeItem('plexUrl');
+ localStorage.removeItem('plexToken');
+ $('#plexUrl, #plexToken').val('').removeClass('is-valid is-invalid');
+ $('#confirmForget').fadeIn(250).delay(750).fadeOut(1250, () => {
+ $('#forgetDivider, #forgetDetailsSection').hide();
+ });
+}
+
+function forgetPinDetails() {
+ localStorage.removeItem('isPinAuth');
+ localStorage.removeItem('pinAuthToken');
+ localStorage.removeItem('useLocalAddress');
+ window.location.reload();
+}
+
+function hideAlertForever() {
+ $("#insecureWarning").hide();
+ localStorage.showHttpAlert = 'false';
+}
+
+function hideLoginInfoAlertForever() {
+ $("#loginInfoAlert").hide();
+ localStorage.showLoginInfoAlert = 'false';
+}
+
// Checks if the generated token is valid
function checkIfAuthTokenIsValid() {
$.ajax({
@@ -122,22 +177,21 @@ function checkIfAuthTokenIsValid() {
},
"method": "GET",
"success": (data) => {
- console.log(data);
plexToken = localStorage.pinAuthToken;
$('#new-pin-container').hide();
$('#authed-pin-container').show();
$('#loggedInAs').text(data.username);
getServers();
},
- "error": (data, statusText, xhr) => {
- console.log("ERROR L121");
- console.log(data.status);
+ "error": (data) => {
if (data.status == 401) {
// Auth Token has expired
localStorage.removeItem('isPinAuth');
localStorage.removeItem('pinAuthToken');
localStorage.removeItem('useLocalAddress');
$('#new-pin-container').show();
+ } else {
+ console.log("ERROR L121");
}
}
});
@@ -246,43 +300,51 @@ function useLocalAddress (checkbox) {
}
function getServers () {
+ // Choose whether or not to include https connections
+ let includeHttps = 1;
+ if (location.protocol == 'http:') {
+ includeHttps = 0;
+ }
+ // Get the servers for this user
$.ajax({
- "url": `https://plex.tv/pms/servers.xml?X-Plex-Client-Identifier=${clientIdentifier}`,
+ "url": `https://plex.tv/api/v2/resources?includeHttps=${includeHttps}&includeRelay=0`,
"method": "GET",
"headers": {
- "X-Plex-Token": plexToken
+ "X-Plex-Client-Identifier": clientIdentifier,
+ "X-Plex-Token": plexToken,
+ "accept": "application/json"
},
"success": (data) => {
- let servers = $(data).find('Server');
- if (servers.length > 1) {
- displayServers(servers);
+ let servers = data.filter(entry => entry.product == "Plex Media Server");
+ if (servers.length > 0) {
// Add server info to the list
for (let i = 0; i < servers.length; i++) {
- let addressToUse = "";
- // Check whether to use local address or public address
- if ($('#connectViaLocalAddress').prop('checked')) {
- addressToUse = $(servers[i]).attr("localAddresses").split(',')[0];
+ let serverConnections = servers[i].connections;
+
+ // Filter servers based off the local address checkbox
+ if (localStorage.useLocalAddress) {
+ serverConnections = serverConnections.filter(conn => conn.local == true);
+ } else {
+ serverConnections = serverConnections.filter(conn => conn.local == false);
+ }
+
+ // Filter servers based on http / https site loaded
+ if (location.protocol == 'http:') {
+ serverConnections = serverConnections.filter(conn => conn.protocol == "http");
} else {
- addressToUse = $(servers[i]).attr("address");
+ serverConnections = serverConnections.filter(conn => conn.protocol == "https");
}
+
serverList.push({
- name: $(servers[i]).attr("name"),
- accessToken: $(servers[i]).attr("accessToken"),
- address: addressToUse,
- port: $(servers[i]).attr("port")
+ name: servers[i].name,
+ accessToken: servers[i].accessToken,
+ connections: serverConnections,
});
}
+ // Populate the servers in the list of servers
+ displayServers(servers);
} else {
- let addressToUse = "";
- // Check whether to use local address or public address
- if ($('#connectViaLocalAddress').prop('checked')) {
- addressToUse = $(servers[0]).attr("localAddresses").split(',')[0];
- } else {
- addressToUse = $(servers[0]).attr("address");
- }
- plexToken = $(servers[0]).attr("accessToken");
- plexUrl = `http://${addressToUse}:${$(servers[0]).attr("port")}`;
- connectToPlex();
+ console.log("ERROR L301: There are no results in the list of servers!");
}
},
"error": (data) => {
@@ -312,14 +374,14 @@ function displayServers(servers) {
for (let i = 0; i < servers.length; i++) {
let rowHTML = `<tr onclick="chooseServer(${i}, this)">
- <td>${$(servers[i]).attr("name")}</td>
+ <td>${servers[i].name}</td>
</tr>`;
$("#serverTable tbody").append(rowHTML);
}
$("#serverTableContainer").show();
}
-function chooseServer(number, row) {
+async function chooseServer(number, row) {
$("#libraryTable tbody").empty();
$("#tvShowsTable tbody").empty();
$("#seasonsTable tbody").empty();
@@ -331,65 +393,30 @@ function chooseServer(number, row) {
$(row).addClass("table-active");
plexToken = serverList[number].accessToken;
- plexUrl = `http://${serverList[number].address}:${serverList[number].port}`;
- connectToPlex();
-}
+ let connections = serverList[number].connections;
-function validateEnableConnectBtn(context) {
- // Apply validation highlighting to URL field
- if (context == 'plexUrl') {
- if ($('#plexUrl').val() != "") {
- $('#plexUrl').removeClass("is-invalid").addClass("is-valid");
- }
- else {
- $('#plexUrl').removeClass("is-valid").addClass("is-invalid");
- }
- }
- else {
- // Apply validation highlighting to Plex Token field
- if ($('#plexToken').val() != "") {
- $('#plexToken').removeClass("is-invalid").addClass("is-valid");
- }
- else {
- $('#plexToken').removeClass("is-valid").addClass("is-invalid");
- }
- }
+ // Loop through the connections to see if we can find one that works
+ for (let i = 0; i < connections.length; i++) {
+ try {
+ let testResult = await $.ajax({
+ "url": `${connections[i].uri}/identity`,
+ "method": "GET",
+ "headers": {
+ "X-Plex-Token": plexToken,
+ "Accept": "application/json"
+ }
+ });
- // Enable or disable the button, depending on field status
- if (($('#plexUrl').val() != "") && ($('#plexToken').val() != "")) {
- $("#btnConnectToPlex").prop("disabled", false);
- }
- else {
- $("#btnConnectToPlex").prop("disabled", true);
+ // Check if it is a valid server
+ if (testResult.MediaContainer.machineIdentifier != undefined) {
+ plexUrl = connections[i].uri;
+ connectToPlex();
+ break;
+ }
+ } catch (e) {}
}
}
-function forgetDetails() {
- localStorage.removeItem('plexUrl');
- localStorage.removeItem('plexToken');
- $('#plexUrl, #plexToken').val('').removeClass('is-valid is-invalid');
- $('#confirmForget').fadeIn(250).delay(750).fadeOut(1250, () => {
- $('#forgetDivider, #forgetDetailsSection').hide();
- });
-}
-
-function forgetPinDetails() {
- localStorage.removeItem('isPinAuth');
- localStorage.removeItem('pinAuthToken');
- localStorage.removeItem('useLocalAddress');
- window.location.reload();
-}
-
-function hideAlertForever() {
- $("#insecureWarning").hide();
- localStorage.showHttpAlert = 'false';
-}
-
-function hideLoginInfoAlertForever() {
- $("#loginInfoAlert").hide();
- localStorage.showLoginInfoAlert = 'false';
-}
-
function connectToPlex() {
plexUrl = plexUrl || $("#plexUrl").val().trim().replace(/\/+$/, '');
plexToken = plexToken || $("#plexToken").val().trim();