Clementine-audio-player-Mac.../src/lastfmconfig.cpp

75 lines
2.1 KiB
C++
Raw Normal View History

/* This file is part of Clementine.
Clementine 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.
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
*/
2009-12-26 18:19:14 +01:00
#include "lastfmconfig.h"
#include "lastfmservice.h"
2010-02-03 19:32:48 +01:00
#include "radiomodel.h"
2009-12-26 18:19:14 +01:00
#include <lastfm/ws.h>
#include <QMessageBox>
2010-02-03 19:32:48 +01:00
#include <QSettings>
2009-12-26 18:19:14 +01:00
2010-02-03 19:32:48 +01:00
LastFMConfig::LastFMConfig(QWidget *parent)
: QWidget(parent),
service_(static_cast<LastFMService*>(RadioModel::ServiceByName("Last.fm")))
2009-12-26 18:19:14 +01:00
{
ui_.setupUi(this);
ui_.busy->hide();
connect(service_, SIGNAL(AuthenticationComplete(bool)), SLOT(AuthenticationComplete(bool)));
}
2010-02-03 19:32:48 +01:00
bool LastFMConfig::NeedsValidation() const {
return !ui_.username->text().isEmpty() && !ui_.password->text().isEmpty();
}
2009-12-26 18:19:14 +01:00
2010-02-03 19:32:48 +01:00
void LastFMConfig::Validate() {
2009-12-26 18:19:14 +01:00
ui_.busy->show();
service_->Authenticate(ui_.username->text(), ui_.password->text());
}
void LastFMConfig::AuthenticationComplete(bool success) {
2010-02-03 19:32:48 +01:00
if (!ui_.busy->isVisible())
return; // Wasn't us that was waiting for auth
2009-12-26 18:19:14 +01:00
ui_.busy->hide();
if (success) {
ui_.username->setText(lastfm::ws::Username);
ui_.password->clear();
} else {
2010-02-23 19:33:09 +01:00
QMessageBox::warning(this, tr("Authentication failed"), tr("Your Last.fm credentials were incorrect"));
2009-12-26 18:19:14 +01:00
}
2010-02-03 19:32:48 +01:00
emit ValidationComplete(success);
}
void LastFMConfig::Load() {
ui_.username->setText(lastfm::ws::Username);
ui_.scrobble->setChecked(service_->IsScrobblingEnabled());
}
void LastFMConfig::Save() {
QSettings s;
s.beginGroup(LastFMService::kSettingsGroup);
s.setValue("ScrobblingEnabled", ui_.scrobble->isChecked());
s.endGroup();
service_->ReloadSettings();
2009-12-26 18:19:14 +01:00
}