// // Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2026 // // 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/telegram/DialogId.h" #include "td/telegram/MessageEntity.h" #include "td/telegram/td_api.h" #include "td/telegram/telegram_api.h" #include "td/utils/common.h" #include "td/utils/HashTableUtils.h" #include "td/utils/Promise.h" #include "td/utils/Slice.h" namespace td { class UserManager; struct SuggestedAction { enum class Type : int32 { Empty, EnableArchiveAndMuteNewChats, CheckPhoneNumber, ViewChecksHint, ConvertToGigagroup, CheckPassword, SetPassword, UpgradePremium, SubscribeToAnnualPremium, RestorePremium, GiftPremiumForChristmas, BirthdaySetup, PremiumGrace, StarsSubscriptionLowBalance, UserpicSetup, Custom, SetupLoginEmail, SetupLoginEmailNoskip, SetupPasskey }; Type type_ = Type::Empty; DialogId dialog_id_; int32 otherwise_relogin_days_ = 0; string custom_type_; FormattedText title_; FormattedText description_; string url_; void init(Type type); SuggestedAction() = default; explicit SuggestedAction(Type type, DialogId dialog_id = DialogId(), int32 otherwise_relogin_days = 0) : type_(type), dialog_id_(dialog_id), otherwise_relogin_days_(otherwise_relogin_days) { } explicit SuggestedAction(Slice action_str); SuggestedAction(const UserManager *user_manager, telegram_api::object_ptr action); SuggestedAction(Slice action_str, DialogId dialog_id); explicit SuggestedAction(td_api::object_ptr &&suggested_action); bool is_empty() const { return type_ == Type::Empty; } bool is_persistent() const { return !is_empty() && type_ != Type::SetupLoginEmail && type_ != Type::SetupLoginEmailNoskip; } string get_suggested_action_str() const; td_api::object_ptr get_suggested_action_object(const UserManager *user_manager) const; template void store(StorerT &storer) const; template void parse(ParserT &parser); }; struct SuggestedActionHash { uint32 operator()(SuggestedAction suggested_action) const { return combine_hashes(DialogIdHash()(suggested_action.dialog_id_), static_cast(suggested_action.type_)); } }; inline bool operator==(const SuggestedAction &lhs, const SuggestedAction &rhs) { return lhs.type_ == rhs.type_ && lhs.dialog_id_ == rhs.dialog_id_ && lhs.custom_type_ == rhs.custom_type_ && lhs.url_ == rhs.url_; } inline bool operator!=(const SuggestedAction &lhs, const SuggestedAction &rhs) { return !(lhs == rhs); } inline bool operator<(const SuggestedAction &lhs, const SuggestedAction &rhs) { if (lhs.dialog_id_ != rhs.dialog_id_) { return lhs.dialog_id_.get() < rhs.dialog_id_.get(); } if (lhs.type_ != rhs.type_) { return static_cast(lhs.type_) < static_cast(rhs.type_); } if (lhs.custom_type_ != rhs.custom_type_) { return lhs.custom_type_ < rhs.custom_type_; } return lhs.url_ < rhs.url_; } td_api::object_ptr get_update_suggested_actions_object( const UserManager *user_manager, const vector &added_actions, const vector &removed_actions, const char *source); bool update_suggested_actions(const UserManager *user_manager, vector &suggested_actions, vector &&new_suggested_actions); bool remove_suggested_action(const UserManager *user_manager, vector &suggested_actions, SuggestedAction suggested_action); void dismiss_suggested_action(SuggestedAction action, Promise &&promise); } // namespace td