tdlight/td/telegram/FactCheck.h

67 lines
1.8 KiB
C
Raw Permalink Normal View History

2024-05-17 15:04:47 +02:00
//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2024
//
// 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/MessageEntity.h"
#include "td/telegram/td_api.h"
#include "td/telegram/telegram_api.h"
#include "td/utils/common.h"
namespace td {
class Dependencies;
class UserManager;
2024-05-17 15:04:47 +02:00
class FactCheck {
string country_code_;
FormattedText text_;
int64 hash_ = 0;
bool need_check_ = false;
friend bool operator==(const unique_ptr<FactCheck> &lhs, const unique_ptr<FactCheck> &rhs);
public:
FactCheck() = default;
FactCheck(const FactCheck &) = delete;
FactCheck &operator=(const FactCheck &) = delete;
FactCheck(FactCheck &&) = default;
FactCheck &operator=(FactCheck &&) = default;
~FactCheck();
static unique_ptr<FactCheck> get_fact_check(const UserManager *user_manager,
telegram_api::object_ptr<telegram_api::factCheck> &&fact_check,
2024-05-17 15:04:47 +02:00
bool is_bot);
bool is_empty() const {
return hash_ == 0;
}
bool need_check() const {
2024-05-23 19:46:45 +02:00
return need_check_;
2024-05-17 15:04:47 +02:00
}
void update_from(const FactCheck &old_fact_check);
void add_dependencies(Dependencies &dependencies) const;
td_api::object_ptr<td_api::factCheck> get_fact_check_object(const UserManager *user_manager) const;
2024-05-17 15:04:47 +02:00
template <class StorerT>
void store(StorerT &storer) const;
template <class ParserT>
void parse(ParserT &parser);
};
bool operator==(const unique_ptr<FactCheck> &lhs, const unique_ptr<FactCheck> &rhs);
bool operator!=(const unique_ptr<FactCheck> &lhs, const unique_ptr<FactCheck> &rhs);
} // namespace td