Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Close stale issues and PRs / stale (push) Successful in 13s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
65 lines
1.3 KiB
C++
65 lines
1.3 KiB
C++
/*
|
|
This file is part of Telegram Desktop,
|
|
the official desktop application for the Telegram messaging service.
|
|
|
|
For license and copyright information please follow this link:
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|
*/
|
|
#pragma once
|
|
|
|
namespace Main {
|
|
class Session;
|
|
} // namespace Main
|
|
|
|
namespace Data {
|
|
|
|
enum class TopPeerType {
|
|
Chat,
|
|
BotApp,
|
|
};
|
|
|
|
class TopPeers final {
|
|
public:
|
|
TopPeers(not_null<Main::Session*> session, TopPeerType type);
|
|
~TopPeers();
|
|
|
|
[[nodiscard]] std::vector<not_null<PeerData*>> list() const;
|
|
[[nodiscard]] bool disabled() const;
|
|
[[nodiscard]] rpl::producer<> updates() const;
|
|
|
|
void remove(not_null<PeerData*> peer);
|
|
void increment(not_null<PeerData*> peer, TimeId date);
|
|
void reload();
|
|
void toggleDisabled(bool disabled);
|
|
|
|
[[nodiscard]] QByteArray serialize() const;
|
|
void applyLocal(QByteArray serialized);
|
|
|
|
private:
|
|
struct TopPeer {
|
|
not_null<PeerData*> peer;
|
|
float64 rating = 0.;
|
|
};
|
|
|
|
void loadAfterChats();
|
|
void request();
|
|
[[nodiscard]] uint64 countHash() const;
|
|
void updated();
|
|
|
|
const not_null<Main::Session*> _session;
|
|
const TopPeerType _type = {};
|
|
|
|
std::vector<TopPeer> _list;
|
|
rpl::event_stream<> _updates;
|
|
crl::time _lastReceived = 0;
|
|
TimeId _lastReceivedDate = 0;
|
|
|
|
mtpRequestId _requestId = 0;
|
|
|
|
bool _disabled = false;
|
|
bool _received = false;
|
|
|
|
};
|
|
|
|
} // namespace Data
|