1
0
mirror of https://gitlab.com/comunic/comunicapiv2 synced 2024-11-22 05:19:22 +00:00

Fix issue with ComunicWeb

This commit is contained in:
Pierre HUBERT 2019-11-23 16:23:36 +01:00
parent db686075f0
commit 190e047bd8
2 changed files with 40 additions and 0 deletions

View File

@ -28,7 +28,23 @@ export class UserController {
* Get information about multiple users
*/
public static async GetMultiple(handler : RequestHandler) {
let list = {};
const IDs = handler.postNumbersList("usersID");
for (const id of IDs) {
if(list.hasOwnProperty(id))
continue;
const user = await UserHelper.GetUserInfo(id);
if(!user)
handler.error(404, "One user was not found!");
list[id] = this.UserToAPI(user, handler);
}
handler.send(list);
}
private static UserToAPI(user : User, handler: RequestHandler) : Object {

View File

@ -90,6 +90,30 @@ export class RequestHandler {
}
/**
* Get a list of integeres included in the request
*
* @param name The name of the post field
*/
public postNumbersList(name: string) : Array<number> {
const param = this.postString(name);
let list = [];
for (const el of param.split(",")) {
if(el == "")
continue;
if(Number.parseInt(el).toString() != el)
this.error(400, "Invalid number detected in '"+name+"'!");
list.push(Number.parseInt(el));
}
return list;
}
/**
* Validate API tokens
*