status-go/protocol
Andrea Maria Piana 200273aa0e Count runes and not characters 2020-09-25 14:02:09 +02:00
..
audio
common Add tests for send notification & review feedback 2020-09-09 21:22:34 +02:00
datasync
encryption
identity
images
internal/sqlite
migrations Add index on seen & hide long messages 2020-09-10 10:26:59 +02:00
protobuf Add tests for send notification & review feedback 2020-09-09 21:22:34 +02:00
pushnotificationclient Add tests for send notification & review feedback 2020-09-09 21:22:34 +02:00
pushnotificationserver Add tests for send notification & review feedback 2020-09-09 21:22:34 +02:00
sqlite
subscription
transport
tt
v1
zaputil
LICENSE
README.md
chat.go Add tests for send notification & review feedback 2020-09-09 21:22:34 +02:00
chat_group_proxy.go
chat_test.go Move message to common namespace 2020-09-09 21:22:12 +02:00
contact.go
emoji_reaction.go
ens.go
ens_test.go
group_chat_invitation.go
group_chat_system_messages.go Move message to common namespace 2020-09-09 21:22:12 +02:00
message_builder.go Move message to common namespace 2020-09-09 21:22:12 +02:00
message_handler.go Add tests for send notification & review feedback 2020-09-09 21:22:34 +02:00
message_handler_test.go
message_persistence.go Add index on seen & hide long messages 2020-09-10 10:26:59 +02:00
message_validator.go Count runes and not characters 2020-09-25 14:02:09 +02:00
message_validator_test.go Count runes and not characters 2020-09-25 14:02:09 +02:00
messenger.go Fix push notification & mentions 2020-09-17 07:35:18 +02:00
messenger_config.go
messenger_contact_update_test.go
messenger_emoji_test.go
messenger_installations_test.go
messenger_mute_test.go
messenger_test.go Move message to common namespace 2020-09-09 21:22:12 +02:00
persistence.go Move message to common namespace 2020-09-09 21:22:12 +02:00
persistence_test.go Move message to common namespace 2020-09-09 21:22:12 +02:00
push_notification_test.go Dont sent messages to user who have not joined 2020-09-09 21:22:18 +02:00
timesource.go
transaction_validator.go Move message to common namespace 2020-09-09 21:22:12 +02:00
transaction_validator_test.go Move message to common namespace 2020-09-09 21:22:12 +02:00

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.