Get multiple users infos

This commit is contained in:
Pierre 2017-05-27 15:11:30 +02:00
parent 96d86ce97a
commit a8e05437ca
3 changed files with 165 additions and 74 deletions

View File

@ -335,6 +335,11 @@ var ComunicWeb = {
*/
getUserInfos: function(userID, afterGetUserInfos){},
/**
* Get multiple users informations
*/
getMultipleUsersInfos: function(usersID, afterGetUserInfos){},
/**
* Empty user informations cache
* Remove all entries from user informations cache

View File

@ -80,6 +80,9 @@ ComunicWeb.components.searchForm = {
if(response.error)
return false;
//Preload users informations
ComunicWeb.user.userInfos.getMultipleUsersInfos(response, function(userInfos){
//Remove any remainging element in searchResultBox
emptyElem(searchBoxContainer);
@ -103,7 +106,7 @@ ComunicWeb.components.searchForm = {
height: '200px',
});
});
});
},

View File

@ -63,6 +63,89 @@ ComunicWeb.user.userInfos = {
},
/**
* Get multiple users informations
*
* @param {String} usersID User on which to make request (current to get connected user)
* @param {function} afterGetUserInfos What to do once users informations are available
* @return {Boolean} True for a success
*/
getMultipleUsersInfos: function(usersID, afterGetUserInfos){
//First, check if informations are already available in the cache for some users
var cachedInformations = {};
var needRequest = false; //By default the request isn't required
var usersToGetList = "";
for(i in usersID){
//Extract userID
var processUserID = usersID[i];
//Check the local cache
if(this.usersInfos["user-"+processUserID]){
//Add user information to cached informations
cachedInformations[processUserID] = this.usersInfos["user-"+processUserID];
}
else {
//Else we'll have to get data
needRequest = true;
usersToGetList += usersID+",";
}
}
//Check if an API request is not required
if(!needRequest){
//Go immediatly to the next step
afterGetUserInfos(cachedInformations);
return true;
}
//Perform API request
var apiURI = "user/getInfosMultiple";
var params = {
usersID: usersToGetList,
}
//Specify what to do next
var onceGetUserInfos = function(result){
if(result.error){
//Log error
ComunicWeb.debug.logMessage("ERROR : couldn't get infos about users ID !");
//Returns the error to the next function
afterGetUserInfos(result);
//Something went wrong
return false;
}
else {
//Prepare return
var returnInformations = cachedInformations;
//Save results and prepare return
for(i in result){
//Get user ID
var userID = result[i]['userID'];
//Store
ComunicWeb.user.userInfos.usersInfos["user-"+userID] = result[i];
returnInformations[userID] = result[i];
}
//Return results
afterGetUserInfos(returnInformations);
}
}
//Perform request
ComunicWeb.common.api.makeAPIrequest(apiURI, params, true, onceGetUserInfos);
//Everything is OK
return true;
},
/**
* Empty user informations cache
* Remove all entries from user informations cache