tdlight/td/telegram/NotificationType.cpp

160 lines
4.9 KiB
C++
Raw Normal View History

//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2019
//
// 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"
#include "td/telegram/Global.h"
#include "td/telegram/MessagesManager.h"
#include "td/telegram/Td.h"
namespace td {
class NotificationTypeMessage : public NotificationType {
bool can_be_delayed() const override {
return message_id_.is_valid() && message_id_.is_server();
}
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 {
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));
}
StringBuilder &to_string_builder(StringBuilder &string_builder) const override {
return string_builder << "NewMessageNotification[" << message_id_ << ']';
}
/*
Type get_type() const override {
return Type::Message;
}
*/
MessageId message_id_;
public:
explicit NotificationTypeMessage(MessageId message_id) : message_id_(message_id) {
}
};
class NotificationTypeSecretChat : public NotificationType {
bool can_be_delayed() const override {
return false;
}
MessageId get_message_id() const override {
return MessageId();
}
td_api::object_ptr<td_api::NotificationType> get_notification_type_object(DialogId dialog_id) const override {
return td_api::make_object<td_api::notificationTypeNewSecretChat>();
}
StringBuilder &to_string_builder(StringBuilder &string_builder) const override {
return string_builder << "NewSecretChatNotification[]";
}
/*
Type get_type() const override {
return Type::SecretChat;
}
*/
public:
NotificationTypeSecretChat() {
}
};
class NotificationTypeCall : public NotificationType {
bool can_be_delayed() const override {
return false;
}
MessageId get_message_id() const override {
return MessageId::max();
}
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());
}
StringBuilder &to_string_builder(StringBuilder &string_builder) const override {
return string_builder << "NewCallNotification[" << call_id_ << ']';
}
/*
Type get_type() const override {
return Type::Call;
}
*/
CallId call_id_;
public:
explicit NotificationTypeCall(CallId call_id) : call_id_(call_id) {
}
};
class NotificationTypePushMessage : public NotificationType {
bool can_be_delayed() const override {
return false;
}
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 {
return nullptr;
// return td_api::make_object<td_api::notificationTypeNewPushMessage>(sender_name_, sender_photo_path_, message_id_.get(), key_, arg_);
}
StringBuilder &to_string_builder(StringBuilder &string_builder) const override {
return string_builder << "NewPushMessageNotification[" << sender_name_ << ", " << message_id_ << ", " << key_
<< ", " << arg_ << ']';
}
/*
Type get_type() const override {
return Type::PushMessage;
}
*/
string sender_name_;
string sender_photo_path_;
MessageId message_id_;
string key_;
string arg_;
public:
NotificationTypePushMessage(string sender_name, string sender_photo_path, MessageId message_id, string key,
string arg)
: sender_name_(std::move(sender_name))
, sender_photo_path_(std::move(sender_photo_path))
, message_id_(message_id)
, key_(std::move(key))
, arg_(std::move(arg)) {
}
};
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);
}
unique_ptr<NotificationType> create_new_push_message_notification(string sender_name, string sender_photo_path,
MessageId message_id, string key, string arg) {
return td::make_unique<NotificationTypePushMessage>(std::move(sender_name), std::move(sender_photo_path), message_id,
std::move(key), std::move(arg));
}
} // namespace td