* Add linter rules for import order and type member delimiters * Remove unneeded group * Group all app/* imports before the internal imports * Move app/ imports before parent imports * Separate @node_modules imports into a different group * Substitute app paths by aliases * Fix @node_modules import order and add test related modules * Add aliases for types and test, and group import types
226 lines
7.3 KiB
TypeScript
226 lines
7.3 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
import {Client4} from '@client/rest';
|
|
import {GeneralTypes} from '@mm-redux/action_types';
|
|
import {getCurrentUserId} from '@mm-redux/selectors/entities/common';
|
|
import {getServerVersion} from '@mm-redux/selectors/entities/general';
|
|
import {GetStateFunc, DispatchFunc, ActionFunc, batchActions} from '@mm-redux/types/actions';
|
|
import {logLevel} from '@mm-redux/types/client4';
|
|
import {TeamDataRetentionPolicy, ChannelDataRetentionPolicy} from '@mm-redux/types/data_retention';
|
|
import {GeneralState} from '@mm-redux/types/general';
|
|
import {isMinimumServerVersion} from '@mm-redux/utils/helpers';
|
|
|
|
import {logError} from './errors';
|
|
import {bindClientFunc, forceLogoutIfNecessary, FormattedError} from './helpers';
|
|
import {loadRolesIfNeeded} from './roles';
|
|
|
|
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) => {
|
|
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 {
|
|
const state = getState();
|
|
const userId = getCurrentUserId(state);
|
|
const globalPolicy = await Client4.getGlobalDataRetentionPolicy();
|
|
|
|
let teamPolicies: TeamDataRetentionPolicy[] = [];
|
|
let channelPolicies: ChannelDataRetentionPolicy[] = [];
|
|
|
|
if (isMinimumServerVersion(getServerVersion(getState()), 5, 37)) {
|
|
teamPolicies = await getAllGranularDataRetentionPolicies({
|
|
userId,
|
|
});
|
|
channelPolicies = await getAllGranularDataRetentionPolicies({
|
|
isChannel: true,
|
|
userId,
|
|
});
|
|
}
|
|
data = {
|
|
global: globalPolicy,
|
|
teams: teamPolicies,
|
|
channels: channelPolicies,
|
|
};
|
|
} 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};
|
|
};
|
|
}
|
|
|
|
async function getAllGranularDataRetentionPolicies(options: {
|
|
isChannel?: boolean;
|
|
page?: number;
|
|
policies?: TeamDataRetentionPolicy[] | ChannelDataRetentionPolicy[];
|
|
userId: string;
|
|
}): Promise<TeamDataRetentionPolicy[] | ChannelDataRetentionPolicy[]> {
|
|
const {isChannel, page = 0, policies = [], userId} = options;
|
|
const api = isChannel ? 'getChannelDataRetentionPolicies' : 'getTeamDataRetentionPolicies';
|
|
const data = await Client4[api](userId, page);
|
|
policies.push(...data.policies);
|
|
if (policies.length < data.total_count) {
|
|
await getAllGranularDataRetentionPolicies({...options, policies, page: page + 1});
|
|
}
|
|
return policies;
|
|
}
|
|
|
|
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) => {
|
|
dispatch({type: GeneralTypes.RECEIVED_APP_STATE, data: state});
|
|
|
|
return {data: true};
|
|
};
|
|
}
|
|
|
|
export function setDeviceToken(token: GeneralState['deviceToken']): ActionFunc {
|
|
return async (dispatch: DispatchFunc) => {
|
|
dispatch({type: GeneralTypes.RECEIVED_APP_DEVICE_TOKEN, data: token});
|
|
|
|
return {data: true};
|
|
};
|
|
}
|
|
|
|
export function setServerVersion(serverVersion: string): ActionFunc {
|
|
return async (dispatch) => {
|
|
dispatch({type: GeneralTypes.RECEIVED_SERVER_VERSION, data: serverVersion});
|
|
dispatch(loadRolesIfNeeded([]));
|
|
|
|
return {data: true};
|
|
};
|
|
}
|
|
|
|
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,
|
|
setUrl,
|
|
getRedirectLocation,
|
|
};
|