mirror of https://github.com/procxx/kepka.git
Added ability to reschedule scheduled messages.
This commit is contained in:
parent
5a75dd2b6f
commit
97446ae783
|
@ -1454,6 +1454,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
"lng_context_edit_msg" = "Edit";
|
"lng_context_edit_msg" = "Edit";
|
||||||
"lng_context_forward_msg" = "Forward Message";
|
"lng_context_forward_msg" = "Forward Message";
|
||||||
"lng_context_send_now_msg" = "Send now";
|
"lng_context_send_now_msg" = "Send now";
|
||||||
|
"lng_context_reschedule" = "Reschedule";
|
||||||
"lng_context_delete_msg" = "Delete Message";
|
"lng_context_delete_msg" = "Delete Message";
|
||||||
"lng_context_select_msg" = "Select Message";
|
"lng_context_select_msg" = "Select Message";
|
||||||
"lng_context_report_msg" = "Report Message";
|
"lng_context_report_msg" = "Report Message";
|
||||||
|
|
|
@ -5857,6 +5857,43 @@ void ApiWrap::closePoll(not_null<HistoryItem*> item) {
|
||||||
_pollCloseRequestIds.emplace(itemId, requestId);
|
_pollCloseRequestIds.emplace(itemId, requestId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ApiWrap::rescheduleMessage(
|
||||||
|
not_null<HistoryItem*> item,
|
||||||
|
Api::SendOptions options) {
|
||||||
|
const auto text = item->originalText().text;
|
||||||
|
const auto sentEntities = Api::EntitiesToMTP(
|
||||||
|
item->originalText().entities,
|
||||||
|
Api::ConvertOption::SkipLocal);
|
||||||
|
const auto media = item->media();
|
||||||
|
|
||||||
|
const auto emptyFlag = MTPmessages_EditMessage::Flag(0);
|
||||||
|
const auto flags = MTPmessages_EditMessage::Flag::f_schedule_date
|
||||||
|
| (!text.isEmpty()
|
||||||
|
? MTPmessages_EditMessage::Flag::f_message
|
||||||
|
: emptyFlag)
|
||||||
|
| ((!media || !media->webpage())
|
||||||
|
? MTPmessages_EditMessage::Flag::f_no_webpage
|
||||||
|
: emptyFlag)
|
||||||
|
| (!sentEntities.v.isEmpty()
|
||||||
|
? MTPmessages_EditMessage::Flag::f_entities
|
||||||
|
: emptyFlag);
|
||||||
|
|
||||||
|
const auto id = _session->data().scheduledMessages().lookupId(item);
|
||||||
|
request(MTPmessages_EditMessage(
|
||||||
|
MTP_flags(flags),
|
||||||
|
item->history()->peer->input,
|
||||||
|
MTP_int(id),
|
||||||
|
MTP_string(text),
|
||||||
|
MTPInputMedia(),
|
||||||
|
MTPReplyMarkup(),
|
||||||
|
sentEntities,
|
||||||
|
MTP_int(options.scheduled)
|
||||||
|
)).done([=](const MTPUpdates &result) {
|
||||||
|
applyUpdates(result);
|
||||||
|
}).fail([](const RPCError &error) {
|
||||||
|
}).send();
|
||||||
|
}
|
||||||
|
|
||||||
void ApiWrap::reloadPollResults(not_null<HistoryItem*> item) {
|
void ApiWrap::reloadPollResults(not_null<HistoryItem*> item) {
|
||||||
const auto itemId = item->fullId();
|
const auto itemId = item->fullId();
|
||||||
if (!IsServerMsgId(item->id)
|
if (!IsServerMsgId(item->id)
|
||||||
|
|
|
@ -476,6 +476,10 @@ public:
|
||||||
void closePoll(not_null<HistoryItem*> item);
|
void closePoll(not_null<HistoryItem*> item);
|
||||||
void reloadPollResults(not_null<HistoryItem*> item);
|
void reloadPollResults(not_null<HistoryItem*> item);
|
||||||
|
|
||||||
|
void rescheduleMessage(
|
||||||
|
not_null<HistoryItem*> item,
|
||||||
|
Api::SendOptions options);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
struct MessageDataRequest {
|
struct MessageDataRequest {
|
||||||
using Callbacks = QList<RequestMessageDataCallback>;
|
using Callbacks = QList<RequestMessageDataCallback>;
|
||||||
|
|
|
@ -13,6 +13,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
#include "history/history_item.h"
|
#include "history/history_item.h"
|
||||||
#include "history/history_message.h"
|
#include "history/history_message.h"
|
||||||
#include "history/history_item_text.h"
|
#include "history/history_item_text.h"
|
||||||
|
#include "history/view/history_view_schedule_box.h"
|
||||||
#include "history/view/media/history_view_media.h"
|
#include "history/view/media/history_view_media.h"
|
||||||
#include "history/view/media/history_view_web_page.h"
|
#include "history/view/media/history_view_web_page.h"
|
||||||
#include "ui/widgets/popup_menu.h"
|
#include "ui/widgets/popup_menu.h"
|
||||||
|
@ -385,6 +386,49 @@ bool AddSendNowMessageAction(
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool AddRescheduleMessageAction(
|
||||||
|
not_null<Ui::PopupMenu*> menu,
|
||||||
|
const ContextMenuRequest &request) {
|
||||||
|
const auto item = request.item;
|
||||||
|
if (!item || item->isSending() || !request.selectedItems.empty()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
const auto peer = item->history()->peer;
|
||||||
|
if (const auto channel = peer->asChannel()) {
|
||||||
|
if (!channel->canEditMessages()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
const auto owner = &item->history()->owner();
|
||||||
|
const auto itemId = item->fullId();
|
||||||
|
menu->addAction(tr::lng_context_reschedule(tr::now), [=] {
|
||||||
|
const auto item = owner->message(itemId);
|
||||||
|
if (!item) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const auto callback = [=](Api::SendOptions options) {
|
||||||
|
item->history()->session().api().rescheduleMessage(item, options);
|
||||||
|
};
|
||||||
|
|
||||||
|
const auto sendMenuType = !peer
|
||||||
|
? SendMenuType::Disabled
|
||||||
|
: peer->isSelf()
|
||||||
|
? SendMenuType::Reminder
|
||||||
|
: HistoryView::CanScheduleUntilOnline(peer)
|
||||||
|
? SendMenuType::ScheduledToUser
|
||||||
|
: SendMenuType::Scheduled;
|
||||||
|
|
||||||
|
Ui::show(
|
||||||
|
HistoryView::PrepareScheduleBox(
|
||||||
|
&request.navigation->session(),
|
||||||
|
sendMenuType,
|
||||||
|
callback,
|
||||||
|
item->date() + 600),
|
||||||
|
Ui::LayerOption::KeepOther);
|
||||||
|
});
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
void AddSendNowAction(
|
void AddSendNowAction(
|
||||||
not_null<Ui::PopupMenu*> menu,
|
not_null<Ui::PopupMenu*> menu,
|
||||||
const ContextMenuRequest &request,
|
const ContextMenuRequest &request,
|
||||||
|
@ -531,6 +575,7 @@ void AddMessageActions(
|
||||||
AddSendNowAction(menu, request, list);
|
AddSendNowAction(menu, request, list);
|
||||||
AddDeleteAction(menu, request, list);
|
AddDeleteAction(menu, request, list);
|
||||||
AddSelectionAction(menu, request, list);
|
AddSelectionAction(menu, request, list);
|
||||||
|
AddRescheduleMessageAction(menu, request);
|
||||||
}
|
}
|
||||||
|
|
||||||
void AddCopyLinkAction(
|
void AddCopyLinkAction(
|
||||||
|
|
|
@ -29,12 +29,13 @@ template <typename Guard, typename Submit>
|
||||||
[[nodiscard]] object_ptr<Ui::GenericBox> PrepareScheduleBox(
|
[[nodiscard]] object_ptr<Ui::GenericBox> PrepareScheduleBox(
|
||||||
Guard &&guard,
|
Guard &&guard,
|
||||||
SendMenuType type,
|
SendMenuType type,
|
||||||
Submit &&submit) {
|
Submit &&submit,
|
||||||
|
TimeId scheduleTime = DefaultScheduleTime()) {
|
||||||
return Box(
|
return Box(
|
||||||
ScheduleBox,
|
ScheduleBox,
|
||||||
type,
|
type,
|
||||||
crl::guard(std::forward<Guard>(guard), std::forward<Submit>(submit)),
|
crl::guard(std::forward<Guard>(guard), std::forward<Submit>(submit)),
|
||||||
DefaultScheduleTime());
|
scheduleTime);
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace HistoryView
|
} // namespace HistoryView
|
||||||
|
|
Loading…
Reference in New Issue