status-go/protocol
Pascal Precht 0ccdec2985 feat(CommunitiesManager): introduce `CreateHistoryArchiveTorrentFromMessages` API
Prior to this commit we had a `CreateHistoryArchiveTorrent()` API which
takes a `startDate`, an `endDate` and a `partition` to create a bunch of
message archives, given a certain time range.

The function expects the messages to live in the database, which means,
all messages that need to be archived have to be saved there at some
point.

This turns out to be an issue when importing communities from third
party services, where, sometimes, there are several thousands of messages
including attachment payloads, that have to be save to the database
first.

There are only two options to get the messages into the database:

1. Make one write operation with all messages - this slow, takes a long
   time and blocks the database until done
2. Create message chunks and perform multiple write operations - this is
   also slow, takes long but makes the database a bit more responsive as
   it's many smaller operations instead of one big one

Option 2) turned out to not be super feasible either as sometimes,
inserting even a single such message can take up to 10 seconds
(depending on payload)

Which brings me to the third option.

**A third option** is to not store those imported messages as waku
message into the database, just to later query them again to create the
archives, but instead create the archives right away from all the
messages that have been loaded into memory.

This is significantly faster and doesn't block the database.

To make this possible, this commit introduces
a `CreateHistoryArchiveTorrentFromMessages()` API, and
a `CreateHistoryArchiveTorrentFromDB()` API which can be used for
different use cases.
2022-10-24 13:28:55 +02:00
..
anonmetrics Send all encryption keys 2022-10-20 12:19:44 +01:00
audio
common Send all encryption keys 2022-10-20 12:19:44 +01:00
communities feat(CommunitiesManager): introduce `CreateHistoryArchiveTorrentFromMessages` API 2022-10-24 13:28:55 +02:00
datasync
discord feat: add `discord_messages` table and persistence APIs 2022-08-11 10:49:23 +02:00
encryption Send all encryption keys 2022-10-20 12:19:44 +01:00
ens feat: make kdf iterations configurable when creating a multiaccount (#2796) 2022-09-27 16:27:20 -04:00
identity Use image server for all kind of images and integrate identity rings 2022-09-16 09:52:08 +01:00
images
internal/sqlite
migrations Send all encryption keys 2022-10-20 12:19:44 +01:00
protobuf Send all encryption keys 2022-10-20 12:19:44 +01:00
pushnotificationclient Send all encryption keys 2022-10-20 12:19:44 +01:00
pushnotificationserver Send all encryption keys 2022-10-20 12:19:44 +01:00
requests feat: edit/delete/reply for emoji/sticker/audio (#2771) 2022-10-05 21:54:47 +04:00
sqlite feat: make kdf iterations configurable when creating a multiaccount (#2796) 2022-09-27 16:27:20 -04:00
subscription
transport Send all encryption keys 2022-10-20 12:19:44 +01:00
tt
urls fix: remove tenor.com from preview whitelist 2022-09-15 12:27:49 +02:00
v1 Send all encryption keys 2022-10-20 12:19:44 +01:00
verification feat: make kdf iterations configurable when creating a multiaccount (#2796) 2022-09-27 16:27:20 -04:00
zaputil
LICENSE
README.md
activity_center.go
activity_center_persistence.go Fix activity notification delition on message delition 2022-09-16 14:10:25 +02:00
anon_metrics_test.go
chat.go feat: add and distribute `chatIdentity.FirstMessageTimestamp` 2022-09-09 08:59:39 +02:00
chat_group_proxy.go
chat_test.go feat: add and distribute `chatIdentity.FirstMessageTimestamp` 2022-09-09 08:59:39 +02:00
communities_messenger_test.go feat: add `SpectateCommunity` api 2022-10-06 21:21:37 +02:00
contact.go feat: make any member able to add new users to group chat 2022-09-13 12:16:14 +02:00
delete_for_me_message.go feat: delete for me (#2866) 2022-09-28 19:42:17 +08:00
delete_message.go
edit_message.go
emoji_reaction.go
errors.go
group_chat_invitation.go
group_chat_system_messages.go feat: Handle image in group chat 2022-09-01 12:19:01 +02:00
identity_images.go
local_notifications.go
message_builder.go
message_persistence.go fix(message_persistence): ensure query cursor value is supplied where (#2898) 2022-10-07 13:38:28 -04:00
message_validator.go feat: delete for me (#2866) 2022-09-28 19:42:17 +08:00
message_validator_test.go
messenger.go feat(communities): add encryption suppord to archive protocol 2022-10-24 12:35:38 +02:00
messenger_activity_center.go
messenger_activity_center_test.go
messenger_auto_message.go
messenger_backup.go
messenger_backup_test.go feat(messenger): add `createDefaultChannel` flag to `CreateCommunity` API 2022-07-26 10:23:49 +02:00
messenger_bookmarks.go
messenger_browsers.go Issue 13813 -- Use messenger ns for browser CRUD (#2801) 2022-08-24 16:05:35 +02:00
messenger_browsers_test.go Issue 13813 -- Use messenger ns for browser CRUD (#2801) 2022-08-24 16:05:35 +02:00
messenger_chats.go
messenger_communities.go feat(communities): add encryption suppord to archive protocol 2022-10-24 12:35:38 +02:00
messenger_config.go feat: make kdf iterations configurable when creating a multiaccount (#2796) 2022-09-27 16:27:20 -04:00
messenger_contact_requests_test.go fix: lint (#2845) 2022-09-27 18:59:02 -04:00
messenger_contact_update_test.go
messenger_contact_verification.go
messenger_contacts.go [#13672] Sync contact request decision 2022-08-24 16:08:41 +02:00
messenger_delete_message_for_me_test.go feat: delete for me (#2866) 2022-09-28 19:42:17 +08:00
messenger_delete_message_test.go
messenger_discv5.go
messenger_edit_message_test.go feat: make any member able to add new users to group chat 2022-09-13 12:16:14 +02:00
messenger_emoji_test.go feat: make any member able to add new users to group chat 2022-09-13 12:16:14 +02:00
messenger_ens.go
messenger_group_chat.go feat: make any member able to add new users to group chat 2022-09-13 12:16:14 +02:00
messenger_group_chat_test.go feat: make any member able to edit group chat properties 2022-09-13 12:16:14 +02:00
messenger_handler.go feat(communities): retry downloading archive data 2022-10-17 11:33:02 +02:00
messenger_handler_test.go feat: Handle image in group chat 2022-09-01 12:19:01 +02:00
messenger_identity.go chore: add bio and social links validation 2022-08-16 14:29:00 +02:00
messenger_identity_image_test.go Added multiaccounts.Database tests for new funcs 2022-08-22 13:27:59 +01:00
messenger_images.go
messenger_installations_test.go fix(messenger): don't remove inactive chats when syncing 2022-08-25 11:51:01 +02:00
messenger_mailserver.go
messenger_mailserver_cycle.go
messenger_maps.go
messenger_messages.go feat: edit/delete/reply for emoji/sticker/audio (#2771) 2022-10-05 21:54:47 +04:00
messenger_mute_test.go
messenger_peers.go
messenger_pin_message_test.go
messenger_pin_messages.go
messenger_response.go fix(MessengerResponse): ensure `savedAddresses` response as `omitempty` 2022-10-13 14:53:09 +02:00
messenger_response_test.go
messenger_saved_address.go feat: sync saved addresses 2022-10-10 11:26:35 +02:00
messenger_share_image_test.go fix: TestImageMessageSharing (#2874) 2022-09-21 09:48:04 -04:00
messenger_status_updates.go fix: prevent tests segfault 2022-08-26 11:25:33 +02:00
messenger_status_updates_test.go Timeout automatic status updates (#2757) 2022-08-03 04:38:01 +05:30
messenger_sync_bookmark_test.go
messenger_sync_chat_test.go
messenger_sync_clear_history_test.go
messenger_sync_profile_picture_test.go Added multiaccounts.Database tests for new funcs 2022-08-22 13:27:59 +01:00
messenger_sync_saved_addresses_test.go feat: sync saved addresses 2022-10-10 11:26:35 +02:00
messenger_sync_settings.go
messenger_sync_settings_test.go chore: use provided pictures visibility options when creating settings db entry (#2867) 2022-10-05 12:53:42 +02:00
messenger_sync_verification_test.go
messenger_sync_wallets_test.go
messenger_test.go feat: sync saved addresses 2022-10-10 11:26:35 +02:00
messenger_walletconnect.go Implement wallet connect session CRUD API 2022-08-19 12:32:00 +01:00
messenger_walletconnect_test.go Implement wallet connect session CRUD API 2022-08-19 12:32:00 +01:00
persistence.go Use image server for all kind of images and integrate identity rings 2022-09-16 09:52:08 +01:00
persistence_test.go Send all encryption keys 2022-10-20 12:19:44 +01:00
push_notification_test.go feat(messenger): add `createDefaultChannel` flag to `CreateCommunity` API 2022-07-26 10:23:49 +02:00
status_update.go
transaction_validator.go
transaction_validator_test.go

README.md

status-go/protocol

This is an implementation of the secure transport and payloads which are a part of the Status Client specification.

This implementation uses SQLite and SQLCipher for persistent storage.

The payloads are encoded using protocol-buffers.

Content

  • messenger.go is the main file which exports Messenger struct. This is a public API to interact with this implementation of the Status Chat Protocol.
  • protobuf/ contains protobuf files implementing payloads described in the Payloads spec.
  • encryption/ implements the Secure Transport spec.
  • transport/ connects the Status Chat Protocol with a wire-protocol which in our case is either Whisper or Waku.
  • datasync/ is an adapter for MVDS.
  • applicationmetadata/ is an outer layer wrapping a payload with an app-specific metadata like a signature.
  • identity/ implements details related to creating a three-word name and identicon.
  • migrations/ contains implementation specific migrations for the sqlite database which is used by Messenger as a persistent data store.

History

Originally this package was a dedicated repo called status-protocol-go and was migrated into status-go. The new status-go/protocol package maintained its own dependencies until sub modules were removed and the root go.mod file managed all dependencies for the entire status-go repo.