2018-01-04 01:52:37 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "util/serialize-custom.hpp"
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include <pajlada/settings/serialize.hpp>
|
|
|
|
|
|
|
|
namespace chatterino {
|
|
|
|
namespace messages {
|
|
|
|
|
|
|
|
struct HighlightPhrase {
|
|
|
|
QString key;
|
|
|
|
bool alert;
|
2018-04-25 14:49:30 +02:00
|
|
|
bool sound;
|
|
|
|
bool regex;
|
2018-01-04 01:52:37 +01:00
|
|
|
|
2018-04-25 14:49:30 +02:00
|
|
|
bool operator==(const HighlightPhrase &other) const
|
2018-01-04 01:52:37 +01:00
|
|
|
{
|
2018-04-25 14:49:30 +02:00
|
|
|
return std::tie(this->key, this->sound, this->alert, this->regex) ==
|
|
|
|
std::tie(other.key, other.sound, other.alert, other.regex);
|
2018-01-04 01:52:37 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
} // namespace messages
|
|
|
|
} // namespace chatterino
|
|
|
|
|
|
|
|
namespace pajlada {
|
|
|
|
namespace Settings {
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct Serialize<chatterino::messages::HighlightPhrase> {
|
|
|
|
static rapidjson::Value get(const chatterino::messages::HighlightPhrase &value,
|
|
|
|
rapidjson::Document::AllocatorType &a)
|
|
|
|
{
|
|
|
|
rapidjson::Value ret(rapidjson::kObjectType);
|
|
|
|
|
|
|
|
AddMember(ret, "key", value.key, a);
|
|
|
|
AddMember(ret, "alert", value.alert, a);
|
|
|
|
AddMember(ret, "sound", value.sound, a);
|
2018-04-25 14:49:30 +02:00
|
|
|
AddMember(ret, "regex", value.regex, a);
|
2018-01-04 01:52:37 +01:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct Deserialize<chatterino::messages::HighlightPhrase> {
|
|
|
|
static chatterino::messages::HighlightPhrase get(const rapidjson::Value &value)
|
|
|
|
{
|
|
|
|
chatterino::messages::HighlightPhrase ret;
|
|
|
|
if (!value.IsObject()) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (value.HasMember("key")) {
|
|
|
|
const rapidjson::Value &key = value["key"];
|
|
|
|
if (key.IsString()) {
|
|
|
|
ret.key = key.GetString();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (value.HasMember("alert")) {
|
|
|
|
const rapidjson::Value &alert = value["alert"];
|
|
|
|
if (alert.IsBool()) {
|
|
|
|
ret.alert = alert.GetBool();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (value.HasMember("sound")) {
|
|
|
|
const rapidjson::Value &sound = value["sound"];
|
|
|
|
if (sound.IsBool()) {
|
|
|
|
ret.sound = sound.GetBool();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-25 14:49:30 +02:00
|
|
|
if (value.HasMember("regex")) {
|
|
|
|
const rapidjson::Value ®ex = value["regex"];
|
|
|
|
if (regex.IsBool()) {
|
|
|
|
ret.regex = regex.GetBool();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-04 01:52:37 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Settings
|
|
|
|
} // namespace pajlada
|