2020-09-08 15:01:12 +00:00
|
|
|
/*
|
|
|
|
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
|
|
|
|
|
|
|
|
#include "mtproto/sender.h"
|
|
|
|
|
|
|
|
class ApiWrap;
|
|
|
|
|
|
|
|
namespace Api {
|
|
|
|
|
|
|
|
class Authorizations final {
|
|
|
|
public:
|
|
|
|
explicit Authorizations(not_null<ApiWrap*> api);
|
|
|
|
|
|
|
|
struct Entry {
|
|
|
|
uint64 hash = 0;
|
|
|
|
|
|
|
|
bool incomplete = false;
|
|
|
|
TimeId activeTime = 0;
|
|
|
|
QString name, active, info, ip;
|
|
|
|
};
|
|
|
|
using List = std::vector<Entry>;
|
|
|
|
|
|
|
|
void reload();
|
|
|
|
void cancelCurrentRequest();
|
|
|
|
void requestTerminate(
|
|
|
|
Fn<void(const MTPBool &result)> &&done,
|
|
|
|
Fn<void(const RPCError &error)> &&fail,
|
|
|
|
std::optional<uint64> hash = std::nullopt);
|
|
|
|
|
2020-09-18 19:04:18 +00:00
|
|
|
[[nodiscard]] crl::time lastReceivedTime();
|
|
|
|
|
2020-09-08 15:01:12 +00:00
|
|
|
[[nodiscard]] List list() const;
|
|
|
|
[[nodiscard]] rpl::producer<List> listChanges() const;
|
|
|
|
[[nodiscard]] int total() const;
|
|
|
|
[[nodiscard]] rpl::producer<int> totalChanges() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
MTP::Sender _api;
|
|
|
|
mtpRequestId _requestId = 0;
|
|
|
|
|
|
|
|
List _list;
|
|
|
|
rpl::event_stream<> _listChanges;
|
|
|
|
|
2020-09-18 19:04:18 +00:00
|
|
|
crl::time _lastReceived = 0;
|
|
|
|
|
2020-09-08 15:01:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Api
|