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, 31 insertions, 0 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
new file mode 100644
index 0000000..7e3fa29
--- /dev/null
+++ b/school/node_modules/pronote-api/src/cas/generics/openent.js
@@ -0,0 +1,31 @@
+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;