mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
There's a document in src/providers/twitch/api which describes how we interact with the Twitch API. Keeping this up to date might be a healthy way for us to ensure we keep using the right APIs for the right job.
203 lines
5.8 KiB
C++
203 lines
5.8 KiB
C++
#include "controllers/notifications/NotificationController.hpp"
|
|
|
|
#include "Application.hpp"
|
|
#include "common/NetworkRequest.hpp"
|
|
#include "common/Outcome.hpp"
|
|
#include "controllers/notifications/NotificationModel.hpp"
|
|
#include "providers/twitch/TwitchIrcServer.hpp"
|
|
#include "providers/twitch/api/Helix.hpp"
|
|
#include "singletons/Toasts.hpp"
|
|
#include "singletons/WindowManager.hpp"
|
|
#include "widgets/Window.hpp"
|
|
|
|
#ifdef Q_OS_WIN
|
|
# include <wintoastlib.h>
|
|
#endif
|
|
|
|
#include <QDesktopServices>
|
|
#include <QDir>
|
|
#include <QMediaPlayer>
|
|
#include <QUrl>
|
|
|
|
namespace chatterino {
|
|
|
|
void NotificationController::initialize(Settings &settings, Paths &paths)
|
|
{
|
|
this->initialized_ = true;
|
|
for (const QString &channelName : this->twitchSetting_.getValue())
|
|
{
|
|
this->channelMap[Platform::Twitch].append(channelName);
|
|
}
|
|
|
|
this->channelMap[Platform::Twitch].delayedItemsChanged.connect([this] { //
|
|
this->twitchSetting_.setValue(this->channelMap[Platform::Twitch].raw());
|
|
});
|
|
/*
|
|
for (const QString &channelName : this->mixerSetting_.getValue()) {
|
|
this->channelMap[Platform::Mixer].appendItem(channelName);
|
|
}
|
|
|
|
this->channelMap[Platform::Mixer].delayedItemsChanged.connect([this] { //
|
|
this->mixerSetting_.setValue(
|
|
this->channelMap[Platform::Mixer]);
|
|
});*/
|
|
|
|
liveStatusTimer_ = new QTimer();
|
|
|
|
this->fetchFakeChannels();
|
|
|
|
QObject::connect(this->liveStatusTimer_, &QTimer::timeout,
|
|
[=] { this->fetchFakeChannels(); });
|
|
this->liveStatusTimer_->start(60 * 1000);
|
|
}
|
|
|
|
void NotificationController::updateChannelNotification(
|
|
const QString &channelName, Platform p)
|
|
{
|
|
if (isChannelNotified(channelName, p))
|
|
{
|
|
removeChannelNotification(channelName, p);
|
|
}
|
|
else
|
|
{
|
|
addChannelNotification(channelName, p);
|
|
}
|
|
}
|
|
|
|
bool NotificationController::isChannelNotified(const QString &channelName,
|
|
Platform p)
|
|
{
|
|
for (const auto &channel : this->channelMap[p])
|
|
{
|
|
if (channelName.toLower() == channel.toLower())
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void NotificationController::addChannelNotification(const QString &channelName,
|
|
Platform p)
|
|
{
|
|
channelMap[p].append(channelName);
|
|
}
|
|
|
|
void NotificationController::removeChannelNotification(
|
|
const QString &channelName, Platform p)
|
|
{
|
|
for (std::vector<int>::size_type i = 0; i != channelMap[p].raw().size();
|
|
i++)
|
|
{
|
|
if (channelMap[p].raw()[i].toLower() == channelName.toLower())
|
|
{
|
|
channelMap[p].removeAt(i);
|
|
i--;
|
|
}
|
|
}
|
|
}
|
|
void NotificationController::playSound()
|
|
{
|
|
static auto player = new QMediaPlayer;
|
|
static QUrl currentPlayerUrl;
|
|
|
|
QUrl highlightSoundUrl =
|
|
getSettings()->notificationCustomSound
|
|
? QUrl::fromLocalFile(
|
|
getSettings()->notificationPathSound.getValue())
|
|
: QUrl("qrc:/sounds/ping2.wav");
|
|
|
|
if (currentPlayerUrl != highlightSoundUrl)
|
|
{
|
|
player->setMedia(highlightSoundUrl);
|
|
|
|
currentPlayerUrl = highlightSoundUrl;
|
|
}
|
|
player->play();
|
|
}
|
|
|
|
NotificationModel *NotificationController::createModel(QObject *parent,
|
|
Platform p)
|
|
{
|
|
NotificationModel *model = new NotificationModel(parent);
|
|
model->initialize(&this->channelMap[p]);
|
|
return model;
|
|
}
|
|
|
|
void NotificationController::fetchFakeChannels()
|
|
{
|
|
for (std::vector<int>::size_type i = 0;
|
|
i != channelMap[Platform::Twitch].raw().size(); i++)
|
|
{
|
|
auto chan = getApp()->twitch.server->getChannelOrEmpty(
|
|
channelMap[Platform::Twitch].raw()[i]);
|
|
if (chan->isEmpty())
|
|
{
|
|
getFakeTwitchChannelLiveStatus(
|
|
channelMap[Platform::Twitch].raw()[i]);
|
|
}
|
|
}
|
|
}
|
|
|
|
void NotificationController::getFakeTwitchChannelLiveStatus(
|
|
const QString &channelName)
|
|
{
|
|
getHelix()->getStreamByName(
|
|
channelName,
|
|
[channelName, this](bool live, const auto &stream) {
|
|
qDebug() << "[TwitchChannel" << channelName
|
|
<< "] Refreshing live status";
|
|
|
|
if (!live)
|
|
{
|
|
// Stream is offline
|
|
this->removeFakeChannel(channelName);
|
|
return;
|
|
}
|
|
|
|
// Stream is online
|
|
auto i = std::find(fakeTwitchChannels.begin(),
|
|
fakeTwitchChannels.end(), channelName);
|
|
|
|
if (i != fakeTwitchChannels.end())
|
|
{
|
|
// We have already pushed the live state of this stream
|
|
// Could not find stream in fake twitch channels!
|
|
return;
|
|
}
|
|
|
|
if (Toasts::isEnabled())
|
|
{
|
|
getApp()->toasts->sendChannelNotification(channelName,
|
|
Platform::Twitch);
|
|
}
|
|
if (getSettings()->notificationPlaySound)
|
|
{
|
|
getApp()->notifications->playSound();
|
|
}
|
|
if (getSettings()->notificationFlashTaskbar)
|
|
{
|
|
getApp()->windows->sendAlert();
|
|
}
|
|
|
|
// Indicate that we have pushed notifications for this stream
|
|
fakeTwitchChannels.push_back(channelName);
|
|
},
|
|
[channelName, this] {
|
|
qDebug() << "[TwitchChannel" << channelName
|
|
<< "] Refreshing live status (Missing ID)";
|
|
this->removeFakeChannel(channelName);
|
|
});
|
|
}
|
|
|
|
void NotificationController::removeFakeChannel(const QString channelName)
|
|
{
|
|
auto i = std::find(fakeTwitchChannels.begin(), fakeTwitchChannels.end(),
|
|
channelName);
|
|
if (i != fakeTwitchChannels.end())
|
|
{
|
|
fakeTwitchChannels.erase(i);
|
|
}
|
|
}
|
|
|
|
} // namespace chatterino
|