summaryrefslogtreecommitdiff
path: root/school/node_modules/pronote-api/src/cas/generics/openent.js
diff options
context:
space:
mode:
Diffstat (limited to 'school/node_modules/pronote-api/src/cas/generics/openent.js')
-rw-r--r--school/node_modules/pronote-api/src/cas/generics/openent.js31
1 files changed, 0 insertions, 31 deletions
diff --git a/school/node_modules/pronote-api/src/cas/generics/openent.js b/school/node_modules/pronote-api/src/cas/generics/openent.js
deleted file mode 100644
index 7e3fa29..0000000
--- a/school/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;