2018-11-09 23:56:00 +01:00
|
|
|
//
|
2018-12-31 23:02:34 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2019
|
2018-11-09 23:56:00 +01:00
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
|
|
|
#include "td/telegram/NotificationType.h"
|
|
|
|
|
2019-03-30 15:59:35 +01:00
|
|
|
#include "td/telegram/ContactsManager.h"
|
2019-01-06 20:59:17 +01:00
|
|
|
#include "td/telegram/Global.h"
|
2018-11-15 16:58:33 +01:00
|
|
|
#include "td/telegram/MessagesManager.h"
|
|
|
|
#include "td/telegram/Td.h"
|
|
|
|
|
2018-11-09 23:56:00 +01:00
|
|
|
namespace td {
|
|
|
|
|
|
|
|
class NotificationTypeMessage : public NotificationType {
|
2018-11-15 17:09:01 +01:00
|
|
|
bool can_be_delayed() const override {
|
2019-03-26 14:39:15 +01:00
|
|
|
return message_id_.is_valid() && message_id_.is_server();
|
2018-11-15 17:09:01 +01:00
|
|
|
}
|
|
|
|
|
2019-03-30 21:49:14 +01:00
|
|
|
bool is_temporary() const override {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-11-20 15:08:44 +01:00
|
|
|
MessageId get_message_id() const override {
|
|
|
|
return message_id_;
|
|
|
|
}
|
|
|
|
|
2018-11-15 16:58:33 +01:00
|
|
|
td_api::object_ptr<td_api::NotificationType> get_notification_type_object(DialogId dialog_id) const override {
|
|
|
|
auto message_object = G()->td().get_actor_unsafe()->messages_manager_->get_message_object({dialog_id, message_id_});
|
|
|
|
if (message_object == nullptr) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return td_api::make_object<td_api::notificationTypeNewMessage>(std::move(message_object));
|
|
|
|
}
|
|
|
|
|
2018-11-09 23:56:00 +01:00
|
|
|
StringBuilder &to_string_builder(StringBuilder &string_builder) const override {
|
|
|
|
return string_builder << "NewMessageNotification[" << message_id_ << ']';
|
|
|
|
}
|
2019-03-28 22:08:57 +01:00
|
|
|
/*
|
2018-12-11 21:18:58 +01:00
|
|
|
Type get_type() const override {
|
2018-11-09 23:56:00 +01:00
|
|
|
return Type::Message;
|
|
|
|
}
|
2019-03-28 22:08:57 +01:00
|
|
|
*/
|
2018-11-09 23:56:00 +01:00
|
|
|
MessageId message_id_;
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit NotificationTypeMessage(MessageId message_id) : message_id_(message_id) {
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class NotificationTypeSecretChat : public NotificationType {
|
2018-11-15 17:09:01 +01:00
|
|
|
bool can_be_delayed() const override {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-03-30 21:49:14 +01:00
|
|
|
bool is_temporary() const override {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-11-20 15:08:44 +01:00
|
|
|
MessageId get_message_id() const override {
|
|
|
|
return MessageId();
|
|
|
|
}
|
|
|
|
|
2018-11-15 16:58:33 +01:00
|
|
|
td_api::object_ptr<td_api::NotificationType> get_notification_type_object(DialogId dialog_id) const override {
|
|
|
|
return td_api::make_object<td_api::notificationTypeNewSecretChat>();
|
|
|
|
}
|
|
|
|
|
2018-11-09 23:56:00 +01:00
|
|
|
StringBuilder &to_string_builder(StringBuilder &string_builder) const override {
|
|
|
|
return string_builder << "NewSecretChatNotification[]";
|
|
|
|
}
|
2019-03-28 22:08:57 +01:00
|
|
|
/*
|
2018-12-11 21:18:58 +01:00
|
|
|
Type get_type() const override {
|
2018-11-09 23:56:00 +01:00
|
|
|
return Type::SecretChat;
|
|
|
|
}
|
2019-03-28 22:08:57 +01:00
|
|
|
*/
|
2018-11-09 23:56:00 +01:00
|
|
|
public:
|
|
|
|
NotificationTypeSecretChat() {
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class NotificationTypeCall : public NotificationType {
|
2018-11-15 17:09:01 +01:00
|
|
|
bool can_be_delayed() const override {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-03-30 21:49:14 +01:00
|
|
|
bool is_temporary() const override {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-11-20 15:08:44 +01:00
|
|
|
MessageId get_message_id() const override {
|
2018-11-22 18:17:26 +01:00
|
|
|
return MessageId::max();
|
2018-11-20 15:08:44 +01:00
|
|
|
}
|
|
|
|
|
2018-11-15 16:58:33 +01:00
|
|
|
td_api::object_ptr<td_api::NotificationType> get_notification_type_object(DialogId dialog_id) const override {
|
|
|
|
return td_api::make_object<td_api::notificationTypeNewCall>(call_id_.get());
|
|
|
|
}
|
|
|
|
|
2018-11-09 23:56:00 +01:00
|
|
|
StringBuilder &to_string_builder(StringBuilder &string_builder) const override {
|
|
|
|
return string_builder << "NewCallNotification[" << call_id_ << ']';
|
|
|
|
}
|
2019-03-28 22:08:57 +01:00
|
|
|
/*
|
2018-12-11 21:18:58 +01:00
|
|
|
Type get_type() const override {
|
2018-11-09 23:56:00 +01:00
|
|
|
return Type::Call;
|
|
|
|
}
|
2019-03-28 22:08:57 +01:00
|
|
|
*/
|
2018-11-09 23:56:00 +01:00
|
|
|
CallId call_id_;
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit NotificationTypeCall(CallId call_id) : call_id_(call_id) {
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-03-28 22:08:57 +01:00
|
|
|
class NotificationTypePushMessage : public NotificationType {
|
|
|
|
bool can_be_delayed() const override {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-03-30 21:49:14 +01:00
|
|
|
bool is_temporary() const override {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-03-28 22:08:57 +01:00
|
|
|
MessageId get_message_id() const override {
|
|
|
|
return message_id_;
|
|
|
|
}
|
|
|
|
|
|
|
|
td_api::object_ptr<td_api::NotificationType> get_notification_type_object(DialogId dialog_id) const override {
|
2019-03-30 21:49:14 +01:00
|
|
|
auto sender_user_id = G()->td().get_actor_unsafe()->contacts_manager_->get_user_id_object(
|
|
|
|
sender_user_id_, "get_notification_type_object");
|
|
|
|
return td_api::make_object<td_api::notificationTypeNewPushMessage>(message_id_.get(), sender_user_id, key_, arg_);
|
2019-03-28 22:08:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
StringBuilder &to_string_builder(StringBuilder &string_builder) const override {
|
2019-03-30 15:59:35 +01:00
|
|
|
return string_builder << "NewPushMessageNotification[" << sender_user_id_ << ", " << message_id_ << ", " << key_
|
2019-03-28 22:08:57 +01:00
|
|
|
<< ", " << arg_ << ']';
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
Type get_type() const override {
|
|
|
|
return Type::PushMessage;
|
|
|
|
}
|
|
|
|
*/
|
2019-03-30 15:59:35 +01:00
|
|
|
UserId sender_user_id_;
|
2019-03-28 22:08:57 +01:00
|
|
|
MessageId message_id_;
|
|
|
|
string key_;
|
|
|
|
string arg_;
|
|
|
|
|
|
|
|
public:
|
2019-03-30 15:59:35 +01:00
|
|
|
NotificationTypePushMessage(UserId sender_user_id, MessageId message_id, string key, string arg)
|
|
|
|
: sender_user_id_(std::move(sender_user_id))
|
2019-03-28 22:08:57 +01:00
|
|
|
, message_id_(message_id)
|
|
|
|
, key_(std::move(key))
|
|
|
|
, arg_(std::move(arg)) {
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-11-09 23:56:00 +01:00
|
|
|
unique_ptr<NotificationType> create_new_message_notification(MessageId message_id) {
|
|
|
|
return make_unique<NotificationTypeMessage>(message_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
unique_ptr<NotificationType> create_new_secret_chat_notification() {
|
|
|
|
return make_unique<NotificationTypeSecretChat>();
|
|
|
|
}
|
|
|
|
|
|
|
|
unique_ptr<NotificationType> create_new_call_notification(CallId call_id) {
|
|
|
|
return make_unique<NotificationTypeCall>(call_id);
|
|
|
|
}
|
|
|
|
|
2019-03-30 15:59:35 +01:00
|
|
|
unique_ptr<NotificationType> create_new_push_message_notification(UserId sender_user_id, MessageId message_id,
|
|
|
|
string key, string arg) {
|
|
|
|
return td::make_unique<NotificationTypePushMessage>(sender_user_id, message_id, std::move(key), std::move(arg));
|
2019-03-28 22:08:57 +01:00
|
|
|
}
|
|
|
|
|
2018-11-09 23:56:00 +01:00
|
|
|
} // namespace td
|