/* * 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 "core/shared_ptr.h" #include "core/application.h" #include "core/song.h" #include "core/logging.h" #include "utilities/timeconstants.h" #include "settings/subsonicsettingspage.h" #include "internet/internetservices.h" #include "subsonic/subsonicservice.h" #include "scrobblersettings.h" #include "scrobblerservice.h" #include "subsonicscrobbler.h" const char *SubsonicScrobbler::kName = "Subsonic"; SubsonicScrobbler::SubsonicScrobbler(SharedPtr settings, Application *app, QObject *parent) : ScrobblerService(kName, parent), settings_(settings), app_(app), service_(nullptr), enabled_(false), submitted_(false) { SubsonicScrobbler::ReloadSettings(); 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(); } SubsonicServicePtr SubsonicScrobbler::service() { if (!service_) { service_ = app_->internet_services()->Service(); } return service_; } void SubsonicScrobbler::UpdateNowPlaying(const Song &song) { if (song.source() != Song::Source::Subsonic) return; song_playing_ = song; time_ = QDateTime::currentDateTime(); if (!song.is_metadata_good() || settings_->offline() || !service()) 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::Subsonic || song.id() != song_playing_.id() || song.url() != song_playing_.url() || !song.is_metadata_good()) return; if (settings_->offline()) return; if (!submitted_) { submitted_ = true; if (settings_->submit_delay() <= 0) { Submit(); } else if (!timer_submit_.isActive()) { timer_submit_.setInterval(static_cast(settings_->submit_delay() * kMsecPerSec)); timer_submit_.start(); } } } void SubsonicScrobbler::Submit() { qLog(Debug) << "SubsonicScrobbler: Submitting scrobble for" << song_playing_.artist() << song_playing_.title(); submitted_ = false; if (settings_->offline() || !service()) return; service()->Scrobble(song_playing_.song_id(), true, time_); }