| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197 |
- /*
- 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
- */
- #include "boxes/peer_list_controllers.h"
- #include "api/api_chat_participants.h"
- #include "api/api_premium.h" // MessageMoneyRestriction.
- #include "base/random.h"
- #include "boxes/filters/edit_filter_chats_list.h"
- #include "settings/settings_premium.h"
- #include "ui/boxes/confirm_box.h"
- #include "ui/effects/round_checkbox.h"
- #include "ui/text/text_utilities.h"
- #include "ui/widgets/menu/menu_add_action_callback_factory.h"
- #include "ui/widgets/checkbox.h"
- #include "ui/widgets/popup_menu.h"
- #include "ui/wrap/padding_wrap.h"
- #include "ui/painter.h"
- #include "ui/ui_utility.h"
- #include "main/main_session.h"
- #include "data/data_peer_values.h"
- #include "data/data_session.h"
- #include "data/data_stories.h"
- #include "data/data_channel.h"
- #include "data/data_chat.h"
- #include "data/data_user.h"
- #include "data/data_forum.h"
- #include "data/data_forum_topic.h"
- #include "data/data_folder.h"
- #include "data/data_histories.h"
- #include "data/data_changes.h"
- #include "dialogs/ui/dialogs_layout.h"
- #include "apiwrap.h"
- #include "mainwidget.h"
- #include "mainwindow.h"
- #include "lang/lang_keys.h"
- #include "history/history.h"
- #include "history/history_item.h"
- #include "dialogs/dialogs_main_list.h"
- #include "payments/ui/payments_reaction_box.h"
- #include "ui/effects/outline_segments.h"
- #include "ui/wrap/slide_wrap.h"
- #include "window/window_separate_id.h"
- #include "window/window_session_controller.h" // showAddContact()
- #include "base/unixtime.h"
- #include "styles/style_boxes.h"
- #include "styles/style_profile.h"
- #include "styles/style_dialogs.h"
- #include "styles/style_chat_helpers.h"
- namespace {
- constexpr auto kSortByOnlineThrottle = 3 * crl::time(1000);
- constexpr auto kSearchPerPage = 50;
- } // namespace
- object_ptr<Ui::BoxContent> PrepareContactsBox(
- not_null<Window::SessionController*> sessionController) {
- using Mode = ContactsBoxController::SortMode;
- class Controller final : public ContactsBoxController {
- public:
- using ContactsBoxController::ContactsBoxController;
- [[nodiscard]] rpl::producer<not_null<PeerData*>> wheelClicks() const {
- return _wheelClicks.events();
- }
- protected:
- std::unique_ptr<PeerListRow> createRow(
- not_null<UserData*> user) override {
- return !user->isSelf()
- ? ContactsBoxController::createRow(user)
- : nullptr;
- }
- void rowMiddleClicked(
- not_null<PeerListRow*> row) override {
- _wheelClicks.fire(row->peer());
- }
- private:
- rpl::event_stream<not_null<PeerData*>> _wheelClicks;
- };
- auto controller = std::make_unique<Controller>(
- &sessionController->session());
- controller->setStyleOverrides(&st::contactsWithStories);
- controller->setStoriesShown(true);
- const auto raw = controller.get();
- auto init = [=](not_null<PeerListBox*> box) {
- struct State {
- QPointer<::Ui::IconButton> toggleSort;
- rpl::variable<Mode> mode = Mode::Online;
- ::Ui::Animations::Simple scrollAnimation;
- };
- const auto state = box->lifetime().make_state<State>();
- box->addButton(tr::lng_close(), [=] { box->closeBox(); });
- box->addLeftButton(
- tr::lng_profile_add_contact(),
- [=] { sessionController->showAddContact(); });
- state->toggleSort = box->addTopButton(st::contactsSortButton, [=] {
- const auto online = (state->mode.current() == Mode::Online);
- const auto mode = online ? Mode::Alphabet : Mode::Online;
- state->mode = mode;
- raw->setSortMode(mode);
- state->toggleSort->setIconOverride(
- online ? &st::contactsSortOnlineIcon : nullptr,
- online ? &st::contactsSortOnlineIconOver : nullptr);
- });
- raw->setSortMode(Mode::Online);
- raw->wheelClicks() | rpl::start_with_next([=](not_null<PeerData*> p) {
- sessionController->showInNewWindow(p);
- }, box->lifetime());
- };
- return Box<PeerListBox>(std::move(controller), std::move(init));
- }
- QBrush PeerListStoriesGradient(const style::PeerList &st) {
- const auto left = st.item.photoPosition.x();
- const auto top = st.item.photoPosition.y();
- const auto size = st.item.photoSize;
- return Ui::UnreadStoryOutlineGradient(QRectF(left, top, size, size));
- }
- std::vector<Ui::OutlineSegment> PeerListStoriesSegments(
- int count,
- int unread,
- const QBrush &unreadBrush) {
- Expects(unread <= count);
- Expects(count > 0);
- auto result = std::vector<Ui::OutlineSegment>();
- const auto add = [&](bool unread) {
- result.push_back({
- .brush = unread ? unreadBrush : st::dialogsUnreadBgMuted->b,
- .width = (unread
- ? st::dialogsStoriesFull.lineTwice / 2.
- : st::dialogsStoriesFull.lineReadTwice / 2.),
- });
- };
- result.reserve(count);
- for (auto i = 0, till = count - unread; i != till; ++i) {
- add(false);
- }
- for (auto i = 0; i != unread; ++i) {
- add(true);
- }
- return result;
- }
- void PeerListRowWithLink::setActionLink(const QString &action) {
- _action = action;
- refreshActionLink();
- }
- void PeerListRowWithLink::refreshActionLink() {
- if (!isInitialized()) return;
- _actionWidth = _action.isEmpty() ? 0 : st::normalFont->width(_action);
- }
- void PeerListRowWithLink::lazyInitialize(const style::PeerListItem &st) {
- PeerListRow::lazyInitialize(st);
- refreshActionLink();
- }
- QSize PeerListRowWithLink::rightActionSize() const {
- return QSize(_actionWidth, st::normalFont->height);
- }
- QMargins PeerListRowWithLink::rightActionMargins() const {
- return QMargins(
- st::contactsCheckPosition.x(),
- (st::contactsPadding.top() + st::contactsPhotoSize + st::contactsPadding.bottom() - st::normalFont->height) / 2,
- st::defaultPeerListItem.photoPosition.x() + st::contactsCheckPosition.x(),
- 0);
- }
- void PeerListRowWithLink::rightActionPaint(
- Painter &p,
- int x,
- int y,
- int outerWidth,
- bool selected,
- bool actionSelected) {
- p.setFont(actionSelected ? st::linkFontOver : st::linkFont);
- p.setPen(actionSelected ? st::defaultLinkButton.overColor : st::defaultLinkButton.color);
- p.drawTextLeft(x, y, outerWidth, _action, _actionWidth);
- }
- PeerListGlobalSearchController::PeerListGlobalSearchController(
- not_null<Main::Session*> session)
- : _session(session)
- , _api(&session->mtp()) {
- _timer.setCallback([this] { searchOnServer(); });
- }
- void PeerListGlobalSearchController::searchQuery(const QString &query) {
- if (_query != query) {
- _query = query;
- _requestId = 0;
- if (!_query.isEmpty() && !searchInCache()) {
- _timer.callOnce(AutoSearchTimeout);
- } else {
- _timer.cancel();
- }
- }
- }
- bool PeerListGlobalSearchController::searchInCache() {
- auto it = _cache.find(_query);
- if (it != _cache.cend()) {
- _requestId = 0;
- searchDone(it->second, _requestId);
- return true;
- }
- return false;
- }
- void PeerListGlobalSearchController::searchOnServer() {
- _requestId = _api.request(MTPcontacts_Search(
- MTP_string(_query),
- MTP_int(SearchPeopleLimit)
- )).done([=](const MTPcontacts_Found &result, mtpRequestId requestId) {
- searchDone(result, requestId);
- }).fail([=](const MTP::Error &error, mtpRequestId requestId) {
- if (_requestId == requestId) {
- _requestId = 0;
- delegate()->peerListSearchRefreshRows();
- }
- }).send();
- _queries.emplace(_requestId, _query);
- }
- void PeerListGlobalSearchController::searchDone(
- const MTPcontacts_Found &result,
- mtpRequestId requestId) {
- Expects(result.type() == mtpc_contacts_found);
- auto &contacts = result.c_contacts_found();
- auto query = _query;
- if (requestId) {
- _session->data().processUsers(contacts.vusers());
- _session->data().processChats(contacts.vchats());
- auto it = _queries.find(requestId);
- if (it != _queries.cend()) {
- query = it->second;
- _cache[query] = result;
- _queries.erase(it);
- }
- }
- const auto feedList = [&](const MTPVector<MTPPeer> &list) {
- for (const auto &mtpPeer : list.v) {
- const auto peer = _session->data().peerLoaded(
- peerFromMTP(mtpPeer));
- if (peer) {
- delegate()->peerListSearchAddRow(peer);
- }
- }
- };
- if (_requestId == requestId) {
- _requestId = 0;
- feedList(contacts.vmy_results());
- feedList(contacts.vresults());
- delegate()->peerListSearchRefreshRows();
- }
- }
- bool PeerListGlobalSearchController::isLoading() {
- return _timer.isActive() || _requestId;
- }
- struct RecipientRow::Restriction {
- Api::MessageMoneyRestriction value;
- RestrictionBadgeCache cache;
- };
- RecipientRow::RecipientRow(
- not_null<PeerData*> peer,
- const style::PeerListItem *maybeLockedSt,
- History *maybeHistory)
- : PeerListRow(peer)
- , _maybeHistory(maybeHistory)
- , _maybeLockedSt(maybeLockedSt) {
- if (_maybeLockedSt) {
- setRestriction(Api::ResolveMessageMoneyRestrictions(
- peer,
- maybeHistory));
- }
- }
- Api::MessageMoneyRestriction RecipientRow::restriction() const {
- return _restriction
- ? _restriction->value
- : Api::MessageMoneyRestriction();
- }
- void RecipientRow::setRestriction(Api::MessageMoneyRestriction restriction) {
- if (!restriction) {
- _restriction = nullptr;
- return;
- } else if (!_restriction) {
- _restriction = std::make_unique<Restriction>();
- }
- _restriction->value = restriction;
- }
- void RecipientRow::paintUserpicOverlay(
- Painter &p,
- const style::PeerListItem &st,
- int x,
- int y,
- int outerWidth) {
- if (const auto &r = _restriction) {
- PaintRestrictionBadge(
- p,
- _maybeLockedSt,
- r->value.starsPerMessage,
- r->cache,
- x,
- y,
- outerWidth,
- st.photoSize);
- }
- }
- bool RecipientRow::refreshLock(
- not_null<const style::PeerListItem*> maybeLockedSt) {
- if (const auto user = peer()->asUser()) {
- using Restriction = Api::MessageMoneyRestriction;
- const auto r = _maybeLockedSt
- ? Api::ResolveMessageMoneyRestrictions(
- user,
- _maybeHistory)
- : Restriction();
- if ((_restriction ? _restriction->value : Restriction()) != r) {
- setRestriction(r);
- return true;
- }
- }
- return false;
- }
- void RecipientRow::preloadUserpic() {
- PeerListRow::preloadUserpic();
- if (!_maybeLockedSt) {
- return;
- }
- const auto peer = this->peer();
- const auto known = Api::ResolveMessageMoneyRestrictions(
- peer,
- _maybeHistory).known;
- if (known) {
- return;
- } else if (const auto user = peer->asUser()) {
- const auto api = &user->session().api();
- api->premium().resolveMessageMoneyRestrictions(user);
- } else if (const auto group = peer->asChannel()) {
- group->updateFull();
- }
- }
- void TrackMessageMoneyRestrictionsChanges(
- not_null<PeerListController*> controller,
- rpl::lifetime &lifetime) {
- const auto session = &controller->session();
- rpl::merge(
- Data::AmPremiumValue(session) | rpl::to_empty,
- session->api().premium().someMessageMoneyRestrictionsResolved()
- ) | rpl::start_with_next([=] {
- const auto st = &controller->computeListSt().item;
- const auto delegate = controller->delegate();
- const auto process = [&](not_null<PeerListRow*> raw) {
- if (static_cast<RecipientRow*>(raw.get())->refreshLock(st)) {
- delegate->peerListUpdateRow(raw);
- }
- };
- auto count = delegate->peerListFullRowsCount();
- for (auto i = 0; i != count; ++i) {
- process(delegate->peerListRowAt(i));
- }
- count = delegate->peerListSearchRowsCount();
- for (auto i = 0; i != count; ++i) {
- process(delegate->peerListSearchRowAt(i));
- }
- }, lifetime);
- }
- ChatsListBoxController::Row::Row(
- not_null<History*> history,
- const style::PeerListItem *maybeLockedSt)
- : RecipientRow(history->peer, maybeLockedSt, history) {
- }
- ChatsListBoxController::ChatsListBoxController(
- not_null<Main::Session*> session)
- : ChatsListBoxController(
- std::make_unique<PeerListGlobalSearchController>(session)) {
- }
- ChatsListBoxController::ChatsListBoxController(
- std::unique_ptr<PeerListSearchController> searchController)
- : PeerListController(std::move(searchController)) {
- }
- void ChatsListBoxController::prepare() {
- setSearchNoResultsText(tr::lng_blocked_list_not_found(tr::now));
- delegate()->peerListSetSearchMode(PeerListSearchMode::Enabled);
- prepareViewHook();
- if (!session().data().chatsListLoaded()) {
- session().data().chatsListLoadedEvents(
- ) | rpl::filter([=](Data::Folder *folder) {
- return !folder;
- }) | rpl::start_with_next([=] {
- checkForEmptyRows();
- }, lifetime());
- }
- session().data().chatsListChanges(
- ) | rpl::start_with_next([=] {
- rebuildRows();
- }, lifetime());
- session().data().contactsLoaded().value(
- ) | rpl::start_with_next([=] {
- rebuildRows();
- }, lifetime());
- }
- void ChatsListBoxController::rebuildRows() {
- auto wasEmpty = !delegate()->peerListFullRowsCount();
- auto appendList = [this](auto chats) {
- auto count = 0;
- for (const auto &row : chats->all()) {
- if (const auto history = row->history()) {
- if (appendRow(history)) {
- ++count;
- }
- }
- }
- return count;
- };
- auto added = 0;
- if (!savedMessagesChatStatus().isEmpty()) {
- if (appendRow(session().data().history(session().user()))) {
- ++added;
- }
- }
- added += appendList(session().data().chatsList()->indexed());
- const auto id = Data::Folder::kId;
- if (const auto folder = session().data().folderLoaded(id)) {
- added += appendList(folder->chatsList()->indexed());
- }
- added += appendList(session().data().contactsNoChatsList());
- if (!wasEmpty && added > 0) {
- // Place dialogs list before contactsNoDialogs list.
- delegate()->peerListPartitionRows([](const PeerListRow &a) {
- const auto history = static_cast<const Row&>(a).history();
- return history->inChatList();
- });
- if (!savedMessagesChatStatus().isEmpty()) {
- delegate()->peerListPartitionRows([](const PeerListRow &a) {
- return a.peer()->isSelf();
- });
- }
- }
- checkForEmptyRows();
- delegate()->peerListRefreshRows();
- }
- void ChatsListBoxController::checkForEmptyRows() {
- if (delegate()->peerListFullRowsCount()) {
- setDescriptionText(QString());
- } else {
- const auto loaded = session().data().contactsLoaded().current()
- && session().data().chatsListLoaded();
- setDescriptionText(loaded ? emptyBoxText() : tr::lng_contacts_loading(tr::now));
- }
- }
- QString ChatsListBoxController::emptyBoxText() const {
- return tr::lng_contacts_not_found(tr::now);
- }
- std::unique_ptr<PeerListRow> ChatsListBoxController::createSearchRow(
- not_null<PeerData*> peer) {
- return createRow(peer->owner().history(peer));
- }
- bool ChatsListBoxController::appendRow(not_null<History*> history) {
- if (auto row = delegate()->peerListFindRow(history->peer->id.value)) {
- updateRowHook(static_cast<Row*>(row));
- return false;
- }
- if (auto row = createRow(history)) {
- delegate()->peerListAppendRow(std::move(row));
- return true;
- }
- return false;
- }
- PeerListStories::PeerListStories(
- not_null<PeerListController*> controller,
- not_null<Main::Session*> session)
- : _controller(controller)
- , _session(session) {
- }
- void PeerListStories::updateColors() {
- for (auto i = begin(_counts); i != end(_counts); ++i) {
- if (const auto row = _delegate->peerListFindRow(i->first)) {
- if (i->second.count >= 0 && i->second.unread >= 0) {
- applyForRow(row, i->second.count, i->second.unread, true);
- }
- }
- }
- }
- void PeerListStories::updateFor(
- uint64 id,
- int count,
- int unread) {
- if (const auto row = _delegate->peerListFindRow(id)) {
- applyForRow(row, count, unread);
- _delegate->peerListUpdateRow(row);
- }
- }
- void PeerListStories::process(not_null<PeerListRow*> row) {
- const auto user = row->peer()->asUser();
- if (!user) {
- return;
- }
- const auto stories = &_session->data().stories();
- const auto source = stories->source(user->id);
- const auto count = source
- ? int(source->ids.size())
- : user->hasActiveStories()
- ? 1
- : 0;
- const auto unread = source
- ? source->info().unreadCount
- : user->hasUnreadStories()
- ? 1
- : 0;
- applyForRow(row, count, unread, true);
- }
- bool PeerListStories::handleClick(not_null<PeerData*> peer) {
- const auto point = _delegate->peerListLastRowMousePosition();
- const auto &st = _controller->computeListSt().item;
- if (point && point->x() < st.photoPosition.x() + st.photoSize) {
- if (const auto window = peer->session().tryResolveWindow()) {
- if (const auto user = peer->asUser()) {
- if (user->hasActiveStories()) {
- window->openPeerStories(peer->id);
- return true;
- }
- }
- }
- }
- return false;
- }
- void PeerListStories::prepare(not_null<PeerListDelegate*> delegate) {
- _delegate = delegate;
- _unreadBrush = PeerListStoriesGradient(_controller->computeListSt());
- style::PaletteChanged() | rpl::start_with_next([=] {
- _unreadBrush = PeerListStoriesGradient(_controller->computeListSt());
- updateColors();
- }, _lifetime);
- _session->changes().peerUpdates(
- Data::PeerUpdate::Flag::StoriesState
- ) | rpl::start_with_next([=](const Data::PeerUpdate &update) {
- const auto id = update.peer->id.value;
- if (const auto row = _delegate->peerListFindRow(id)) {
- process(row);
- }
- }, _lifetime);
- const auto stories = &_session->data().stories();
- stories->sourceChanged() | rpl::start_with_next([=](PeerId id) {
- const auto source = stories->source(id);
- const auto info = source
- ? source->info()
- : Data::StoriesSourceInfo();
- updateFor(id.value, info.count, info.unreadCount);
- }, _lifetime);
- }
- void PeerListStories::applyForRow(
- not_null<PeerListRow*> row,
- int count,
- int unread,
- bool force) {
- auto &counts = _counts[row->id()];
- if (!force && counts.count == count && counts.unread == unread) {
- return;
- }
- counts.count = count;
- counts.unread = unread;
- _delegate->peerListSetRowChecked(row, count > 0);
- if (count > 0) {
- row->setCustomizedCheckSegments(
- PeerListStoriesSegments(count, unread, _unreadBrush));
- }
- }
- ContactsBoxController::ContactsBoxController(
- not_null<Main::Session*> session)
- : ContactsBoxController(
- session,
- std::make_unique<PeerListGlobalSearchController>(session)) {
- }
- ContactsBoxController::ContactsBoxController(
- not_null<Main::Session*> session,
- std::unique_ptr<PeerListSearchController> searchController)
- : PeerListController(std::move(searchController))
- , _session(session)
- , _sortByOnlineTimer([=] { sort(); }) {
- }
- Main::Session &ContactsBoxController::session() const {
- return *_session;
- }
- void ContactsBoxController::prepare() {
- setSearchNoResultsText(tr::lng_blocked_list_not_found(tr::now));
- delegate()->peerListSetSearchMode(PeerListSearchMode::Enabled);
- delegate()->peerListSetTitle(tr::lng_contacts_header());
- prepareViewHook();
- if (_stories) {
- _stories->prepare(delegate());
- }
- session().data().contactsLoaded().value(
- ) | rpl::start_with_next([=] {
- rebuildRows();
- }, lifetime());
- }
- void ContactsBoxController::rebuildRows() {
- const auto appendList = [&](auto chats) {
- auto count = 0;
- for (const auto &row : chats->all()) {
- if (const auto history = row->history()) {
- if (const auto user = history->peer->asUser()) {
- if (appendRow(user)) {
- ++count;
- }
- }
- }
- }
- return count;
- };
- appendList(session().data().contactsList());
- checkForEmptyRows();
- sort();
- delegate()->peerListRefreshRows();
- }
- void ContactsBoxController::checkForEmptyRows() {
- setDescriptionText(delegate()->peerListFullRowsCount()
- ? QString()
- : session().data().contactsLoaded().current()
- ? tr::lng_contacts_not_found(tr::now)
- : tr::lng_contacts_loading(tr::now));
- }
- std::unique_ptr<PeerListRow> ContactsBoxController::createSearchRow(
- not_null<PeerData*> peer) {
- if (const auto user = peer->asUser()) {
- return createRow(user);
- }
- return nullptr;
- }
- void ContactsBoxController::rowClicked(not_null<PeerListRow*> row) {
- const auto peer = row->peer();
- if (_stories && _stories->handleClick(peer)) {
- return;
- } else if (const auto window = peer->session().tryResolveWindow()) {
- window->showPeerHistory(peer);
- }
- }
- void ContactsBoxController::setSortMode(SortMode mode) {
- if (_sortMode == mode) {
- return;
- }
- _sortMode = mode;
- sort();
- if (_sortMode == SortMode::Online) {
- session().changes().peerUpdates(
- Data::PeerUpdate::Flag::OnlineStatus
- ) | rpl::filter([=](const Data::PeerUpdate &update) {
- return !_sortByOnlineTimer.isActive()
- && delegate()->peerListFindRow(update.peer->id.value);
- }) | rpl::start_with_next([=] {
- _sortByOnlineTimer.callOnce(kSortByOnlineThrottle);
- }, _sortByOnlineLifetime);
- } else {
- _sortByOnlineTimer.cancel();
- _sortByOnlineLifetime.destroy();
- }
- }
- void ContactsBoxController::setStoriesShown(bool shown) {
- _stories = std::make_unique<PeerListStories>(this, _session);
- }
- void ContactsBoxController::sort() {
- switch (_sortMode) {
- case SortMode::Alphabet: sortByName(); break;
- case SortMode::Online: sortByOnline(); break;
- default: Unexpected("SortMode in ContactsBoxController.");
- }
- }
- void ContactsBoxController::sortByOnline() {
- const auto now = base::unixtime::now();
- const auto key = [&](const PeerListRow &row) {
- const auto user = row.peer()->asUser();
- return user
- ? (std::min(user->lastseen().onlineTill(), now + 1) + 1)
- : TimeId();
- };
- const auto predicate = [&](const PeerListRow &a, const PeerListRow &b) {
- return key(a) > key(b);
- };
- delegate()->peerListSortRows(predicate);
- }
- bool ContactsBoxController::appendRow(not_null<UserData*> user) {
- if (auto row = delegate()->peerListFindRow(user->id.value)) {
- updateRowHook(row);
- return false;
- }
- if (auto row = createRow(user)) {
- const auto raw = row.get();
- delegate()->peerListAppendRow(std::move(row));
- if (_stories) {
- _stories->process(raw);
- }
- return true;
- }
- return false;
- }
- std::unique_ptr<PeerListRow> ContactsBoxController::createRow(
- not_null<UserData*> user) {
- return std::make_unique<PeerListRow>(user);
- }
- RecipientMoneyRestrictionError WriteMoneyRestrictionError(
- not_null<UserData*> user) {
- return {
- .text = tr::lng_send_non_premium_message_toast(
- tr::now,
- lt_user,
- TextWithEntities{ user->shortName() },
- lt_link,
- Ui::Text::Link(
- Ui::Text::Bold(
- tr::lng_send_non_premium_message_toast_link(
- tr::now))),
- Ui::Text::RichLangValue),
- };
- }
- ChooseRecipientBoxController::ChooseRecipientBoxController(
- not_null<Main::Session*> session,
- FnMut<void(not_null<Data::Thread*>)> callback,
- Fn<bool(not_null<Data::Thread*>)> filter)
- : ChooseRecipientBoxController({
- .session = session,
- .callback = std::move(callback),
- .filter = std::move(filter),
- }) {
- }
- ChooseRecipientBoxController::ChooseRecipientBoxController(
- ChooseRecipientArgs &&args)
- : ChatsListBoxController(args.session)
- , _session(args.session)
- , _callback(std::move(args.callback))
- , _filter(std::move(args.filter))
- , _moneyRestrictionError(std::move(args.moneyRestrictionError)) {
- }
- Main::Session &ChooseRecipientBoxController::session() const {
- return *_session;
- }
- void ChooseRecipientBoxController::prepareViewHook() {
- delegate()->peerListSetTitle(tr::lng_forward_choose());
- if (_moneyRestrictionError) {
- TrackMessageMoneyRestrictionsChanges(this, lifetime());
- }
- }
- bool ChooseRecipientBoxController::showLockedError(
- not_null<PeerListRow*> row) {
- return RecipientRow::ShowLockedError(
- this,
- row,
- _moneyRestrictionError);
- }
- void ChooseRecipientBoxController::rowClicked(not_null<PeerListRow*> row) {
- if (showLockedError(row)) {
- return;
- }
- auto guard = base::make_weak(this);
- const auto peer = row->peer();
- if (const auto forum = peer->forum()) {
- const auto weak = std::make_shared<QPointer<Ui::BoxContent>>();
- auto callback = [=](not_null<Data::ForumTopic*> topic) {
- const auto exists = guard.get();
- if (!exists) {
- if (*weak) {
- (*weak)->closeBox();
- }
- return;
- }
- auto onstack = std::move(_callback);
- onstack(topic);
- if (guard) {
- _callback = std::move(onstack);
- } else if (*weak) {
- (*weak)->closeBox();
- }
- };
- const auto filter = [=](not_null<Data::ForumTopic*> topic) {
- return guard && (!_filter || _filter(topic));
- };
- auto owned = Box<PeerListBox>(
- std::make_unique<ChooseTopicBoxController>(
- forum,
- std::move(callback),
- filter),
- [=](not_null<PeerListBox*> box) {
- box->addButton(tr::lng_cancel(), [=] {
- box->closeBox();
- });
- forum->destroyed(
- ) | rpl::start_with_next([=] {
- box->closeBox();
- }, box->lifetime());
- });
- *weak = owned.data();
- delegate()->peerListUiShow()->showBox(std::move(owned));
- return;
- }
- const auto history = peer->owner().history(peer);
- auto callback = std::move(_callback);
- callback(history);
- if (guard) {
- _callback = std::move(callback);
- }
- }
- bool RecipientRow::ShowLockedError(
- not_null<PeerListController*> controller,
- not_null<PeerListRow*> row,
- Fn<RecipientMoneyRestrictionError(not_null<UserData*>)> error) {
- const auto recipient = static_cast<RecipientRow*>(row.get());
- if (!recipient->restriction().premiumRequired) {
- return false;
- }
- ::Settings::ShowPremiumPromoToast(
- controller->delegate()->peerListUiShow(),
- ChatHelpers::ResolveWindowDefault(),
- error(row->peer()->asUser()).text,
- u"require_premium"_q);
- return true;
- }
- QString ChooseRecipientBoxController::savedMessagesChatStatus() const {
- return tr::lng_saved_forward_here(tr::now);
- }
- auto ChooseRecipientBoxController::createRow(
- not_null<History*> history) -> std::unique_ptr<Row> {
- const auto peer = history->peer;
- const auto skip = _filter
- ? !_filter(history)
- : ((peer->isBroadcast() && !Data::CanSendAnything(peer))
- || peer->isRepliesChat()
- || peer->isVerifyCodes()
- || (peer->isUser() && (_moneyRestrictionError
- ? !peer->asUser()->canSendIgnoreMoneyRestrictions()
- : !Data::CanSendAnything(peer))));
- if (skip) {
- return nullptr;
- }
- auto result = std::make_unique<Row>(
- history,
- _moneyRestrictionError ? &computeListSt().item : nullptr);
- return result;
- }
- ChooseTopicSearchController::ChooseTopicSearchController(
- not_null<Data::Forum*> forum)
- : _forum(forum)
- , _api(&forum->session().mtp())
- , _timer([=] { searchOnServer(); }) {
- }
- void ChooseTopicSearchController::searchQuery(const QString &query) {
- if (_query != query) {
- _query = query;
- _api.request(base::take(_requestId)).cancel();
- _offsetDate = 0;
- _offsetId = 0;
- _offsetTopicId = 0;
- _allLoaded = false;
- if (!_query.isEmpty()) {
- _timer.callOnce(AutoSearchTimeout);
- } else {
- _timer.cancel();
- }
- }
- }
- void ChooseTopicSearchController::searchOnServer() {
- _requestId = _api.request(MTPchannels_GetForumTopics(
- MTP_flags(MTPchannels_GetForumTopics::Flag::f_q),
- _forum->channel()->inputChannel,
- MTP_string(_query),
- MTP_int(_offsetDate),
- MTP_int(_offsetId),
- MTP_int(_offsetTopicId),
- MTP_int(kSearchPerPage)
- )).done([=](const MTPmessages_ForumTopics &result) {
- _requestId = 0;
- const auto savedTopicId = _offsetTopicId;
- const auto byCreation = result.data().is_order_by_create_date();
- _forum->applyReceivedTopics(result, [&](
- not_null<Data::ForumTopic*> topic) {
- _offsetTopicId = topic->rootId();
- if (byCreation) {
- _offsetDate = topic->creationDate();
- if (const auto last = topic->lastServerMessage()) {
- _offsetId = last->id;
- }
- } else if (const auto last = topic->lastServerMessage()) {
- _offsetId = last->id;
- _offsetDate = last->date();
- }
- delegate()->peerListSearchAddRow(topic->rootId().bare);
- });
- if (_offsetTopicId == savedTopicId) {
- _allLoaded = true;
- }
- delegate()->peerListSearchRefreshRows();
- }).fail([=] {
- _allLoaded = true;
- }).send();
- }
- bool ChooseTopicSearchController::isLoading() {
- return _timer.isActive() || _requestId;
- }
- bool ChooseTopicSearchController::loadMoreRows() {
- if (!isLoading()) {
- searchOnServer();
- }
- return !_allLoaded;
- }
- ChooseTopicBoxController::Row::Row(not_null<Data::ForumTopic*> topic)
- : PeerListRow(topic->rootId().bare)
- , _topic(topic) {
- }
- QString ChooseTopicBoxController::Row::generateName() {
- return _topic->title();
- }
- QString ChooseTopicBoxController::Row::generateShortName() {
- return _topic->title();
- }
- auto ChooseTopicBoxController::Row::generatePaintUserpicCallback(
- bool forceRound)
- -> PaintRoundImageCallback {
- return [=](
- Painter &p,
- int x,
- int y,
- int outerWidth,
- int size) {
- const auto &st = st::forumTopicRow;
- x -= st.padding.left();
- y -= st.padding.top();
- auto view = Ui::PeerUserpicView();
- p.translate(x, y);
- _topic->paintUserpic(p, view, {
- .st = &st,
- .currentBg = st::windowBg,
- .now = crl::now(),
- .width = outerWidth,
- .paused = false,
- });
- p.translate(-x, -y);
- };
- }
- auto ChooseTopicBoxController::Row::generateNameFirstLetters() const
- -> const base::flat_set<QChar> & {
- return _topic->chatListFirstLetters();
- }
- auto ChooseTopicBoxController::Row::generateNameWords() const
- -> const base::flat_set<QString> & {
- return _topic->chatListNameWords();
- }
- ChooseTopicBoxController::ChooseTopicBoxController(
- not_null<Data::Forum*> forum,
- FnMut<void(not_null<Data::ForumTopic*>)> callback,
- Fn<bool(not_null<Data::ForumTopic*>)> filter)
- : PeerListController(std::make_unique<ChooseTopicSearchController>(forum))
- , _forum(forum)
- , _callback(std::move(callback))
- , _filter(std::move(filter)) {
- setStyleOverrides(&st::chooseTopicList);
- _forum->chatsListChanges(
- ) | rpl::start_with_next([=] {
- refreshRows();
- }, lifetime());
- _forum->topicDestroyed(
- ) | rpl::start_with_next([=](not_null<Data::ForumTopic*> topic) {
- const auto id = PeerListRowId(topic->rootId().bare);
- if (const auto row = delegate()->peerListFindRow(id)) {
- delegate()->peerListRemoveRow(row);
- delegate()->peerListRefreshRows();
- }
- }, lifetime());
- }
- Main::Session &ChooseTopicBoxController::session() const {
- return _forum->session();
- }
- void ChooseTopicBoxController::rowClicked(not_null<PeerListRow*> row) {
- const auto weak = base::make_weak(this);
- auto onstack = base::take(_callback);
- onstack(static_cast<Row*>(row.get())->topic());
- if (weak) {
- _callback = std::move(onstack);
- }
- }
- void ChooseTopicBoxController::prepare() {
- delegate()->peerListSetTitle(tr::lng_forward_choose());
- setSearchNoResultsText(tr::lng_topics_not_found(tr::now));
- delegate()->peerListSetSearchMode(PeerListSearchMode::Enabled);
- refreshRows(true);
- session().changes().entryUpdates(
- Data::EntryUpdate::Flag::Repaint
- ) | rpl::start_with_next([=](const Data::EntryUpdate &update) {
- if (const auto topic = update.entry->asTopic()) {
- if (topic->forum() == _forum) {
- const auto id = topic->rootId().bare;
- if (const auto row = delegate()->peerListFindRow(id)) {
- delegate()->peerListUpdateRow(row);
- }
- }
- }
- }, lifetime());
- }
- void ChooseTopicBoxController::refreshRows(bool initial) {
- auto added = false;
- for (const auto &row : _forum->topicsList()->indexed()->all()) {
- if (const auto topic = row->topic()) {
- const auto id = topic->rootId().bare;
- auto already = delegate()->peerListFindRow(id);
- if (initial || !already) {
- if (auto created = createRow(topic)) {
- delegate()->peerListAppendRow(std::move(created));
- added = true;
- }
- } else if (already->isSearchResult()) {
- delegate()->peerListAppendFoundRow(already);
- added = true;
- }
- }
- }
- if (added) {
- delegate()->peerListRefreshRows();
- }
- }
- void ChooseTopicBoxController::loadMoreRows() {
- _forum->requestTopics();
- }
- std::unique_ptr<PeerListRow> ChooseTopicBoxController::createSearchRow(
- PeerListRowId id) {
- if (const auto topic = _forum->topicFor(MsgId(id))) {
- return std::make_unique<Row>(topic);
- }
- return nullptr;
- }
- std::unique_ptr<PeerListRow> ChooseTopicBoxController::MakeRow(
- not_null<Data::ForumTopic*> topic) {
- return std::make_unique<Row>(topic);
- }
- auto ChooseTopicBoxController::createRow(not_null<Data::ForumTopic*> topic)
- -> std::unique_ptr<Row> {
- const auto skip = _filter && !_filter(topic);
- return skip ? nullptr : std::make_unique<Row>(topic);
- };
- void PaintRestrictionBadge(
- Painter &p,
- not_null<const style::PeerListItem*> st,
- int stars,
- RestrictionBadgeCache &cache,
- int x,
- int y,
- int outerWidth,
- int size) {
- const auto paletteVersion = style::PaletteVersion();
- const auto good = !cache.badge.isNull()
- && (cache.stars == stars)
- && (cache.paletteVersion == paletteVersion);
- const auto &check = st->checkbox.check;
- const auto add = check.width;
- if (!good) {
- cache.stars = stars;
- cache.paletteVersion = paletteVersion;
- if (stars) {
- const auto text = (stars >= 1000)
- ? (QString::number(stars / 1000) + 'K')
- : QString::number(stars);
- cache.badge = Ui::GenerateSmallBadgeImage(
- text,
- st::paidReactTopStarIcon,
- check.bgActive->c,
- st::premiumButtonFg->c,
- &check);
- } else {
- auto hq = PainterHighQualityEnabler(p);
- const auto &icon = st::stickersPremiumLock;
- const auto width = icon.width();
- const auto height = icon.height();
- const auto rect = QRect(
- QPoint(x + size - width, y + size - height),
- icon.size());
- const auto added = QMargins(add, add, add, add);
- const auto ratio = style::DevicePixelRatio();
- cache.badge = QImage(
- (rect + added).size() * ratio,
- QImage::Format_ARGB32_Premultiplied);
- cache.badge.setDevicePixelRatio(ratio);
- cache.badge.fill(Qt::transparent);
- const auto inner = QRect(add, add, rect.width(), rect.height());
- auto q = QPainter(&cache.badge);
- auto pen = check.border->p;
- pen.setWidthF(check.width);
- q.setPen(pen);
- q.setBrush(st::premiumButtonBg2);
- q.drawEllipse(inner);
- icon.paintInCenter(q, inner);
- }
- }
- const auto cached = cache.badge.size() / cache.badge.devicePixelRatio();
- const auto left = x + size + add - cached.width();
- const auto top = stars ? (y - add) : (y + size + add - cached.height());
- p.drawImage(left, top, cache.badge);
- }
|