diff --git a/Telegram/SourceFiles/api/api_sending.cpp b/Telegram/SourceFiles/api/api_sending.cpp index 082826664..d0c5315ac 100644 --- a/Telegram/SourceFiles/api/api_sending.cpp +++ b/Telegram/SourceFiles/api/api_sending.cpp @@ -198,4 +198,109 @@ void SendExistingPhoto( Data::FileOrigin()); } +bool SendDice(Api::MessageToSend &message) { + static const auto kDiceString = QString::fromUtf8("\xF0\x9F\x8E\xB2"); + if (message.textWithTags.text != kDiceString) { + return false; + } + const auto history = message.action.history; + const auto peer = history->peer; + const auto session = &history->session(); + const auto api = &session->api(); + + message.textWithTags = TextWithTags(); + message.action.clearDraft = false; + message.action.generateLocal = true; + api->sendAction(message.action); + + const auto newId = FullMsgId( + peerToChannel(peer->id), + session->data().nextLocalMessageId()); + const auto randomId = rand_value(); + + auto &histories = history->owner().histories(); + auto flags = NewMessageFlags(peer) | MTPDmessage::Flag::f_media; + auto clientFlags = NewMessageClientFlags(); + auto sendFlags = MTPmessages_SendMedia::Flags(0); + if (message.action.replyTo) { + flags |= MTPDmessage::Flag::f_reply_to_msg_id; + sendFlags |= MTPmessages_SendMedia::Flag::f_reply_to_msg_id; + } + const auto channelPost = peer->isChannel() && !peer->isMegagroup(); + const auto silentPost = message.action.options.silent + || (channelPost && session->data().notifySilentPosts(peer)); + if (channelPost) { + flags |= MTPDmessage::Flag::f_views; + flags |= MTPDmessage::Flag::f_post; + } + if (!channelPost) { + flags |= MTPDmessage::Flag::f_from_id; + } else if (peer->asChannel()->addsSignature()) { + flags |= MTPDmessage::Flag::f_post_author; + } + if (silentPost) { + sendFlags |= MTPmessages_SendMedia::Flag::f_silent; + } + auto messageFromId = channelPost ? 0 : session->userId(); + auto messagePostAuthor = channelPost ? session->user()->name : QString(); + const auto replyTo = message.action.replyTo; + + if (message.action.options.scheduled) { + flags |= MTPDmessage::Flag::f_from_scheduled; + sendFlags |= MTPmessages_SendMedia::Flag::f_schedule_date; + } else { + clientFlags |= MTPDmessage_ClientFlag::f_local_history_entry; + } + + session->data().registerMessageRandomId(randomId, newId); + + history->addNewMessage( + MTP_message( + MTP_flags(flags), + MTP_int(newId.msg), + MTP_int(messageFromId), + peerToMTP(history->peer->id), + MTPMessageFwdHeader(), + MTP_int(0), + MTP_int(replyTo), + MTP_int(HistoryItem::NewMessageDate( + message.action.options.scheduled)), + MTP_string(), + MTP_messageMediaDice(MTP_int(0)), + MTPReplyMarkup(), + MTP_vector(), + MTP_int(1), + MTPint(), + MTP_string(messagePostAuthor), + MTPlong(), + //MTPMessageReactions(), + MTPVector()), + clientFlags, + NewMessageType::Unread); + + const auto requestType = Data::Histories::RequestType::Send; + histories.sendRequest(history, requestType, [=](Fn finish) { + history->sendRequestId = api->request(MTPmessages_SendMedia( + MTP_flags(sendFlags), + peer->input, + MTP_int(replyTo), + MTP_inputMediaDice(), + MTP_string(), + MTP_long(randomId), + MTPReplyMarkup(), + MTP_vector(), + MTP_int(message.action.options.scheduled) + )).done([=](const MTPUpdates &result) { + api->applyUpdates(result, randomId); + finish(); + }).fail([=](const RPCError &error) { + api->sendMessageFail(error, peer, randomId, newId); + finish(); + }).afterRequest(history->sendRequestId + ).send(); + return history->sendRequestId; + }); + return true; +} + } // namespace Api diff --git a/Telegram/SourceFiles/api/api_sending.h b/Telegram/SourceFiles/api/api_sending.h index ce4c33bb7..c6232eeba 100644 --- a/Telegram/SourceFiles/api/api_sending.h +++ b/Telegram/SourceFiles/api/api_sending.h @@ -8,6 +8,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL #pragma once class History; +class PhotoData; class DocumentData; namespace Api { @@ -22,4 +23,6 @@ void SendExistingPhoto( Api::MessageToSend &&message, not_null photo); +[[nodiscard]] bool SendDice(Api::MessageToSend &message); + } // namespace Api diff --git a/Telegram/SourceFiles/apiwrap.cpp b/Telegram/SourceFiles/apiwrap.cpp index 5dbea9760..ac5ba4ede 100644 --- a/Telegram/SourceFiles/apiwrap.cpp +++ b/Telegram/SourceFiles/apiwrap.cpp @@ -7,6 +7,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL */ #include "apiwrap.h" +#include "api/api_sending.h" #include "api/api_text_entities.h" #include "api/api_self_destruct.h" #include "api/api_sensitive_content.h" @@ -4793,7 +4794,7 @@ void ApiWrap::sendMessage(MessageToSend &&message) { action.generateLocal = true; sendAction(action); - if (!peer->canWrite()) { + if (!peer->canWrite() || Api::SendDice(message)) { return; } Local::saveRecentSentHashtags(textWithTags.text); diff --git a/Telegram/SourceFiles/data/data_media_types.cpp b/Telegram/SourceFiles/data/data_media_types.cpp index 5e6a9d9c0..9fd380bbe 100644 --- a/Telegram/SourceFiles/data/data_media_types.cpp +++ b/Telegram/SourceFiles/data/data_media_types.cpp @@ -1360,6 +1360,7 @@ bool MediaDice::updateSentMedia(const MTPMessageMedia &media) { return false; } _value = media.c_messageMediaDice().vvalue().v; + parent()->history()->owner().requestItemRepaint(parent()); return true; } @@ -1368,7 +1369,7 @@ std::unique_ptr MediaDice::createView( not_null realParent) { return std::make_unique( message, - std::make_unique(message, _value)); + std::make_unique(message, this)); } } // namespace Data diff --git a/Telegram/SourceFiles/history/view/media/history_view_dice.cpp b/Telegram/SourceFiles/history/view/media/history_view_dice.cpp index dd23adf02..90200d1f7 100644 --- a/Telegram/SourceFiles/history/view/media/history_view_dice.cpp +++ b/Telegram/SourceFiles/history/view/media/history_view_dice.cpp @@ -25,10 +25,10 @@ DocumentData *Lookup(not_null view, int value) { } // namespace -Dice::Dice(not_null parent, int value) +Dice::Dice(not_null parent, not_null dice) : _parent(parent) -, _start(parent, Lookup(parent, 0)) -, _value(value) { +, _dice(dice) +, _start(parent, Lookup(parent, 0)) { _showLastFrame = _parent->data()->Has(); if (_showLastFrame) { _drawingEnd = true; @@ -44,10 +44,10 @@ QSize Dice::size() { } void Dice::draw(Painter &p, const QRect &r, bool selected) { - if (!_end && _value) { - if (const auto document = Lookup(_parent, _value)) { + if (const auto value = _end ? 0 : _dice->diceValue()) { + if (const auto document = Lookup(_parent, value)) { _end.emplace(_parent, document); - _end->setDiceIndex(_value); + _end->setDiceIndex(value); _end->initSize(); } } diff --git a/Telegram/SourceFiles/history/view/media/history_view_dice.h b/Telegram/SourceFiles/history/view/media/history_view_dice.h index e61da58b1..d8967412f 100644 --- a/Telegram/SourceFiles/history/view/media/history_view_dice.h +++ b/Telegram/SourceFiles/history/view/media/history_view_dice.h @@ -10,11 +10,15 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL #include "history/view/media/history_view_media_unwrapped.h" #include "history/view/media/history_view_sticker.h" +namespace Data { +class MediaDice; +} // namespace Data + namespace HistoryView { class Dice final : public UnwrappedMedia::Content { public: - Dice(not_null parent, int value); + Dice(not_null parent, not_null dice); ~Dice(); QSize size() override; @@ -34,9 +38,9 @@ public: private: const not_null _parent; + const not_null _dice; std::optional _end; Sticker _start; - int _value = 0; mutable bool _showLastFrame = false; mutable bool _drawingEnd = false;