124 lines
3.6 KiB
JavaScript
124 lines
3.6 KiB
JavaScript
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* websocket.js :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: edbernar <edbernar@student.42angouleme. +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/07/31 22:17:24 by edbernar #+# #+# */
|
|
/* Updated: 2024/08/13 00:12:26 by edbernar ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
import { typeErrorUnknown42Account } from "./typeErrorResponse/typeErrorUnknown42Account.js";
|
|
import { typeErrorInvalidPassword } from "./typeErrorResponse/typeErrorInvalidPassword.js";
|
|
import { typeErrorInvalidToken42 } from "./typeErrorResponse/typeErrorInvalidToken42.js";
|
|
import { typePrivateListMessage } from "./typeResponse/typePrivateListMessage.js";
|
|
import { typeNewPrivateMessage } from "./typeResponse/typeNewPrivateMessage.js";
|
|
import { typePrivateListUser } from "./typeResponse/typePrivateListUser.js";
|
|
import { connectedWith42Func } from "./login/connectedWith42.js";
|
|
import { typeLogin } from "./typeResponse/typeLogin.js";
|
|
|
|
/*
|
|
Todo (Eddy) :
|
|
- Request to connect by email and password. Waiting for the front to do it (already functional on the back side)
|
|
sendRequest("login", {type: "byPass", mail: "aa@aa.fr", password: "ABC123"});
|
|
- Information: the 'token' variable is only used until the connection is fully implemented
|
|
*/
|
|
|
|
const socket = new WebSocket('ws://localhost:8000/');
|
|
|
|
const typeResponse = ["login", "private_list_user", "private_list_message", "new_private_message"];
|
|
const functionResponse = [typeLogin, typePrivateListUser, typePrivateListMessage, typeNewPrivateMessage];
|
|
|
|
const errorCode = [9007, 9010, 9011];
|
|
const errorFunction = [typeErrorInvalidPassword, typeErrorInvalidToken42, typeErrorUnknown42Account];
|
|
|
|
let status = 0;
|
|
|
|
function getCookie(name)
|
|
{
|
|
const value = `; ${document.cookie}`;
|
|
const parts = value.split(`; ${name}=`);
|
|
let token = null;
|
|
|
|
if (parts.length === 2)
|
|
{
|
|
token = parts.pop().split(';').shift();
|
|
token = token.substring(1, token.length - 1);
|
|
}
|
|
return (token);
|
|
}
|
|
|
|
socket.onopen = () => {
|
|
let token = getCookie("token");
|
|
|
|
status = 1;
|
|
console.log('Connected');
|
|
if (token)
|
|
sendRequest("login", {type: "byToken", token: token});
|
|
else
|
|
connectedWith42Func();
|
|
};
|
|
|
|
socket.onmessage = (event) => {
|
|
let response;
|
|
|
|
try {
|
|
response = JSON.parse(event.data);
|
|
} catch {
|
|
return ;
|
|
}
|
|
if (response.code >= 9000 && response.code <= 9999)
|
|
{
|
|
try {
|
|
errorFunction[errorCode.indexOf(response.code)]();
|
|
} catch {
|
|
console.warn(response);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
try {
|
|
functionResponse[typeResponse.indexOf(response.type)](response.content);
|
|
} catch {
|
|
console.warn(response);
|
|
}
|
|
}
|
|
};
|
|
|
|
socket.onclose = () => {
|
|
status = 0;
|
|
console.log('Disconnected');
|
|
};
|
|
|
|
function sendRequest(type, content) {
|
|
let coc = null;
|
|
|
|
if (status === 0)
|
|
{
|
|
console.warn('Not connected');
|
|
return ;
|
|
}
|
|
if (content instanceof Object)
|
|
coc = JSON.stringify(content);
|
|
else
|
|
coc = content;
|
|
if (getCookie("token"))
|
|
{
|
|
socket.send(JSON.stringify({
|
|
type: type,
|
|
token: getCookie("token"),
|
|
content: content
|
|
}));
|
|
}
|
|
else
|
|
{
|
|
socket.send(JSON.stringify({
|
|
type: type,
|
|
content: content
|
|
}));
|
|
}
|
|
}
|
|
|
|
export { socket, sendRequest }; |