mattermost-mobile/app/screens/interactive_dialog/index.tsx
Elias Nahum a5a1e53827
Biometric prompt, Jailbreak / Root detection and screenshot prevention (#8645)
* Handle biometric authentication

* jailbreak/root detection and biometric small fixes

* remove server from initializeSecurityManager and fix loginEntry

* Add screen capture prevention and other small fixes

* added unit tests to SecurityManager

* added shielded nativeID to protect views

* use MobilePreventScreenCapture instead of MobileAllowScreenshots in config type definition

* Apply Swizzle for screen capture on iOS

* Apply patch to bottom sheet to prevent screen captures

* fix ios sendReply

* Fix SDWebImage swizzle to use the correct session

* Fix potential crash on Android when using hardware keyboard

* rename patch for network library to remove warning

* add temp emm reference

* fix initializeSecurityManager tests

* fix translations

* use siteName for jailbreak detection when connecting to a new server

* fix i18n typo

* do not query the entire config from the db only the required fields

* migrate manage_apps to use defineMessages

* use TestHelper.wait in tests

* use defineMessages for security manager

* fix missing else statement for gm_to_channel

* created a TestHelper function to mockQuery and replace as jest.Mock with jest.mocked

* fix unit tests

* fix unit tests (again) and include setting the test environment to UTC

* Fix keyboard disappearing on iOS

* update react-native-emm
2025-03-13 14:07:41 -04:00

292 lines
10 KiB
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import React, {useCallback, useEffect, useMemo, useReducer, useRef, useState} from 'react';
import {useIntl} from 'react-intl';
import {Keyboard} from 'react-native';
import {KeyboardAwareScrollView} from 'react-native-keyboard-aware-scroll-view';
import {type ImageResource, Navigation} from 'react-native-navigation';
import {SafeAreaView} from 'react-native-safe-area-context';
import {submitInteractiveDialog} from '@actions/remote/integrations';
import CompassIcon from '@components/compass_icon';
import ErrorText from '@components/error_text';
import {useServerUrl} from '@context/server';
import {useTheme} from '@context/theme';
import useAndroidHardwareBackHandler from '@hooks/android_back_handler';
import SecurityManager from '@managers/security_manager';
import {buildNavigationButton, dismissModal, setButtons} from '@screens/navigation';
import {checkDialogElementForError, checkIfErrorsMatchElements} from '@utils/integrations';
import {changeOpacity, makeStyleSheetFromTheme} from '@utils/theme';
import {secureGetFromRecord} from '@utils/types';
import DialogElement from './dialog_element';
import DialogIntroductionText from './dialog_introduction_text';
import type {AvailableScreens} from '@typings/screens/navigation';
const getStyleFromTheme = makeStyleSheetFromTheme((theme) => {
return {
container: {
backgroundColor: changeOpacity(theme.centerChannelColor, 0.03),
flex: 1,
},
errorContainer: {
marginTop: 15,
marginLeft: 15,
fontSize: 14,
fontWeight: 'bold',
},
scrollView: {
marginBottom: 20,
marginTop: 10,
},
};
});
type Props = {
config: InteractiveDialogConfig;
componentId: AvailableScreens;
}
const close = () => {
Keyboard.dismiss();
dismissModal();
};
const makeCloseButton = (icon: ImageResource) => {
return buildNavigationButton(CLOSE_BUTTON_ID, 'close.more_direct_messages.button', icon);
};
const CLOSE_BUTTON_ID = 'close-interactive-dialog';
const SUBMIT_BUTTON_ID = 'submit-interactive-dialog';
type Errors = {[name: string]: string}
const emptyErrorsState: Errors = {};
type Values = {[name: string]: string|number|boolean}
type ValuesAction = {name: string; value: string|number|boolean}
function valuesReducer(state: Values, action: ValuesAction) {
if (state[action.name] === action.value) {
return state;
}
return {...state, [action.name]: action.value};
}
function initValues(elements?: DialogElement[]) {
const values: Values = {};
elements?.forEach((e) => {
if (e.type === 'bool') {
values[e.name] = (e.default === true || String(e.default).toLowerCase() === 'true');
} else if (e.default) {
values[e.name] = e.default;
}
});
return values;
}
const emptyElementList: DialogElement[] = [];
function InteractiveDialog({
config: {
url,
dialog: {
callback_id: callbackId,
introduction_text: introductionText,
elements = emptyElementList,
notify_on_cancel: notifyOnCancel,
state,
submit_label: submitLabel,
},
},
componentId,
}: Props) {
const theme = useTheme();
const style = getStyleFromTheme(theme);
const [error, setError] = useState('');
const [errors, setErrors] = useState(emptyErrorsState);
const [values, dispatchValues] = useReducer(valuesReducer, elements, initValues);
const [submitting, setSubmitting] = useState(false);
const serverUrl = useServerUrl();
const intl = useIntl();
const scrollView = useRef<KeyboardAwareScrollView>(null);
const onChange = useCallback((name: string, value: string | number | boolean) => {
dispatchValues({name, value});
}, []);
const rightButton = useMemo(() => {
const base = buildNavigationButton(
SUBMIT_BUTTON_ID,
'interactive_dialog.submit.button',
undefined,
submitLabel || intl.formatMessage({id: 'interactive_dialog.submit', defaultMessage: 'Submit'}),
);
base.enabled = !submitting;
base.showAsAction = 'always';
base.color = theme.sidebarHeaderTextColor;
return base;
}, [intl, submitLabel, submitting, theme.sidebarHeaderTextColor]);
useEffect(() => {
setButtons(componentId, {
rightButtons: [rightButton],
});
}, [rightButton, componentId]);
useEffect(() => {
const icon = CompassIcon.getImageSourceSync('close', 24, theme.sidebarHeaderTextColor);
setButtons(componentId, {
leftButtons: [makeCloseButton(icon)],
});
}, [componentId, theme]);
const handleSubmit = useCallback(async () => {
const newErrors: Errors = {};
const submission = {...values};
let hasErrors = false;
if (elements) {
elements.forEach((elem) => {
// Delete empty number fields before submissions
if (elem.type === 'text' && elem.subtype === 'number' && secureGetFromRecord(submission, elem.name) === '') {
delete submission[elem.name];
}
const newError = checkDialogElementForError(elem, secureGetFromRecord(submission, elem.name));
if (newError) {
newErrors[elem.name] = intl.formatMessage({id: newError.id, defaultMessage: newError.defaultMessage}, newError.values);
hasErrors = true;
}
});
}
setErrors(hasErrors ? newErrors : emptyErrorsState);
if (hasErrors) {
return;
}
const dialog = {
url,
callback_id: callbackId,
state,
submission,
} as DialogSubmission;
setSubmitting(true);
const {data} = await submitInteractiveDialog(serverUrl, dialog);
if (data) {
if (data.errors &&
Object.keys(data.errors).length >= 0 &&
checkIfErrorsMatchElements(data.errors, elements)
) {
hasErrors = true;
setErrors(data.errors);
}
if (data.error) {
hasErrors = true;
setError(data.error);
scrollView.current?.scrollToPosition(0, 0, true);
} else {
setError('');
}
}
if (hasErrors) {
setSubmitting(false);
} else {
close();
}
}, [elements, url, callbackId, state, values, serverUrl, intl]);
useEffect(() => {
const unsubscribe = Navigation.events().registerComponentListener({
navigationButtonPressed: ({buttonId}: { buttonId: string }) => {
switch (buttonId) {
case CLOSE_BUTTON_ID:
if (notifyOnCancel) {
submitInteractiveDialog(serverUrl, {
url,
callback_id: callbackId,
state,
cancelled: true,
} as DialogSubmission);
}
close();
break;
case SUBMIT_BUTTON_ID: {
if (!submitting) {
handleSubmit();
}
break;
}
}
},
}, componentId);
return () => {
unsubscribe.remove();
};
}, [serverUrl, url, callbackId, state, handleSubmit, submitting, componentId, notifyOnCancel]);
useAndroidHardwareBackHandler(componentId, close);
return (
<SafeAreaView
testID='interactive_dialog.screen'
style={style.container}
nativeID={SecurityManager.getShieldScreenId(componentId)}
>
<KeyboardAwareScrollView
ref={scrollView}
bounces={false}
style={style.scrollView}
enableAutomaticScroll={true}
enableOnAndroid={true}
noPaddingBottomOnAndroid={true}
scrollToOverflowEnabled={true}
enableResetScrollToCoords={true}
extraScrollHeight={0}
extraHeight={0}
keyboardDismissMode='interactive'
keyboardShouldPersistTaps='handled'
>
{Boolean(error) && (
<ErrorText
testID='interactive_dialog.error.text'
textStyle={style.errorContainer}
error={error}
/>
)}
{Boolean(introductionText) &&
<DialogIntroductionText
value={introductionText}
/>
}
{Boolean(elements) && elements.map((e) => {
const value = secureGetFromRecord(values, e.name);
return (
<DialogElement
key={'dialogelement' + e.name}
displayName={e.display_name}
name={e.name}
type={e.type}
subtype={e.subtype}
helpText={e.help_text}
errorText={secureGetFromRecord(errors, e.name)}
placeholder={e.placeholder}
maxLength={e.max_length}
dataSource={e.data_source}
optional={e.optional}
options={e.options}
value={value}
onChange={onChange}
/>
);
})}
</KeyboardAwareScrollView>
</SafeAreaView>
);
}
export default InteractiveDialog;