2020-07-11 22:50:21 +02:00
|
|
|
//
|
2021-01-01 13:57:46 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2021
|
2020-07-11 22:50:21 +02: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)
|
|
|
|
//
|
|
|
|
#pragma once
|
|
|
|
|
2021-02-22 16:06:18 +01:00
|
|
|
#include "td/telegram/DialogId.h"
|
2020-07-11 22:50:21 +02:00
|
|
|
#include "td/telegram/td_api.h"
|
|
|
|
|
2021-11-26 12:48:43 +01:00
|
|
|
#include "td/actor/PromiseFuture.h"
|
|
|
|
|
2020-07-11 22:50:21 +02:00
|
|
|
#include "td/utils/common.h"
|
|
|
|
#include "td/utils/Slice.h"
|
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
2021-02-20 23:06:45 +01:00
|
|
|
struct SuggestedAction {
|
2021-06-11 01:48:10 +02:00
|
|
|
enum class Type : int32 {
|
|
|
|
Empty,
|
|
|
|
EnableArchiveAndMuteNewChats,
|
|
|
|
CheckPhoneNumber,
|
|
|
|
SeeTicksHint,
|
|
|
|
ConvertToGigagroup,
|
|
|
|
CheckPassword
|
|
|
|
};
|
2021-02-20 23:06:45 +01:00
|
|
|
Type type_ = Type::Empty;
|
2021-02-22 16:06:18 +01:00
|
|
|
DialogId dialog_id_;
|
2020-07-11 22:50:21 +02:00
|
|
|
|
2021-02-20 23:06:45 +01:00
|
|
|
void init(Type type);
|
2020-07-11 22:50:21 +02:00
|
|
|
|
2021-02-20 23:06:45 +01:00
|
|
|
SuggestedAction() = default;
|
2020-07-11 22:50:21 +02:00
|
|
|
|
2021-02-22 17:38:40 +01:00
|
|
|
explicit SuggestedAction(Type type, DialogId dialog_id = DialogId()) : type_(type), dialog_id_(dialog_id) {
|
2021-02-20 23:06:45 +01:00
|
|
|
}
|
2020-07-11 22:50:21 +02:00
|
|
|
|
2021-02-20 23:06:45 +01:00
|
|
|
explicit SuggestedAction(Slice action_str);
|
|
|
|
|
2021-02-22 16:06:18 +01:00
|
|
|
SuggestedAction(Slice action_str, DialogId dialog_id);
|
|
|
|
|
|
|
|
explicit SuggestedAction(const td_api::object_ptr<td_api::SuggestedAction> &suggested_action);
|
2021-02-20 23:06:45 +01:00
|
|
|
|
2021-02-22 21:34:10 +01:00
|
|
|
bool is_empty() const {
|
|
|
|
return type_ == Type::Empty;
|
|
|
|
}
|
|
|
|
|
2021-02-20 23:06:45 +01:00
|
|
|
string get_suggested_action_str() const;
|
|
|
|
|
|
|
|
td_api::object_ptr<td_api::SuggestedAction> get_suggested_action_object() const;
|
|
|
|
};
|
|
|
|
|
|
|
|
inline bool operator==(const SuggestedAction &lhs, const SuggestedAction &rhs) {
|
2021-02-22 17:38:40 +01:00
|
|
|
CHECK(lhs.dialog_id_ == rhs.dialog_id_);
|
2021-02-20 23:06:45 +01:00
|
|
|
return lhs.type_ == rhs.type_;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool operator!=(const SuggestedAction &lhs, const SuggestedAction &rhs) {
|
|
|
|
return !(lhs == rhs);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool operator<(const SuggestedAction &lhs, const SuggestedAction &rhs) {
|
2021-02-22 17:38:40 +01:00
|
|
|
CHECK(lhs.dialog_id_ == rhs.dialog_id_);
|
2021-02-20 23:06:45 +01:00
|
|
|
return static_cast<int32>(lhs.type_) < static_cast<int32>(rhs.type_);
|
|
|
|
}
|
2020-07-11 22:50:21 +02:00
|
|
|
|
2021-02-20 22:21:14 +01:00
|
|
|
td_api::object_ptr<td_api::updateSuggestedActions> get_update_suggested_actions_object(
|
|
|
|
const vector<SuggestedAction> &added_actions, const vector<SuggestedAction> &removed_actions);
|
|
|
|
|
2021-02-22 16:25:49 +01:00
|
|
|
void update_suggested_actions(vector<SuggestedAction> &suggested_actions,
|
|
|
|
vector<SuggestedAction> &&new_suggested_actions);
|
|
|
|
|
|
|
|
void remove_suggested_action(vector<SuggestedAction> &suggested_actions, SuggestedAction suggested_action);
|
|
|
|
|
2021-11-26 12:48:43 +01:00
|
|
|
void dismiss_suggested_action(SuggestedAction action, Promise<Unit> &&promise);
|
|
|
|
|
2020-07-11 22:50:21 +02:00
|
|
|
} // namespace td
|