-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
303 lines (248 loc) · 8.62 KB
/
main.js
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
const firebase = require('firebase-admin');
const config = require('./config');
const utils = require('./utils');
const cipher = require('./cipher')(
config.PWD_PRIVATE_KEY,
config.PWD_SALT,
'aes-192-cbc',
);
firebase.initializeApp({
credential: firebase.credential.cert(config.FIREBASE_CREDENTIALS),
databaseURL: config.FIREBASE_DB,
});
const fcm = firebase.messaging();
const fstore = firebase.firestore();
fstore.settings({ ignoreUndefinedProperties: true });
const db = fstore.collection(config.PRODUCTION
? 'pronote_users'
: 'pronote_users_test');
const $ = (user) => db.doc(user.key);
const pronote = require('./pronote')(async (user, data) => {
console.log('Send push to', user.key);
if (!config.PRODUCTION) return console.log('Canceled (not in production)...', data.title);
if (!config.NOTIFICATIONS) return console.log('Canceled (notifications disabled)...', data.title);
const usr = $(user);
if (await (await usr.get()).data().lastNotif === data.body) return false;
const pushTokens = await usr.collection('pushTokens').get();
pushTokens.forEach(({ id: token }) => {
console.log(`Send to : ${token}`);
fcm.send({
token,
data,
}).then(() => {
usr.collection('pushTokens').doc(token).update({ lastUse: new Date() });
usr.update({ lastNotif: data.body });
}).catch(() => {
usr.collection('pushTokens').doc(token).delete();
});
});
return true;
});
async function logUser(user, bypass = false) {
if (user
&& user.username
&& (user.password || bypass)
&& user.server && (user.server.length > 7 || user.server.toUpperCase() === 'DEMO')
) {
const usr = user;
usr.username = usr.username.toUpperCase().replace(/ /g, '');
usr.key = `${usr.server.replace(/(.*\/\/)|\.(.*)(\.*)/g, '').toUpperCase() || 'DEFAULT'}@${usr.username}`;
if (bypass) return usr;
const data = await $(usr).get();
if (data.exists
&& await cipher.decrypt(data.data().password) === usr.password) return usr;
}
return false;
}
async function addPushToken(user, token, UA) {
const doc = $(user).collection('pushTokens').doc(token);
if (!(await doc.get()).exists) await doc.set({});
doc.update({
active: true,
lastAdd: new Date(),
UA,
});
}
async function computeUser(userCred, cb = (rs = false) => rs) {
const usr = await logUser(userCred, true);
if (!usr) return cb(false);
pronote.fetch({ ...usr }, async (data) => {
if (!(await $(usr).get()).exists) $(usr).set({});
$(usr).update({ ...usr, data, password: await cipher.encrypt(usr.password) });
cb(data);
}).catch((err) => {
if (err.code === 6 || err.code === 3) {
console.error('Mauvais identifiants ou anti-spam');
if (config.PRODUCTION) $(usr).delete();
cb(false);
} else {
console.error(`${usr.key} => Can't compute user: ${err.message}`);
}
});
return true;
}
async function computeAll() {
const users = await db.get();
console.log(`Computing ${users.size} user${users.size > 1 ? 's' : ''}`, utils.nowDate());
users.forEach(async (user) => {
const usr = user.data();
if (!usr || !usr.password || !usr.username) return;
usr.password = await cipher.decrypt(usr.password);
computeUser(usr);
});
}
computeAll();
setInterval(computeAll, 600000);
const getServs = require('./pronoteServFinder');
const getFriendQR = require('./getFriendQR');
require('./serve')((io) => {
io.on('connection', (socket) => {
console.log('User connected =>', socket.id.slice(-4));
socket.on('getServsList', getServs);
async function sendData(user) {
const usr = $(user);
const friends = (await usr.collection('friends').get()).docs.map((f) => f.id);
for (const key in friends) {
if (friends[key]) {
const friend = (await $({ key: friends[key] }).get());
if (!friend.exists || !friend.data().data) {
friends[key] = {
key: friends[key],
name: friends[key],
class: '?',
timetable: [],
};
} else {
friends[key] = {
...friend.data().data,
key: friend.id,
};
friends[key] = {
key: friends[key].key,
name: friends[key].name,
class: friends[key].class,
timetable: friends[key].timetable,
};
}
}
}
const usrData = (await usr.get()).data();
socket.emit('data', {
friends,
options: usrData.options,
key: usrData.key,
...usrData.data,
});
}
async function sendQRCode(user) {
getFriendQR(Buffer.from(user.key, 'utf8').toString('base64').replace(/=/g, ''), (rs) => {
socket.emit('friendQRCode', rs);
});
}
socket.on('fetch', async (userCred, callback) => {
const user = await logUser(userCred, true);
if (!user) return callback({ error: 'Veuillez sélectionner un établissement' });
const usr = (await $(user).get()).data();
// Si l'utilisateur existe
if (usr && usr.password) {
// On vérifie si le pass est bon
if (await cipher.decrypt(usr.password) === user.password) {
callback({ success: true });
sendData(user);
sendQRCode(user);
return true;
}
// Si le pass ne correspond pas
callback({ error: 'Mauvais identifiant ou mot de passe' });
return false;
}
// Si l'utilisateur n'existe pas, on le crée
console.log('Creating user', user);
// On commence par vérifier si le pass donné est bien celui du compte pronote
computeUser(user, (rs) => {
// S'il est bon, on renvoie les données
if (rs) {
callback({ success: true });
sendData(user);
return true;
}
// Sinon, on renvoie une erreur et on supprime (si besoin) l'utilisateur
if (config.PRODUCTION) $(user).delete();
callback({ error: 'Mauvais identifiant ou mot de passe' });
return false;
});
return false;
});
socket.on('addFriend', async (user, fName, cb) => {
const usr = await logUser(user); // Authentification
if (!usr) return;
// Par défaut, on prend l'input comme username et l'établissement du user
const friendCred = {
username: fName,
server: usr.server,
};
// Si l'input contient un '@', on extrait l'établissement et le username
if (fName.includes('@')) {
[friendCred.server, friendCred.username] = fName.split('@');
}
const friend = await logUser(friendCred, true);
// Si l'utilisateur tente de s'ajouter lui-même
if (
friend.username === usr.username
&& friend.server === usr.server
) {
cb({ error: 'Vous ne pouvez pas vous ajouter vous-même' });
return;
}
const friendUser = await $(friend).get();
if (!friendUser.exists) {
cb({ error: 'Cet utilisateur n\'existe pas' });
return;
}
// Ligne dans la liste d'amis
const friendRow = $(usr).collection('friends').doc(friend.key);
// Si l'ami est déjà dans la liste, on affiche une erreur
if ((await friendRow.get()).exists) {
cb({ error: 'Vous êtes déjà ami avec cet utilisateur' });
return;
}
// Sinon, on l'ajoute à la liste
await friendRow.set({
active: true,
notif: false,
});
// On callback l'action pour afficher le message de succès
cb({
success: true,
fname: friendUser.data().data.name,
});
// On envoie les nouvelles données
sendData(usr);
});
socket.on('removeFriend', async (userCred, friendName, cb) => {
const user = await logUser(userCred);
if (!user || typeof friendName !== 'string') return;
const friend = $(user).collection('friends').doc(friendName);
if ((await friend.get()).exists) await friend.delete();
cb({ success: true });
sendData(user);
});
socket.on('setOptions', async (userCred, options) => {
const user = await logUser(userCred);
if (!user) return;
(await $(user).update({
options: {
disable_global: !options.notifs,
disable_homeworks: !options.notifs_homeworks,
disable_marks: !options.notifs_marks,
disable_reports: !options.notifs_reports,
},
}));
});
socket.on('addPushToken', async (userCred, token) => {
const user = await logUser(userCred);
if (!user || user.key === 'DEMO-DEMONSTRATION') return;
addPushToken(user, token, socket.request.headers['user-agent']);
});
});
});