| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 |
- /*
- 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"
- struct ChatAdminRightsInfo;
- struct ChatRestrictionsInfo;
- namespace Window {
- class SessionNavigation;
- } // namespace Window
- class AddParticipantsBoxController : public ContactsBoxController {
- public:
- static void Start(
- not_null<Window::SessionNavigation*> navigation,
- not_null<ChatData*> chat);
- static void Start(
- not_null<Window::SessionNavigation*> navigation,
- not_null<ChannelData*> channel);
- static void Start(
- not_null<Window::SessionNavigation*> navigation,
- not_null<ChannelData*> channel,
- base::flat_set<not_null<UserData*>> &&alreadyIn);
- explicit AddParticipantsBoxController(not_null<Main::Session*> session);
- explicit AddParticipantsBoxController(not_null<PeerData*> peer);
- AddParticipantsBoxController(
- not_null<PeerData*> peer,
- base::flat_set<not_null<UserData*>> &&alreadyIn);
- [[nodiscard]] not_null<PeerData*> peer() const {
- return _peer;
- }
- 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;
- virtual bool needsInviteLinkButton();
- private:
- static void Start(
- not_null<Window::SessionNavigation*> navigation,
- not_null<ChannelData*> channel,
- base::flat_set<not_null<UserData*>> &&alreadyIn,
- bool justCreated);
- QPointer<Ui::BoxContent> showBox(object_ptr<Ui::BoxContent> box) const;
- void addInviteLinkButton();
- void inviteSelectedUsers(
- not_null<PeerListBox*> box,
- Fn<void()> done) const;
- void subscribeToMigration();
- 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;
- };
- struct ForbiddenInvites {
- std::vector<not_null<UserData*>> users;
- std::vector<not_null<UserData*>> premiumAllowsInvite;
- std::vector<not_null<UserData*>> premiumAllowsWrite;
- [[nodiscard]] bool empty() const {
- return users.empty();
- }
- };
- [[nodiscard]] ForbiddenInvites CollectForbiddenUsers(
- not_null<Main::Session*> session,
- const MTPmessages_InvitedUsers &result);
- bool ChatInviteForbidden(
- std::shared_ptr<Ui::Show> show,
- not_null<PeerData*> peer,
- ForbiddenInvites forbidden);
- // Adding an admin, banned or restricted user from channel members
- // with search + contacts search + global search.
- class AddSpecialBoxController
- : public PeerListController
- , public base::has_weak_ptr {
- public:
- using Role = ParticipantsBoxController::Role;
- using AdminDoneCallback = Fn<void(
- not_null<UserData*> user,
- ChatAdminRightsInfo adminRights,
- const QString &rank)>;
- using BannedDoneCallback = Fn<void(
- not_null<PeerData*> participant,
- ChatRestrictionsInfo bannedRights)>;
- AddSpecialBoxController(
- not_null<PeerData*> peer,
- Role role,
- AdminDoneCallback adminDoneCallback,
- BannedDoneCallback bannedDoneCallback);
- [[nodiscard]] not_null<PeerData*> peer() const {
- return _peer;
- }
- [[nodiscard]] Main::Session &session() const override;
- void prepare() override;
- void rowClicked(not_null<PeerListRow*> row) override;
- void loadMoreRows() override;
- [[nodiscard]] std::unique_ptr<PeerListRow> createSearchRow(
- not_null<PeerData*> peer) override;
- private:
- template <typename Callback>
- bool checkInfoLoaded(not_null<PeerData*> participant, 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,
- ChatAdminRightsInfo rights,
- const QString &rank);
- void showRestricted(not_null<UserData*> user, bool sure = false);
- void editRestrictedDone(
- not_null<PeerData*> participant,
- ChatRestrictionsInfo rights);
- void kickUser(not_null<PeerData*> participant, bool sure = false);
- bool appendRow(not_null<PeerData*> participant);
- bool prependRow(not_null<UserData*> user);
- std::unique_ptr<PeerListRow> createRow(
- not_null<PeerData*> participant) const;
- void subscribeToMigration();
- void migrate(not_null<ChatData*> chat, not_null<ChannelData*> channel);
- QPointer<Ui::BoxContent> showBox(object_ptr<Ui::BoxContent> box) const;
- not_null<PeerData*> _peer;
- MTP::Sender _api;
- Role _role = Role::Admins;
- int _offset = 0;
- mtpRequestId _loadRequestId = 0;
- bool _allLoaded = false;
- ParticipantsAdditionalData _additional;
- std::unique_ptr<ParticipantsOnlineSorter> _onlineSorter;
- Ui::BoxPointer _editBox;
- QPointer<Ui::BoxContent> _editParticipantBox;
- AdminDoneCallback _adminDoneCallback;
- BannedDoneCallback _bannedDoneCallback;
- protected:
- bool _excludeSelf = true;
- };
- // Finds chat/channel members, then contacts, then global search results.
- class AddSpecialBoxSearchController : public PeerListSearchController {
- public:
- using Role = ParticipantsBoxController::Role;
- AddSpecialBoxSearchController(
- not_null<PeerData*> peer,
- not_null<ParticipantsAdditionalData*> additional);
- 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();
- void addChatMembers(not_null<ChatData*> chat);
- void addChatsContacts();
- void requestGlobal();
- void subscribeToMigration();
- not_null<PeerData*> _peer;
- not_null<ParticipantsAdditionalData*> _additional;
- MTP::Sender _api;
- base::Timer _timer;
- QString _query;
- mtpRequestId _requestId = 0;
- int _offset = 0;
- bool _participantsLoaded = false;
- bool _chatsContactsAdded = false;
- bool _chatMembersAdded = false;
- bool _globalLoaded = false;
- std::map<QString, CacheEntry> _participantsCache;
- std::map<mtpRequestId, Query> _participantsQueries;
- std::map<QString, MTPcontacts_Found> _globalCache;
- std::map<mtpRequestId, QString> _globalQueries;
- };
|