* 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
452 lines
16 KiB
TypeScript
452 lines
16 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {Button} from '@rneui/base';
|
|
import React, {useCallback, useEffect, useMemo, useReducer, useRef, useState} from 'react';
|
|
import {useIntl} from 'react-intl';
|
|
import {Keyboard, ScrollView, Text, View} from 'react-native';
|
|
import {SafeAreaView} from 'react-native-safe-area-context';
|
|
|
|
import {handleGotoLocation} from '@actions/remote/command';
|
|
import CompassIcon from '@components/compass_icon';
|
|
import Markdown from '@components/markdown';
|
|
import {AppCallResponseTypes} from '@constants/apps';
|
|
import {useServerUrl} from '@context/server';
|
|
import {useTheme} from '@context/theme';
|
|
import useDidUpdate from '@hooks/did_update';
|
|
import useNavButtonPressed from '@hooks/navigation_button_pressed';
|
|
import SecurityManager from '@managers/security_manager';
|
|
import {filterEmptyOptions} from '@utils/apps';
|
|
import {buttonBackgroundStyle, buttonTextStyle} from '@utils/buttonStyles';
|
|
import {checkDialogElementForError, checkIfErrorsMatchElements} from '@utils/integrations';
|
|
import {getMarkdownBlockStyles, getMarkdownTextStyles} from '@utils/markdown';
|
|
import {changeOpacity, makeStyleSheetFromTheme} from '@utils/theme';
|
|
import {secureGetFromRecord} from '@utils/types';
|
|
|
|
import DialogIntroductionText from '../interactive_dialog/dialog_introduction_text';
|
|
import {buildNavigationButton, dismissModal, setButtons} from '../navigation';
|
|
|
|
import AppsFormField from './apps_form_field';
|
|
|
|
import type {AvailableScreens} from '@typings/screens/navigation';
|
|
import type {ImageResource} from 'react-native-navigation';
|
|
|
|
const getStyleFromTheme = makeStyleSheetFromTheme((theme: Theme) => {
|
|
return {
|
|
container: {
|
|
backgroundColor: changeOpacity(theme.centerChannelColor, 0.03),
|
|
height: '100%',
|
|
},
|
|
errorContainer: {
|
|
marginTop: 15,
|
|
marginLeft: 15,
|
|
fontSize: 14,
|
|
fontWeight: 'bold',
|
|
},
|
|
scrollView: {
|
|
marginBottom: 20,
|
|
marginTop: 10,
|
|
},
|
|
errorLabel: {
|
|
fontSize: 12,
|
|
textAlign: 'left',
|
|
color: (theme.errorTextColor || '#DA4A4A'),
|
|
},
|
|
buttonContainer: {
|
|
paddingTop: 20,
|
|
paddingLeft: 50,
|
|
paddingRight: 50,
|
|
},
|
|
};
|
|
});
|
|
|
|
function fieldsAsElements(fields?: AppField[]): DialogElement[] {
|
|
return fields?.map((f) => ({
|
|
name: f.name,
|
|
type: f.type,
|
|
subtype: f.subtype,
|
|
optional: !f.is_required,
|
|
} as DialogElement)) || [];
|
|
}
|
|
|
|
const close = () => {
|
|
Keyboard.dismiss();
|
|
dismissModal();
|
|
};
|
|
|
|
const makeCloseButton = (icon: ImageResource) => {
|
|
return buildNavigationButton(CLOSE_BUTTON_ID, 'close.more_direct_messages.button', icon);
|
|
};
|
|
|
|
export type Props = {
|
|
form: AppForm;
|
|
componentId: AvailableScreens;
|
|
refreshOnSelect: (field: AppField, values: AppFormValues, value: AppFormValue) => Promise<DoAppCallResult<FormResponseData>>;
|
|
submit: (values: AppFormValues) => Promise<DoAppCallResult<FormResponseData>>;
|
|
performLookupCall: (field: AppField, values: AppFormValues, value: AppFormValue) => Promise<DoAppCallResult<AppLookupResponse>>;
|
|
}
|
|
|
|
type Errors = {[name: string]: string}
|
|
const emptyErrorsState: Errors = {};
|
|
|
|
type ValuesAction = {name: string; value: AppFormValue} | {elements?: AppField[]}
|
|
function valuesReducer(state: AppFormValues, action: ValuesAction) {
|
|
if (!('name' in action)) {
|
|
return initValues(action.elements);
|
|
}
|
|
|
|
if (state[action.name] === action.value) {
|
|
return state;
|
|
}
|
|
return {...state, [action.name]: action.value};
|
|
}
|
|
|
|
function initValues(fields?: AppField[]) {
|
|
const values: AppFormValues = {};
|
|
fields?.forEach((e) => {
|
|
if (e.type === 'bool') {
|
|
values[e.name] = (e.value === true || String(e.value).toLowerCase() === 'true');
|
|
} else if (e.value) {
|
|
values[e.name] = e.value;
|
|
}
|
|
});
|
|
return values;
|
|
}
|
|
|
|
const CLOSE_BUTTON_ID = 'close-app-form';
|
|
const SUBMIT_BUTTON_ID = 'submit-app-form';
|
|
|
|
function AppsFormComponent({
|
|
form,
|
|
componentId,
|
|
refreshOnSelect,
|
|
submit,
|
|
performLookupCall,
|
|
}: Props) {
|
|
const scrollView = useRef<ScrollView>(null);
|
|
const [submitting, setSubmitting] = useState(false);
|
|
const intl = useIntl();
|
|
const serverUrl = useServerUrl();
|
|
const [error, setError] = useState('');
|
|
const [errors, setErrors] = useState(emptyErrorsState);
|
|
const [values, dispatchValues] = useReducer(valuesReducer, form.fields, initValues);
|
|
const theme = useTheme();
|
|
const style = getStyleFromTheme(theme);
|
|
|
|
useDidUpdate(() => {
|
|
dispatchValues({elements: form.fields});
|
|
}, [form]);
|
|
|
|
const submitButtons = useMemo(() => {
|
|
return form.fields && form.fields.find((f) => f.name === form.submit_buttons);
|
|
}, [form]);
|
|
|
|
const rightButton = useMemo(() => {
|
|
if (submitButtons) {
|
|
return undefined;
|
|
}
|
|
const base = buildNavigationButton(
|
|
SUBMIT_BUTTON_ID,
|
|
'interactive_dialog.submit.button',
|
|
undefined,
|
|
intl.formatMessage({id: 'interactive_dialog.submit', defaultMessage: 'Submit'}),
|
|
);
|
|
base.enabled = !submitting;
|
|
base.showAsAction = 'always';
|
|
base.color = theme.sidebarHeaderTextColor;
|
|
return base;
|
|
}, [theme.sidebarHeaderTextColor, Boolean(submitButtons), submitting, intl]);
|
|
|
|
useEffect(() => {
|
|
setButtons(componentId, {
|
|
rightButtons: rightButton ? [rightButton] : [],
|
|
});
|
|
}, [componentId, rightButton]);
|
|
|
|
useEffect(() => {
|
|
const icon = CompassIcon.getImageSourceSync('close', 24, theme.sidebarHeaderTextColor);
|
|
setButtons(componentId, {
|
|
leftButtons: [makeCloseButton(icon)],
|
|
});
|
|
}, [componentId, theme]);
|
|
|
|
const updateErrors = useCallback((elements: DialogElement[], fieldErrors?: {[x: string]: string}, formError?: string): boolean => {
|
|
let hasErrors = false;
|
|
let hasHeaderError = false;
|
|
if (formError) {
|
|
hasErrors = true;
|
|
hasHeaderError = true;
|
|
setError(formError);
|
|
} else {
|
|
setError('');
|
|
}
|
|
|
|
if (fieldErrors && Object.keys(fieldErrors).length > 0) {
|
|
hasErrors = true;
|
|
if (checkIfErrorsMatchElements(fieldErrors, elements)) {
|
|
setErrors(fieldErrors);
|
|
} else if (!hasHeaderError) {
|
|
hasHeaderError = true;
|
|
const field = Object.keys(fieldErrors)[0];
|
|
setError(intl.formatMessage({
|
|
id: 'apps.error.responses.unknown_field_error',
|
|
defaultMessage: 'Received an error for an unknown field. Field name: `{field}`. Error: `{error}`.',
|
|
}, {
|
|
field,
|
|
error: fieldErrors[field],
|
|
}));
|
|
}
|
|
}
|
|
|
|
if (hasErrors) {
|
|
if (hasHeaderError && scrollView.current) {
|
|
scrollView.current.scrollTo({x: 0, y: 0});
|
|
}
|
|
}
|
|
return hasErrors;
|
|
}, [intl]);
|
|
|
|
const onChange = useCallback((name: string, value: AppFormValue) => {
|
|
const field = form.fields?.find((f) => f.name === name);
|
|
if (!field) {
|
|
return;
|
|
}
|
|
|
|
const newValues = {...values, [name]: value};
|
|
|
|
if (field.refresh) {
|
|
refreshOnSelect(field, newValues, value).then((res) => {
|
|
if (res.error) {
|
|
const errorResponse = res.error;
|
|
const errorMsg = errorResponse.text;
|
|
const newErrors = errorResponse.data?.errors;
|
|
const elements = fieldsAsElements(form.fields);
|
|
updateErrors(elements, newErrors, errorMsg);
|
|
return;
|
|
}
|
|
|
|
const callResponse = res.data!;
|
|
switch (callResponse.type) {
|
|
case AppCallResponseTypes.FORM:
|
|
return;
|
|
case AppCallResponseTypes.OK:
|
|
case AppCallResponseTypes.NAVIGATE:
|
|
updateErrors([], undefined, intl.formatMessage({
|
|
id: 'apps.error.responses.unexpected_type',
|
|
defaultMessage: 'App response type was not expected. Response type: {type}.',
|
|
}, {
|
|
type: callResponse.type,
|
|
}));
|
|
return;
|
|
default:
|
|
updateErrors([], undefined, intl.formatMessage({
|
|
id: 'apps.error.responses.unknown_type',
|
|
defaultMessage: 'App response type not supported. Response type: {type}.',
|
|
}, {
|
|
type: callResponse.type,
|
|
}));
|
|
}
|
|
});
|
|
}
|
|
|
|
dispatchValues({name, value});
|
|
}, [form, values, refreshOnSelect, updateErrors, intl]);
|
|
|
|
const handleSubmit = useCallback(async (button?: string) => {
|
|
if (submitting) {
|
|
return;
|
|
}
|
|
|
|
const {fields} = form;
|
|
const fieldErrors: {[name: string]: string} = {};
|
|
|
|
const elements = fieldsAsElements(fields);
|
|
let hasErrors = false;
|
|
elements?.forEach((element) => {
|
|
const newError = checkDialogElementForError(
|
|
element,
|
|
element.name === form.submit_buttons ? button : secureGetFromRecord(values, element.name),
|
|
);
|
|
if (newError) {
|
|
hasErrors = true;
|
|
fieldErrors[element.name] = intl.formatMessage({id: newError.id, defaultMessage: newError.defaultMessage}, newError.values);
|
|
}
|
|
});
|
|
|
|
if (hasErrors) {
|
|
setErrors(fieldErrors);
|
|
return;
|
|
}
|
|
|
|
const submission = {...values};
|
|
|
|
if (button && form.submit_buttons) {
|
|
submission[form.submit_buttons] = button;
|
|
}
|
|
|
|
setSubmitting(true);
|
|
|
|
const res = await submit(submission);
|
|
|
|
if (res.error) {
|
|
const errorResponse = res.error;
|
|
const errorMessage = errorResponse.text;
|
|
hasErrors = updateErrors(elements, errorResponse.data?.errors, errorMessage);
|
|
if (!hasErrors) {
|
|
close();
|
|
return;
|
|
}
|
|
setSubmitting(false);
|
|
return;
|
|
}
|
|
|
|
setError('');
|
|
setErrors(emptyErrorsState);
|
|
|
|
const callResponse = res.data!;
|
|
switch (callResponse.type) {
|
|
case AppCallResponseTypes.OK:
|
|
close();
|
|
return;
|
|
case AppCallResponseTypes.NAVIGATE:
|
|
close();
|
|
handleGotoLocation(serverUrl, intl, callResponse.navigate_to_url!);
|
|
return;
|
|
case AppCallResponseTypes.FORM:
|
|
setSubmitting(false);
|
|
return;
|
|
default:
|
|
updateErrors([], undefined, intl.formatMessage({
|
|
id: 'apps.error.responses.unknown_type',
|
|
defaultMessage: 'App response type not supported. Response type: {type}.',
|
|
}, {
|
|
type: callResponse.type,
|
|
}));
|
|
setSubmitting(false);
|
|
}
|
|
}, [form, values, submit, submitting, updateErrors, serverUrl, intl]);
|
|
|
|
const performLookup = useCallback(async (name: string, userInput: string): Promise<AppSelectOption[]> => {
|
|
const field = form.fields?.find((f) => f.name === name);
|
|
if (!field) {
|
|
return [];
|
|
}
|
|
|
|
const res = await performLookupCall(field, values, userInput);
|
|
if (res.error) {
|
|
const errorResponse = res.error;
|
|
const errMsg = errorResponse.text || intl.formatMessage({
|
|
id: 'apps.error.unknown',
|
|
defaultMessage: 'Unknown error.',
|
|
});
|
|
setErrors({[field.name]: errMsg});
|
|
return [];
|
|
}
|
|
|
|
const callResp = res.data!;
|
|
switch (callResp.type) {
|
|
case AppCallResponseTypes.OK: {
|
|
let items = callResp.data?.items || [];
|
|
items = items.filter(filterEmptyOptions);
|
|
return items;
|
|
}
|
|
case AppCallResponseTypes.FORM:
|
|
case AppCallResponseTypes.NAVIGATE: {
|
|
const errMsg = intl.formatMessage({
|
|
id: 'apps.error.responses.unexpected_type',
|
|
defaultMessage: 'App response type was not expected. Response type: {type}.',
|
|
}, {
|
|
type: callResp.type,
|
|
},
|
|
);
|
|
setErrors({[field.name]: errMsg});
|
|
return [];
|
|
}
|
|
default: {
|
|
const errMsg = intl.formatMessage({
|
|
id: 'apps.error.responses.unknown_type',
|
|
defaultMessage: 'App response type not supported. Response type: {type}.',
|
|
}, {
|
|
type: callResp.type,
|
|
},
|
|
);
|
|
setErrors({[field.name]: errMsg});
|
|
return [];
|
|
}
|
|
}
|
|
}, [form, values, performLookupCall, intl]);
|
|
|
|
useNavButtonPressed(CLOSE_BUTTON_ID, componentId, close, [close]);
|
|
useNavButtonPressed(SUBMIT_BUTTON_ID, componentId, handleSubmit, [handleSubmit]);
|
|
|
|
const submitButtonStyle = useMemo(() => buttonBackgroundStyle(theme, 'lg', 'primary', 'default'), [theme]);
|
|
const submitButtonTextStyle = useMemo(() => buttonTextStyle(theme, 'lg', 'primary', 'default'), [theme]);
|
|
|
|
return (
|
|
<SafeAreaView
|
|
testID='interactive_dialog.screen'
|
|
style={style.container}
|
|
nativeID={SecurityManager.getShieldScreenId(componentId)}
|
|
>
|
|
<ScrollView
|
|
ref={scrollView}
|
|
style={style.scrollView}
|
|
>
|
|
{error && (
|
|
<View style={style.errorContainer} >
|
|
<Markdown
|
|
baseTextStyle={style.errorLabel}
|
|
textStyles={getMarkdownTextStyles(theme)}
|
|
blockStyles={getMarkdownBlockStyles(theme)}
|
|
location=''
|
|
disableAtMentions={true}
|
|
value={error}
|
|
theme={theme}
|
|
/>
|
|
</View>
|
|
)}
|
|
{form.header &&
|
|
<DialogIntroductionText
|
|
value={form.header}
|
|
/>
|
|
}
|
|
{form.fields && form.fields.filter((f) => f.name !== form.submit_buttons).map((field) => {
|
|
const value = secureGetFromRecord(values, field.name);
|
|
if (!value) {
|
|
return null;
|
|
}
|
|
return (
|
|
<AppsFormField
|
|
field={field}
|
|
key={field.name}
|
|
name={field.name}
|
|
errorText={secureGetFromRecord(errors, field.name)}
|
|
value={value}
|
|
performLookup={performLookup}
|
|
onChange={onChange}
|
|
/>
|
|
);
|
|
})}
|
|
<View
|
|
style={{marginHorizontal: 5}}
|
|
>
|
|
{submitButtons?.options?.map((o) => (
|
|
<View
|
|
key={o.value}
|
|
style={style.buttonContainer}
|
|
>
|
|
<Button
|
|
onPress={() => handleSubmit(o.value)}
|
|
buttonStyle={submitButtonStyle}
|
|
>
|
|
<Text style={submitButtonTextStyle}>{o.label}</Text>
|
|
</Button>
|
|
</View>
|
|
))}
|
|
</View>
|
|
</ScrollView>
|
|
</SafeAreaView>
|
|
);
|
|
}
|
|
|
|
export default AppsFormComponent;
|