mirror-chatterino2/src/singletons/settingsmanager.cpp

236 lines
6.8 KiB
C++
Raw Normal View History

2017-12-31 00:50:07 +01:00
#include "singletons/settingsmanager.hpp"
#include "debug/log.hpp"
#include "singletons/pathmanager.hpp"
2018-01-17 14:14:31 +01:00
#include "singletons/resourcemanager.hpp"
#include "singletons/windowmanager.hpp"
2017-04-12 17:46:44 +02:00
2017-04-14 17:52:22 +02:00
using namespace chatterino::messages;
2017-04-12 17:46:44 +02:00
2017-04-14 17:52:22 +02:00
namespace chatterino {
2017-12-31 22:58:35 +01:00
namespace singletons {
2017-04-12 17:46:44 +02:00
std::vector<std::weak_ptr<pajlada::Settings::ISettingData>> _settings;
void _actuallyRegisterSetting(std::weak_ptr<pajlada::Settings::ISettingData> setting)
{
_settings.push_back(setting);
}
2017-12-31 22:58:35 +01:00
SettingManager::SettingManager()
: snapshot(nullptr)
2018-01-23 21:33:49 +01:00
, _ignoredKeywords(new std::vector<QString>)
2017-04-12 17:46:44 +02:00
{
this->wordFlagsListener.addSetting(this->showTimestamps);
this->wordFlagsListener.addSetting(this->showBadges);
this->wordFlagsListener.addSetting(this->enableBttvEmotes);
this->wordFlagsListener.addSetting(this->enableEmojis);
this->wordFlagsListener.addSetting(this->enableFfzEmotes);
this->wordFlagsListener.addSetting(this->enableTwitchEmotes);
this->wordFlagsListener.cb = [this](auto) {
this->updateWordTypeMask(); //
};
2018-01-17 14:14:31 +01:00
this->moderationActions.connect([this](auto, auto) { this->updateModerationActions(); });
2018-01-23 21:33:49 +01:00
this->ignoredKeywords.connect([this](auto, auto) { this->updateIgnoredKeywords(); });
this->timestampFormat.connect(
[](auto, auto) { singletons::WindowManager::getInstance().layoutVisibleChatWidgets(); });
2017-04-12 17:46:44 +02:00
}
MessageElement::Flags SettingManager::getWordFlags()
2017-04-12 17:46:44 +02:00
{
return this->wordFlags;
2017-04-12 17:46:44 +02:00
}
2017-12-31 22:58:35 +01:00
bool SettingManager::isIgnoredEmote(const QString &)
2017-04-12 17:46:44 +02:00
{
return false;
}
void SettingManager::initialize()
{
QString settingsPath = PathManager::getInstance().settingsFolderPath + "/settings.json";
pajlada::Settings::SettingManager::load(qPrintable(settingsPath));
}
2017-12-31 22:58:35 +01:00
void SettingManager::updateWordTypeMask()
2017-04-12 17:46:44 +02:00
{
uint32_t newMaskUint = MessageElement::Text;
if (this->showTimestamps) {
newMaskUint |= MessageElement::Timestamp;
2017-04-12 17:46:44 +02:00
}
newMaskUint |=
enableTwitchEmotes ? MessageElement::TwitchEmoteImage : MessageElement::TwitchEmoteText;
newMaskUint |= enableFfzEmotes ? MessageElement::FfzEmoteImage : MessageElement::FfzEmoteText;
newMaskUint |=
enableBttvEmotes ? MessageElement::BttvEmoteImage : MessageElement::BttvEmoteText;
newMaskUint |= enableEmojis ? MessageElement::EmojiImage : MessageElement::EmojiText;
newMaskUint |= MessageElement::BitsAmount;
newMaskUint |= enableGifAnimations ? MessageElement::BitsAnimated : MessageElement::BitsStatic;
2017-04-12 17:46:44 +02:00
if (this->showBadges) {
newMaskUint |= MessageElement::Badges;
}
2017-04-12 17:46:44 +02:00
newMaskUint |= MessageElement::Username;
2017-04-12 17:46:44 +02:00
newMaskUint |= MessageElement::AlwaysShow;
2018-04-18 09:12:29 +02:00
newMaskUint |= MessageElement::Collapsed;
MessageElement::Flags newMask = static_cast<MessageElement::Flags>(newMaskUint);
2017-04-12 17:46:44 +02:00
if (newMask != this->wordFlags) {
this->wordFlags = newMask;
2017-04-12 17:46:44 +02:00
emit wordFlagsChanged();
2017-04-12 17:46:44 +02:00
}
}
2017-12-31 22:58:35 +01:00
void SettingManager::saveSnapshot()
2017-04-12 17:46:44 +02:00
{
rapidjson::Document *d = new rapidjson::Document(rapidjson::kObjectType);
rapidjson::Document::AllocatorType &a = d->GetAllocator();
2017-04-12 17:46:44 +02:00
for (const auto &weakSetting : _settings) {
auto setting = weakSetting.lock();
if (!setting) {
continue;
}
rapidjson::Value key(setting->getPath().c_str(), a);
rapidjson::Value val = setting->marshalInto(*d);
d->AddMember(key.Move(), val.Move(), a);
2017-04-12 17:46:44 +02:00
}
this->snapshot.reset(d);
debug::Log("hehe: {}", pajlada::Settings::SettingManager::stringify(*d));
}
2017-12-31 22:58:35 +01:00
void SettingManager::recallSnapshot()
{
if (!this->snapshot) {
return;
}
const auto &snapshotObject = this->snapshot->GetObject();
for (const auto &weakSetting : _settings) {
auto setting = weakSetting.lock();
if (!setting) {
debug::Log("Error stage 1 of loading");
continue;
}
const char *path = setting->getPath().c_str();
if (!snapshotObject.HasMember(path)) {
debug::Log("Error stage 2 of loading");
continue;
}
setting->unmarshalValue(snapshotObject[path]);
}
2017-04-12 17:46:44 +02:00
}
2018-01-17 14:14:31 +01:00
std::vector<ModerationAction> SettingManager::getModerationActions() const
{
return this->_moderationActions;
}
2018-01-23 21:33:49 +01:00
const std::shared_ptr<std::vector<QString>> SettingManager::getIgnoredKeywords() const
{
return this->_ignoredKeywords;
}
2018-01-17 14:14:31 +01:00
void SettingManager::updateModerationActions()
{
auto &resources = singletons::ResourceManager::getInstance();
this->_moderationActions.clear();
static QRegularExpression newLineRegex("(\r\n?|\n)+");
static QRegularExpression replaceRegex("[!/.]");
static QRegularExpression timeoutRegex("^[./]timeout.* (\\d+)");
QStringList list = this->moderationActions.getValue().split(newLineRegex);
int multipleTimeouts = 0;
for (QString &str : list) {
if (timeoutRegex.match(str).hasMatch()) {
multipleTimeouts++;
if (multipleTimeouts > 1) {
break;
}
}
}
for (int i = 0; i < list.size(); i++) {
QString &str = list[i];
if (str.isEmpty()) {
continue;
}
auto timeoutMatch = timeoutRegex.match(str);
if (timeoutMatch.hasMatch()) {
if (multipleTimeouts > 1) {
QString line1;
QString line2;
int amount = timeoutMatch.captured(1).toInt();
if (amount < 60) {
line1 = QString::number(amount);
line2 = "s";
} else if (amount < 60 * 60) {
line1 = QString::number(amount / 60);
line2 = "m";
} else if (amount < 60 * 60 * 24) {
line1 = QString::number(amount / 60 / 60);
line2 = "h";
} else {
line1 = QString::number(amount / 60 / 60 / 24);
line2 = "d";
}
this->_moderationActions.emplace_back(line1, line2, str);
} else {
this->_moderationActions.emplace_back(resources.buttonTimeout, str);
}
} else if (str.startsWith("/ban ")) {
this->_moderationActions.emplace_back(resources.buttonBan, str);
} else {
QString xD = str;
xD.replace(replaceRegex, "");
this->_moderationActions.emplace_back(xD.mid(0, 2), xD.mid(2, 2), str);
}
}
}
2018-01-23 21:33:49 +01:00
void SettingManager::updateIgnoredKeywords()
{
static QRegularExpression newLineRegex("(\r\n?|\n)+");
auto items = new std::vector<QString>();
for (const QString &line : this->ignoredKeywords.getValue().split(newLineRegex)) {
QString line2 = line.trimmed();
if (!line2.isEmpty()) {
items->push_back(line2);
}
2018-01-23 21:33:49 +01:00
}
this->_ignoredKeywords = std::shared_ptr<std::vector<QString>>(items);
}
} // namespace singletons
2017-04-14 17:52:22 +02:00
} // namespace chatterino