forked from Ivasoft/mattermost-mobile
37 lines
1.2 KiB
TypeScript
37 lines
1.2 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import DatabaseManager from '@database/manager';
|
|
import {getFileById} from '@queries/servers/file';
|
|
|
|
export const updateLocalFile = async (serverUrl: string, file: FileInfo) => {
|
|
try {
|
|
const {operator} = DatabaseManager.getServerDatabaseAndOperator(serverUrl);
|
|
return operator.handleFiles({files: [file], prepareRecordsOnly: false});
|
|
} catch (error) {
|
|
// eslint-disable-next-line no-console
|
|
console.log('Failed updateLocalFile', error);
|
|
return {error};
|
|
}
|
|
};
|
|
|
|
export const updateLocalFilePath = async (serverUrl: string, fileId: string, localPath: string) => {
|
|
try {
|
|
const {database} = DatabaseManager.getServerDatabaseAndOperator(serverUrl);
|
|
const file = await getFileById(database, fileId);
|
|
if (file) {
|
|
await database.write(async () => {
|
|
await file.update((r) => {
|
|
r.localPath = localPath;
|
|
});
|
|
});
|
|
}
|
|
|
|
return {error: undefined};
|
|
} catch (error) {
|
|
// eslint-disable-next-line no-console
|
|
console.log('Failed updateLocalFilePath', error);
|
|
return {error};
|
|
}
|
|
};
|