frank
bb6139aef1
add validation on config ( #3350 )
2023-03-29 23:51:01 +08:00
frank
268cd72e96
init currentMessageState when sync protobuf.ContactUpdate ( #3332 )
2023-03-28 11:45:54 +08:00
Samuel Hawksby-Robinson
fae7e8dba5
Removed server mode from pairing
2023-03-24 17:53:29 +00:00
Samuel Hawksby-Robinson
013c5addd6
Reconciled duplicate cert funcs
2023-03-24 17:31:34 +00:00
Samuel Hawksby-Robinson
374898d7c2
Reconciled shared test components into servertest
2023-03-24 17:31:34 +00:00
Samuel Hawksby-Robinson
b16631bbc3
Addressed feedback from @ilmotta
2023-03-24 16:47:43 +00:00
Samuel Hawksby-Robinson
43c2bc24d7
Immplemented limiting client IP to first that requests a challenge
2023-03-24 16:47:43 +00:00
Samuel Hawksby-Robinson
231ded6a7b
Added challenge middleware to handleSendInstallation
2023-03-24 16:47:43 +00:00
Samuel Hawksby-Robinson
79d8094dc2
Implemented and integrated challenge update after every successful challenge
2023-03-24 16:47:43 +00:00
Samuel Hawksby-Robinson
4019689df1
Implemented and integrated ChallengeTaker
2023-03-24 16:47:43 +00:00
Samuel Hawksby-Robinson
4ec064ec9c
Integrated ChallengeGiver into SenderServer
2023-03-24 16:47:43 +00:00
Samuel Hawksby-Robinson
cc8552a782
Added main scafolding for ChallengeGiver
2023-03-24 16:47:43 +00:00
Andrea Maria Piana
e2082bf5bd
Add customization color
2023-03-24 14:22:29 +00:00
Samuel Hawksby-Robinson
7cd7430d31
Improved Local Pairing Separation of Concerns ( #3248 )
...
* Moved all configs into config.go
* Completed build out of new config structures
* Completed SenderClient process flow
* Completed sync data Mounter and client integration
* Completed installation data Mounter and client integration
* House keeping, small refactor to match conventions.
PayloadEncryptor is passed by value and used as a pointer to the instance value and not a shared pointer.
* Reintroduced explicit Mounter field type
* Completed ReceiverClient structs and flows
* Finished BaseClient function parity with old acc
* Integrated new Clients into tests
Solved some test breaks caused by encryptors sharing pointers to their managed payloads
* Built out SenderServer and ReceiverServer structs
With all associated functions and integrated with endpoints.
* Updated tests to handle new Server types
* Added docs and additional refinement
* Renamed some files to better match the content of those files
* Added json tags to config fields that were missing explicit tags.
* fix tests relating to payload locking
* Addressing feedback from @ilmotta
* Addressed feedback from @qfrank
2023-03-23 11:44:15 +00:00
Siddarth Kumar
6ac2308ee1
Re-organise the code to be more modular ( #3172 )
2023-03-01 17:23:17 +05:30
frank
837bf2ca42
support local pairing after logged in as receiver; pair installation;( #3202 )
2023-02-28 20:32:45 +08:00
Samuel Hawksby-Robinson
90d4dde64b
Added a signal to emit after the AccountPayloadManager processes the multiaccounts.Account ( #3228 )
2023-02-27 11:46:46 +00:00
frank
e64091c779
support passing kdf and node config from receiver when local pairing ( #3179 )
2023-02-17 21:02:42 +08:00
Andrea Maria Piana
dab0e5d6d3
Make sure message has correctly set contact notification state
...
In case we received a message with propagated state, the message state
wasn't correctly set in the database.
2023-02-16 16:14:59 +00:00
Samuel Hawksby-Robinson
90d54b1a3d
Added timeout functionality to Servers ( #3192 )
...
* Added timeout functionality to servers
currently only possible on the pairnig serve
* Removed logging (like a mad man)
* handling linter erroring
2023-02-15 15:50:30 +00:00
Igor Sirotin
4d491da8de
LocalPairing minor fixes. `ValidateConnectionString` method. ( #3184 )
...
* fix(pairing): Added ConnectionParams::FromString input length check
* feat: Added `IsValidConnectionString` method
* Renamed IsValidConnectionString to ValidateConnectionString
* Bump version
2023-02-15 10:42:12 -04:00
Siddarth Kumar
cf84c40320
PR to fix media server sleep issue ( #3189 )
...
* fix media-server sleep wake up issue
we now use waku v2 and hence messenger was nil.
Since it was nil, the logic in place responsible for triggering app state events was not firing and hence media server would become un-responsive after a sleep event.
this commit fixes that.
Co-Authored-By: Andrea Maria Piana <andrea.maria.piana@gmail.com>
---------
Co-authored-by: Andrea Maria Piana <andrea.maria.piana@gmail.com>
2023-02-15 13:44:00 +05:30
frank
5ea8906dda
temporary fix: data/log dir looks weired after local pair sync ( #3159 )
2023-02-06 17:55:41 +08:00
Andrea Maria Piana
1c660c3525
Move images to shared namespace
2023-02-02 19:18:06 +00:00
Siddarth Kumar
efee11d28a
Introduce QR code generation & serve it via the media server ( #3154 )
...
* introduce QR code generation
2023-02-02 19:26:00 +05:30
frank
4a970683d1
throw error if account already exist when doing local pairing on receiver side ( #3091 )
2023-02-01 20:28:32 +08:00
frank
2c38b9e673
reorder pair action by the order of occurrence ( #3082 )
2023-01-31 16:47:30 +08:00
Andrea Maria Piana
ed9ca8392c
Upgrade linter to 1.50.0
2023-01-13 17:52:03 +00:00
frank
a29511b921
update account name if necessary ( #3072 )
2023-01-12 11:00:24 +08:00
frank
dc87d6bb0f
get messenger from account service when local pairing ( #3069 )
2023-01-11 19:30:54 +08:00
frank
ec7c0e9c7d
Sync all devices after initial pairing ( #3047 )
2023-01-06 20:21:14 +08:00
Jakub Sokołowski
cceba787fa
replace deprecated ioutil.TempDir with os.MkdirTemp
...
Signed-off-by: Jakub Sokołowski <jakub@status.im>
2023-01-03 15:40:11 +01:00
Samuel Hawksby-Robinson
eadb698603
ColourHash is a distinct type that has a discrete pattern
...
This change codifies that a ColourHash is a slice of [2]int, as code depends on the inner slice to have exactly 2 indexes
2022-11-28 16:26:07 +00:00
Samuel Hawksby-Robinson
3e8eed5faf
Added device name set on Messenger.Start()
2022-11-25 11:33:58 +00:00
Samuel Hawksby-Robinson
f33c1cec38
Added payload locking to prevent multiple requests for the pairing data
...
Signed-off-by: Samuel Hawksby-Robinson <samuel@samyoul.com>
2022-11-08 13:50:52 +00:00
Samuel Hawksby-Robinson
95eba8c123
Fixed PairingPayloadMarshaller logger issue
2022-10-26 10:26:59 +01:00
Samuel Hawksby-Robinson
71170e7099
Added comprehensive logging
2022-10-26 10:26:59 +01:00
Samuel Hawksby-Robinson
a56e389bd1
Change of strategy, using a for loop wait
2022-10-26 10:26:59 +01:00
Samuel Hawksby-Robinson
9a7f38fcdf
Added portManager debug logging
2022-10-26 10:26:59 +01:00
Samuel Hawksby-Robinson
8fb069286c
Added dumps to payload parsing
2022-10-26 10:26:59 +01:00
Samuel Hawksby-Robinson
4cbe874dea
Added 2 mutexes to prevent weird race conditions when reading and writing from separate threads
2022-10-26 10:26:59 +01:00
Samuel Hawksby-Robinson
a88ebe3a9f
Added docs to new functionality
2022-10-26 10:26:59 +01:00
Samuel Hawksby-Robinson
70bc492779
Added functionality to ensure that Make...URL() funcs wait until the port is ready. Adapted tests to check for wait.
2022-10-26 10:26:59 +01:00
Samuel Hawksby-Robinson
6cdd24a048
Added fix for pairing server race on port
2022-10-26 10:26:59 +01:00
Samuel Hawksby-Robinson
dde0c71cfc
Added string identifier for Connection String
2022-10-05 12:58:32 +01:00
Samuel Hawksby-Robinson
61904182c5
check and make keystore if required on receiving device
2022-10-05 12:20:26 +01:00
Pascal Precht
1eb8a5cc2c
feat(MediaServer): add support for discord author and attachment URLs
2022-09-29 16:33:15 +02:00
Richard Ramos
b8fd999b54
fix: lint ( #2845 )
...
Co-authored-by: Samuel Hawksby-Robinson <samuel@samyoul.com>
2022-09-27 18:59:02 -04:00
Richard Ramos
bf9abfc350
feat: make kdf iterations configurable when creating a multiaccount ( #2796 )
2022-09-27 16:27:20 -04:00
frank
6e4ac1c495
Use image server for all kind of images and integrate identity rings
2022-09-16 09:52:08 +01:00