mirror of https://github.com/procxx/kepka.git
Allow deleting scheduled messages.
This commit is contained in:
parent
815a18be94
commit
ea0a616453
|
@ -25,6 +25,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
#include "core/click_handler_types.h"
|
#include "core/click_handler_types.h"
|
||||||
#include "window/window_session_controller.h"
|
#include "window/window_session_controller.h"
|
||||||
#include "storage/localstorage.h"
|
#include "storage/localstorage.h"
|
||||||
|
#include "data/data_scheduled_messages.h"
|
||||||
#include "data/data_session.h"
|
#include "data/data_session.h"
|
||||||
#include "data/data_photo.h"
|
#include "data/data_photo.h"
|
||||||
#include "data/data_channel.h"
|
#include "data/data_channel.h"
|
||||||
|
@ -765,9 +766,15 @@ void DeleteMessagesBox::deleteAndClear() {
|
||||||
}
|
}
|
||||||
|
|
||||||
base::flat_map<not_null<PeerData*>, QVector<MTPint>> idsByPeer;
|
base::flat_map<not_null<PeerData*>, QVector<MTPint>> idsByPeer;
|
||||||
|
base::flat_map<not_null<PeerData*>, QVector<MTPint>> scheduledIdsByPeer;
|
||||||
for (const auto itemId : _ids) {
|
for (const auto itemId : _ids) {
|
||||||
if (const auto item = _session->data().message(itemId)) {
|
if (const auto item = _session->data().message(itemId)) {
|
||||||
const auto history = item->history();
|
const auto history = item->history();
|
||||||
|
if (item->isScheduled()) {
|
||||||
|
scheduledIdsByPeer[history->peer].push_back(MTP_int(
|
||||||
|
_session->data().scheduledMessages().lookupId(item)));
|
||||||
|
continue;
|
||||||
|
}
|
||||||
const auto wasOnServer = IsServerMsgId(item->id);
|
const auto wasOnServer = IsServerMsgId(item->id);
|
||||||
const auto wasLast = (history->lastMessage() == item);
|
const auto wasLast = (history->lastMessage() == item);
|
||||||
const auto wasInChats = (history->chatListMessage() == item);
|
const auto wasInChats = (history->chatListMessage() == item);
|
||||||
|
@ -784,6 +791,15 @@ void DeleteMessagesBox::deleteAndClear() {
|
||||||
for (const auto &[peer, ids] : idsByPeer) {
|
for (const auto &[peer, ids] : idsByPeer) {
|
||||||
peer->session().api().deleteMessages(peer, ids, revoke);
|
peer->session().api().deleteMessages(peer, ids, revoke);
|
||||||
}
|
}
|
||||||
|
for (const auto &[peer, ids] : scheduledIdsByPeer) {
|
||||||
|
peer->session().api().request(MTPmessages_DeleteScheduledMessages(
|
||||||
|
peer->input,
|
||||||
|
MTP_vector<MTPint>(ids)
|
||||||
|
)).done([=, peer=peer](const MTPUpdates &updates) {
|
||||||
|
peer->session().api().applyUpdates(updates);
|
||||||
|
}).send();
|
||||||
|
}
|
||||||
|
|
||||||
const auto session = _session;
|
const auto session = _session;
|
||||||
Ui::hideLayer();
|
Ui::hideLayer();
|
||||||
session->data().sendHistoryChangeNotifications();
|
session->data().sendHistoryChangeNotifications();
|
||||||
|
|
|
@ -746,15 +746,11 @@ bool ListWidget::isSelectedAsGroup(
|
||||||
return applyTo.contains(item->fullId());
|
return applyTo.contains(item->fullId());
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ListWidget::isGoodForSelection(not_null<HistoryItem*> item) const {
|
|
||||||
return IsServerMsgId(item->id) && !item->serviceMsg();
|
|
||||||
}
|
|
||||||
|
|
||||||
bool ListWidget::isGoodForSelection(
|
bool ListWidget::isGoodForSelection(
|
||||||
SelectedMap &applyTo,
|
SelectedMap &applyTo,
|
||||||
not_null<HistoryItem*> item,
|
not_null<HistoryItem*> item,
|
||||||
int &totalCount) const {
|
int &totalCount) const {
|
||||||
if (!isGoodForSelection(item)) {
|
if (!_delegate->listIsItemGoodForSelection(item)) {
|
||||||
return false;
|
return false;
|
||||||
} else if (!applyTo.contains(item->fullId())) {
|
} else if (!applyTo.contains(item->fullId())) {
|
||||||
++totalCount;
|
++totalCount;
|
||||||
|
@ -1814,14 +1810,14 @@ void ListWidget::updateDragSelection(
|
||||||
const auto changeGroup = [&](not_null<HistoryItem*> item, bool add) {
|
const auto changeGroup = [&](not_null<HistoryItem*> item, bool add) {
|
||||||
if (const auto group = groups.find(item)) {
|
if (const auto group = groups.find(item)) {
|
||||||
for (const auto item : group->items) {
|
for (const auto item : group->items) {
|
||||||
if (!isGoodForSelection(item)) {
|
if (!_delegate->listIsItemGoodForSelection(item)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for (const auto item : group->items) {
|
for (const auto item : group->items) {
|
||||||
changeItem(item, add);
|
changeItem(item, add);
|
||||||
}
|
}
|
||||||
} else if (isGoodForSelection(item)) {
|
} else if (_delegate->listIsItemGoodForSelection(item)) {
|
||||||
changeItem(item, add);
|
changeItem(item, add);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -62,6 +62,7 @@ public:
|
||||||
int limitBefore,
|
int limitBefore,
|
||||||
int limitAfter) = 0;
|
int limitAfter) = 0;
|
||||||
virtual bool listAllowsMultiSelect() = 0;
|
virtual bool listAllowsMultiSelect() = 0;
|
||||||
|
virtual bool listIsItemGoodForSelection(not_null<HistoryItem*> item) = 0;
|
||||||
virtual bool listIsLessInOrder(
|
virtual bool listIsLessInOrder(
|
||||||
not_null<HistoryItem*> first,
|
not_null<HistoryItem*> first,
|
||||||
not_null<HistoryItem*> second) = 0;
|
not_null<HistoryItem*> second) = 0;
|
||||||
|
@ -338,7 +339,6 @@ private:
|
||||||
TextSelection selection);
|
TextSelection selection);
|
||||||
int itemMinimalHeight() const;
|
int itemMinimalHeight() const;
|
||||||
|
|
||||||
bool isGoodForSelection(not_null<HistoryItem*> item) const;
|
|
||||||
bool isGoodForSelection(
|
bool isGoodForSelection(
|
||||||
SelectedMap &applyTo,
|
SelectedMap &applyTo,
|
||||||
not_null<HistoryItem*> item,
|
not_null<HistoryItem*> item,
|
||||||
|
|
|
@ -14,6 +14,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
#include "ui/widgets/scroll_area.h"
|
#include "ui/widgets/scroll_area.h"
|
||||||
#include "ui/widgets/shadow.h"
|
#include "ui/widgets/shadow.h"
|
||||||
#include "ui/special_buttons.h"
|
#include "ui/special_buttons.h"
|
||||||
|
#include "boxes/confirm_box.h"
|
||||||
#include "window/window_session_controller.h"
|
#include "window/window_session_controller.h"
|
||||||
#include "core/event_filter.h"
|
#include "core/event_filter.h"
|
||||||
#include "main/main_session.h"
|
#include "main/main_session.h"
|
||||||
|
@ -367,6 +368,11 @@ bool ScheduledWidget::listAllowsMultiSelect() {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool ScheduledWidget::listIsItemGoodForSelection(
|
||||||
|
not_null<HistoryItem*> item) {
|
||||||
|
return !item->isSending() && !item->hasFailed();
|
||||||
|
}
|
||||||
|
|
||||||
bool ScheduledWidget::listIsLessInOrder(
|
bool ScheduledWidget::listIsLessInOrder(
|
||||||
not_null<HistoryItem*> first,
|
not_null<HistoryItem*> first,
|
||||||
not_null<HistoryItem*> second) {
|
not_null<HistoryItem*> second) {
|
||||||
|
@ -407,13 +413,15 @@ void ScheduledWidget::confirmDeleteSelected() {
|
||||||
if (items.empty()) {
|
if (items.empty()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
//const auto weak = make_weak(this);
|
const auto weak = make_weak(this);
|
||||||
//const auto box = Ui::show(Box<DeleteMessagesBox>(std::move(items)));
|
const auto box = Ui::show(Box<DeleteMessagesBox>(
|
||||||
//box->setDeleteConfirmedCallback([=] {
|
&_history->session(),
|
||||||
// if (const auto strong = weak.data()) {
|
std::move(items)));
|
||||||
// strong->clearSelected();
|
box->setDeleteConfirmedCallback([=] {
|
||||||
// }
|
if (const auto strong = weak.data()) {
|
||||||
//});
|
strong->clearSelected();
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
void ScheduledWidget::clearSelected() {
|
void ScheduledWidget::clearSelected() {
|
||||||
|
|
|
@ -76,6 +76,7 @@ public:
|
||||||
int limitBefore,
|
int limitBefore,
|
||||||
int limitAfter) override;
|
int limitAfter) override;
|
||||||
bool listAllowsMultiSelect() override;
|
bool listAllowsMultiSelect() override;
|
||||||
|
bool listIsItemGoodForSelection(not_null<HistoryItem*> item) override;
|
||||||
bool listIsLessInOrder(
|
bool listIsLessInOrder(
|
||||||
not_null<HistoryItem*> first,
|
not_null<HistoryItem*> first,
|
||||||
not_null<HistoryItem*> second) override;
|
not_null<HistoryItem*> second) override;
|
||||||
|
|
Loading…
Reference in New Issue