1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
#include "menu/menu_ttl_validator.h"
#include "apiwrap.h"
#include "data/data_channel.h"
#include "data/data_chat.h"
#include "data/data_peer.h"
#include "data/data_user.h"
#include "lang/lang_keys.h"
#include "main/main_session.h"
#include "menu/menu_ttl.h"
#include "ui/layers/generic_box.h"
#include "ui/layers/show.h"
#include "ui/text/text_utilities.h"
#include "ui/toast/toast.h"
#include "ui/toasts/common_toasts.h"
#include "ui/text/format_values.h"
#include "styles/style_chat.h"
#include "styles/style_menu_icons.h"
namespace TTLMenu {
namespace {
constexpr auto kToastDuration = crl::time(3500);
void ShowAutoDeleteToast(
not_null<QWidget*> parent,
not_null<PeerData*> peer) {
const auto period = peer->messagesTTL();
if (!period) {
Ui::Toast::Show(parent, tr::lng_ttl_about_tooltip_off(tr::now));
return;
}
const auto duration = (period == 5)
? u"5 seconds"_q
: Ui::FormatTTL(period);
const auto text = peer->isBroadcast()
? tr::lng_ttl_about_tooltip_channel(tr::now, lt_duration, duration)
: tr::lng_ttl_about_tooltip(tr::now, lt_duration, duration);
Ui::ShowMultilineToast({
.parentOverride = parent,
.text = { text },
.duration = kToastDuration,
});
}
} // namespace
TTLValidator::TTLValidator(
std::shared_ptr<Ui::Show> show,
not_null<PeerData*> peer)
: _peer(peer)
, _show(std::move(show)) {
}
Args TTLValidator::createArgs() const {
const auto peer = _peer;
const auto show = _show;
struct State {
TimeId savingPeriod = 0;
mtpRequestId savingRequestId = 0;
};
const auto state = std::make_shared<State>();
auto callback = [=](
TimeId period,
Fn<void()>) {
auto &api = peer->session().api();
if (state->savingRequestId) {
if (period == state->savingPeriod) {
return;
}
api.request(state->savingRequestId).cancel();
}
state->savingPeriod = period;
const auto weak = Ui::MakeWeak(show->toastParent().get());
state->savingRequestId = api.request(MTPmessages_SetHistoryTTL(
peer->input,
MTP_int(period)
)).done([=](const MTPUpdates &result) {
peer->session().api().applyUpdates(result);
if (const auto strong = weak.data()) {
ShowAutoDeleteToast(strong, peer);
}
state->savingRequestId = 0;
}).fail([=] {
state->savingRequestId = 0;
}).send();
show->hideLayer();
};
auto about1 = peer->isUser()
? tr::lng_ttl_edit_about(lt_user, rpl::single(peer->shortName()))
: peer->isBroadcast()
? tr::lng_ttl_edit_about_channel()
: tr::lng_ttl_edit_about_group();
auto about2 = tr::lng_ttl_edit_about2(
lt_link,
tr::lng_ttl_edit_about2_link(
) | rpl::map([=](const QString &s) {
return Ui::Text::Link(s, "tg://settings/auto_delete");
}),
Ui::Text::WithEntities);
auto about = rpl::combine(
std::move(about1),
std::move(about2)
) | rpl::map([](const QString &s1, TextWithEntities &&s2) {
return TextWithEntities{ s1 }.append(u"\n\n"_q).append(std::move(s2));
});
const auto ttl = peer->messagesTTL();
return { std::move(show), ttl, std::move(about), std::move(callback) };
}
bool TTLValidator::can() const {
return (_peer->isUser()
&& !_peer->isSelf()
&& !_peer->isNotificationsUser()
&& !_peer->asUser()->isInaccessible())
|| (_peer->isChat()
&& _peer->asChat()->canEditInformation()
&& _peer->asChat()->amIn())
|| (_peer->isChannel()
&& _peer->asChannel()->canEditInformation()
&& _peer->asChannel()->amIn());
}
void TTLValidator::showToast() const {
ShowAutoDeleteToast(_show->toastParent(), _peer);
}
const style::icon *TTLValidator::icon() const {
return &st::menuIconTTL;
}
void TTLValidator::showBox() const {
_show->showBox(Box(TTLBox, createArgs()));
}
} // namespace TTLMenu
|