1
0
mirror of https://gitlab.com/comunic/comunicapiv2 synced 2024-11-23 22:09:23 +00:00
comunicapiv2/src/controllers/AccountController.ts

44 lines
852 B
TypeScript
Raw Normal View History

2019-11-22 07:50:15 +00:00
import { RequestHandler } from "../entities/RequestHandler";
2019-11-23 12:16:28 +00:00
import { AccountHelper } from "../helpers/AccountHelper";
2019-11-22 07:50:15 +00:00
/**
* Account controller
*
* @author Pierre HUBERT
*/
export class AccountController {
/**
* Attempt to login user
*
* @param handler
*/
2019-11-23 12:16:28 +00:00
public static async LoginUser(handler: RequestHandler) {
2019-11-22 07:50:15 +00:00
2019-11-23 12:16:28 +00:00
// Get post data
const email = handler.postEmail("userMail");
const password = handler.postString("userPassword");
// TODO : add limits
// Authenticate user
const tokens = await AccountHelper.LoginUser(email, password, handler.getClientInfo());
if(tokens == null) {
// TODO : add limits
handler.error(401, "Invalid e-mail address / password !");
}
// Success
handler.send({
success: "User signed in!",
tokens: {
token1: tokens.token1,
token2: tokens.token2
}
});
2019-11-22 07:50:15 +00:00
}
}