diff options
Diffstat (limited to 'alarm/node_modules/pronote-api/src/cas/generics/openent.js')
-rw-r--r-- | alarm/node_modules/pronote-api/src/cas/generics/openent.js | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/alarm/node_modules/pronote-api/src/cas/generics/openent.js b/alarm/node_modules/pronote-api/src/cas/generics/openent.js deleted file mode 100644 index 7e3fa29..0000000 --- a/alarm/node_modules/pronote-api/src/cas/generics/openent.js +++ /dev/null @@ -1,31 +0,0 @@ -const jsdom = require('jsdom'); - -const http = require('../../http'); -const { getDOM, extractStart } = require('../api'); - -async function login({ url, account, username, password, target }) -{ - const location = await http({ url, followRedirects: 'get' }); - - let service = encodeURIComponent(url); - if (location.startsWith('http') && location.includes('service=')) { - service = location.substring(location.indexOf('=') + 1); - } - - const jar = new jsdom.CookieJar(); - - await getDOM({ - url: `https://${target}/auth/login`, - jar, - method: 'POST', - data: { - email: username, - password, - callback: `/cas/login?service=${service}` - } - }); - - return extractStart(await getDOM({ url: url + account.value + '.html', jar, asIs: true })); -} - -module.exports = login; |