/* * Strawberry Music Player * Copyright 2018-2021, Jonas Kvinge * Copyright 2020, Pascal Below * * Strawberry is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Strawberry is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Strawberry. If not, see . * */ #include "config.h" #include #include #include #include #include #include #include "core/application.h" #include "core/song.h" #include "core/timeconstants.h" #include "core/logging.h" #include "internet/internetservices.h" #include "settings/subsonicsettingspage.h" #include "subsonic/subsonicservice.h" #include "audioscrobbler.h" #include "scrobblerservice.h" #include "subsonicscrobbler.h" const char *SubsonicScrobbler::kName = "Subsonic"; SubsonicScrobbler::SubsonicScrobbler(Application *app, QObject *parent) : ScrobblerService(kName, app, parent), app_(app), service_(app->internet_services()->Service()), enabled_(false), submitted_(false) { timer_submit_.setSingleShot(true); QObject::connect(&timer_submit_, &QTimer::timeout, this, &SubsonicScrobbler::Submit); } void SubsonicScrobbler::ReloadSettings() { QSettings s; s.beginGroup(SubsonicSettingsPage::kSettingsGroup); enabled_ = s.value("serversidescrobbling", false).toBool(); s.endGroup(); } void SubsonicScrobbler::UpdateNowPlaying(const Song &song) { if (song.source() != Song::Source::Source_Subsonic) return; song_playing_ = song; time_ = QDateTime::currentDateTime(); if (!song.is_metadata_good() || app_->scrobbler()->IsOffline()) return; service_->Scrobble(song.song_id(), false, time_); } void SubsonicScrobbler::ClearPlaying() { song_playing_ = Song(); time_ = QDateTime(); } void SubsonicScrobbler::Scrobble(const Song &song) { if (song.source() != Song::Source::Source_Subsonic || song.id() != song_playing_.id() || song.url() != song_playing_.url() || !song.is_metadata_good()) return; if (app_->scrobbler()->IsOffline()) return; if (!submitted_) { submitted_ = true; if (app_->scrobbler()->SubmitDelay() <= 0) { Submit(); } else if (!timer_submit_.isActive()) { timer_submit_.setInterval(app_->scrobbler()->SubmitDelay() * 60 * kMsecPerSec); timer_submit_.start(); } } } void SubsonicScrobbler::Submit() { qLog(Debug) << "SubsonicScrobbler: Submitting scrobble for" << song_playing_.artist() << song_playing_.title(); submitted_ = false; if (app_->scrobbler()->IsOffline()) return; service_->Scrobble(song_playing_.song_id(), true, time_); } void SubsonicScrobbler::Error(const QString &error, const QVariant &debug) { qLog(Error) << "SubsonicScrobbler:" << error; if (debug.isValid()) qLog(Debug) << debug; }