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, 0 insertions, 34 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
deleted file mode 100644
index cca79c7..0000000
--- a/alarm/node_modules/pronote-api/src/cas/generics/wayf.js
+++ /dev/null
@@ -1,34 +0,0 @@
-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;