This commit is contained in:
Sam 2018-06-17 14:58:59 +10:00
parent 6b8392aaba
commit c9979680be
2 changed files with 13 additions and 18 deletions

View File

@ -129,11 +129,6 @@ Vue.mixin({
}
})
// var data = { type: "FROM_PAGE", text: "Hello from the webpage!", callback: (res) => {
// console.log('Result callback!', res)
// }};
// window.postMessage(data, "*");
router.beforeEach((to, from, next) => {
// console.log('Route change', to, this, store)
if (to.matched.some(record => record.meta.protected)) {
@ -157,7 +152,7 @@ router.beforeEach((to, from, next) => {
next()
} else {
if (!to.meta.protected) {
return next() // make sure to always call next()!
return next()
}
router.push('/browse')
}

View File

@ -6,7 +6,7 @@
* @param method
* @returns {{url: *, time: boolean, headers: {X-Plex-Client-Identifier: string, Accept: string, X-Plex-Token: *}, timeout: *, method: *}}
*/
module.exports = function PlexAuth() {
module.exports = function PlexAuth () {
this.getApiOptions = function (url, accessToken, timeout, method) {
return {
url: url,
@ -18,8 +18,8 @@ module.exports = function PlexAuth() {
},
timeout: timeout,
method: method
};
};
}
}
/**
*
@ -30,17 +30,17 @@ module.exports = function PlexAuth() {
* @returns {{url: *, time: boolean, headers: {X-Plex-Device-Name: string, X-Plex-Client-Identifier: string, X-Plex-Provides: string, X-Plex-Target-Client-Identifier: *}, timeout: *, method: string}}
*/
this.getClientApiOptions = function (url, clientIdentifier, uuid, timeout) {
var sBrowser, sUsrAg = navigator.userAgent;
var sBrowser, sUsrAg = navigator.userAgent
if (sUsrAg.indexOf('Chrome') > -1) {
sBrowser = 'Chrome';
sBrowser = 'Chrome'
} else if (sUsrAg.indexOf('Safari') > -1) {
sBrowser = 'Safari';
sBrowser = 'Safari'
} else if (sUsrAg.indexOf('Opera') > -1) {
sBrowser = 'Opera';
sBrowser = 'Opera'
} else if (sUsrAg.indexOf('Firefox') > -1) {
sBrowser = 'Firefox';
sBrowser = 'Firefox'
} else if (sUsrAg.indexOf('MSIE') > -1) {
sBrowser = 'Microsoft Internet Explorer';
sBrowser = 'Microsoft Internet Explorer'
}
return {
url: url,
@ -62,6 +62,6 @@ module.exports = function PlexAuth() {
},
timeout: timeout,
method: 'GET'
};
};
};
}
}
}