tdlight/td/telegram/SuggestedAction.cpp

81 lines
2.5 KiB
C++
Raw Normal View History

//
2021-01-01 13:57:46 +01:00
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2021
//
// 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"
#include "td/utils/algorithm.h"
namespace td {
2021-02-20 23:06:45 +01:00
void SuggestedAction::init(Type type) {
type_ = type;
}
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);
}
}
2021-02-20 23:06:45 +01:00
SuggestedAction::SuggestedAction(const td_api::object_ptr<td_api::SuggestedAction> &action_object) {
if (action_object == nullptr) {
2021-02-20 23:06:45 +01:00
return;
}
switch (action_object->get_id()) {
case td_api::suggestedActionEnableArchiveAndMuteNewChats::ID:
2021-02-20 23:06:45 +01:00
init(Type::EnableArchiveAndMuteNewChats);
break;
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;
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";
default:
return string();
}
}
td_api::object_ptr<td_api::SuggestedAction> SuggestedAction::get_suggested_action_object() const {
switch (type_) {
case Type::Empty:
return nullptr;
2021-02-20 23:06:45 +01:00
case Type::EnableArchiveAndMuteNewChats:
return td_api::make_object<td_api::suggestedActionEnableArchiveAndMuteNewChats>();
2021-02-20 23:06:45 +01:00
case Type::CheckPhoneNumber:
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>();
default:
UNREACHABLE();
return nullptr;
}
}
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));
}
} // namespace td