tdlight/td/telegram/MessageContentType.h

113 lines
2.5 KiB
C
Raw Normal View History

//
2024-01-01 01:07:21 +01:00
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2024
//
// 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)
//
#pragma once
#include "td/utils/common.h"
#include "td/utils/HashTableUtils.h"
#include "td/utils/StringBuilder.h"
namespace td {
enum class MessageContentType : int32 {
None = -1,
Text,
Animation,
Audio,
Document,
Photo,
Sticker,
Video,
VoiceNote,
Contact,
Location,
Venue,
ChatCreate,
ChatChangeTitle,
ChatChangePhoto,
ChatDeletePhoto,
ChatDeleteHistory,
ChatAddUsers,
ChatJoinedByLink,
ChatDeleteUser,
ChatMigrateTo,
ChannelCreate,
ChannelMigrateFrom,
PinMessage,
Game,
GameScore,
ScreenshotTaken,
ChatSetTtl,
Unsupported,
Call,
Invoice,
PaymentSuccessful,
VideoNote,
ContactRegistered,
ExpiredPhoto,
ExpiredVideo,
LiveLocation,
CustomServiceAction,
WebsiteConnected,
PassportDataSent,
PassportDataReceived,
Poll,
Dice,
ProximityAlertTriggered,
GroupCall,
2021-08-18 15:03:10 +02:00
InviteToGroupCall,
ChatSetTheme,
WebViewDataSent,
2022-07-01 14:28:22 +02:00
WebViewDataReceived,
2022-10-18 15:08:53 +02:00
GiftPremium,
2022-10-18 21:16:03 +02:00
TopicCreate,
2022-12-09 12:13:37 +01:00
TopicEdit,
SuggestProfilePhoto,
2023-01-10 14:20:30 +01:00
WriteAccessAllowed,
2023-02-22 10:24:43 +01:00
RequestedDialog,
2023-04-10 13:12:35 +02:00
WebViewWriteAccessAllowed,
SetBackground,
Story,
2023-09-29 16:55:03 +02:00
WriteAccessAllowedByRequest,
2023-09-29 23:32:39 +02:00
GiftCode,
Giveaway,
GiveawayLaunch,
GiveawayResults,
GiveawayWinners,
ExpiredVideoNote,
2024-02-07 18:50:00 +01:00
ExpiredVoiceNote,
BoostApply
};
2023-05-18 14:44:00 +02:00
// increase MessageUnsupported::CURRENT_VERSION each time a new message content type is added
StringBuilder &operator<<(StringBuilder &string_builder, MessageContentType content_type);
bool is_allowed_media_group_content(MessageContentType content_type);
bool is_homogenous_media_group_content(MessageContentType content_type);
2024-01-30 13:07:21 +01:00
bool can_be_secret_message_content(MessageContentType content_type);
bool is_service_message_content(MessageContentType content_type);
bool is_editable_message_content(MessageContentType content_type);
bool is_supported_reply_message_content(MessageContentType content_type);
bool is_expired_message_content(MessageContentType content_type);
bool can_have_message_content_caption(MessageContentType content_type);
2022-02-05 21:28:43 +01:00
uint64 get_message_content_chain_id(MessageContentType content_type);
struct MessageContentTypeHash {
uint32 operator()(MessageContentType content_type) const {
return Hash<int32>()(static_cast<int32>(content_type));
}
};
} // namespace td