Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3491551
D5995.id20688.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
5 KB
Referenced Files
None
Subscribers
None
D5995.id20688.diff
View Options
diff --git a/lib/types/account-types.js b/lib/types/account-types.js
--- a/lib/types/account-types.js
+++ b/lib/types/account-types.js
@@ -87,6 +87,7 @@
logInFromWebForm: 'LOG_IN_FROM_WEB_FORM',
logInFromNativeForm: 'LOG_IN_FROM_NATIVE_FORM',
logInFromNativeSIWE: 'LOG_IN_FROM_NATIVE_SIWE',
+ malformedDatabaseDeletion: 'MALFORMED_DATABASE_DELETION',
});
export type LogInActionSource = $Values<typeof logInActionSources>;
diff --git a/native/data/sqlite-data-handler.js b/native/data/sqlite-data-handler.js
--- a/native/data/sqlite-data-handler.js
+++ b/native/data/sqlite-data-handler.js
@@ -7,7 +7,10 @@
import { setClientDBStoreActionType } from 'lib/actions/client-db-store-actions';
import { isLoggedIn } from 'lib/selectors/user-selectors';
-import { logInActionSources } from 'lib/types/account-types';
+import {
+ logInActionSources,
+ type LogInActionSource,
+} from 'lib/types/account-types';
import { fetchNewCookieFromNativeCredentials } from 'lib/utils/action-utils';
import { getMessageForException } from 'lib/utils/errors';
import { convertClientDBThreadInfosToRawThreadInfos } from 'lib/utils/thread-ops-utils';
@@ -35,6 +38,48 @@
state.currentUserInfo?.anonymous ? undefined : state.currentUserInfo?.id,
);
+ const callFetchNewCookieFromNativeCredentials = React.useCallback(
+ async (source: LogInActionSource) => {
+ try {
+ await fetchNewCookieFromNativeCredentials(
+ dispatch,
+ cookie,
+ urlPrefix,
+ source,
+ );
+ dispatch({ type: setStoreLoadedActionType });
+ } catch (fetchCookieException) {
+ if (staffCanSee) {
+ Alert.alert(
+ `Error fetching new cookie from native credentials: ${
+ getMessageForException(fetchCookieException) ??
+ '{no exception message}'
+ }. Please kill the app.`,
+ );
+ } else {
+ ExitApp.exitApp();
+ }
+ }
+ },
+ [cookie, dispatch, staffCanSee, urlPrefix],
+ );
+
+ const callClearSensitiveData = React.useCallback(
+ async (triggeredBy: string) => {
+ if (staffCanSee || staffUserHasBeenLoggedIn) {
+ Alert.alert('Starting SQLite database deletion process');
+ }
+ await commCoreModule.clearSensitiveData();
+ if (staffCanSee || staffUserHasBeenLoggedIn) {
+ Alert.alert(
+ 'SQLite database successfully deleted',
+ `SQLite database deletion was triggered by ${triggeredBy}`,
+ );
+ }
+ },
+ [staffCanSee, staffUserHasBeenLoggedIn],
+ );
+
const handleSensitiveData = React.useCallback(async () => {
try {
const databaseCurrentUserInfoID = await commCoreModule.getCurrentUserID();
@@ -42,16 +87,7 @@
databaseCurrentUserInfoID &&
databaseCurrentUserInfoID !== currentLoggedInUserID
) {
- if (staffCanSee || staffUserHasBeenLoggedIn) {
- Alert.alert('Starting SQLite database deletion process');
- }
- await commCoreModule.clearSensitiveData();
- if (staffCanSee || staffUserHasBeenLoggedIn) {
- Alert.alert(
- 'SQLite database successfully deleted',
- 'SQLite database deletion was triggered by change in logged-in user credentials',
- );
- }
+ await callClearSensitiveData('change in logged-in user credentials');
}
if (currentLoggedInUserID) {
await commCoreModule.setCurrentUserID(currentLoggedInUserID);
@@ -71,12 +107,33 @@
ExitApp.exitApp();
}
}
- }, [currentLoggedInUserID, staffCanSee, staffUserHasBeenLoggedIn]);
+ }, [callClearSensitiveData, currentLoggedInUserID]);
React.useEffect(() => {
if (!rehydrateConcluded) {
return;
}
+
+ const databaseNeedsDeletion = commCoreModule.checkIfDatabaseNeedsDeletion();
+ if (databaseNeedsDeletion) {
+ (async () => {
+ try {
+ await callClearSensitiveData('detecting malformed database');
+ } catch (e) {
+ if (__DEV__) {
+ throw e;
+ } else {
+ console.log(e);
+ ExitApp.exitApp();
+ }
+ }
+ await callFetchNewCookieFromNativeCredentials(
+ logInActionSources.malformedDatabaseDeletion,
+ );
+ })();
+ return;
+ }
+
const sensitiveDataHandled = handleSensitiveData();
if (storeLoaded) {
return;
@@ -118,26 +175,9 @@
}`,
);
}
- try {
- await fetchNewCookieFromNativeCredentials(
- dispatch,
- cookie,
- urlPrefix,
- logInActionSources.sqliteLoadFailure,
- );
- dispatch({ type: setStoreLoadedActionType });
- } catch (fetchCookieException) {
- if (staffCanSee) {
- Alert.alert(
- `Error fetching new cookie from native credentials: ${
- getMessageForException(fetchCookieException) ??
- '{no exception message}'
- }. Please kill the app.`,
- );
- } else {
- ExitApp.exitApp();
- }
- }
+ await callFetchNewCookieFromNativeCredentials(
+ logInActionSources.sqliteLoadFailure,
+ );
}
})();
}, [
@@ -150,6 +190,9 @@
staffCanSee,
storeLoaded,
urlPrefix,
+ staffUserHasBeenLoggedIn,
+ callFetchNewCookieFromNativeCredentials,
+ callClearSensitiveData,
]);
return null;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Dec 19, 7:37 PM (20 h, 44 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2678606
Default Alt Text
D5995.id20688.diff (5 KB)
Attached To
Mode
D5995: [native] clear database when malformation is detected
Attached
Detach File
Event Timeline
Log In to Comment