mattermost-mobile/app/mm-redux/actions/general.ts
Miguel Alatzar b2190b7b9a [MM-22671] [MM-22935] Fetch posts for unread channels on loadChannelsForTeam (#4078)
* Fetch posts for unread channels on loadChannelsForTeam

* Add unit tests

* Remove unneeded setRetryFailed and getState

* Update getChannelSinceValue comment

* Move to post.js and pass in channels and channelMembers

* Exclude current channel

* Address PR review comments

* Fix import

* Fix mm-redux references
2020-04-17 21:29:07 -07:00

201 lines
6.1 KiB
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import {Client4} from '@mm-redux/client';
import {GeneralTypes} from '@mm-redux/action_types';
import {getServerVersion} from '@mm-redux/selectors/entities/general';
import {isMinimumServerVersion} from '@mm-redux/utils/helpers';
import {GeneralState} from '@mm-redux/types/general';
import {logLevel} from '@mm-redux/types/client4';
import {GetStateFunc, DispatchFunc, ActionFunc, batchActions} from '@mm-redux/types/actions';
import {logError} from './errors';
import {loadRolesIfNeeded} from './roles';
import {loadMe} from './users';
import {bindClientFunc, forceLogoutIfNecessary, FormattedError} from './helpers';
export function getPing(): ActionFunc {
return async () => {
let data;
let pingError = new FormattedError(
'mobile.server_ping_failed',
'Cannot connect to the server. Please check your server URL and internet connection.',
);
try {
data = await Client4.ping();
if (data.status !== 'OK') {
// successful ping but not the right return {data}
return {error: pingError};
}
} catch (error) { // Client4Error
if (error.status_code === 401) {
// When the server requires a client certificate to connect.
pingError = error;
}
return {error: pingError};
}
return {data};
};
}
export function resetPing(): ActionFunc {
return async (dispatch: DispatchFunc, getState: GetStateFunc) => {
dispatch({type: GeneralTypes.PING_RESET, data: {}});
return {data: true};
};
}
export function getClientConfig(): ActionFunc {
return async (dispatch: DispatchFunc, getState: GetStateFunc) => {
let data;
try {
data = await Client4.getClientConfigOld();
} catch (error) {
forceLogoutIfNecessary(error, dispatch, getState);
return {error};
}
Client4.setEnableLogging(data.EnableDeveloper === 'true');
Client4.setDiagnosticId(data.DiagnosticId);
dispatch(batchActions([
{type: GeneralTypes.CLIENT_CONFIG_RECEIVED, data},
]));
return {data};
};
}
export function getDataRetentionPolicy(): ActionFunc {
return async (dispatch: DispatchFunc, getState: GetStateFunc) => {
let data;
try {
data = await Client4.getDataRetentionPolicy();
} catch (error) {
forceLogoutIfNecessary(error, dispatch, getState);
dispatch(batchActions([
{
type: GeneralTypes.RECEIVED_DATA_RETENTION_POLICY,
error,
},
logError(error),
]));
return {error};
}
dispatch(batchActions([
{type: GeneralTypes.RECEIVED_DATA_RETENTION_POLICY, data},
]));
return {data};
};
}
export function getLicenseConfig(): ActionFunc {
return bindClientFunc({
clientFunc: Client4.getClientLicenseOld,
onSuccess: [GeneralTypes.CLIENT_LICENSE_RECEIVED],
});
}
export function logClientError(message: string, level: logLevel = 'ERROR') {
return bindClientFunc({
clientFunc: Client4.logClientError,
onRequest: GeneralTypes.LOG_CLIENT_ERROR_REQUEST,
onSuccess: GeneralTypes.LOG_CLIENT_ERROR_SUCCESS,
onFailure: GeneralTypes.LOG_CLIENT_ERROR_FAILURE,
params: [
message,
level,
],
});
}
export function setAppState(state: GeneralState['appState']): ActionFunc {
return async (dispatch: DispatchFunc, getState: GetStateFunc) => {
dispatch({type: GeneralTypes.RECEIVED_APP_STATE, data: state});
return {data: true};
};
}
export function setDeviceToken(token: GeneralState['deviceToken']): ActionFunc {
return async (dispatch: DispatchFunc, getState: GetStateFunc) => {
dispatch({type: GeneralTypes.RECEIVED_APP_DEVICE_TOKEN, data: token});
return {data: true};
};
}
export function setServerVersion(serverVersion: string): ActionFunc {
return async (dispatch, getState: GetStateFunc) => {
dispatch({type: GeneralTypes.RECEIVED_SERVER_VERSION, data: serverVersion});
dispatch(loadRolesIfNeeded([]));
return {data: true};
};
}
export function setStoreFromLocalData(data: { token: string; url: string }): ActionFunc {
return async (dispatch: DispatchFunc, getState) => {
Client4.setToken(data.token);
Client4.setUrl(data.url);
return loadMe()(dispatch, getState);
};
}
export function getSupportedTimezones() {
return bindClientFunc({
clientFunc: Client4.getTimezones,
onRequest: GeneralTypes.SUPPORTED_TIMEZONES_REQUEST,
onSuccess: [GeneralTypes.SUPPORTED_TIMEZONES_RECEIVED, GeneralTypes.SUPPORTED_TIMEZONES_SUCCESS],
onFailure: GeneralTypes.SUPPORTED_TIMEZONES_FAILURE,
});
}
export function setUrl(url: string) {
Client4.setUrl(url);
return true;
}
export function getRedirectLocation(url: string): ActionFunc {
return async (dispatch: DispatchFunc, getState: GetStateFunc) => {
let pendingData: Promise<any>;
if (isMinimumServerVersion(getServerVersion(getState()), 5, 3)) {
pendingData = Client4.getRedirectLocation(url);
} else {
pendingData = Promise.resolve({location: url});
}
let data;
try {
data = await pendingData;
} catch (error) {
forceLogoutIfNecessary(error, dispatch, getState);
dispatch({type: GeneralTypes.REDIRECT_LOCATION_FAILURE, data: {error, url}});
return {error};
}
dispatch({type: GeneralTypes.REDIRECT_LOCATION_SUCCESS, data: {...data, url}});
return {data};
};
}
export default {
getPing,
getClientConfig,
getDataRetentionPolicy,
getSupportedTimezones,
getLicenseConfig,
logClientError,
setAppState,
setDeviceToken,
setServerVersion,
setStoreFromLocalData,
setUrl,
getRedirectLocation,
};