// // Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022 // // 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/DialogId.h" #include "td/telegram/telegram_api.h" #include "td/utils/logging.h" #include namespace td { bool DialogId::is_valid() const { return get_type() != DialogType::None; } DialogType DialogId::get_type() const { // check that valid ranges are continuous static_assert(ZERO_CHANNEL_ID + 1 == -ChatId::MAX_CHAT_ID, ""); static_assert( ZERO_SECRET_CHAT_ID + std::numeric_limits::max() + 1 == ZERO_CHANNEL_ID - ChannelId::MAX_CHANNEL_ID, ""); if (id < 0) { if (-ChatId::MAX_CHAT_ID <= id) { return DialogType::Chat; } if (ZERO_CHANNEL_ID - ChannelId::MAX_CHANNEL_ID <= id && id != ZERO_CHANNEL_ID) { return DialogType::Channel; } if (ZERO_SECRET_CHAT_ID + std::numeric_limits::min() <= id && id != ZERO_SECRET_CHAT_ID) { return DialogType::SecretChat; } } else if (0 < id && id <= UserId::MAX_USER_ID) { return DialogType::User; } return DialogType::None; } UserId DialogId::get_user_id() const { CHECK(get_type() == DialogType::User); return UserId(id); } ChatId DialogId::get_chat_id() const { CHECK(get_type() == DialogType::Chat); return ChatId(-id); } ChannelId DialogId::get_channel_id() const { CHECK(get_type() == DialogType::Channel); return ChannelId(ZERO_CHANNEL_ID - id); } SecretChatId DialogId::get_secret_chat_id() const { CHECK(get_type() == DialogType::SecretChat); return SecretChatId(static_cast(id - ZERO_SECRET_CHAT_ID)); } DialogId::DialogId(UserId user_id) { if (user_id.is_valid()) { id = user_id.get(); } else { id = 0; } } DialogId::DialogId(ChatId chat_id) { if (chat_id.is_valid()) { id = -chat_id.get(); } else { id = 0; } } DialogId::DialogId(ChannelId channel_id) { if (channel_id.is_valid()) { id = ZERO_CHANNEL_ID - channel_id.get(); } else { id = 0; } } DialogId::DialogId(SecretChatId secret_chat_id) { if (secret_chat_id.is_valid()) { id = ZERO_SECRET_CHAT_ID + static_cast(secret_chat_id.get()); } else { id = 0; } } DialogId::DialogId(const tl_object_ptr &dialog_peer) { CHECK(dialog_peer != nullptr); switch (dialog_peer->get_id()) { case telegram_api::dialogPeer::ID: id = get_peer_id(static_cast(dialog_peer.get())->peer_); break; case telegram_api::dialogPeerFolder::ID: LOG(ERROR) << "Receive unsupported " << to_string(dialog_peer); id = 0; break; default: id = 0; UNREACHABLE(); } } DialogId::DialogId(const tl_object_ptr &peer) : id(get_peer_id(peer)) { } int64 DialogId::get_peer_id(const tl_object_ptr &peer) { CHECK(peer != nullptr); switch (peer->get_id()) { case telegram_api::peerUser::ID: { auto peer_user = static_cast(peer.get()); UserId user_id(peer_user->user_id_); if (!user_id.is_valid()) { LOG(ERROR) << "Receive invalid " << user_id; return 0; } return user_id.get(); } case telegram_api::peerChat::ID: { auto peer_chat = static_cast(peer.get()); ChatId chat_id(peer_chat->chat_id_); if (!chat_id.is_valid()) { LOG(ERROR) << "Receive invalid " << chat_id; return 0; } return -chat_id.get(); } case telegram_api::peerChannel::ID: { auto peer_channel = static_cast(peer.get()); ChannelId channel_id(peer_channel->channel_id_); if (!channel_id.is_valid()) { LOG(ERROR) << "Receive invalid " << channel_id; return 0; } return ZERO_CHANNEL_ID - channel_id.get(); } default: UNREACHABLE(); return 0; } } } // namespace td