summaryrefslogtreecommitdiff
path: root/includes/external/school/node_modules/pronote-api/src/server/auth.js
blob: 54962a21985d0c5ee9d7a573333537e4513ff418 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
const { v4: uuid } = require('uuid');

const { loginStudent, loginParent } = require('../auth');

const sessions = {};

async function login({ url, username, password, cas, account = 'student' })
{
    if (!url || !username || !password) {
        throw {
            http: 400,
            message: 'Missing \'url\', or \'username\', or \'password\', or header \'Content-Type: application/json\''
        };
    }

    let func;
    switch (account) {
    case 'student':
        func = loginStudent;
        break;
    case 'parent':
        func = loginParent;
        break;
    default:
        throw {
            http: 400,
            message: `Unknown account type '${account}'`
        };
    }

    const token = uuid();
    sessions[token] = await func(url, username, password, cas);

    return { token };
}

// eslint-disable-next-line no-unused-vars
async function logout(_, token)
{
    delete sessions[token];
    return { success: true };
}

function getSession(token)
{
    return sessions[token];
}

module.exports = { login, logout, getSession };