[Improvement] Allow to ban users from recent actions
This commit is contained in:
parent
6bcd7c9900
commit
e2a9ef81bc
1 changed files with 60 additions and 3 deletions
|
|
@ -45,6 +45,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
#include "lang/lang_keys.h"
|
#include "lang/lang_keys.h"
|
||||||
#include "boxes/peers/edit_participant_box.h"
|
#include "boxes/peers/edit_participant_box.h"
|
||||||
#include "boxes/peers/edit_participants_box.h"
|
#include "boxes/peers/edit_participants_box.h"
|
||||||
|
#include "ui/boxes/confirm_box.h"
|
||||||
#include "data/data_session.h"
|
#include "data/data_session.h"
|
||||||
#include "data/data_photo.h"
|
#include "data/data_photo.h"
|
||||||
#include "data/data_photo_media.h"
|
#include "data/data_photo_media.h"
|
||||||
|
|
@ -1405,8 +1406,10 @@ void InnerWidget::suggestRestrictParticipant(
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
_menu->addAction(tr::lng_context_restrict_user(tr::now), [=] {
|
|
||||||
const auto user = participant->asUser();
|
const auto user = participant->asUser();
|
||||||
|
|
||||||
|
_menu->addAction(user ? tr::lng_context_restrict_user(tr::now) : tr::lng_context_remove_from_group(tr::now), [=] {
|
||||||
auto editRestrictions = [=](bool hasAdminRights, ChatRestrictionsInfo currentRights) {
|
auto editRestrictions = [=](bool hasAdminRights, ChatRestrictionsInfo currentRights) {
|
||||||
auto weak = QPointer<InnerWidget>(this);
|
auto weak = QPointer<InnerWidget>(this);
|
||||||
auto weakBox = std::make_shared<QPointer<Ui::BoxContent>>();
|
auto weakBox = std::make_shared<QPointer<Ui::BoxContent>>();
|
||||||
|
|
@ -1467,7 +1470,61 @@ void InnerWidget::suggestRestrictParticipant(
|
||||||
editRestrictions(false, ChatRestrictionsInfo());
|
editRestrictions(false, ChatRestrictionsInfo());
|
||||||
}).send();
|
}).send();
|
||||||
}
|
}
|
||||||
}, &st::menuIconRestrict);
|
}, user ? &st::menuIconRestrict : &st::menuIconRemove);
|
||||||
|
|
||||||
|
if (user) {
|
||||||
|
_menu->addAction(tr::lng_context_remove_from_group(tr::now), [=] {
|
||||||
|
auto editRestrictions = [=](bool hasAdminRights, ChatRestrictionsInfo currentRights) {
|
||||||
|
const auto text = tr::lng_profile_sure_kick(tr::now, lt_user, user->firstName);
|
||||||
|
auto weak = QPointer<InnerWidget>(this);
|
||||||
|
auto weakBox = std::make_shared<QPointer<Ui::GenericBox>>();
|
||||||
|
auto box = Ui::MakeConfirmBox({
|
||||||
|
.text = text,
|
||||||
|
.confirmed = crl::guard(this, [=] {
|
||||||
|
if (weak) {
|
||||||
|
weak->restrictParticipant(
|
||||||
|
participant,
|
||||||
|
ChatRestrictionsInfo(),
|
||||||
|
ChannelData::KickedRestrictedRights(participant));
|
||||||
|
}
|
||||||
|
if (*weakBox) {
|
||||||
|
(*weakBox)->closeBox();
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
.confirmText = tr::lng_box_remove(tr::now),
|
||||||
|
});
|
||||||
|
*weakBox = Ui::show(
|
||||||
|
std::move(box),
|
||||||
|
Ui::LayerOption::KeepOther);
|
||||||
|
};
|
||||||
|
if (base::contains(_admins, user)) {
|
||||||
|
editRestrictions(true, ChatRestrictionsInfo());
|
||||||
|
} else {
|
||||||
|
_api.request(MTPchannels_GetParticipant(
|
||||||
|
_channel->inputChannel,
|
||||||
|
user->input
|
||||||
|
)).done([=](const MTPchannels_ChannelParticipant &result) {
|
||||||
|
Expects(result.type() == mtpc_channels_channelParticipant);
|
||||||
|
|
||||||
|
auto &participant = result.c_channels_channelParticipant();
|
||||||
|
_channel->owner().processUsers(participant.vusers());
|
||||||
|
auto type = participant.vparticipant().type();
|
||||||
|
if (type == mtpc_channelParticipantBanned) {
|
||||||
|
auto &banned = participant.vparticipant().c_channelParticipantBanned();
|
||||||
|
editRestrictions(false, ChatRestrictionsInfo(banned.vbanned_rights()));
|
||||||
|
} else {
|
||||||
|
auto hasAdminRights = (type == mtpc_channelParticipantAdmin)
|
||||||
|
|| (type == mtpc_channelParticipantCreator);
|
||||||
|
auto bannedRights = ChatRestrictionsInfo();
|
||||||
|
editRestrictions(hasAdminRights, bannedRights);
|
||||||
|
}
|
||||||
|
}).fail([=](const MTP::Error &error) {
|
||||||
|
auto bannedRights = ChatRestrictionsInfo();
|
||||||
|
editRestrictions(false, bannedRights);
|
||||||
|
}).send();
|
||||||
|
}
|
||||||
|
}, &st::menuIconRemove);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void InnerWidget::restrictParticipant(
|
void InnerWidget::restrictParticipant(
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue