253 lines
6.5 KiB
C++
253 lines
6.5 KiB
C++
/*
|
|
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 "data/notify/data_peer_notify_settings.h"
|
|
|
|
#include "base/unixtime.h"
|
|
|
|
namespace Data {
|
|
namespace {
|
|
|
|
[[nodiscard]] MTPinputPeerNotifySettings DefaultSettings() {
|
|
return MTP_inputPeerNotifySettings(
|
|
MTP_flags(0),
|
|
MTPBool(),
|
|
MTPBool(),
|
|
MTPint(),
|
|
MTPNotificationSound());
|
|
}
|
|
|
|
[[nodiscard]] NotifySound ParseSound(const MTPNotificationSound &sound) {
|
|
return sound.match([&](const MTPDnotificationSoundDefault &data) {
|
|
return NotifySound();
|
|
}, [&](const MTPDnotificationSoundNone &data) {
|
|
return NotifySound{ .none = true };
|
|
}, [&](const MTPDnotificationSoundLocal &data) {
|
|
return NotifySound{
|
|
.title = qs(data.vtitle()),
|
|
.data = qs(data.vdata()),
|
|
};
|
|
}, [&](const MTPDnotificationSoundRingtone &data) {
|
|
return NotifySound{ .id = data.vid().v };
|
|
});
|
|
}
|
|
|
|
[[nodiscard]] MTPNotificationSound SerializeSound(
|
|
const std::optional<NotifySound> &sound) {
|
|
return !sound
|
|
? MTPNotificationSound()
|
|
: sound->none
|
|
? MTP_notificationSoundNone()
|
|
: sound->id
|
|
? MTP_notificationSoundRingtone(MTP_long(sound->id))
|
|
: !sound->title.isEmpty()
|
|
? MTP_notificationSoundLocal(
|
|
MTP_string(sound->title),
|
|
MTP_string(sound->data))
|
|
: MTP_notificationSoundDefault();
|
|
}
|
|
|
|
} // namespace
|
|
|
|
class NotifyPeerSettingsValue {
|
|
public:
|
|
NotifyPeerSettingsValue(const MTPDpeerNotifySettings &data);
|
|
|
|
bool change(const MTPDpeerNotifySettings &data);
|
|
bool change(
|
|
std::optional<int> muteForSeconds,
|
|
std::optional<bool> silentPosts,
|
|
std::optional<NotifySound> sound);
|
|
|
|
std::optional<TimeId> muteUntil() const;
|
|
std::optional<bool> silentPosts() const;
|
|
std::optional<NotifySound> sound() const;
|
|
MTPinputPeerNotifySettings serialize() const;
|
|
|
|
private:
|
|
bool change(
|
|
std::optional<int> mute,
|
|
std::optional<NotifySound> sound,
|
|
std::optional<bool> showPreviews,
|
|
std::optional<bool> silentPosts);
|
|
|
|
std::optional<TimeId> _mute;
|
|
std::optional<NotifySound> _sound;
|
|
std::optional<bool> _silent;
|
|
std::optional<bool> _showPreviews;
|
|
|
|
};
|
|
|
|
NotifyPeerSettingsValue::NotifyPeerSettingsValue(
|
|
const MTPDpeerNotifySettings &data) {
|
|
change(data);
|
|
}
|
|
|
|
bool NotifyPeerSettingsValue::change(const MTPDpeerNotifySettings &data) {
|
|
const auto mute = data.vmute_until();
|
|
const auto sound = data.vother_sound();
|
|
const auto showPreviews = data.vshow_previews();
|
|
const auto silent = data.vsilent();
|
|
return change(
|
|
mute ? std::make_optional(mute->v) : std::nullopt,
|
|
sound ? std::make_optional(ParseSound(*sound)) : std::nullopt,
|
|
(showPreviews
|
|
? std::make_optional(mtpIsTrue(*showPreviews))
|
|
: std::nullopt),
|
|
silent ? std::make_optional(mtpIsTrue(*silent)) : std::nullopt);
|
|
}
|
|
|
|
bool NotifyPeerSettingsValue::change(
|
|
std::optional<int> muteForSeconds,
|
|
std::optional<bool> silentPosts,
|
|
std::optional<NotifySound> sound) {
|
|
const auto now = base::unixtime::now();
|
|
const auto newMute = muteForSeconds
|
|
? base::make_optional((*muteForSeconds > 0)
|
|
? (now + *muteForSeconds)
|
|
: 0)
|
|
: _mute;
|
|
const auto newSilentPosts = silentPosts
|
|
? base::make_optional(*silentPosts)
|
|
: _silent;
|
|
const auto newSound = sound
|
|
? base::make_optional(*sound)
|
|
: _sound;
|
|
return change(
|
|
newMute,
|
|
newSound,
|
|
_showPreviews,
|
|
newSilentPosts);
|
|
}
|
|
|
|
bool NotifyPeerSettingsValue::change(
|
|
std::optional<int> mute,
|
|
std::optional<NotifySound> sound,
|
|
std::optional<bool> showPreviews,
|
|
std::optional<bool> silentPosts) {
|
|
if (_mute == mute
|
|
&& _sound == sound
|
|
&& _showPreviews == showPreviews
|
|
&& _silent == silentPosts) {
|
|
return false;
|
|
}
|
|
_mute = mute;
|
|
_sound = sound;
|
|
_showPreviews = showPreviews;
|
|
_silent = silentPosts;
|
|
return true;
|
|
}
|
|
|
|
std::optional<TimeId> NotifyPeerSettingsValue::muteUntil() const {
|
|
return _mute;
|
|
}
|
|
|
|
std::optional<bool> NotifyPeerSettingsValue::silentPosts() const {
|
|
return _silent;
|
|
}
|
|
|
|
std::optional<NotifySound> NotifyPeerSettingsValue::sound() const {
|
|
return _sound;
|
|
}
|
|
|
|
MTPinputPeerNotifySettings NotifyPeerSettingsValue::serialize() const {
|
|
using Flag = MTPDinputPeerNotifySettings::Flag;
|
|
const auto flag = [](auto &&optional, Flag flag) {
|
|
return optional.has_value() ? flag : Flag(0);
|
|
};
|
|
return MTP_inputPeerNotifySettings(
|
|
MTP_flags(flag(_mute, Flag::f_mute_until)
|
|
| flag(_sound, Flag::f_sound)
|
|
| flag(_silent, Flag::f_silent)
|
|
| flag(_showPreviews, Flag::f_show_previews)),
|
|
MTP_bool(_showPreviews ? *_showPreviews : true),
|
|
MTP_bool(_silent ? *_silent : false),
|
|
MTP_int(_mute ? *_mute : false),
|
|
SerializeSound(_sound));
|
|
}
|
|
|
|
PeerNotifySettings::PeerNotifySettings() = default;
|
|
|
|
bool PeerNotifySettings::change(const MTPPeerNotifySettings &settings) {
|
|
Expects(settings.type() == mtpc_peerNotifySettings);
|
|
|
|
auto &data = settings.c_peerNotifySettings();
|
|
const auto empty = !data.vflags().v;
|
|
if (empty) {
|
|
if (!_known || _value) {
|
|
_known = true;
|
|
_value = nullptr;
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
if (_value) {
|
|
return _value->change(data);
|
|
}
|
|
_known = true;
|
|
_value = std::make_unique<NotifyPeerSettingsValue>(data);
|
|
return true;
|
|
}
|
|
|
|
bool PeerNotifySettings::change(
|
|
std::optional<int> muteForSeconds,
|
|
std::optional<bool> silentPosts,
|
|
std::optional<NotifySound> sound) {
|
|
if (!muteForSeconds && !silentPosts && !sound) {
|
|
return false;
|
|
} else if (_value) {
|
|
return _value->change(muteForSeconds, silentPosts, sound);
|
|
}
|
|
using Flag = MTPDpeerNotifySettings::Flag;
|
|
const auto flags = (muteForSeconds ? Flag::f_mute_until : Flag(0))
|
|
| (silentPosts ? Flag::f_silent : Flag(0))
|
|
| (sound ? Flag::f_other_sound : Flag(0));
|
|
const auto muteUntil = muteForSeconds
|
|
? (base::unixtime::now() + *muteForSeconds)
|
|
: 0;
|
|
return change(MTP_peerNotifySettings(
|
|
MTP_flags(flags),
|
|
MTPBool(),
|
|
silentPosts ? MTP_bool(*silentPosts) : MTPBool(),
|
|
MTP_int(muteUntil),
|
|
MTPNotificationSound(),
|
|
MTPNotificationSound(),
|
|
SerializeSound(sound)));
|
|
}
|
|
|
|
std::optional<TimeId> PeerNotifySettings::muteUntil() const {
|
|
return _value
|
|
? _value->muteUntil()
|
|
: std::nullopt;
|
|
}
|
|
|
|
bool PeerNotifySettings::settingsUnknown() const {
|
|
return !_known;
|
|
}
|
|
|
|
std::optional<bool> PeerNotifySettings::silentPosts() const {
|
|
return _value
|
|
? _value->silentPosts()
|
|
: std::nullopt;
|
|
}
|
|
|
|
std::optional<NotifySound> PeerNotifySettings::sound() const {
|
|
return _value
|
|
? _value->sound()
|
|
: std::nullopt;
|
|
}
|
|
|
|
MTPinputPeerNotifySettings PeerNotifySettings::serialize() const {
|
|
return _value
|
|
? _value->serialize()
|
|
: DefaultSettings();
|
|
}
|
|
|
|
PeerNotifySettings::~PeerNotifySettings() = default;
|
|
|
|
} // namespace Data
|