summaryrefslogtreecommitdiff
path: root/src/routers/vault/types/Session.js
blob: 59737b31c1f301ea3a68e4582c240167f45e833d (plain) (blame)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
const uuidv4 = require("uuid/v4");
const Identity = require("./Identity.js");
const EvolAccount = require("./EvolAccount.js");
const LegacyAccount = require("./LegacyAccount.js");

/**
 * holds a cache of all the user data fetched from SQL
 */
module.exports = class Session {
    /**
     * expiry date
     */
    expires = new Date();
    /**
     * Vault account id
     * @type {number}
     */
    vault = null;
    /**
     * whether the user is properly authenticated
     */
    authenticated = false;
    /**
     * the identity that was used to log in
     * @type {Identity}
     */
    identity = null;
    /**
     * the email address of the identity that was used to log in
     * @type {string}
     */
    email;
    /**
     * the secret that is sent once to the client after authentication
     * @type {string}
     */
    secret;
    /**
     * cache holding all identities
     * @type {Identity[]}
     */
    identities = [];
    /**
     * id of the main identity of the account
     * @type {number}
     */
    primaryIdentity = null;
    /**
     * whether to allow logging in with a non-primary ident
     */
    allowNonPrimary = true;
    /**
     * cache holding all legacy game accounts
     * @type {LegacyAccount[]}
     */
    legacyAccounts = [];
    /**
     * cache holding all evol game accounts
     * @type {EvolAccount[]}
     */
    gameAccounts = [];
    /**
     * ip that was used to init the session
     * @type {string}
     */
    ip;
    /**
     * refuse to authenticate a session with a different IP
     */
    strictIPCheck = true;

    constructor (ip, email) {
        this.ip = ip;
        this.email = email.toLowerCase();
        this.secret = uuidv4();
    }

    /**
     * serialize for sending over the network
     * @param {*} key
     */
    toJSON (key) {
        return {
            expires: this.expires,
            identity: this.identity.id,
        }
    }

    /**
     * serialize the account settings for sending over the network
     */
    getAccountData () {
        return {
            primaryIdentity: this.primaryIdentity.id,
            allowNonPrimary: this.allowNonPrimary,
            strictIPCheck: this.strictIPCheck,
            vaultId: this.vault,
        };
    }
}