2019-01-10 06:26:08 +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 "boxes/peer_list_controllers.h"
|
|
|
|
#include "boxes/peers/edit_participants_box.h"
|
|
|
|
|
|
|
|
class AddParticipantsBoxController : public ContactsBoxController {
|
|
|
|
public:
|
|
|
|
static void Start(not_null<ChatData*> chat);
|
|
|
|
static void Start(not_null<ChannelData*> channel);
|
|
|
|
static void Start(
|
|
|
|
not_null<ChannelData*> channel,
|
|
|
|
base::flat_set<not_null<UserData*>> &&alreadyIn);
|
|
|
|
|
2019-01-13 13:28:05 +00:00
|
|
|
AddParticipantsBoxController();
|
|
|
|
AddParticipantsBoxController(not_null<PeerData*> peer);
|
2019-01-10 06:26:08 +00:00
|
|
|
AddParticipantsBoxController(
|
2019-01-13 13:28:05 +00:00
|
|
|
not_null<PeerData*> peer,
|
2019-01-10 06:26:08 +00:00
|
|
|
base::flat_set<not_null<UserData*>> &&alreadyIn);
|
|
|
|
|
|
|
|
void rowClicked(not_null<PeerListRow*> row) override;
|
|
|
|
void itemDeselectedHook(not_null<PeerData*> peer) override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void prepareViewHook() override;
|
|
|
|
std::unique_ptr<PeerListRow> createRow(
|
|
|
|
not_null<UserData*> user) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
static void Start(
|
|
|
|
not_null<ChannelData*> channel,
|
|
|
|
base::flat_set<not_null<UserData*>> &&alreadyIn,
|
|
|
|
bool justCreated);
|
|
|
|
|
2019-01-13 13:28:05 +00:00
|
|
|
bool inviteSelectedUsers(not_null<PeerListBox*> box) const;
|
|
|
|
void subscribeToMigration();
|
2019-01-10 06:26:08 +00:00
|
|
|
int alreadyInCount() const;
|
|
|
|
bool isAlreadyIn(not_null<UserData*> user) const;
|
|
|
|
int fullCount() const;
|
|
|
|
void updateTitle();
|
|
|
|
|
|
|
|
PeerData *_peer = nullptr;
|
|
|
|
base::flat_set<not_null<UserData*>> _alreadyIn;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
// Adding an admin, banned or restricted user from channel members
|
|
|
|
// with search + contacts search + global search.
|
|
|
|
class AddSpecialBoxController
|
|
|
|
: public PeerListController
|
|
|
|
, private base::Subscriber
|
|
|
|
, private MTP::Sender
|
|
|
|
, public base::has_weak_ptr {
|
|
|
|
public:
|
|
|
|
using Role = ParticipantsBoxController::Role;
|
|
|
|
|
|
|
|
using AdminDoneCallback = Fn<void(
|
|
|
|
not_null<UserData*> user,
|
|
|
|
const MTPChatAdminRights &adminRights)>;
|
|
|
|
using BannedDoneCallback = Fn<void(
|
|
|
|
not_null<UserData*> user,
|
|
|
|
const MTPChatBannedRights &bannedRights)>;
|
|
|
|
AddSpecialBoxController(
|
|
|
|
not_null<PeerData*> peer,
|
|
|
|
Role role,
|
|
|
|
AdminDoneCallback adminDoneCallback,
|
|
|
|
BannedDoneCallback bannedDoneCallback);
|
|
|
|
|
|
|
|
void prepare() override;
|
|
|
|
void rowClicked(not_null<PeerListRow*> row) override;
|
|
|
|
void loadMoreRows() override;
|
|
|
|
|
|
|
|
std::unique_ptr<PeerListRow> createSearchRow(
|
|
|
|
not_null<PeerData*> peer) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
template <typename Callback>
|
|
|
|
bool checkInfoLoaded(not_null<UserData*> user, Callback callback);
|
|
|
|
|
|
|
|
void prepareChatRows(not_null<ChatData*> chat);
|
|
|
|
void rebuildChatRows(not_null<ChatData*> chat);
|
|
|
|
|
|
|
|
void showAdmin(not_null<UserData*> user, bool sure = false);
|
|
|
|
void editAdminDone(
|
|
|
|
not_null<UserData*> user,
|
|
|
|
const MTPChatAdminRights &rights);
|
|
|
|
void showRestricted(not_null<UserData*> user, bool sure = false);
|
|
|
|
void editRestrictedDone(
|
|
|
|
not_null<UserData*> user,
|
|
|
|
const MTPChatBannedRights &rights);
|
|
|
|
void kickUser(not_null<UserData*> user, bool sure = false);
|
|
|
|
bool appendRow(not_null<UserData*> user);
|
|
|
|
bool prependRow(not_null<UserData*> user);
|
|
|
|
std::unique_ptr<PeerListRow> createRow(not_null<UserData*> user) const;
|
|
|
|
|
2019-01-13 13:28:05 +00:00
|
|
|
void subscribeToMigration();
|
|
|
|
void migrate(not_null<ChannelData*> channel);
|
|
|
|
|
2019-01-10 06:26:08 +00:00
|
|
|
not_null<PeerData*> _peer;
|
|
|
|
Role _role = Role::Admins;
|
|
|
|
int _offset = 0;
|
|
|
|
mtpRequestId _loadRequestId = 0;
|
|
|
|
bool _allLoaded = false;
|
2019-01-10 11:01:59 +00:00
|
|
|
ParticipantsAdditionalData _additional;
|
2019-01-10 06:26:08 +00:00
|
|
|
std::unique_ptr<ParticipantsOnlineSorter> _onlineSorter;
|
2019-01-14 06:34:51 +00:00
|
|
|
BoxPointer _editBox;
|
2019-01-10 06:26:08 +00:00
|
|
|
AdminDoneCallback _adminDoneCallback;
|
|
|
|
BannedDoneCallback _bannedDoneCallback;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
// Finds chat/channel members, then contacts, then global search results.
|
|
|
|
class AddSpecialBoxSearchController
|
|
|
|
: public PeerListSearchController
|
2019-01-13 13:28:05 +00:00
|
|
|
, private MTP::Sender
|
|
|
|
, private base::Subscriber {
|
2019-01-10 06:26:08 +00:00
|
|
|
public:
|
|
|
|
using Role = ParticipantsBoxController::Role;
|
|
|
|
|
|
|
|
AddSpecialBoxSearchController(
|
|
|
|
not_null<PeerData*> peer,
|
2019-01-10 11:01:59 +00:00
|
|
|
not_null<ParticipantsAdditionalData*> additional);
|
2019-01-10 06:26:08 +00:00
|
|
|
|
|
|
|
void searchQuery(const QString &query) override;
|
|
|
|
bool isLoading() override;
|
|
|
|
bool loadMoreRows() override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
struct CacheEntry {
|
|
|
|
MTPchannels_ChannelParticipants result;
|
|
|
|
int requestedCount = 0;
|
|
|
|
};
|
|
|
|
struct Query {
|
|
|
|
QString text;
|
|
|
|
int offset = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
void searchOnServer();
|
|
|
|
bool searchParticipantsInCache();
|
|
|
|
void searchParticipantsDone(
|
|
|
|
mtpRequestId requestId,
|
|
|
|
const MTPchannels_ChannelParticipants &result,
|
|
|
|
int requestedCount);
|
|
|
|
bool searchGlobalInCache();
|
|
|
|
void searchGlobalDone(
|
|
|
|
mtpRequestId requestId,
|
|
|
|
const MTPcontacts_Found &result);
|
|
|
|
void requestParticipants();
|
2019-01-10 13:21:24 +00:00
|
|
|
void addChatMembers(not_null<ChatData*> chat);
|
2019-01-10 06:26:08 +00:00
|
|
|
void addChatsContacts();
|
|
|
|
void requestGlobal();
|
|
|
|
|
2019-01-13 13:28:05 +00:00
|
|
|
void subscribeToMigration();
|
|
|
|
|
2019-01-10 06:26:08 +00:00
|
|
|
not_null<PeerData*> _peer;
|
2019-01-10 11:01:59 +00:00
|
|
|
not_null<ParticipantsAdditionalData*> _additional;
|
2019-01-10 06:26:08 +00:00
|
|
|
|
|
|
|
base::Timer _timer;
|
|
|
|
QString _query;
|
|
|
|
mtpRequestId _requestId = 0;
|
|
|
|
int _offset = 0;
|
|
|
|
bool _participantsLoaded = false;
|
|
|
|
bool _chatsContactsAdded = false;
|
2019-01-14 13:01:00 +00:00
|
|
|
bool _chatMembersAdded = false;
|
2019-01-10 06:26:08 +00:00
|
|
|
bool _globalLoaded = false;
|
|
|
|
std::map<QString, CacheEntry> _participantsCache;
|
|
|
|
std::map<mtpRequestId, Query> _participantsQueries;
|
|
|
|
std::map<QString, MTPcontacts_Found> _globalCache;
|
|
|
|
std::map<mtpRequestId, QString> _globalQueries;
|
|
|
|
|
|
|
|
};
|