remove unprocessed from store. Nothing was stored in the store

it was simply as passthrough to the Data file.
No we directly call the data file instead
pull/1495/head
Audric Ackermann 4 years ago
parent 3f43ae48ad
commit d844c5141e

@ -76,12 +76,10 @@ module.exports = grunt => {
'libtextsecure/errors.js', 'libtextsecure/errors.js',
'libtextsecure/libsignal-protocol.js', 'libtextsecure/libsignal-protocol.js',
'libtextsecure/protocol_wrapper.js', 'libtextsecure/protocol_wrapper.js',
'libtextsecure/crypto.js', 'libtextsecure/crypto.js',
'libtextsecure/storage.js', 'libtextsecure/storage.js',
'libtextsecure/storage/user.js', 'libtextsecure/storage/user.js',
'libtextsecure/storage/groups.js', 'libtextsecure/storage/groups.js',
'libtextsecure/storage/unprocessed.js',
'libtextsecure/protobufs.js', 'libtextsecure/protobufs.js',
'libtextsecure/helpers.js', 'libtextsecure/helpers.js',
'libtextsecure/stringview.js', 'libtextsecure/stringview.js',

@ -1,39 +0,0 @@
/* global window */
// eslint-disable-next-line func-names
(function() {
/** ***************************************
*** Not-yet-processed message storage ***
**************************************** */
window.textsecure = window.textsecure || {};
window.textsecure.storage = window.textsecure.storage || {};
window.textsecure.storage.unprocessed = {
getCount() {
return window.Signal.Data.getUnprocessedCount();
},
getAll() {
return window.Signal.Data.getAllUnprocessed();
},
get(id) {
return window.Signal.Data.getUnprocessedById(id);
},
add(data) {
return window.Signal.Data.saveUnprocessed(data, {
forceSave: true,
});
},
updateAttempts(id, attempts) {
return window.Signal.Data.updateUnprocessedAttempts(id, attempts);
},
addDecryptedData(id, data) {
return window.Signal.Data.updateUnprocessedWithData(id, data);
},
remove(id) {
return window.Signal.Data.removeUnprocessed(id);
},
removeAll() {
return window.Signal.Data.removeAllUnprocessed();
},
};
})();

@ -1,12 +1,22 @@
import { EnvelopePlus } from './types'; import { EnvelopePlus } from './types';
import { StringUtils } from '../session/utils'; import { StringUtils } from '../session/utils';
import _ from 'lodash'; import _ from 'lodash';
import {
getAllUnprocessed,
getUnprocessedById,
getUnprocessedCount,
removeAllUnprocessed,
removeUnprocessed,
saveUnprocessed,
updateUnprocessedAttempts,
updateUnprocessedWithData,
} from '../data/data';
export async function removeFromCache(envelope: EnvelopePlus) { export async function removeFromCache(envelope: EnvelopePlus) {
const { id } = envelope; const { id } = envelope;
window.log.info(`removing from cache envelope: ${id}`); window.log.info(`removing from cache envelope: ${id}`);
return window.textsecure.storage.unprocessed.remove(id); return removeUnprocessed(id);
} }
export async function addToCache( export async function addToCache(
@ -28,23 +38,23 @@ export async function addToCache(
data.senderIdentity = envelope.senderIdentity; data.senderIdentity = envelope.senderIdentity;
} }
return window.textsecure.storage.unprocessed.add(data); return saveUnprocessed(data, { forceSave: true });
} }
async function fetchAllFromCache(): Promise<Array<any>> { async function fetchAllFromCache(): Promise<Array<any>> {
const { textsecure } = window; const { textsecure } = window;
const count = await textsecure.storage.unprocessed.getCount(); const count = await getUnprocessedCount();
if (count > 1500) { if (count > 1500) {
await textsecure.storage.unprocessed.removeAll(); await removeAllUnprocessed();
window.log.warn( window.log.warn(
`There were ${count} messages in cache. Deleted all instead of reprocessing` `There were ${count} messages in cache. Deleted all instead of reprocessing`
); );
return []; return [];
} }
const items = await textsecure.storage.unprocessed.getAll(); const items = await getAllUnprocessed();
return items; return items;
} }
@ -65,12 +75,9 @@ export async function getAllFromCache() {
'getAllFromCache final attempt for envelope', 'getAllFromCache final attempt for envelope',
item.id item.id
); );
await textsecure.storage.unprocessed.remove(item.id); await removeUnprocessed(item.id);
} else { } else {
await textsecure.storage.unprocessed.updateAttempts( await updateUnprocessedAttempts(item.id, attempts);
item.id,
attempts
);
} }
} catch (error) { } catch (error) {
window.log.error( window.log.error(
@ -109,12 +116,9 @@ export async function getAllFromCacheForSource(source: string) {
'getAllFromCache final attempt for envelope', 'getAllFromCache final attempt for envelope',
item.id item.id
); );
await textsecure.storage.unprocessed.remove(item.id); await removeUnprocessed(item.id);
} else { } else {
await textsecure.storage.unprocessed.updateAttempts( await updateUnprocessedAttempts(item.id, attempts);
item.id,
attempts
);
} }
} catch (error) { } catch (error) {
window.log.error( window.log.error(
@ -133,7 +137,7 @@ export async function updateCache(
plaintext: ArrayBuffer plaintext: ArrayBuffer
): Promise<void> { ): Promise<void> {
const { id } = envelope; const { id } = envelope;
const item = await window.textsecure.storage.unprocessed.get(id); const item = await getUnprocessedById(id);
if (!item) { if (!item) {
window.log.error(`updateCache: Didn't find item ${id} in cache to update`); window.log.error(`updateCache: Didn't find item ${id} in cache to update`);
return; return;
@ -148,5 +152,5 @@ export async function updateCache(
item.decrypted = StringUtils.decode(plaintext, 'base64'); item.decrypted = StringUtils.decode(plaintext, 'base64');
return window.textsecure.storage.unprocessed.addDecryptedData(item.id, item); return updateUnprocessedWithData(item.id, item);
} }

@ -233,7 +233,7 @@ async function queueCached(item: any) {
try { try {
const { id } = item; const { id } = item;
await textsecure.storage.unprocessed.remove(id); await removeUnprocessed(id);
} catch (deleteError) { } catch (deleteError) {
window.log.error( window.log.error(
'queueCached error deleting item', 'queueCached error deleting item',

@ -25,7 +25,7 @@ export const syncConfigurationIfNeeded = async () => {
const allConvos = ConversationController.getInstance().getConversations(); const allConvos = ConversationController.getInstance().getConversations();
const configMessage = await getCurrentConfigurationMessage(allConvos); const configMessage = await getCurrentConfigurationMessage(allConvos);
try { try {
window.log.info('syncConfigurationIfNeeded with', configMessage); // window.log.info('syncConfigurationIfNeeded with', configMessage);
await getMessageQueue().sendSyncMessage(configMessage); await getMessageQueue().sendSyncMessage(configMessage);
} catch (e) { } catch (e) {

Loading…
Cancel
Save