2025-01-10 19:10:28 +00:00
|
|
|
import { APILoginFunctionReturn } from "../../../types";
|
|
|
|
import varDatabaseDbHandler from "../../backend/varDatabaseDbHandler";
|
2024-12-06 10:31:24 +00:00
|
|
|
|
2025-01-10 19:10:28 +00:00
|
|
|
type Param = {
|
|
|
|
existingUser: { [s: string]: any };
|
|
|
|
database?: string;
|
|
|
|
additionalFields?: string[];
|
|
|
|
useLocal?: boolean;
|
|
|
|
};
|
2024-12-06 10:31:24 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* # Re-authenticate API user
|
|
|
|
*/
|
2025-01-10 19:10:28 +00:00
|
|
|
export default async function apiReauthUser({
|
2024-12-06 10:31:24 +00:00
|
|
|
existingUser,
|
|
|
|
database,
|
|
|
|
additionalFields,
|
2024-12-06 11:55:03 +00:00
|
|
|
useLocal,
|
2025-01-10 19:10:28 +00:00
|
|
|
}: Param): Promise<APILoginFunctionReturn> {
|
2024-12-06 10:31:24 +00:00
|
|
|
let foundUser =
|
|
|
|
existingUser?.id && existingUser.id.toString().match(/./)
|
2024-12-09 11:45:39 +00:00
|
|
|
? await varDatabaseDbHandler({
|
|
|
|
queryString: `SELECT * FROM users WHERE id=?`,
|
|
|
|
queryValuesArray: [existingUser.id.toString()],
|
|
|
|
database,
|
|
|
|
useLocal,
|
|
|
|
})
|
2024-12-06 10:31:24 +00:00
|
|
|
: null;
|
|
|
|
|
|
|
|
if (!foundUser || !foundUser[0])
|
|
|
|
return {
|
|
|
|
success: false,
|
|
|
|
payload: null,
|
|
|
|
msg: "No user found",
|
|
|
|
};
|
|
|
|
|
|
|
|
let csrfKey =
|
|
|
|
Math.random().toString(36).substring(2) +
|
|
|
|
"-" +
|
|
|
|
Math.random().toString(36).substring(2);
|
|
|
|
|
2024-12-08 08:58:57 +00:00
|
|
|
/** @type {import("../../../types").DATASQUIREL_LoggedInUser} */
|
2025-01-10 19:10:28 +00:00
|
|
|
let userPayload: import("../../../types").DATASQUIREL_LoggedInUser = {
|
2024-12-06 10:31:24 +00:00
|
|
|
id: foundUser[0].id,
|
|
|
|
first_name: foundUser[0].first_name,
|
|
|
|
last_name: foundUser[0].last_name,
|
|
|
|
username: foundUser[0].username,
|
|
|
|
email: foundUser[0].email,
|
|
|
|
phone: foundUser[0].phone,
|
|
|
|
social_id: foundUser[0].social_id,
|
|
|
|
image: foundUser[0].image,
|
|
|
|
image_thumbnail: foundUser[0].image_thumbnail,
|
|
|
|
verification_status: foundUser[0].verification_status,
|
|
|
|
social_login: foundUser[0].social_login,
|
|
|
|
social_platform: foundUser[0].social_platform,
|
|
|
|
csrf_k: csrfKey,
|
|
|
|
more_data: foundUser[0].more_user_data,
|
|
|
|
logged_in_status: true,
|
|
|
|
date: Date.now(),
|
|
|
|
};
|
|
|
|
|
|
|
|
if (
|
|
|
|
additionalFields &&
|
|
|
|
Array.isArray(additionalFields) &&
|
|
|
|
additionalFields.length > 0
|
|
|
|
) {
|
|
|
|
additionalFields.forEach((key) => {
|
|
|
|
userPayload[key] = foundUser[0][key];
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
success: true,
|
|
|
|
msg: "Login Successful",
|
|
|
|
payload: userPayload,
|
2024-12-08 08:58:57 +00:00
|
|
|
csrf: csrfKey,
|
2024-12-06 10:31:24 +00:00
|
|
|
};
|
2025-01-10 19:10:28 +00:00
|
|
|
}
|