2017-05-25 11:50:32 +00:00
|
|
|
/**
|
|
|
|
* This file contains shorcuts to ease access of common functions
|
|
|
|
*
|
|
|
|
* @author Pierre HUBERT
|
|
|
|
*/
|
2017-05-25 11:55:49 +00:00
|
|
|
|
2019-05-19 13:56:44 +00:00
|
|
|
/**
|
|
|
|
* Perform an API request
|
|
|
|
*
|
|
|
|
* @param {String} uri The URI of the request on the API
|
|
|
|
* @param {Object} args The list of arguments to pass with the request
|
|
|
|
* @param {Bool} withLogin Specify whether login is required or not to
|
|
|
|
* achieve the request
|
|
|
|
* @return {Promise}
|
|
|
|
*/
|
|
|
|
function api(uri, args, withLogin){
|
|
|
|
return ComunicWeb.common.api.exec(uri, args, withLogin);
|
|
|
|
}
|
|
|
|
|
2020-03-31 14:27:41 +00:00
|
|
|
/**
|
|
|
|
* Perform a requests through the WebSocket
|
|
|
|
*
|
|
|
|
* @param {String} title The title of the request
|
|
|
|
* @param {Object} data Data to include to request
|
|
|
|
* @return {Promise}
|
|
|
|
*/
|
|
|
|
function ws(title, data = {}) {
|
|
|
|
|
|
|
|
if(typeof data != "object")
|
|
|
|
throw new Error("Invalid data for websocket request!");
|
|
|
|
|
|
|
|
return UserWebSocket.SendRequest(title, data);
|
|
|
|
}
|
|
|
|
|
2017-05-25 11:55:49 +00:00
|
|
|
/**
|
2020-04-29 15:01:59 +00:00
|
|
|
* Create a quick language access function shortcut
|
2017-05-25 11:55:49 +00:00
|
|
|
*
|
|
|
|
* @param {String} stringName The name of the string to show
|
|
|
|
* @param {Array} stringParams The optionnal parametres to include with the string
|
|
|
|
* @return {String} The string ready to show
|
|
|
|
*/
|
|
|
|
function lang(stringName, stringParams){
|
|
|
|
//Check if any params has been specified
|
|
|
|
if(!stringParams)
|
|
|
|
var stringParams = [];
|
|
|
|
|
|
|
|
//Call translate function
|
|
|
|
return ComunicWeb.common.langs.getTranslatedText(stringName, stringParams);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function to change currently opened page
|
|
|
|
*
|
|
|
|
* @param {String} pageURI The URI to the page
|
|
|
|
* @param {Object} additionnalData Additionnal data to pass to the new page
|
|
|
|
* @return {Boolean} True for a success
|
|
|
|
*/
|
|
|
|
function openPage(pageURI, additionnalData){
|
|
|
|
return ComunicWeb.common.page.openPage(pageURI, additionnalData);
|
2017-06-13 09:58:08 +00:00
|
|
|
}
|
|
|
|
|
2017-12-17 18:17:03 +00:00
|
|
|
/**
|
|
|
|
* Open a user page quickly
|
|
|
|
*
|
|
|
|
* @param {String} user The ID of the user or its directory
|
|
|
|
* @return {Boolean} True for a success
|
|
|
|
*/
|
|
|
|
function openUserPage(user){
|
2018-07-14 12:18:21 +00:00
|
|
|
if(user.virtualDirectory == "")
|
2020-04-09 07:15:04 +00:00
|
|
|
openUserPageFromID(user.userID ? user.userID : user.id);
|
2018-07-14 12:18:21 +00:00
|
|
|
else
|
|
|
|
openPage(user.virtualDirectory);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Open a user page quickly from its user ID
|
|
|
|
*
|
|
|
|
* @param {String} user The ID of the user or its directory
|
|
|
|
* @return {Boolean} True for a success
|
|
|
|
*/
|
|
|
|
function openUserPageFromID(user){
|
2017-12-17 18:17:03 +00:00
|
|
|
return openPage("user/" + user);
|
|
|
|
}
|
|
|
|
|
2018-07-16 13:13:17 +00:00
|
|
|
/**
|
|
|
|
* Open a group age
|
|
|
|
*
|
|
|
|
* @param {Object} info Information about the target group
|
|
|
|
*/
|
|
|
|
function openGroupPage(info){
|
|
|
|
|
|
|
|
if(info.virtual_directory != "null")
|
|
|
|
openPage(info.virtual_directory);
|
|
|
|
else
|
|
|
|
openPage("groups/" + info.id);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-12-16 13:43:31 +00:00
|
|
|
/**
|
|
|
|
* Check if user is signed in or not
|
|
|
|
*
|
|
|
|
* @return {Boolean} True if the user is signed in / false else
|
|
|
|
*/
|
|
|
|
function signed_in(){
|
|
|
|
return ComunicWeb.user.userLogin.getUserLoginState();
|
|
|
|
}
|
|
|
|
|
2017-06-13 09:58:08 +00:00
|
|
|
/**
|
|
|
|
* Returns user ID (if logged in)
|
|
|
|
*
|
|
|
|
* @param Nothing
|
|
|
|
* @return {Integer} The ID of the user
|
|
|
|
*/
|
|
|
|
function userID(){
|
|
|
|
return ComunicWeb.user.userLogin.getUserID();
|
|
|
|
}
|
|
|
|
|
2018-01-21 19:20:10 +00:00
|
|
|
/**
|
|
|
|
* Returns the full name of a user
|
|
|
|
*
|
|
|
|
* @param {Object} infos Informations about the user
|
|
|
|
* @return {String} The full name of the user
|
|
|
|
*/
|
|
|
|
function userFullName(infos){
|
|
|
|
return infos.firstName + " " + infos.lastName;
|
|
|
|
}
|
|
|
|
|
2018-01-02 17:58:40 +00:00
|
|
|
/**
|
|
|
|
* Return the ID of a user, or its path, depending of what
|
|
|
|
* is available
|
|
|
|
*
|
|
|
|
* @param {Object} infos Informations about the user
|
|
|
|
* @return {String} The ID of the user, or it's path
|
|
|
|
*/
|
|
|
|
function userIDorPath(infos){
|
|
|
|
return ComunicWeb.user.userInfos.getIDorPath(infos);
|
|
|
|
}
|
|
|
|
|
2017-06-13 09:58:08 +00:00
|
|
|
/**
|
|
|
|
* Get multiple users informations
|
|
|
|
*
|
|
|
|
* @param {Array~Object} usersID User on which to make request (current to get connected user)
|
|
|
|
* @param {function} afterGetUserInfos What to do once users informations are available
|
|
|
|
* @param {Boolean} forceRequest Force the request to be made
|
|
|
|
* @return {Boolean} True for a success
|
|
|
|
*/
|
2019-05-16 13:07:58 +00:00
|
|
|
function getMultipleUsersInfo(usersID, afterGetUserInfos, forceRequest){
|
|
|
|
ComunicWeb.user.userInfos.getMultipleUsersInfo(usersID, afterGetUserInfos, forceRequest);
|
2017-12-10 09:57:22 +00:00
|
|
|
}
|
|
|
|
|
2019-05-19 14:30:20 +00:00
|
|
|
/**
|
|
|
|
* Get information about multiple users
|
|
|
|
*
|
|
|
|
* @param {Array~Object} users The list of users to get
|
|
|
|
* @param {Boolean} force
|
2019-05-19 14:43:54 +00:00
|
|
|
* @returns {Promise<UsersList>}
|
2019-05-19 14:30:20 +00:00
|
|
|
*/
|
|
|
|
function getUsers(users, force) {
|
|
|
|
return new Promise((resolve, error) => {
|
|
|
|
getMultipleUsersInfo(users, result => {
|
|
|
|
|
|
|
|
if(result.error)
|
|
|
|
error(result.error);
|
2019-05-19 14:43:54 +00:00
|
|
|
|
2019-05-19 14:30:20 +00:00
|
|
|
else
|
|
|
|
resolve(new UsersList(result));
|
|
|
|
|
|
|
|
}, force);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-05-11 14:43:55 +00:00
|
|
|
/**
|
|
|
|
* Get information about a single user
|
|
|
|
*
|
|
|
|
* @param {int} userID User on which to make request
|
|
|
|
* @param {function} afterGetUserInfo What to do once users informations are available
|
|
|
|
* @param {Boolean} forceRequest Force the request to be made
|
|
|
|
* @return {Boolean} True for a success
|
|
|
|
*/
|
|
|
|
function getUserInfo(usersID, afterGetUserInfo, forceRequest){
|
|
|
|
ComunicWeb.user.userInfos.getUserInfos(usersID, afterGetUserInfo, forceRequest);
|
|
|
|
}
|
|
|
|
|
2020-04-01 17:05:31 +00:00
|
|
|
/**
|
|
|
|
* Get information about a single user asynchronously
|
|
|
|
*
|
|
|
|
* @param {Number} userID Target user ID
|
|
|
|
*/
|
2020-04-03 16:01:53 +00:00
|
|
|
function userInfo(userID, force = false) {
|
2020-04-01 17:05:31 +00:00
|
|
|
return new Promise((res, err) => {
|
|
|
|
getUserInfo(userID, (data) => {
|
|
|
|
if(data.error)
|
|
|
|
err(data.error)
|
|
|
|
else
|
|
|
|
res(data)
|
2020-04-03 16:01:53 +00:00
|
|
|
}, force);
|
2020-04-01 17:05:31 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-04-10 14:55:31 +00:00
|
|
|
/**
|
|
|
|
* Get information about a user (new User class)
|
|
|
|
*
|
|
|
|
* @param {Number} userID target user id
|
|
|
|
* @returns {Promise<User>} Information about the user
|
|
|
|
*/
|
|
|
|
async function user(userID) {
|
|
|
|
return new User(await userInfo(userID))
|
|
|
|
}
|
|
|
|
|
2017-12-10 09:57:22 +00:00
|
|
|
/**
|
|
|
|
* Display message on browser console
|
|
|
|
*
|
|
|
|
* @param {String} message The message to show on browser console
|
|
|
|
*/
|
|
|
|
function log(message){
|
|
|
|
ComunicWeb.debug.logMessage(message);
|
2018-02-25 17:28:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Open a conversation specified by its ID
|
|
|
|
*
|
|
|
|
* @param {number} id The ID of the conversation to open
|
2019-05-16 16:40:39 +00:00
|
|
|
* @param {bool} fullscreen Specify whether the conversation has to
|
|
|
|
* appear in full screen or not
|
2018-02-25 17:28:58 +00:00
|
|
|
*/
|
2019-05-16 16:40:39 +00:00
|
|
|
function openConversation(id, fullscreen = false){
|
|
|
|
if(!fullscreen)
|
|
|
|
ComunicWeb.components.conversations.manager.addConversation({
|
|
|
|
conversationID: id
|
|
|
|
});
|
|
|
|
else
|
|
|
|
openPage("conversations/" + id);
|
2018-04-11 08:52:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display a notification
|
|
|
|
*
|
|
|
|
* @param {string} message The message of the notification
|
|
|
|
* @param {string} type The type of the notification (danger, info, success, primary)
|
|
|
|
* @param {number} duration The notification duration
|
|
|
|
* @param {string} title The title of the notification
|
|
|
|
*/
|
|
|
|
function notify(message, type, duration, title){
|
|
|
|
ComunicWeb.common.notificationSystem.showNotification(message, type, duration, title)
|
2018-07-20 07:07:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get information about a single group
|
|
|
|
*
|
|
|
|
* @param {Number} id The ID of the group to fetch
|
|
|
|
* @param {Function} callback
|
|
|
|
*/
|
|
|
|
function getInfoGroup(id, callback){
|
|
|
|
ComunicWeb.components.groups.info.getInfo(id, callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get information about multiple groups
|
|
|
|
*
|
|
|
|
* @param {Array} IDs The IDs of the groups to get information about
|
|
|
|
* @param {Function} callback Callback to call once we have information about the group
|
2018-09-02 12:14:10 +00:00
|
|
|
* @param {Boolean} force TRUE to force the request (ignore cache)
|
2018-07-20 07:07:00 +00:00
|
|
|
*/
|
2018-09-02 12:14:10 +00:00
|
|
|
function getInfoMultipleGroups(IDs, callback, force){
|
|
|
|
ComunicWeb.components.groups.info.getInfoMultiple(IDs, callback, force);
|
2019-05-16 16:05:21 +00:00
|
|
|
}
|
|
|
|
|
2019-05-19 14:43:54 +00:00
|
|
|
/**
|
|
|
|
* Get information about multiple groups
|
|
|
|
*
|
|
|
|
* @param {Number[]} list The ID of the groups to get
|
|
|
|
* @param {Boolean} force Specify whether to force or not the request
|
|
|
|
* @return {Promise<GroupsList>}
|
|
|
|
*/
|
|
|
|
function getGroups(list, force){
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
getInfoMultipleGroups(list, result => {
|
|
|
|
if(result.error) reject(result.error);
|
|
|
|
else resolve(new GroupsList(result));
|
|
|
|
}, force);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-05-16 16:05:21 +00:00
|
|
|
/**
|
|
|
|
* Get the difference of time from now to a specified
|
|
|
|
* timestamp and return it as a string
|
|
|
|
*
|
|
|
|
* @param {Integer} time The base time
|
|
|
|
* @return {String} Computed difference
|
|
|
|
*/
|
|
|
|
function timeDiffToStr(time) {
|
|
|
|
return ComunicWeb.common.date.timeDiffToStr(time);
|
2020-05-04 11:21:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Ask a confirmation to the user
|
|
|
|
*
|
|
|
|
* @param {String} msg Associated message
|
|
|
|
*/
|
|
|
|
async function showConfirmDialog(msg) {
|
|
|
|
return new Promise((res, err) => {
|
|
|
|
ComunicWeb.common.messages.confirm(msg, (c) => {
|
|
|
|
res(c == true);
|
|
|
|
});
|
|
|
|
})
|
2020-05-17 13:59:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prepare for potential future translation system
|
|
|
|
*
|
|
|
|
* @param {String} input Input string
|
|
|
|
*/
|
|
|
|
function tr(input) {
|
|
|
|
return input;
|
2017-05-25 11:55:49 +00:00
|
|
|
}
|