summaryrefslogtreecommitdiff
path: root/alarm/node_modules/pronote-api/src/cas/generics/wayf.js
diff options
context:
space:
mode:
Diffstat (limited to 'alarm/node_modules/pronote-api/src/cas/generics/wayf.js')
-rw-r--r--alarm/node_modules/pronote-api/src/cas/generics/wayf.js34
1 files changed, 34 insertions, 0 deletions
diff --git a/alarm/node_modules/pronote-api/src/cas/generics/wayf.js b/alarm/node_modules/pronote-api/src/cas/generics/wayf.js
new file mode 100644
index 0000000..cca79c7
--- /dev/null
+++ b/alarm/node_modules/pronote-api/src/cas/generics/wayf.js
@@ -0,0 +1,34 @@
+const jsdom = require('jsdom');
+
+const { getParams, getDOM, extractStart } = require('../api');
+const aten = require('./aten');
+
+async function login({ url, username, password, startURL, wayfURL, atenURL, extraParams })
+{
+ const jar = new jsdom.CookieJar();
+
+ let dom = await getDOM({
+ url: `${startURL}login?service=${encodeURIComponent(url)}`,
+ jar
+ });
+
+ dom = await getDOM({
+ url: `${wayfURL}WAYF`,
+ jar,
+ data: { ...getParams(dom), ...extraParams },
+ runScripts: true,
+ hook: aten.hook
+ });
+
+ dom = await aten.submit({
+ dom,
+ jar,
+ username,
+ password,
+ atenURL
+ });
+
+ return extractStart(dom);
+}
+
+module.exports = login;