Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3493703
D6957.id23471.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
3 KB
Referenced Files
None
Subscribers
None
D6957.id23471.diff
View Options
diff --git a/native/cpp/CommonCpp/NativeModules/CommCoreModule.cpp b/native/cpp/CommonCpp/NativeModules/CommCoreModule.cpp
--- a/native/cpp/CommonCpp/NativeModules/CommCoreModule.cpp
+++ b/native/cpp/CommonCpp/NativeModules/CommCoreModule.cpp
@@ -840,27 +840,48 @@
error = e.what();
}
- folly::dynamic parsedPrimary = folly::parseJson(primaryKeysResult);
- auto primaryCurve25519Cpp{parsedPrimary["curve25519"].asString()};
- auto primaryEd25519Cpp{parsedPrimary["ed25519"].asString()};
-
- folly::dynamic parsedNotifications =
- folly::parseJson(notificationsKeysResult);
- auto notificationsCurve25519Cpp{
- parsedNotifications["curve25519"].asString()};
- auto notificationsEd25519Cpp{
- parsedNotifications["ed25519"].asString()};
-
- folly::dynamic blobPayloadJSON = folly::dynamic::object(
- "primaryIdentityPublicKeys",
- folly::dynamic::object("ed25519", primaryEd25519Cpp)(
- "curve25519", primaryCurve25519Cpp))(
- "notificationIdentityPublicKeys",
- folly::dynamic::object("ed25519", notificationsEd25519Cpp)(
- "curve25519", notificationsCurve25519Cpp));
-
- auto blobPayloadCpp = folly::toJson(blobPayloadJSON);
- auto signatureCpp = this->cryptoModule->signMessage(blobPayloadCpp);
+ std::string notificationsCurve25519Cpp, notificationsEd25519Cpp,
+ blobPayloadCpp, signatureCpp, primaryCurve25519Cpp,
+ primaryEd25519Cpp;
+
+ if (!error.size()) {
+ folly::dynamic parsedPrimary;
+ try {
+ parsedPrimary = folly::parseJson(primaryKeysResult);
+ } catch (const folly::json::parse_error &e) {
+ error =
+ "parsing identity keys failed with: " + std::string(e.what());
+ }
+ if (!error.size()) {
+ primaryCurve25519Cpp = parsedPrimary["curve25519"].asString();
+ primaryEd25519Cpp = parsedPrimary["ed25519"].asString();
+
+ folly::dynamic parsedNotifications;
+ try {
+ parsedNotifications = folly::parseJson(notificationsKeysResult);
+ } catch (const folly::json::parse_error &e) {
+ error = "parsing notifications keys failed with: " +
+ std::string(e.what());
+ }
+ if (!error.size()) {
+ notificationsCurve25519Cpp =
+ parsedNotifications["curve25519"].asString();
+ notificationsEd25519Cpp =
+ parsedNotifications["ed25519"].asString();
+
+ folly::dynamic blobPayloadJSON = folly::dynamic::object(
+ "primaryIdentityPublicKeys",
+ folly::dynamic::object("ed25519", primaryEd25519Cpp)(
+ "curve25519", primaryCurve25519Cpp))(
+ "notificationIdentityPublicKeys",
+ folly::dynamic::object("ed25519", notificationsEd25519Cpp)(
+ "curve25519", notificationsCurve25519Cpp));
+
+ blobPayloadCpp = folly::toJson(blobPayloadJSON);
+ signatureCpp = this->cryptoModule->signMessage(blobPayloadCpp);
+ }
+ }
+ }
this->jsInvoker_->invokeAsync([=, &innerRt]() {
if (error.size()) {
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Dec 20, 3:55 AM (21 h, 18 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2680145
Default Alt Text
D6957.id23471.diff (3 KB)
Attached To
Mode
D6957: [native] Fix broken error handling in getUserPublicKey
Attached
Detach File
Event Timeline
Log In to Comment