2019-11-11 17:14:32 +01:00
|
|
|
//
|
2022-01-01 01:35:39 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
|
2019-11-11 17:14:32 +01: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/DialogAdministrator.h"
|
|
|
|
|
|
|
|
#include "td/telegram/ContactsManager.h"
|
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
|
|
|
td_api::object_ptr<td_api::chatAdministrator> DialogAdministrator::get_chat_administrator_object(
|
|
|
|
const ContactsManager *contacts_manager) const {
|
|
|
|
CHECK(contacts_manager != nullptr);
|
|
|
|
CHECK(user_id_.is_valid());
|
|
|
|
return td_api::make_object<td_api::chatAdministrator>(
|
2019-12-07 21:38:05 +01:00
|
|
|
contacts_manager->get_user_id_object(user_id_, "get_chat_administrator_object"), rank_, is_creator_);
|
2019-11-11 17:14:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
StringBuilder &operator<<(StringBuilder &string_builder, const DialogAdministrator &administrator) {
|
2020-10-01 18:28:10 +02:00
|
|
|
return string_builder << "ChatAdministrator[" << administrator.user_id_ << ", title = " << administrator.rank_
|
2019-12-07 21:38:05 +01:00
|
|
|
<< ", is_owner = " << administrator.is_creator_ << "]";
|
2019-11-11 17:14:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace td
|