Commit Graph

2794 Commits

Author SHA1 Message Date
Chris Eager bc68b67cdf account crawler: remove obsolete accelerated mode v9.51.0 2023-05-04 11:27:16 -05:00
Chris Eager 42a9f1b3e4 account crawler: remove set*Dynamo methods 2023-05-04 11:27:16 -05:00
ravi-signal 08333d5989 Implement /v2/backup/auth/check 2023-05-04 11:23:33 -05:00
Ravi Khadiwala 0e0c0c5dfe return 400 instead of 503 for bad verification session-id 2023-05-04 09:22:51 -07:00
Ravi Khadiwala 59ebe65643 Add counter to /v2/attachments 2023-05-04 09:22:18 -07:00
Chris Eager 4fd2422e4d Catch and close() after UninitializedMessageException in websocket messages v9.50.0 2023-05-03 13:36:29 -05:00
Chris Eager 6181d439f6 Update to the latest version of the spam filter 2023-05-03 13:35:35 -05:00
Chris Eager 57b6c10dd1 Remove obsolete dynamic configuration 2023-05-03 13:20:44 -05:00
Jon Chambers 3ee5ac4514 Fix a late-breaking merge conflict v9.49.1 2023-05-02 16:12:26 -04:00
Jonathan Klabunde Tomer be176f98ad metric for take-prekey yielding an empty result v9.49.0 2023-05-02 13:03:49 -07:00
Jon Chambers 12b58a31a1 Retire integration with legacy contact discovery system 2023-05-02 15:57:03 -04:00
Jon Chambers 8d468d17e3 Add a temporary counter for profile key credential types 2023-05-02 15:56:19 -04:00
Erik Osheim 30df4c3d29 Update to the latest version of the spam filter 2023-05-02 10:37:22 -05:00
Brenden Stahle 5122a1c466 Change the copyright date from 2022 to 2023. 2023-05-02 10:31:04 -05:00
Chris Eager e135d50d82 Add counter for ContactDiscoverWriter updates v9.47.0 2023-05-01 13:42:14 -05:00
Chris Eager 487b5edc75 Handle potentially null payment method when canceling subscription 2023-05-01 13:42:05 -05:00
Jonathan Klabunde Tomer 47ad5779ad new /v2/accounts endpoint to distribute PNI key material without changing phone number v9.46.0 2023-04-21 12:20:57 -07:00
Katherine Yen 4fb89360ce Allow registration via recovery password for reglock enabled accounts v9.45.0 2023-04-20 09:21:04 -07:00
Jon Chambers 6dfdbeb7bb Check for no-op APNs token changes v9.44.0 2023-04-19 17:01:01 -04:00
Jon Chambers d0ccbd5526 Simplify a check for no-op FCM token changes 2023-04-19 17:01:01 -04:00
Jon Chambers 031ee57371 Convert "set push token" request objects to records 2023-04-19 17:01:01 -04:00
Jon Chambers 2043678739 Remove the removeSignalingKey API endpoint 2023-04-19 17:00:47 -04:00
Jon Chambers dd27e3b0c8 Convert attachment descriptors to records 2023-04-19 17:00:34 -04:00
Jon Chambers 1083d8bde0 Remove the legacy group credential endpoint 2023-04-19 17:00:14 -04:00
Jon Chambers d1eb247d8c Clarify the purpose of an addListener method v9.43.0 2023-04-18 12:04:54 -04:00
Jon Chambers fd5e9ea016 Drop the old (and now unused!) redis-dispatch module 2023-04-18 12:04:54 -04:00
Jon Chambers 11829d1f9f Refactor provisioning plumbing to use Lettuce 2023-04-18 12:04:54 -04:00
Ehren Kret ae70d1113c use same protoc version as library dependency 2023-04-17 14:41:55 -05:00
Katherine Yen c485d317fb Mock apnPushNotificationScheduler v9.42.0 2023-04-17 10:55:15 -07:00
Katherine Yen 350682b83a Lock account and send notification when someone passes phone verification but fails reglock 2023-04-17 10:30:36 -07:00
ravi-signal 0fe6485038 Add a configuration to make rate limiters fail open v9.41.0 2023-04-14 13:08:14 -05:00
Sergey Skrobotov a553093046 integration tests initial setup 2023-04-13 11:12:34 -07:00
Erik Osheim af0d5adcdc Update to the latest version of the spam filter v9.40.0 2023-04-11 16:40:03 -04:00
Katherine Yen 61af1ba029 Clean up prohibited username references v9.39.0 2023-04-10 15:21:02 -07:00
ravi-signal 8847cb92ac Don't block when scheduling background apns pushes v9.38.0 2023-04-10 13:51:36 -05:00
Erik Osheim 5242514874 Update to the latest version of the spam filter v9.37.0 2023-04-07 17:13:48 -04:00
Chris Eager 33a6577b6e Decrease message delivery executor thread count to 20 v9.36.0 2023-04-07 10:56:23 -05:00
Chris Eager 23d5006f70 Add prefix to executor metric names v9.35.0 2023-04-05 09:51:53 -05:00
Chris Eager 2697872bdd Use Apache StringUtils#join 2023-04-05 09:51:30 -05:00
Ravi Khadiwala 7b331edcde Separate username and signature truncation fields 2023-04-05 09:51:00 -05:00
Katherine Yen e4da59c236 Generic credential auth endpoint for call links v9.34.0 2023-04-04 10:28:35 -07:00
Jonathan Klabunde Tomer 48ebafa4e0 DynamoDBExtension refactor and helpers for our schema (#1327)
There's a lot of boilerplate involved in setting up a DynamoDBExtension, and some tests were creating several extensions
rather than one with several tables, which is probably slower than it has to be.

This change adds a new DynamoDbExtensionSchema class in which we can define the Dynamo schema for tests, and refactors
DynamoDbExtension to make it easy to instantiate a single extension with all the tables one wants (and no more, both to
minimize test startup time and to ensure we explicitly test our dependencies and lack thereof).

Tests requiring a DynamoDbExtension with a table schema that's not part of the normal Signal schema can instantiate a
DynamoDbExtension.RawSchema instead.

Test timings are unaffected, at least on my machine. Before:
```[INFO] service ............................................ SUCCESS [01:18 min]```

After:
```[INFO] service ............................................ SUCCESS [01:18 min]```

Co-authored-by: Jonathan Klabunde Tomer <jkt@viola.signal.org>
2023-04-03 13:08:43 -07:00
Erik Osheim f5726f63bd Update to the latest version of the spam filter v9.33.0 2023-04-03 14:34:13 -04:00
Jonathan Klabunde Tomer 391b070cff KeysController: return correct number of unsigned prekeys
When GET /v2/keys was orignally added in b263f47, prekeys were stored in
Postgres, with a user's unsigned and signed keys together in the same table.
Therefore GET /v2/keys subtracted one from the count returned by storage.

In d4d9403, we changed to a different storage schema, with unsigned prekeys in
one DynamoDB table and unsigned prekeys in the accounts Dynamo table.
Unfortunately, GET /v2/keys was not changed to stop subtracting one from the
count of prekeys in the keys table at the same time. This commit fixes that.
2023-04-03 14:32:45 -04:00
gram-signal 781cd0ca3f Truncate SVR2 IDs to 16 bytes rather than 10. 2023-03-30 17:19:18 -06:00
Erik Osheim 84355963f9 Update to the latest version of the spam filter v9.32.0 2023-03-29 16:51:48 -04:00
Chris Eager 3ccfeb490b Add retry after exceptions during a cluster topology change event callback v9.31.0 2023-03-29 11:41:19 -05:00
Chris Eager 0cc84131de Add enabled to SVR2 configuration 2023-03-29 11:40:21 -05:00
Chris Eager 4fa08fb189 Add secure value recovery 2 to AccountsManager#delete() 2023-03-29 11:40:21 -05:00
Chris Eager 2a551d1d41 Add SecureValueRecovery2Client 2023-03-29 11:40:21 -05:00