From 7cdbd20ae05e629081493a15f077c573cb1e1836 Mon Sep 17 00:00:00 2001 From: levlam Date: Thu, 21 Nov 2019 23:48:52 +0300 Subject: [PATCH] Support new push notification keys. GitOrigin-RevId: db45aeeab88d678b0ebef2b08368212a6fe7b89d --- td/telegram/NotificationManager.cpp | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/td/telegram/NotificationManager.cpp b/td/telegram/NotificationManager.cpp index fba4964e..424f46eb 100644 --- a/td/telegram/NotificationManager.cpp +++ b/td/telegram/NotificationManager.cpp @@ -2947,6 +2947,9 @@ Status NotificationManager::process_push_notification_payload(string payload, bo if (!clean_input_string(loc_key)) { return Status::Error(PSLICE() << "Receive invalid loc_key " << format::escaped(loc_key)); } + if (loc_key.empty()) { + return Status::Error("Receive empty loc_key"); + } for (auto &loc_arg : loc_args) { if (!clean_input_string(loc_arg)) { return Status::Error(PSLICE() << "Receive invalid loc_arg " << format::escaped(loc_arg)); @@ -3006,6 +3009,10 @@ Status NotificationManager::process_push_notification_payload(string payload, bo return Status::Error(200, "Immediate success"); } + if (loc_key == "GEO_LIVE_PENDING") { + return Status::Error(406, "Need update live location"); + } + if (loc_key == "AUTH_REGION" || loc_key == "AUTH_UNKNOWN") { // TODO return Status::Error(200, "Immediate success"); @@ -3049,7 +3056,7 @@ Status NotificationManager::process_push_notification_payload(string payload, bo return Status::Error("Can't find dialog_id"); } - if (loc_key.empty()) { + if (loc_key == "READ_HISTORY") { if (dialog_id.get_type() == DialogType::SecretChat) { return Status::Error("Receive read history in a secret chat"); } @@ -3086,6 +3093,10 @@ Status NotificationManager::process_push_notification_payload(string payload, bo return Status::OK(); } + if (loc_key == "MESSAGE_MUTED") { + return Status::Error(406, "Notifications about muted messages force loading data from the server"); + } + TRY_RESULT(msg_id, get_json_object_int_field(custom, "msg_id")); ServerMessageId server_message_id(msg_id); if (server_message_id != ServerMessageId() && !server_message_id.is_valid()) { @@ -3142,12 +3153,12 @@ Status NotificationManager::process_push_notification_payload(string payload, bo } if (begins_with(loc_key, "ENCRYPTION_")) { - // TODO new secret chat notifications + // TODO ENCRYPTION_REQUEST/ENCRYPTION_ACCEPT notifications return Status::Error(406, "New secret chat notification is not supported"); } if (begins_with(loc_key, "PHONE_CALL_")) { - // TODO phone call request/missed notification + // TODO PHONE_CALL_REQUEST/PHONE_CALL_DECLINE/PHONE_CALL_MISSED notification return Status::Error(406, "Phone call notification is not supported"); }