|
|
|
import axios from 'axios';
|
|
|
|
import Bowser from 'bowser';
|
|
|
|
|
|
|
|
interface PlexHeaders extends Record<string, string> {
|
|
|
|
Accept: string;
|
|
|
|
'X-Plex-Product': string;
|
|
|
|
'X-Plex-Version': string;
|
|
|
|
'X-Plex-Client-Identifier': string;
|
|
|
|
'X-Plex-Model': string;
|
|
|
|
'X-Plex-Platform': string;
|
|
|
|
'X-Plex-Platform-Version': string;
|
|
|
|
'X-Plex-Device': string;
|
|
|
|
'X-Plex-Device-Name': string;
|
|
|
|
'X-Plex-Device-Screen-Resolution': string;
|
|
|
|
'X-Plex-Language': string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface PlexPin {
|
|
|
|
id: number;
|
|
|
|
code: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
class PlexOAuth {
|
|
|
|
private plexHeaders?: PlexHeaders;
|
|
|
|
|
|
|
|
private pin?: PlexPin;
|
|
|
|
private popup?: Window;
|
|
|
|
|
|
|
|
private authToken?: string;
|
|
|
|
|
|
|
|
public initializeHeaders(): void {
|
|
|
|
if (!window) {
|
|
|
|
throw new Error(
|
|
|
|
'Window is not defined. Are you calling this in the browser?'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
const browser = Bowser.getParser(window.navigator.userAgent);
|
|
|
|
this.plexHeaders = {
|
|
|
|
Accept: 'application/json',
|
|
|
|
'X-Plex-Product': 'Overseerr',
|
|
|
|
'X-Plex-Version': '2.0',
|
|
|
|
'X-Plex-Client-Identifier': '7f9de3ba-e12b-11ea-87d0-0242ac130003',
|
|
|
|
'X-Plex-Model': 'Plex OAuth',
|
|
|
|
'X-Plex-Platform': browser.getOSName(),
|
|
|
|
'X-Plex-Platform-Version': browser.getOSVersion(),
|
|
|
|
'X-Plex-Device': browser.getBrowserName(),
|
|
|
|
'X-Plex-Device-Name': browser.getBrowserVersion(),
|
|
|
|
'X-Plex-Device-Screen-Resolution':
|
|
|
|
window.screen.width + 'x' + window.screen.height,
|
|
|
|
'X-Plex-Language': 'en',
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
public async getPin(): Promise<PlexPin> {
|
|
|
|
if (!this.plexHeaders) {
|
|
|
|
throw new Error(
|
|
|
|
'You must initialize the plex headers clientside to login'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
const response = await axios.post(
|
|
|
|
'https://plex.tv/api/v2/pins?strong=true',
|
|
|
|
undefined,
|
|
|
|
{ headers: this.plexHeaders }
|
|
|
|
);
|
|
|
|
|
|
|
|
this.pin = { id: response.data.id, code: response.data.code };
|
|
|
|
|
|
|
|
return this.pin;
|
|
|
|
}
|
|
|
|
|
|
|
|
public preparePopup(): void {
|
|
|
|
this.openPopup({ title: 'Plex Auth', w: 600, h: 700 });
|
|
|
|
}
|
|
|
|
|
|
|
|
public async login(): Promise<string> {
|
|
|
|
this.initializeHeaders();
|
|
|
|
await this.getPin();
|
|
|
|
|
|
|
|
if (!this.plexHeaders || !this.pin) {
|
|
|
|
throw new Error('Unable to call login if class is not initialized.');
|
|
|
|
}
|
|
|
|
|
|
|
|
const params = {
|
|
|
|
clientID: this.plexHeaders['X-Plex-Client-Identifier'],
|
|
|
|
'context[device][product]': this.plexHeaders['X-Plex-Product'],
|
|
|
|
'context[device][version]': this.plexHeaders['X-Plex-Version'],
|
|
|
|
'context[device][platform]': this.plexHeaders['X-Plex-Platform'],
|
|
|
|
'context[device][platformVersion]':
|
|
|
|
this.plexHeaders['X-Plex-Platform-Version'],
|
|
|
|
'context[device][device]': this.plexHeaders['X-Plex-Device'],
|
|
|
|
'context[device][deviceName]': this.plexHeaders['X-Plex-Device-Name'],
|
|
|
|
'context[device][model]': this.plexHeaders['X-Plex-Model'],
|
|
|
|
'context[device][screenResolution]':
|
|
|
|
this.plexHeaders['X-Plex-Device-Screen-Resolution'],
|
|
|
|
'context[device][layout]': 'desktop',
|
|
|
|
code: this.pin.code,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (this.popup) {
|
|
|
|
this.popup.location.href = `https://app.plex.tv/auth/#!?${this.encodeData(
|
|
|
|
params
|
|
|
|
)}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.pinPoll();
|
|
|
|
}
|
|
|
|
|
|
|
|
private async pinPoll(): Promise<string> {
|
|
|
|
const executePoll = async (
|
|
|
|
resolve: (authToken: string) => void,
|
|
|
|
reject: (e: Error) => void
|
|
|
|
) => {
|
|
|
|
try {
|
|
|
|
if (!this.pin) {
|
|
|
|
throw new Error('Unable to poll when pin is not initialized.');
|
|
|
|
}
|
|
|
|
|
|
|
|
const response = await axios.get(
|
|
|
|
`https://plex.tv/api/v2/pins/${this.pin.id}`,
|
|
|
|
{ headers: this.plexHeaders }
|
|
|
|
);
|
|
|
|
|
|
|
|
if (response.data?.authToken) {
|
|
|
|
this.authToken = response.data.authToken as string;
|
|
|
|
this.closePopup();
|
|
|
|
resolve(this.authToken);
|
|
|
|
} else if (!response.data?.authToken && !this.popup?.closed) {
|
|
|
|
setTimeout(executePoll, 1000, resolve, reject);
|
|
|
|
} else {
|
|
|
|
reject(new Error('Popup closed without completing login'));
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
this.closePopup();
|
|
|
|
reject(e);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
return new Promise(executePoll);
|
|
|
|
}
|
|
|
|
|
|
|
|
private closePopup(): void {
|
|
|
|
this.popup?.close();
|
|
|
|
this.popup = undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
private openPopup({
|
|
|
|
title,
|
|
|
|
w,
|
|
|
|
h,
|
|
|
|
}: {
|
|
|
|
title: string;
|
|
|
|
w: number;
|
|
|
|
h: number;
|
|
|
|
}): Window | void {
|
|
|
|
if (!window) {
|
|
|
|
throw new Error(
|
|
|
|
'Window is undefined. Are you running this in the browser?'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
// Fixes dual-screen position Most browsers Firefox
|
|
|
|
const dualScreenLeft =
|
|
|
|
window.screenLeft != undefined ? window.screenLeft : window.screenX;
|
|
|
|
const dualScreenTop =
|
|
|
|
window.screenTop != undefined ? window.screenTop : window.screenY;
|
|
|
|
const width = window.innerWidth
|
|
|
|
? window.innerWidth
|
|
|
|
: document.documentElement.clientWidth
|
|
|
|
? document.documentElement.clientWidth
|
|
|
|
: screen.width;
|
|
|
|
const height = window.innerHeight
|
|
|
|
? window.innerHeight
|
|
|
|
: document.documentElement.clientHeight
|
|
|
|
? document.documentElement.clientHeight
|
|
|
|
: screen.height;
|
|
|
|
const left = width / 2 - w / 2 + dualScreenLeft;
|
|
|
|
const top = height / 2 - h / 2 + dualScreenTop;
|
|
|
|
|
|
|
|
//Set url to login/plex/loading so browser doesn't block popup
|
|
|
|
const newWindow = window.open(
|
|
|
|
'/login/plex/loading',
|
|
|
|
title,
|
|
|
|
'scrollbars=yes, width=' +
|
|
|
|
w +
|
|
|
|
', height=' +
|
|
|
|
h +
|
|
|
|
', top=' +
|
|
|
|
top +
|
|
|
|
', left=' +
|
|
|
|
left
|
|
|
|
);
|
|
|
|
if (newWindow) {
|
|
|
|
newWindow.focus();
|
|
|
|
this.popup = newWindow;
|
|
|
|
return this.popup;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private encodeData(data: Record<string, string>): string {
|
|
|
|
return Object.keys(data)
|
|
|
|
.map(function (key) {
|
|
|
|
return [key, data[key]].map(encodeURIComponent).join('=');
|
|
|
|
})
|
|
|
|
.join('&');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default PlexOAuth;
|