Version 0.10.8: editing of service message added.

This commit is contained in:
John Preston 2016-09-23 21:26:53 +03:00
parent efbf67a8ff
commit 947963d5d1
5 changed files with 52 additions and 44 deletions

View File

@ -1111,19 +1111,22 @@ namespace {
return false; return false;
} }
void updateEditedMessage(const MTPDmessage &m) { template <typename TMTPDclass>
PeerId peerId = peerFromMTP(m.vto_id); void updateEditedMessage(const TMTPDclass &m) {
auto peerId = peerFromMTP(m.vto_id);
if (m.has_from_id() && peerToUser(peerId) == MTP::authedId()) { if (m.has_from_id() && peerToUser(peerId) == MTP::authedId()) {
peerId = peerFromUser(m.vfrom_id); peerId = peerFromUser(m.vfrom_id);
} }
if (HistoryItem *existing = App::histItemById(peerToChannel(peerId), m.vid.v)) { if (auto existing = App::histItemById(peerToChannel(peerId), m.vid.v)) {
existing->applyEdition(m); existing->applyEdition(m);
} }
} }
void updateEditedMessageToEmpty(PeerId peerId, MsgId msgId) { void updateEditedMessage(const MTPMessage &m) {
if (auto existing = App::histItemById(peerToChannel(peerId), msgId)) { if (m.type() == mtpc_message) { // apply message edit
existing->applyEditionToEmpty(); App::updateEditedMessage(m.c_message());
} else if (m.type() == mtpc_messageService) {
App::updateEditedMessage(m.c_messageService());
} }
} }

View File

@ -72,8 +72,7 @@ namespace App {
void feedChatAdmins(const MTPDupdateChatAdmins &d, bool emitPeerUpdated = true); void feedChatAdmins(const MTPDupdateChatAdmins &d, bool emitPeerUpdated = true);
void feedParticipantAdmin(const MTPDupdateChatParticipantAdmin &d, bool emitPeerUpdated = true); void feedParticipantAdmin(const MTPDupdateChatParticipantAdmin &d, bool emitPeerUpdated = true);
bool checkEntitiesAndViewsUpdate(const MTPDmessage &m); // returns true if item found and it is not detached bool checkEntitiesAndViewsUpdate(const MTPDmessage &m); // returns true if item found and it is not detached
void updateEditedMessage(const MTPDmessage &m); void updateEditedMessage(const MTPMessage &m);
void updateEditedMessageToEmpty(PeerId peerId, MsgId msgId);
void addSavedGif(DocumentData *doc); void addSavedGif(DocumentData *doc);
void checkSavedGif(HistoryItem *item); void checkSavedGif(HistoryItem *item);
void feedMsgs(const QVector<MTPMessage> &msgs, NewMessageType type); void feedMsgs(const QVector<MTPMessage> &msgs, NewMessageType type);

View File

@ -7103,6 +7103,12 @@ void HistoryMessage::applyEdition(const MTPDmessage &message) {
finishEdition(keyboardTop); finishEdition(keyboardTop);
} }
void HistoryMessage::applyEdition(const MTPDmessageService &message) {
if (message.vaction.type() == mtpc_messageActionHistoryClear) {
applyEditionToEmpty();
}
}
void HistoryMessage::applyEditionToEmpty() { void HistoryMessage::applyEditionToEmpty() {
setEmptyText(); setEmptyText();
setMedia(nullptr); setMedia(nullptr);
@ -8175,20 +8181,7 @@ bool HistoryService::prepareGameScoreText(const QString &from, QString *outText,
HistoryService::HistoryService(History *history, const MTPDmessageService &msg) : HistoryService::HistoryService(History *history, const MTPDmessageService &msg) :
HistoryItem(history, msg.vid.v, mtpCastFlags(msg.vflags.v), ::date(msg.vdate), msg.has_from_id() ? msg.vfrom_id.v : 0) { HistoryItem(history, msg.vid.v, mtpCastFlags(msg.vflags.v), ::date(msg.vdate), msg.has_from_id() ? msg.vfrom_id.v : 0) {
if (msg.has_reply_to_msg_id()) { createFromMtp(msg);
if (msg.vaction.type() == mtpc_messageActionPinMessage) {
UpdateComponents(HistoryServicePinned::Bit());
} else if (msg.vaction.type() == mtpc_messageActionGameScore) {
UpdateComponents(HistoryServiceGameScore::Bit());
Get<HistoryServiceGameScore>()->score = msg.vaction.c_messageActionGameScore().vscore.v;
}
if (auto dependent = GetDependentData()) {
dependent->msgId = msg.vreply_to_msg_id.v;
if (!updateDependent() && App::api()) {
App::api()->requestMessageData(history->peer->asChannel(), dependent->msgId, std_::make_unique<HistoryDependentItemCallback>(fullId()));
}
}
}
setMessageByAction(msg.vaction); setMessageByAction(msg.vaction);
} }
@ -8375,15 +8368,36 @@ HistoryTextState HistoryService::getState(int x, int y, HistoryStateRequest requ
return result; return result;
} }
void HistoryService::applyEditionToEmpty() { void HistoryService::createFromMtp(const MTPDmessageService &message) {
TextWithEntities textWithEntities = { QString(), EntitiesInText() }; if (message.has_reply_to_msg_id()) {
setServiceText(QString(), Links()); if (message.vaction.type() == mtpc_messageActionPinMessage) {
removeMedia(); UpdateComponents(HistoryServicePinned::Bit());
} else if (message.vaction.type() == mtpc_messageActionGameScore) {
UpdateComponents(HistoryServiceGameScore::Bit());
Get<HistoryServiceGameScore>()->score = message.vaction.c_messageActionGameScore().vscore.v;
}
if (auto dependent = GetDependentData()) {
dependent->msgId = message.vreply_to_msg_id.v;
if (!updateDependent() && App::api()) {
App::api()->requestMessageData(history()->peer->asChannel(), dependent->msgId, std_::make_unique<HistoryDependentItemCallback>(fullId()));
}
}
}
setMessageByAction(message.vaction);
}
void HistoryService::applyEdition(const MTPDmessageService &message) {
clearDependency(); clearDependency();
UpdateComponents(0); UpdateComponents(0);
finishEditionToEmpty(); createFromMtp(message);
if (message.vaction.type() == mtpc_messageActionHistoryClear) {
removeMedia();
finishEditionToEmpty();
} else {
finishEdition(-1);
}
} }
void HistoryService::removeMedia() { void HistoryService::removeMedia() {

View File

@ -1206,7 +1206,7 @@ public:
} }
virtual void applyEdition(const MTPDmessage &message) { virtual void applyEdition(const MTPDmessage &message) {
} }
virtual void applyEditionToEmpty() { virtual void applyEdition(const MTPDmessageService &message) {
} }
virtual void updateMedia(const MTPMessageMedia *media) { virtual void updateMedia(const MTPMessageMedia *media) {
} }
@ -2626,7 +2626,7 @@ public:
QString notificationHeader() const override; QString notificationHeader() const override;
void applyEdition(const MTPDmessage &message) override; void applyEdition(const MTPDmessage &message) override;
void applyEditionToEmpty() override; void applyEdition(const MTPDmessageService &message) override;
void updateMedia(const MTPMessageMedia *media) override; void updateMedia(const MTPMessageMedia *media) override;
int32 addToOverview(AddToOverviewMethod method) override; int32 addToOverview(AddToOverviewMethod method) override;
void eraseFromOverview() override; void eraseFromOverview() override;
@ -2693,7 +2693,6 @@ public:
~HistoryMessage(); ~HistoryMessage();
private: private:
HistoryMessage(History *history, const MTPDmessage &msg); HistoryMessage(History *history, const MTPDmessage &msg);
HistoryMessage(History *history, MsgId msgId, MTPDmessage::Flags flags, QDateTime date, int32 from, HistoryMessage *fwd); // local forwarded HistoryMessage(History *history, MsgId msgId, MTPDmessage::Flags flags, QDateTime date, int32 from, HistoryMessage *fwd); // local forwarded
HistoryMessage(History *history, MsgId msgId, MTPDmessage::Flags flags, MsgId replyTo, int32 viaBotId, QDateTime date, int32 from, const TextWithEntities &textWithEntities); // local message HistoryMessage(History *history, MsgId msgId, MTPDmessage::Flags flags, MsgId replyTo, int32 viaBotId, QDateTime date, int32 from, const TextWithEntities &textWithEntities); // local message
@ -2706,6 +2705,7 @@ private:
void initDimensions() override; void initDimensions() override;
int resizeGetHeight_(int width) override; int resizeGetHeight_(int width) override;
int performResizeGetHeight(int width); int performResizeGetHeight(int width);
void applyEditionToEmpty();
bool displayForwardedFrom() const { bool displayForwardedFrom() const {
if (const HistoryMessageForwarded *fwd = Get<HistoryMessageForwarded>()) { if (const HistoryMessageForwarded *fwd = Get<HistoryMessageForwarded>()) {
@ -2827,7 +2827,7 @@ public:
HistoryItem::clickHandlerPressedChanged(p, pressed); HistoryItem::clickHandlerPressedChanged(p, pressed);
} }
void applyEditionToEmpty() override; void applyEdition(const MTPDmessageService &message) override;
int32 addToOverview(AddToOverviewMethod method) override; int32 addToOverview(AddToOverviewMethod method) override;
void eraseFromOverview() override; void eraseFromOverview() override;
@ -2875,6 +2875,7 @@ private:
bool updateDependentText(); bool updateDependentText();
void clearDependency(); void clearDependency();
void createFromMtp(const MTPDmessageService &message);
void setMessageByAction(const MTPmessageAction &action); void setMessageByAction(const MTPmessageAction &action);
bool preparePinnedText(const QString &from, QString *outText, Links *outLinks); bool preparePinnedText(const QString &from, QString *outText, Links *outLinks);
@ -2884,7 +2885,6 @@ private:
class HistoryJoined : public HistoryService, private HistoryItemInstantiated<HistoryJoined> { class HistoryJoined : public HistoryService, private HistoryItemInstantiated<HistoryJoined> {
public: public:
static HistoryJoined *create(History *history, const QDateTime &date, UserData *from, MTPDmessage::Flags flags) { static HistoryJoined *create(History *history, const QDateTime &date, UserData *from, MTPDmessage::Flags flags) {
return _create(history, date, from, flags); return _create(history, date, from, flags);
} }
@ -2894,7 +2894,6 @@ public:
} }
protected: protected:
HistoryJoined(History *history, const QDateTime &date, UserData *from, MTPDmessage::Flags flags); HistoryJoined(History *history, const QDateTime &date, UserData *from, MTPDmessage::Flags flags);
using HistoryItemInstantiated<HistoryJoined>::_create; using HistoryItemInstantiated<HistoryJoined>::_create;
friend class HistoryItemInstantiated<HistoryJoined>; friend class HistoryItemInstantiated<HistoryJoined>;

View File

@ -4579,9 +4579,8 @@ void MainWidget::feedUpdate(const MTPUpdate &update) {
} }
// update before applying skipped // update before applying skipped
if (d.vmessage.type() == mtpc_message) { // apply message edit App::updateEditedMessage(d.vmessage);
App::updateEditedMessage(d.vmessage.c_message());
}
if (channel && !_handlingChannelDifference) { if (channel && !_handlingChannelDifference) {
channel->ptsApplySkippedUpdates(); channel->ptsApplySkippedUpdates();
} }
@ -4595,14 +4594,8 @@ void MainWidget::feedUpdate(const MTPUpdate &update) {
} }
// update before applying skipped // update before applying skipped
if (d.vmessage.type() == mtpc_message) { // apply message edit App::updateEditedMessage(d.vmessage);
App::updateEditedMessage(d.vmessage.c_message());
} else if (d.vmessage.type() == mtpc_messageService) {
auto &message = d.vmessage.c_messageService();
if (message.vaction.type() == mtpc_messageActionHistoryClear) {
App::updateEditedMessageToEmpty(peerFromMessage(d.vmessage), message.vid.v);
}
}
ptsApplySkippedUpdates(); ptsApplySkippedUpdates();
} break; } break;