mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-04-01 23:00:58 +00:00
Replace peerMessagesUpdated with notifications.
This commit is contained in:
parent
04c8c95634
commit
2dd2ad5cdb
@ -2813,6 +2813,7 @@ void ApiWrap::forwardMessages(
|
|||||||
randomIds.push_back(MTP_long(randomId));
|
randomIds.push_back(MTP_long(randomId));
|
||||||
}
|
}
|
||||||
sendAccumulated();
|
sendAccumulated();
|
||||||
|
_session->data().sendHistoryChangeNotifications();
|
||||||
}
|
}
|
||||||
|
|
||||||
void ApiWrap::shareContact(
|
void ApiWrap::shareContact(
|
||||||
@ -2828,7 +2829,7 @@ void ApiWrap::shareContact(
|
|||||||
not_null<UserData*> user,
|
not_null<UserData*> user,
|
||||||
const SendOptions &options) {
|
const SendOptions &options) {
|
||||||
const auto userId = peerToUser(user->id);
|
const auto userId = peerToUser(user->id);
|
||||||
const auto phone = Auth().data().findContactPhone(user);
|
const auto phone = _session->data().findContactPhone(user);
|
||||||
if (phone.isEmpty()) {
|
if (phone.isEmpty()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -238,6 +238,20 @@ rpl::producer<not_null<const History*>> Session::historyCleared() const {
|
|||||||
return _historyCleared.events();
|
return _historyCleared.events();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Session::notifyHistoryChangeDelayed(not_null<const History*> history) {
|
||||||
|
_historiesChanged.insert(history);
|
||||||
|
}
|
||||||
|
|
||||||
|
rpl::producer<not_null<const History*>> Session::historyChanged() const {
|
||||||
|
return _historyChanged.events();
|
||||||
|
}
|
||||||
|
|
||||||
|
void Session::sendHistoryChangeNotifications() {
|
||||||
|
for (const auto history : base::take(_historiesChanged)) {
|
||||||
|
_historyChanged.fire_copy(history);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void Session::removeMegagroupParticipant(
|
void Session::removeMegagroupParticipant(
|
||||||
not_null<ChannelData*> channel,
|
not_null<ChannelData*> channel,
|
||||||
not_null<UserData*> user) {
|
not_null<UserData*> user) {
|
||||||
|
@ -84,6 +84,9 @@ public:
|
|||||||
rpl::producer<not_null<const HistoryItem*>> itemRemoved() const;
|
rpl::producer<not_null<const HistoryItem*>> itemRemoved() const;
|
||||||
void notifyHistoryCleared(not_null<const History*> history);
|
void notifyHistoryCleared(not_null<const History*> history);
|
||||||
rpl::producer<not_null<const History*>> historyCleared() const;
|
rpl::producer<not_null<const History*>> historyCleared() const;
|
||||||
|
void notifyHistoryChangeDelayed(not_null<const History*> history);
|
||||||
|
rpl::producer<not_null<const History*>> historyChanged() const;
|
||||||
|
void sendHistoryChangeNotifications();
|
||||||
|
|
||||||
using MegagroupParticipant = std::tuple<
|
using MegagroupParticipant = std::tuple<
|
||||||
not_null<ChannelData*>,
|
not_null<ChannelData*>,
|
||||||
@ -448,6 +451,8 @@ private:
|
|||||||
rpl::event_stream<not_null<const HistoryItem*>> _itemRemoved;
|
rpl::event_stream<not_null<const HistoryItem*>> _itemRemoved;
|
||||||
rpl::event_stream<not_null<const History*>> _historyUnloaded;
|
rpl::event_stream<not_null<const History*>> _historyUnloaded;
|
||||||
rpl::event_stream<not_null<const History*>> _historyCleared;
|
rpl::event_stream<not_null<const History*>> _historyCleared;
|
||||||
|
base::flat_set<not_null<const History*>> _historiesChanged;
|
||||||
|
rpl::event_stream<not_null<const History*>> _historyChanged;
|
||||||
rpl::event_stream<MegagroupParticipant> _megagroupParticipantRemoved;
|
rpl::event_stream<MegagroupParticipant> _megagroupParticipantRemoved;
|
||||||
rpl::event_stream<MegagroupParticipant> _megagroupParticipantAdded;
|
rpl::event_stream<MegagroupParticipant> _megagroupParticipantAdded;
|
||||||
|
|
||||||
|
@ -671,7 +671,9 @@ void checkForSwitchInlineButton(HistoryItem *item) {
|
|||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
||||||
HistoryItem *Histories::addNewMessage(const MTPMessage &msg, NewMessageType type) {
|
HistoryItem *Histories::addNewMessage(
|
||||||
|
const MTPMessage &msg,
|
||||||
|
NewMessageType type) {
|
||||||
auto peer = peerFromMessage(msg);
|
auto peer = peerFromMessage(msg);
|
||||||
if (!peer) return nullptr;
|
if (!peer) return nullptr;
|
||||||
|
|
||||||
@ -1204,6 +1206,7 @@ not_null<HistoryItem*> History::addNewItem(
|
|||||||
newItemAdded(item);
|
newItemAdded(item);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Auth().data().notifyHistoryChangeDelayed(this);
|
||||||
return item;
|
return item;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -295,7 +295,7 @@ void HistoryItem::removeMainView() {
|
|||||||
if (const auto channelHistory = _history->asChannelHistory()) {
|
if (const auto channelHistory = _history->asChannelHistory()) {
|
||||||
channelHistory->messageDetached(this);
|
channelHistory->messageDetached(this);
|
||||||
}
|
}
|
||||||
_history->setPendingResize();
|
Auth().data().notifyHistoryChangeDelayed(_history);
|
||||||
view->removeFromBlock();
|
view->removeFromBlock();
|
||||||
_mainView = nullptr;
|
_mainView = nullptr;
|
||||||
}
|
}
|
||||||
|
@ -563,6 +563,10 @@ HistoryWidget::HistoryWidget(QWidget *parent, not_null<Window::Controller*> cont
|
|||||||
) | rpl::start_with_next(
|
) | rpl::start_with_next(
|
||||||
[this](auto item) { repaintHistoryItem(item); },
|
[this](auto item) { repaintHistoryItem(item); },
|
||||||
lifetime());
|
lifetime());
|
||||||
|
Auth().data().historyChanged(
|
||||||
|
) | rpl::start_with_next(
|
||||||
|
[=](auto history) { handleHistoryChange(history); },
|
||||||
|
lifetime());
|
||||||
subscribe(Auth().data().contactsLoaded(), [this](bool) {
|
subscribe(Auth().data().contactsLoaded(), [this](bool) {
|
||||||
if (_peer) {
|
if (_peer) {
|
||||||
updateReportSpamStatus();
|
updateReportSpamStatus();
|
||||||
@ -4353,7 +4357,7 @@ void HistoryWidget::sendFileConfirmed(
|
|||||||
App::main()->historyToDown(_history);
|
App::main()->historyToDown(_history);
|
||||||
}
|
}
|
||||||
App::main()->dialogsToUp();
|
App::main()->dialogsToUp();
|
||||||
peerMessagesUpdated(file->to.peer);
|
Auth().data().sendHistoryChangeNotifications();
|
||||||
}
|
}
|
||||||
|
|
||||||
void HistoryWidget::onPhotoUploaded(
|
void HistoryWidget::onPhotoUploaded(
|
||||||
@ -4495,17 +4499,26 @@ void HistoryWidget::onReportSpamClear() {
|
|||||||
controller()->showBackFromStack();
|
controller()->showBackFromStack();
|
||||||
}
|
}
|
||||||
|
|
||||||
void HistoryWidget::peerMessagesUpdated(PeerId peer) {
|
void HistoryWidget::handleHistoryChange(not_null<const History*> history) {
|
||||||
if (_peer && _list && peer == _peer->id) {
|
if (_list && (_history == history || _migrated == history)) {
|
||||||
updateHistoryGeometry();
|
updateHistoryGeometry();
|
||||||
updateBotKeyboard();
|
updateBotKeyboard();
|
||||||
if (!_scroll->isHidden()) {
|
if (!_scroll->isHidden()) {
|
||||||
bool unblock = isBlocked(), botStart = isBotStart(), joinChannel = isJoinChannel(), muteUnmute = isMuteUnmute();
|
const auto unblock = isBlocked();
|
||||||
bool upd = (_unblock->isHidden() == unblock);
|
const auto botStart = isBotStart();
|
||||||
if (!upd && !unblock) upd = (_botStart->isHidden() == botStart);
|
const auto joinChannel = isJoinChannel();
|
||||||
if (!upd && !unblock && !botStart) upd = (_joinChannel->isHidden() == joinChannel);
|
const auto muteUnmute = isMuteUnmute();
|
||||||
if (!upd && !unblock && !botStart && !joinChannel) upd = (_muteUnmute->isHidden() == muteUnmute);
|
const auto update = false
|
||||||
if (upd) {
|
|| (_unblock->isHidden() == unblock)
|
||||||
|
|| (!unblock && _botStart->isHidden() == botStart)
|
||||||
|
|| (!unblock
|
||||||
|
&& !botStart
|
||||||
|
&& _joinChannel->isHidden() == joinChannel)
|
||||||
|
|| (!unblock
|
||||||
|
&& !botStart
|
||||||
|
&& !joinChannel
|
||||||
|
&& _muteUnmute->isHidden() == muteUnmute);
|
||||||
|
if (update) {
|
||||||
updateControlsVisibility();
|
updateControlsVisibility();
|
||||||
updateControlsGeometry();
|
updateControlsGeometry();
|
||||||
}
|
}
|
||||||
@ -4513,10 +4526,6 @@ void HistoryWidget::peerMessagesUpdated(PeerId peer) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void HistoryWidget::peerMessagesUpdated() {
|
|
||||||
if (_list) peerMessagesUpdated(_peer->id);
|
|
||||||
}
|
|
||||||
|
|
||||||
void HistoryWidget::grapWithoutTopBarShadow() {
|
void HistoryWidget::grapWithoutTopBarShadow() {
|
||||||
grabStart();
|
grabStart();
|
||||||
_topShadow->hide();
|
_topShadow->hide();
|
||||||
@ -4856,8 +4865,9 @@ int HistoryWidget::unreadBarTop() const {
|
|||||||
}
|
}
|
||||||
return nullptr;
|
return nullptr;
|
||||||
};
|
};
|
||||||
if (HistoryItem *bar = getUnreadBar()) {
|
if (const auto bar = getUnreadBar()) {
|
||||||
int result = _list->itemTop(bar) + HistoryMessageUnreadBar::marginTop();
|
auto result = _list->itemTop(bar)
|
||||||
|
+ HistoryMessageUnreadBar::marginTop();
|
||||||
if (bar->Has<HistoryMessageDate>()) {
|
if (bar->Has<HistoryMessageDate>()) {
|
||||||
result += bar->Get<HistoryMessageDate>()->height();
|
result += bar->Get<HistoryMessageDate>()->height();
|
||||||
}
|
}
|
||||||
|
@ -199,8 +199,6 @@ public:
|
|||||||
void loadMessagesDown();
|
void loadMessagesDown();
|
||||||
void firstLoadMessages();
|
void firstLoadMessages();
|
||||||
void delayedShowAt(MsgId showAtMsgId);
|
void delayedShowAt(MsgId showAtMsgId);
|
||||||
void peerMessagesUpdated(PeerId peer);
|
|
||||||
void peerMessagesUpdated();
|
|
||||||
|
|
||||||
void newUnreadMsg(History *history, HistoryItem *item);
|
void newUnreadMsg(History *history, HistoryItem *item);
|
||||||
void historyToDown(History *history);
|
void historyToDown(History *history);
|
||||||
@ -466,6 +464,7 @@ private:
|
|||||||
void handlePeerUpdate();
|
void handlePeerUpdate();
|
||||||
void setMembersShowAreaActive(bool active);
|
void setMembersShowAreaActive(bool active);
|
||||||
void forwardItems(MessageIdsList &&items);
|
void forwardItems(MessageIdsList &&items);
|
||||||
|
void handleHistoryChange(not_null<const History*> history);
|
||||||
|
|
||||||
void highlightMessage(MsgId universalMessageId);
|
void highlightMessage(MsgId universalMessageId);
|
||||||
void adjustHighlightedMessageToMigrated();
|
void adjustHighlightedMessageToMigrated();
|
||||||
@ -746,7 +745,7 @@ private:
|
|||||||
int32 _debug_preloadDownLoadCount = 0;
|
int32 _debug_preloadDownLoadCount = 0;
|
||||||
PeerId _debug_preloadDownPeer = 0;
|
PeerId _debug_preloadDownPeer = 0;
|
||||||
|
|
||||||
MsgId _delayedShowAtMsgId = -1; // wtf?
|
MsgId _delayedShowAtMsgId = -1;
|
||||||
mtpRequestId _delayedShowAtRequest = 0;
|
mtpRequestId _delayedShowAtRequest = 0;
|
||||||
|
|
||||||
object_ptr<HistoryView::TopBarWidget> _topBar;
|
object_ptr<HistoryView::TopBarWidget> _topBar;
|
||||||
@ -754,8 +753,10 @@ private:
|
|||||||
QPointer<HistoryInner> _list;
|
QPointer<HistoryInner> _list;
|
||||||
History *_migrated = nullptr;
|
History *_migrated = nullptr;
|
||||||
History *_history = nullptr;
|
History *_history = nullptr;
|
||||||
bool _historyInited = false; // Initial updateHistoryGeometry() was called.
|
// Initial updateHistoryGeometry() was called.
|
||||||
bool _updateHistoryGeometryRequired = false; // If updateListSize() was called without updateHistoryGeometry().
|
bool _historyInited = false;
|
||||||
|
// If updateListSize() was called without updateHistoryGeometry().
|
||||||
|
bool _updateHistoryGeometryRequired = false;
|
||||||
int _addToScroll = 0;
|
int _addToScroll = 0;
|
||||||
|
|
||||||
int _lastScrollTop = 0; // gifs optimization
|
int _lastScrollTop = 0; // gifs optimization
|
||||||
|
@ -674,16 +674,11 @@ void MainWidget::finishForwarding(not_null<History*> history) {
|
|||||||
if (!toForward.empty()) {
|
if (!toForward.empty()) {
|
||||||
auto options = ApiWrap::SendOptions(history);
|
auto options = ApiWrap::SendOptions(history);
|
||||||
Auth().api().forwardMessages(std::move(toForward), options);
|
Auth().api().forwardMessages(std::move(toForward), options);
|
||||||
|
|
||||||
if (_history->peer() == history->peer) {
|
|
||||||
_history->peerMessagesUpdated();
|
|
||||||
}
|
|
||||||
cancelForwarding(history);
|
cancelForwarding(history);
|
||||||
}
|
}
|
||||||
|
|
||||||
historyToDown(history);
|
historyToDown(history);
|
||||||
dialogsToUp();
|
dialogsToUp();
|
||||||
_history->peerMessagesUpdated(history->peer->id);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWidget::updateMutedIn(TimeMs delay) {
|
void MainWidget::updateMutedIn(TimeMs delay) {
|
||||||
@ -1243,7 +1238,6 @@ void MainWidget::checkedHistory(PeerData *peer, const MTPmessages_Messages &resu
|
|||||||
history->clear(true);
|
history->clear(true);
|
||||||
history->addNewerSlice(QVector<MTPMessage>());
|
history->addNewerSlice(QVector<MTPMessage>());
|
||||||
history->asChannelHistory()->insertJoinedMessage(true);
|
history->asChannelHistory()->insertJoinedMessage(true);
|
||||||
_history->peerMessagesUpdated(peer->id);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@ -1261,12 +1255,12 @@ void MainWidget::checkedHistory(PeerData *peer, const MTPmessages_Messages &resu
|
|||||||
&& channel->amIn()) {
|
&& channel->amIn()) {
|
||||||
if (const auto from = App::userLoaded(channel->inviter)) {
|
if (const auto from = App::userLoaded(channel->inviter)) {
|
||||||
history->asChannelHistory()->insertJoinedMessage(true);
|
history->asChannelHistory()->insertJoinedMessage(true);
|
||||||
_history->peerMessagesUpdated(peer->id);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Auth().data().sendHistoryChangeNotifications();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool MainWidget::sendMessageFail(const RPCError &error) {
|
bool MainWidget::sendMessageFail(const RPCError &error) {
|
||||||
@ -1857,9 +1851,7 @@ void MainWidget::insertCheckedServiceNotification(const TextWithEntities &messag
|
|||||||
MTPlong()),
|
MTPlong()),
|
||||||
NewMessageUnread);
|
NewMessageUnread);
|
||||||
}
|
}
|
||||||
if (item) {
|
Auth().data().sendHistoryChangeNotifications();
|
||||||
_history->peerMessagesUpdated(item->history()->peer->id);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWidget::serviceHistoryDone(const MTPmessages_Messages &msgs) {
|
void MainWidget::serviceHistoryDone(const MTPmessages_Messages &msgs) {
|
||||||
@ -3457,11 +3449,14 @@ void MainWidget::onUpdateNotifySettings() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWidget::feedUpdateVector(const MTPVector<MTPUpdate> &updates, bool skipMessageIds) {
|
void MainWidget::feedUpdateVector(
|
||||||
|
const MTPVector<MTPUpdate> &updates,
|
||||||
|
bool skipMessageIds) {
|
||||||
for_const (auto &update, updates.v) {
|
for_const (auto &update, updates.v) {
|
||||||
if (skipMessageIds && update.type() == mtpc_updateMessageID) continue;
|
if (skipMessageIds && update.type() == mtpc_updateMessageID) continue;
|
||||||
feedUpdate(update);
|
feedUpdate(update);
|
||||||
}
|
}
|
||||||
|
Auth().data().sendHistoryChangeNotifications();
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWidget::feedMessageIds(const MTPVector<MTPUpdate> &updates) {
|
void MainWidget::feedMessageIds(const MTPVector<MTPUpdate> &updates) {
|
||||||
@ -3603,7 +3598,9 @@ void MainWidget::gotChannelDifference(ChannelData *channel, const MTPupdates_Cha
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWidget::gotRangeDifference(ChannelData *channel, const MTPupdates_ChannelDifference &diff) {
|
void MainWidget::gotRangeDifference(
|
||||||
|
ChannelData *channel,
|
||||||
|
const MTPupdates_ChannelDifference &diff) {
|
||||||
int32 nextRequestPts = 0;
|
int32 nextRequestPts = 0;
|
||||||
bool isFinal = true;
|
bool isFinal = true;
|
||||||
switch (diff.type()) {
|
switch (diff.type()) {
|
||||||
@ -3641,9 +3638,13 @@ void MainWidget::gotRangeDifference(ChannelData *channel, const MTPupdates_Chann
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!isFinal) {
|
if (!isFinal) {
|
||||||
if (History *h = App::historyLoaded(channel->id)) {
|
if (const auto history = App::historyLoaded(channel->id)) {
|
||||||
MTP_LOG(0, ("getChannelDifference { good - after not final channelDifference was received, validating history part }%1").arg(cTestMode() ? " TESTMODE" : ""));
|
MTP_LOG(0, ("getChannelDifference { "
|
||||||
h->asChannelHistory()->getRangeDifferenceNext(nextRequestPts);
|
"good - after not final channelDifference was received, "
|
||||||
|
"validating history part }%1"
|
||||||
|
).arg(cTestMode() ? " TESTMODE" : ""));
|
||||||
|
history->asChannelHistory()->getRangeDifferenceNext(
|
||||||
|
nextRequestPts);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -3787,14 +3788,17 @@ bool MainWidget::ptsUpdateAndApply(int32 pts, int32 ptsCount) {
|
|||||||
return _ptsWaiter.updateAndApply(nullptr, pts, ptsCount);
|
return _ptsWaiter.updateAndApply(nullptr, pts, ptsCount);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWidget::feedDifference(const MTPVector<MTPUser> &users, const MTPVector<MTPChat> &chats, const MTPVector<MTPMessage> &msgs, const MTPVector<MTPUpdate> &other) {
|
void MainWidget::feedDifference(
|
||||||
|
const MTPVector<MTPUser> &users,
|
||||||
|
const MTPVector<MTPChat> &chats,
|
||||||
|
const MTPVector<MTPMessage> &msgs,
|
||||||
|
const MTPVector<MTPUpdate> &other) {
|
||||||
Auth().checkAutoLock();
|
Auth().checkAutoLock();
|
||||||
App::feedUsers(users);
|
App::feedUsers(users);
|
||||||
App::feedChats(chats);
|
App::feedChats(chats);
|
||||||
feedMessageIds(other);
|
feedMessageIds(other);
|
||||||
App::feedMsgs(msgs, NewMessageUnread);
|
App::feedMsgs(msgs, NewMessageUnread);
|
||||||
feedUpdateVector(other, true);
|
feedUpdateVector(other, true);
|
||||||
_history->peerMessagesUpdated();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool MainWidget::failDifference(const RPCError &error) {
|
bool MainWidget::failDifference(const RPCError &error) {
|
||||||
@ -4012,12 +4016,11 @@ void MainWidget::onSelfParticipantUpdated(ChannelData *channel) {
|
|||||||
checkPeerHistory(channel);
|
checkPeerHistory(channel);
|
||||||
} else {
|
} else {
|
||||||
history->asChannelHistory()->checkJoinedMessage(true);
|
history->asChannelHistory()->checkJoinedMessage(true);
|
||||||
_history->peerMessagesUpdated(channel->id);
|
|
||||||
}
|
}
|
||||||
} else if (history) {
|
} else if (history) {
|
||||||
history->asChannelHistory()->checkJoinedMessage();
|
history->asChannelHistory()->checkJoinedMessage();
|
||||||
_history->peerMessagesUpdated(channel->id);
|
|
||||||
}
|
}
|
||||||
|
Auth().data().sendHistoryChangeNotifications();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool MainWidget::contentOverlapped(const QRect &globalRect) {
|
bool MainWidget::contentOverlapped(const QRect &globalRect) {
|
||||||
@ -4599,7 +4602,9 @@ void MainWidget::feedUpdates(const MTPUpdates &updates, uint64 randomId) {
|
|||||||
case mtpc_updates: {
|
case mtpc_updates: {
|
||||||
auto &d = updates.c_updates();
|
auto &d = updates.c_updates();
|
||||||
if (d.vseq.v) {
|
if (d.vseq.v) {
|
||||||
if (d.vseq.v <= updSeq) return;
|
if (d.vseq.v <= updSeq) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (d.vseq.v > updSeq + 1) {
|
if (d.vseq.v > updSeq + 1) {
|
||||||
_bySeqUpdates.insert(d.vseq.v, updates);
|
_bySeqUpdates.insert(d.vseq.v, updates);
|
||||||
return _bySeqTimer.start(WaitForSkippedTimeout);
|
return _bySeqTimer.start(WaitForSkippedTimeout);
|
||||||
@ -4616,7 +4621,9 @@ void MainWidget::feedUpdates(const MTPUpdates &updates, uint64 randomId) {
|
|||||||
case mtpc_updatesCombined: {
|
case mtpc_updatesCombined: {
|
||||||
auto &d = updates.c_updatesCombined();
|
auto &d = updates.c_updatesCombined();
|
||||||
if (d.vseq_start.v) {
|
if (d.vseq_start.v) {
|
||||||
if (d.vseq_start.v <= updSeq) return;
|
if (d.vseq_start.v <= updSeq) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (d.vseq_start.v > updSeq + 1) {
|
if (d.vseq_start.v > updSeq + 1) {
|
||||||
_bySeqUpdates.insert(d.vseq_start.v, updates);
|
_bySeqUpdates.insert(d.vseq_start.v, updates);
|
||||||
return _bySeqTimer.start(WaitForSkippedTimeout);
|
return _bySeqTimer.start(WaitForSkippedTimeout);
|
||||||
@ -4647,10 +4654,6 @@ void MainWidget::feedUpdates(const MTPUpdates &updates, uint64 randomId) {
|
|||||||
return getDifference();
|
return getDifference();
|
||||||
}
|
}
|
||||||
if (ptsUpdateAndApply(d.vpts.v, d.vpts_count.v, updates)) {
|
if (ptsUpdateAndApply(d.vpts.v, d.vpts_count.v, updates)) {
|
||||||
// We could've added an item.
|
|
||||||
// Better would be for history to be subscribed to new messages.
|
|
||||||
_history->peerMessagesUpdated();
|
|
||||||
|
|
||||||
// Update date as well.
|
// Update date as well.
|
||||||
updSetState(0, d.vdate.v, updQts, updSeq);
|
updSetState(0, d.vdate.v, updQts, updSeq);
|
||||||
}
|
}
|
||||||
@ -4671,10 +4674,6 @@ void MainWidget::feedUpdates(const MTPUpdates &updates, uint64 randomId) {
|
|||||||
return getDifference();
|
return getDifference();
|
||||||
}
|
}
|
||||||
if (ptsUpdateAndApply(d.vpts.v, d.vpts_count.v, updates)) {
|
if (ptsUpdateAndApply(d.vpts.v, d.vpts_count.v, updates)) {
|
||||||
// We could've added an item.
|
|
||||||
// Better would be for history to be subscribed to new messages.
|
|
||||||
_history->peerMessagesUpdated();
|
|
||||||
|
|
||||||
// Update date as well.
|
// Update date as well.
|
||||||
updSetState(0, d.vdate.v, updQts, updSeq);
|
updSetState(0, d.vdate.v, updQts, updSeq);
|
||||||
}
|
}
|
||||||
@ -4724,6 +4723,7 @@ void MainWidget::feedUpdates(const MTPUpdates &updates, uint64 randomId) {
|
|||||||
return getDifference();
|
return getDifference();
|
||||||
} break;
|
} break;
|
||||||
}
|
}
|
||||||
|
Auth().data().sendHistoryChangeNotifications();
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWidget::feedUpdate(const MTPUpdate &update) {
|
void MainWidget::feedUpdate(const MTPUpdate &update) {
|
||||||
@ -4735,18 +4735,16 @@ void MainWidget::feedUpdate(const MTPUpdate &update) {
|
|||||||
|
|
||||||
DataIsLoadedResult isDataLoaded = allDataLoadedForMessage(d.vmessage);
|
DataIsLoadedResult isDataLoaded = allDataLoadedForMessage(d.vmessage);
|
||||||
if (!requestingDifference() && isDataLoaded != DataIsLoadedResult::Ok) {
|
if (!requestingDifference() && isDataLoaded != DataIsLoadedResult::Ok) {
|
||||||
MTP_LOG(0, ("getDifference { good - after not all data loaded in updateNewMessage }%1").arg(cTestMode() ? " TESTMODE" : ""));
|
MTP_LOG(0, ("getDifference { good - "
|
||||||
|
"after not all data loaded in updateNewMessage }%1"
|
||||||
|
).arg(cTestMode() ? " TESTMODE" : ""));
|
||||||
|
|
||||||
// This can be if this update was created by grouping
|
// This can be if this update was created by grouping
|
||||||
// some short message update into an updates vector.
|
// some short message update into an updates vector.
|
||||||
return getDifference();
|
return getDifference();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ptsUpdateAndApply(d.vpts.v, d.vpts_count.v, update)) {
|
ptsUpdateAndApply(d.vpts.v, d.vpts_count.v, update);
|
||||||
// We could've added an item.
|
|
||||||
// Better would be for history to be subscribed to new messages.
|
|
||||||
_history->peerMessagesUpdated();
|
|
||||||
}
|
|
||||||
} break;
|
} break;
|
||||||
|
|
||||||
case mtpc_updateNewChannelMessage: {
|
case mtpc_updateNewChannelMessage: {
|
||||||
@ -4754,7 +4752,9 @@ void MainWidget::feedUpdate(const MTPUpdate &update) {
|
|||||||
auto channel = App::channelLoaded(peerToChannel(peerFromMessage(d.vmessage)));
|
auto channel = App::channelLoaded(peerToChannel(peerFromMessage(d.vmessage)));
|
||||||
auto isDataLoaded = allDataLoadedForMessage(d.vmessage);
|
auto isDataLoaded = allDataLoadedForMessage(d.vmessage);
|
||||||
if (!requestingDifference() && (!channel || isDataLoaded != DataIsLoadedResult::Ok)) {
|
if (!requestingDifference() && (!channel || isDataLoaded != DataIsLoadedResult::Ok)) {
|
||||||
MTP_LOG(0, ("getDifference { good - after not all data loaded in updateNewChannelMessage }%1").arg(cTestMode() ? " TESTMODE" : ""));
|
MTP_LOG(0, ("getDifference { good - "
|
||||||
|
"after not all data loaded in updateNewChannelMessage }%1"
|
||||||
|
).arg(cTestMode() ? " TESTMODE" : ""));
|
||||||
|
|
||||||
// Request last active supergroup participants if the 'from' user was not loaded yet.
|
// Request last active supergroup participants if the 'from' user was not loaded yet.
|
||||||
// This will optimize similar getDifference() calls for almost all next messages.
|
// This will optimize similar getDifference() calls for almost all next messages.
|
||||||
@ -4772,17 +4772,10 @@ void MainWidget::feedUpdate(const MTPUpdate &update) {
|
|||||||
if (channel && !_handlingChannelDifference) {
|
if (channel && !_handlingChannelDifference) {
|
||||||
if (channel->ptsRequesting()) { // skip global updates while getting channel difference
|
if (channel->ptsRequesting()) { // skip global updates while getting channel difference
|
||||||
return;
|
return;
|
||||||
} else if (channel->ptsUpdateAndApply(d.vpts.v, d.vpts_count.v, update)) {
|
|
||||||
// We could've added an item.
|
|
||||||
// Better would be for history to be subscribed to new messages.
|
|
||||||
_history->peerMessagesUpdated();
|
|
||||||
}
|
}
|
||||||
|
channel->ptsUpdateAndApply(d.vpts.v, d.vpts_count.v, update);
|
||||||
} else {
|
} else {
|
||||||
Auth().api().applyUpdateNoPtsCheck(update);
|
Auth().api().applyUpdateNoPtsCheck(update);
|
||||||
|
|
||||||
// We could've added an item.
|
|
||||||
// Better would be for history to be subscribed to new messages.
|
|
||||||
_history->peerMessagesUpdated();
|
|
||||||
}
|
}
|
||||||
} break;
|
} break;
|
||||||
|
|
||||||
@ -4800,7 +4793,6 @@ void MainWidget::feedUpdate(const MTPUpdate &update) {
|
|||||||
if (wasLast && !history->lastMsg) {
|
if (wasLast && !history->lastMsg) {
|
||||||
checkPeerHistory(history->peer);
|
checkPeerHistory(history->peer);
|
||||||
}
|
}
|
||||||
_history->peerMessagesUpdated();
|
|
||||||
} else {
|
} else {
|
||||||
if (existing) {
|
if (existing) {
|
||||||
existing->destroy();
|
existing->destroy();
|
||||||
@ -4905,11 +4897,7 @@ void MainWidget::feedUpdate(const MTPUpdate &update) {
|
|||||||
case mtpc_updateDeleteMessages: {
|
case mtpc_updateDeleteMessages: {
|
||||||
auto &d = update.c_updateDeleteMessages();
|
auto &d = update.c_updateDeleteMessages();
|
||||||
|
|
||||||
if (ptsUpdateAndApply(d.vpts.v, d.vpts_count.v, update)) {
|
ptsUpdateAndApply(d.vpts.v, d.vpts_count.v, update);
|
||||||
// We could've removed some items.
|
|
||||||
// Better would be for history to be subscribed to removed messages.
|
|
||||||
_history->peerMessagesUpdated();
|
|
||||||
}
|
|
||||||
} break;
|
} break;
|
||||||
|
|
||||||
case mtpc_updateDeleteChannelMessages: {
|
case mtpc_updateDeleteChannelMessages: {
|
||||||
@ -4919,16 +4907,9 @@ void MainWidget::feedUpdate(const MTPUpdate &update) {
|
|||||||
if (channel && !_handlingChannelDifference) {
|
if (channel && !_handlingChannelDifference) {
|
||||||
if (channel->ptsRequesting()) { // skip global updates while getting channel difference
|
if (channel->ptsRequesting()) { // skip global updates while getting channel difference
|
||||||
return;
|
return;
|
||||||
} else if (channel->ptsUpdateAndApply(d.vpts.v, d.vpts_count.v, update)) {
|
|
||||||
// We could've removed some items.
|
|
||||||
// Better would be for history to be subscribed to removed messages.
|
|
||||||
_history->peerMessagesUpdated();
|
|
||||||
}
|
}
|
||||||
|
channel->ptsUpdateAndApply(d.vpts.v, d.vpts_count.v, update);
|
||||||
} else {
|
} else {
|
||||||
// We could've removed some items.
|
|
||||||
// Better would be for history to be subscribed to removed messages.
|
|
||||||
_history->peerMessagesUpdated();
|
|
||||||
|
|
||||||
Auth().api().applyUpdateNoPtsCheck(update);
|
Auth().api().applyUpdateNoPtsCheck(update);
|
||||||
}
|
}
|
||||||
} break;
|
} break;
|
||||||
|
@ -287,7 +287,6 @@ public:
|
|||||||
|
|
||||||
void ptsWaiterStartTimerFor(ChannelData *channel, int32 ms); // ms <= 0 - stop timer
|
void ptsWaiterStartTimerFor(ChannelData *channel, int32 ms); // ms <= 0 - stop timer
|
||||||
void feedUpdates(const MTPUpdates &updates, uint64 randomId = 0);
|
void feedUpdates(const MTPUpdates &updates, uint64 randomId = 0);
|
||||||
void feedUpdate(const MTPUpdate &update);
|
|
||||||
|
|
||||||
void ctrlEnterSubmitUpdated();
|
void ctrlEnterSubmitUpdated();
|
||||||
void setInnerFocus();
|
void setInnerFocus();
|
||||||
@ -477,8 +476,13 @@ private:
|
|||||||
bool failChannelDifference(ChannelData *channel, const RPCError &err);
|
bool failChannelDifference(ChannelData *channel, const RPCError &err);
|
||||||
void failDifferenceStartTimerFor(ChannelData *channel);
|
void failDifferenceStartTimerFor(ChannelData *channel);
|
||||||
|
|
||||||
void feedUpdateVector(const MTPVector<MTPUpdate> &updates, bool skipMessageIds = false);
|
void feedUpdateVector(
|
||||||
|
const MTPVector<MTPUpdate> &updates,
|
||||||
|
bool skipMessageIds = false);
|
||||||
|
// Doesn't call sendHistoryChangeNotifications itself.
|
||||||
void feedMessageIds(const MTPVector<MTPUpdate> &updates);
|
void feedMessageIds(const MTPVector<MTPUpdate> &updates);
|
||||||
|
// Doesn't call sendHistoryChangeNotifications itself.
|
||||||
|
void feedUpdate(const MTPUpdate &update);
|
||||||
|
|
||||||
void deleteHistoryPart(DeleteHistoryRequest request, const MTPmessages_AffectedHistory &result);
|
void deleteHistoryPart(DeleteHistoryRequest request, const MTPmessages_AffectedHistory &result);
|
||||||
void deleteAllFromUserPart(DeleteAllFromUserParams params, const MTPmessages_AffectedHistory &result);
|
void deleteAllFromUserPart(DeleteAllFromUserParams params, const MTPmessages_AffectedHistory &result);
|
||||||
|
Loading…
Reference in New Issue
Block a user