-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathespn-auth.js
91 lines (86 loc) · 2.23 KB
/
espn-auth.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
var Promise = require("bluebird");
var request = require("request-promise");
var credentials = require("./local/credentials");
function addHeaders(body, response, resolveWithFullResponse) {
return { headers: response.headers, body: body };
}
var getAPIKey = function () {
var self = this;
var options = {
method: 'POST',
uri: "https://registerdisney.go.com/jgc/v6/client/ESPN-ONESITE.WEB-PROD/api-key?langPref=en-US",
body: "null",
transform: addHeaders,
headers: {
'content-type': 'application/json'
}
};
return new Promise(function (resolve, reject) {
if (self.cachedKey) {
return resolve(self.cachedKey);
}
request(options)
.then(function (resp) {
self.cachedKey = resp.headers['api-key'];
//console.log(`new api key: ${resp.headers['api-key']}`);
resolve(self.cachedKey);
})
.catch(function (err) {
reject(err);
});
});
}
var getAuthData = function() {
if (credentials.espn.S2) {
this.cachedS2 = credentials.espn.S2;
}
if (credentials.espn.SWID) {
this.cachedSWID = credentials.espn.SWID;
}
var self = this;
return new Promise(function (resolve, reject) {
if (self.cachedS2 && self.cachedSWID) {
return resolve({
s2: self.cachedS2,
swid: self.cachedSWID
});
}
self.getAPIKey()
.then(function(apiKey) {
var authOptions = {
method: 'POST',
uri: "https://registerdisney.go.com/jgc/v6/client/ESPN-ONESITE.WEB-PROD/guest/login?langPref=en-US",
headers: {
'authority': 'registerdisney.go.com',
'content-type': 'application/json',
'Authorization': `APIKEY ${apiKey}`,
'g-recaptcha-token': ''
},
body: JSON.stringify(credentials.espn)
};
request(authOptions)
.then(function (resp) {
//console.log(JSON.stringify(resp));
var json = JSON.parse(resp);
self.cachedS2 = json.data.s2;
self.cachedSWID = json.data.token.swid;
//console.log(`new s2: ${self.cachedS2}`);
//console.log(`new swid: ${self.cachedSWID}`);
resolve({
s2: self.cachedS2,
swid: self.cachedSWID
});
})
.catch(function (err) {
reject(err);
});
})
.catch(function (err) {
reject(err);
});
});
}
module.exports = {
getAuthData: getAuthData,
getAPIKey: getAPIKey
}