2019-11-23 14:11:33 +00:00
|
|
|
import { RequestHandler } from "../entities/RequestHandler";
|
|
|
|
import { UserHelper } from "../helpers/UserHelper";
|
|
|
|
import { User, UserPageStatus } from "../entities/User";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* User information controller
|
|
|
|
*
|
|
|
|
* @author Pierre HUBERT
|
|
|
|
*/
|
|
|
|
|
|
|
|
export class UserController {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get information about a single user
|
|
|
|
*/
|
|
|
|
public static async GetSingle(handler : RequestHandler) {
|
|
|
|
const userID = handler.postInt("userID");
|
|
|
|
const user = await UserHelper.GetUserInfo(userID);
|
|
|
|
|
|
|
|
if(!user)
|
|
|
|
handler.error(404, "Could not get user data!");
|
|
|
|
|
2019-11-23 14:23:48 +00:00
|
|
|
handler.send(this.UserToAPI(user));
|
2019-11-23 14:11:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get information about multiple users
|
|
|
|
*/
|
|
|
|
public static async GetMultiple(handler : RequestHandler) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
private static UserToAPI(user : User) : any {
|
|
|
|
return {
|
|
|
|
"userID": user.id,
|
|
|
|
"firstName": user.firstName,
|
|
|
|
"lastName": user.lastName,
|
|
|
|
"publicPage": user.pageStatus == UserPageStatus.PUBLIC,
|
|
|
|
"openPage": user.pageStatus == UserPageStatus.OPEN,
|
|
|
|
"virtualDirectory": user.virtualDirectory,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|