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)
|
|
|
|
//
|
|
|
|
#include "td/telegram/SuggestedAction.h"
|
|
|
|
|
2021-02-22 16:06:18 +01:00
|
|
|
#include "td/telegram/ChannelId.h"
|
2021-02-22 16:25:49 +01:00
|
|
|
#include "td/telegram/Global.h"
|
|
|
|
#include "td/telegram/Td.h"
|
2021-02-22 16:06:18 +01:00
|
|
|
|
2021-02-20 22:21:14 +01:00
|
|
|
#include "td/utils/algorithm.h"
|
|
|
|
|
2021-02-22 16:25:49 +01:00
|
|
|
#include <algorithm>
|
|
|
|
|
2020-07-11 22:50:21 +02:00
|
|
|
namespace td {
|
|
|
|
|
2021-02-20 23:06:45 +01:00
|
|
|
void SuggestedAction::init(Type type) {
|
|
|
|
type_ = type;
|
2020-07-11 22:50:21 +02:00
|
|
|
}
|
|
|
|
|
2021-02-20 23:06:45 +01:00
|
|
|
SuggestedAction::SuggestedAction(Slice action_str) {
|
|
|
|
if (action_str == Slice("AUTOARCHIVE_POPULAR")) {
|
|
|
|
init(Type::EnableArchiveAndMuteNewChats);
|
|
|
|
} else if (action_str == Slice("NEWCOMER_TICKS")) {
|
|
|
|
init(Type::SeeTicksHint);
|
2020-07-11 22:50:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-22 16:06:18 +01:00
|
|
|
SuggestedAction::SuggestedAction(Slice action_str, DialogId dialog_id) {
|
|
|
|
CHECK(dialog_id.is_valid());
|
|
|
|
if (action_str == Slice("CONVERT_GIGAGROUP")) {
|
|
|
|
type_ = Type::ConvertToGigagroup;
|
|
|
|
dialog_id_ = dialog_id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SuggestedAction::SuggestedAction(const td_api::object_ptr<td_api::SuggestedAction> &suggested_action) {
|
|
|
|
if (suggested_action == nullptr) {
|
2021-02-20 23:06:45 +01:00
|
|
|
return;
|
2020-07-11 22:50:21 +02:00
|
|
|
}
|
2021-02-22 16:06:18 +01:00
|
|
|
switch (suggested_action->get_id()) {
|
2020-07-11 22:50:21 +02:00
|
|
|
case td_api::suggestedActionEnableArchiveAndMuteNewChats::ID:
|
2021-02-20 23:06:45 +01:00
|
|
|
init(Type::EnableArchiveAndMuteNewChats);
|
|
|
|
break;
|
2020-07-11 22:50:21 +02:00
|
|
|
case td_api::suggestedActionCheckPhoneNumber::ID:
|
2021-02-20 23:06:45 +01:00
|
|
|
init(Type::CheckPhoneNumber);
|
|
|
|
break;
|
2021-01-14 23:30:05 +01:00
|
|
|
case td_api::suggestedActionSeeTicksHint::ID:
|
2021-02-20 23:06:45 +01:00
|
|
|
init(Type::SeeTicksHint);
|
|
|
|
break;
|
2021-02-22 16:06:18 +01:00
|
|
|
case td_api::suggestedActionConvertToBroadcastGroup::ID: {
|
|
|
|
auto action = static_cast<const td_api::suggestedActionConvertToBroadcastGroup *>(suggested_action.get());
|
2021-02-22 21:34:10 +01:00
|
|
|
ChannelId channel_id(action->supergroup_id_);
|
|
|
|
if (channel_id.is_valid()) {
|
|
|
|
type_ = Type::ConvertToGigagroup;
|
|
|
|
dialog_id_ = DialogId(channel_id);
|
|
|
|
}
|
2021-02-22 16:06:18 +01:00
|
|
|
break;
|
|
|
|
}
|
2020-07-11 22:50:21 +02:00
|
|
|
default:
|
|
|
|
UNREACHABLE();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-20 23:06:45 +01:00
|
|
|
string SuggestedAction::get_suggested_action_str() const {
|
|
|
|
switch (type_) {
|
|
|
|
case Type::EnableArchiveAndMuteNewChats:
|
|
|
|
return "AUTOARCHIVE_POPULAR";
|
|
|
|
case Type::SeeTicksHint:
|
|
|
|
return "NEWCOMER_TICKS";
|
2021-02-22 16:06:18 +01:00
|
|
|
case Type::ConvertToGigagroup:
|
|
|
|
return "CONVERT_GIGAGROUP";
|
2021-02-20 23:06:45 +01:00
|
|
|
default:
|
|
|
|
return string();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
td_api::object_ptr<td_api::SuggestedAction> SuggestedAction::get_suggested_action_object() const {
|
|
|
|
switch (type_) {
|
|
|
|
case Type::Empty:
|
2020-07-11 22:50:21 +02:00
|
|
|
return nullptr;
|
2021-02-20 23:06:45 +01:00
|
|
|
case Type::EnableArchiveAndMuteNewChats:
|
2020-07-11 22:50:21 +02:00
|
|
|
return td_api::make_object<td_api::suggestedActionEnableArchiveAndMuteNewChats>();
|
2021-02-20 23:06:45 +01:00
|
|
|
case Type::CheckPhoneNumber:
|
2020-07-11 22:50:21 +02:00
|
|
|
return td_api::make_object<td_api::suggestedActionCheckPhoneNumber>();
|
2021-02-20 23:06:45 +01:00
|
|
|
case Type::SeeTicksHint:
|
2021-01-14 23:30:05 +01:00
|
|
|
return td_api::make_object<td_api::suggestedActionSeeTicksHint>();
|
2021-02-22 16:06:18 +01:00
|
|
|
case Type::ConvertToGigagroup:
|
|
|
|
return td_api::make_object<td_api::suggestedActionConvertToBroadcastGroup>(dialog_id_.get_channel_id().get());
|
2020-07-11 22:50:21 +02:00
|
|
|
default:
|
|
|
|
UNREACHABLE();
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-20 23:06:45 +01:00
|
|
|
auto get_object = [](const SuggestedAction &action) {
|
|
|
|
return action.get_suggested_action_object();
|
|
|
|
};
|
|
|
|
return td_api::make_object<td_api::updateSuggestedActions>(transform(added_actions, get_object),
|
|
|
|
transform(removed_actions, get_object));
|
2021-02-20 22:21:14 +01:00
|
|
|
}
|
|
|
|
|
2021-02-22 16:25:49 +01:00
|
|
|
void update_suggested_actions(vector<SuggestedAction> &suggested_actions,
|
|
|
|
vector<SuggestedAction> &&new_suggested_actions) {
|
|
|
|
td::unique(new_suggested_actions);
|
|
|
|
if (new_suggested_actions == suggested_actions) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
vector<SuggestedAction> added_actions;
|
|
|
|
vector<SuggestedAction> removed_actions;
|
|
|
|
auto old_it = suggested_actions.begin();
|
|
|
|
auto new_it = new_suggested_actions.begin();
|
|
|
|
while (old_it != suggested_actions.end() || new_it != new_suggested_actions.end()) {
|
|
|
|
if (old_it != suggested_actions.end() && (new_it == new_suggested_actions.end() || *old_it < *new_it)) {
|
|
|
|
removed_actions.push_back(*old_it++);
|
|
|
|
} else if (old_it == suggested_actions.end() || *new_it < *old_it) {
|
|
|
|
added_actions.push_back(*new_it++);
|
|
|
|
} else {
|
|
|
|
old_it++;
|
|
|
|
new_it++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
CHECK(!added_actions.empty() || !removed_actions.empty());
|
|
|
|
suggested_actions = std::move(new_suggested_actions);
|
|
|
|
send_closure(G()->td(), &Td::send_update,
|
|
|
|
get_update_suggested_actions_object(std::move(added_actions), std::move(removed_actions)));
|
|
|
|
}
|
|
|
|
|
|
|
|
void remove_suggested_action(vector<SuggestedAction> &suggested_actions, SuggestedAction suggested_action) {
|
|
|
|
if (td::remove(suggested_actions, suggested_action)) {
|
|
|
|
send_closure(G()->td(), &Td::send_update, get_update_suggested_actions_object({}, {suggested_action}));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-11 22:50:21 +02:00
|
|
|
} // namespace td
|