forked from Ivasoft/mattermost-mobile
* Detox/E2E: Migrate to typescript * Add jest.config.js * Add moduleMapper to config.json * Add cookie jar to axios client, fix tsconfig.json and default_config.json * Take keyboard into consideration; clean test for now for this migration PR * Revert changes on path_builder * Attempt to fix dep issues * Update detox dep * Added missing @type dev dependencies * Fix dep order * Fix unit tests * Added dynamic year to email.ts
63 lines
2.0 KiB
TypeScript
63 lines
2.0 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import client from './client';
|
|
import {getResponseFromError} from './common';
|
|
|
|
// ****************************************************************
|
|
// Status
|
|
// See https://api.mattermost.com/#tag/status
|
|
//
|
|
// Exported API function should have the following:
|
|
// - documented using JSDoc
|
|
// - meaningful description
|
|
// - match the referenced API endpoints
|
|
// - parameter/s defined by `@param`
|
|
// - return value defined by `@return`
|
|
// ****************************************************************
|
|
|
|
/**
|
|
* Get user status.
|
|
* See https://api.mattermost.com/#operation/GetUserStatus
|
|
* @param {string} baseUrl - the base server URL
|
|
* @param {string} userId - the user ID
|
|
* @return {Object} returns {userStatus} on success or {error, status} on error
|
|
*/
|
|
export const apiGetUserStatus = async (baseUrl: string, userId: string): Promise<any> => {
|
|
try {
|
|
const response = await client.get(`${baseUrl}/api/v4/users/${userId}/status`);
|
|
|
|
return {userStatus: response.data};
|
|
} catch (err) {
|
|
return getResponseFromError(err);
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Update user status.
|
|
* See https://api.mattermost.com/#operation/UpdateUserStatus
|
|
* @param {string} baseUrl - the base server URL
|
|
* @param {string} userId - the user ID
|
|
* @param {string} status - the user status, can be online, away, offline and dnd
|
|
* @return {Object} returns {userStatus} on success or {error, status} on error
|
|
*/
|
|
export const apiUpdateUserStatus = async (baseUrl: string, userId: string, status = 'online'): Promise<any> => {
|
|
try {
|
|
const response = await client.put(
|
|
`${baseUrl}/api/v4/users/${userId}/status`,
|
|
{user_id: userId, status},
|
|
);
|
|
|
|
return {userStatus: response.data};
|
|
} catch (err) {
|
|
return getResponseFromError(err);
|
|
}
|
|
};
|
|
|
|
export const Status = {
|
|
apiGetUserStatus,
|
|
apiUpdateUserStatus,
|
|
};
|
|
|
|
export default Status;
|