From 6b180ba756d116379b58640db4abbb30a97f74ad Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Wed, 29 May 2013 00:00:24 -0400 Subject: [PATCH] the beginnings of remote control --- MediaBrowser.WebDashboard/ApiClient.js | 37 ++++++++++++++++++++++- MediaBrowser.WebDashboard/packages.config | 2 +- 2 files changed, 37 insertions(+), 2 deletions(-) diff --git a/MediaBrowser.WebDashboard/ApiClient.js b/MediaBrowser.WebDashboard/ApiClient.js index 2442141e6c..572cb0cf24 100644 --- a/MediaBrowser.WebDashboard/ApiClient.js +++ b/MediaBrowser.WebDashboard/ApiClient.js @@ -2589,7 +2589,6 @@ MediaBrowser.ApiClient = function ($, navigator, JSON, WebSocket, setTimeout) { }); }; - /** * Reports a user has stopped playing an item * @param {String} userId @@ -2629,6 +2628,42 @@ MediaBrowser.ApiClient = function ($, navigator, JSON, WebSocket, setTimeout) { url: url }); }; + + self.sendBrowseCommand = function (sessionId, options) { + + if (!sessionId) { + throw new Error("null sessionId"); + } + + if (!options) { + throw new Error("null options"); + } + + var url = self.getUrl("Sessions/" + sessionId + "/Viewing", options); + + return self.ajax({ + type: "POST", + url: url + }); + }; + + self.sendPlayCommand = function (sessionId, options) { + + if (!sessionId) { + throw new Error("null sessionId"); + } + + if (!options) { + throw new Error("null options"); + } + + var url = self.getUrl("Sessions/" + sessionId + "/Playing", options); + + return self.ajax({ + type: "POST", + url: url + }); + }; } }(jQuery, navigator, window.JSON, window.WebSocket, setTimeout); diff --git a/MediaBrowser.WebDashboard/packages.config b/MediaBrowser.WebDashboard/packages.config index b575b4c458..8590d6e8ae 100644 --- a/MediaBrowser.WebDashboard/packages.config +++ b/MediaBrowser.WebDashboard/packages.config @@ -1,6 +1,6 @@  - + \ No newline at end of file