1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-10-04 09:31:41 +02:00
Files
tomahawk/src/libtomahawk/TomahawkSettings.cpp
2012-09-24 14:40:37 +02:00

1391 lines
38 KiB
C++

/* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
*
* Copyright 2010-2011, Christian Muehlhaeuser <muesli@tomahawk-player.org>
* Copyright 2010-2011 Leo Franchi <lfranchi@kde.org>
* Copyright 2010-2012, Jeff Mitchell <jeff@tomahawk-player.org>
*
* Tomahawk 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.
*
* Tomahawk 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 Tomahawk. If not, see <http://www.gnu.org/licenses/>.
*/
#include "TomahawkSettings.h"
#include <QDir>
#include "Source.h"
#include "sip/SipHandler.h"
#include "PlaylistInterface.h"
#include "utils/Logger.h"
#include "utils/TomahawkUtils.h"
#include "database/DatabaseCommand_UpdateSearchIndex.h"
#include "database/Database.h"
#include "PlaylistUpdaterInterface.h"
using namespace Tomahawk;
TomahawkSettings* TomahawkSettings::s_instance = 0;
inline QDataStream&
operator<<(QDataStream& out, const SerializedUpdaters& updaters)
{
out << TOMAHAWK_SETTINGS_VERSION;
out << (quint32)updaters.count();
SerializedUpdaters::const_iterator iter = updaters.begin();
int count = 0;
for ( ; iter != updaters.end(); ++iter )
{
out << iter.key() << iter->type << iter->customData;
count++;
}
Q_ASSERT( count == updaters.count() );
return out;
}
inline QDataStream&
operator>>(QDataStream& in, SerializedUpdaters& updaters)
{
quint32 count = 0, version = 0;
in >> version;
in >> count;
for ( uint i = 0; i < count; i++ )
{
QString key, type;
QVariantHash customData;
in >> key;
in >> type;
in >> customData;
updaters.insert( key, SerializedUpdater( type, customData ) );
}
return in;
}
TomahawkSettings*
TomahawkSettings::instance()
{
return s_instance;
}
TomahawkSettings::TomahawkSettings( QObject* parent )
: QSettings( parent )
{
s_instance = this;
#ifdef Q_OS_LINUX
QFile file( fileName() );
file.setPermissions( file.permissions() & ~( QFile::ReadGroup | QFile::WriteGroup | QFile::ExeGroup | QFile::ReadOther | QFile::WriteOther | QFile::ExeOther ) );
#endif
if ( !contains( "configversion" ) )
{
setValue( "configversion", TOMAHAWK_SETTINGS_VERSION );
doInitialSetup();
}
else if ( value( "configversion" ).toUInt() != TOMAHAWK_SETTINGS_VERSION )
{
qDebug() << "Config version outdated, old:" << value( "configversion" ).toUInt()
<< "new:" << TOMAHAWK_SETTINGS_VERSION
<< "Doing upgrade, if any, and backing up";
// QString newname = QString( "%1.v%2" ).arg( dbname ).arg( version );
if ( format() == IniFormat ||
( format() == NativeFormat
#ifdef Q_OS_WIN
&& false
#endif
) )
{
qDebug() << "Backing up old ini-style config file";
const QString path = fileName();
const QString newname = path + QString( ".v%1" ).arg( value( "configversion" ).toString() );
QFile::copy( path, newname );
}
int current = value( "configversion" ).toUInt();
while ( current < TOMAHAWK_SETTINGS_VERSION )
{
doUpgrade( current, current + 1 );
current++;
}
// insert upgrade code here as required
setValue( "configversion", TOMAHAWK_SETTINGS_VERSION );
}
// Ensure last.fm and spotify accounts always exist
QString spotifyAcct, lastfmAcct;
foreach ( const QString& acct, value( "accounts/allaccounts" ).toStringList() )
{
if ( acct.startsWith( "lastfmaccount_" ) )
lastfmAcct = acct;
else if ( acct.startsWith( "spotifyaccount_" ) )
spotifyAcct = acct;
}
if ( spotifyAcct.isEmpty() )
createSpotifyAccount();
if ( lastfmAcct.isEmpty() )
createLastFmAccount();
}
TomahawkSettings::~TomahawkSettings()
{
s_instance = 0;
}
void
TomahawkSettings::doInitialSetup()
{
// by default we add a local network resolver
addAccount( "sipzeroconf_autocreated" );
createLastFmAccount();
createSpotifyAccount();
}
void
TomahawkSettings::createLastFmAccount()
{
// Add a last.fm account for scrobbling and infosystem
const QString accountKey = QString( "lastfmaccount_%1" ).arg( QUuid::createUuid().toString().mid( 1, 8 ) );
addAccount( accountKey );
beginGroup( "accounts/" + accountKey );
setValue( "enabled", false );
setValue( "autoconnect", true );
setValue( "types", QStringList() << "ResolverType" << "StatusPushType" );
endGroup();
QStringList allAccounts = value( "accounts/allaccounts" ).toStringList();
allAccounts << accountKey;
setValue( "accounts/allaccounts", allAccounts );
}
void
TomahawkSettings::createSpotifyAccount()
{
const QString accountKey = QString( "spotifyaccount_%1" ).arg( QUuid::createUuid().toString().mid( 1, 8 ) );
beginGroup( "accounts/" + accountKey );
setValue( "enabled", false );
setValue( "types", QStringList() << "ResolverType" );
setValue( "credentials", QVariantHash() );
setValue( "configuration", QVariantHash() );
setValue( "accountfriendlyname", "Spotify" );
endGroup();
QStringList allAccounts = value( "accounts/allaccounts" ).toStringList();
allAccounts << accountKey;
setValue( "accounts/allaccounts", allAccounts );
}
void
TomahawkSettings::doUpgrade( int oldVersion, int newVersion )
{
Q_UNUSED( newVersion );
if ( oldVersion == 1 )
{
qDebug() << "Migrating config from verson 1 to 2: script resolver config name";
if( contains( "script/resolvers" ) ) {
setValue( "script/loadedresolvers", value( "script/resolvers" ) );
remove( "script/resolvers" );
}
}
else if ( oldVersion == 2 )
{
qDebug() << "Migrating config from version 2 to 3: Converting jabber and twitter accounts to new SIP Factory approach";
// migrate old accounts to new system. only jabber and twitter, and max one each. create a new plugin for each if needed
// not pretty as we hardcode a plugin id and assume that we know how the config layout is, but hey, this is migration after all
if ( contains( "jabber/username" ) && contains( "jabber/password" ) )
{
QString sipName = "sipjabber";
if ( value( "jabber/username" ).toString().contains( "@gmail" ) )
sipName = "sipgoogle";
setValue( QString( "%1_legacy/username" ).arg( sipName ), value( "jabber/username" ) );
setValue( QString( "%1_legacy/password" ).arg( sipName ), value( "jabber/password" ) );
setValue( QString( "%1_legacy/autoconnect" ).arg( sipName ), value( "jabber/autoconnect" ) );
setValue( QString( "%1_legacy/port" ).arg( sipName ), value( "jabber/port" ) );
setValue( QString( "%1_legacy/server" ).arg( sipName ), value( "jabber/server" ) );
addSipPlugin( QString( "%1_legacy" ).arg( sipName ) );
remove( "jabber/username" );
remove( "jabber/password" );
remove( "jabber/autoconnect" );
remove( "jabber/server" );
remove( "jabber/port" );
}
if ( contains( "twitter/ScreenName" ) && contains( "twitter/OAuthToken" ) )
{
setValue( "siptwitter_legacy/ScreenName", value( "twitter/ScreenName" ) );
setValue( "siptwitter_legacy/OAuthToken", value( "twitter/OAuthToken" ) );
setValue( "siptwitter_legacy/OAuthTokenSecret", value( "twitter/OAuthTokenSecret" ) );
setValue( "siptwitter_legacy/CachedFriendsSinceID", value( "twitter/CachedFriendsSinceID" ) );
setValue( "siptwitter_legacy/CachedMentionsSinceID", value( "twitter/CachedMentionsSinceID" ) );
setValue( "siptwitter_legacy/CachedDirectMessagesSinceID", value( "twitter/CachedDirectMessagesSinceID" ) );
setValue( "siptwitter_legacy/CachedPeers", value( "twitter/CachedPeers" ) );
setValue( "siptwitter_legacy/AutoConnect", value( "jabber/autoconnect" ) );
addSipPlugin( "siptwitter_legacy" );
remove( "twitter/ScreenName" );
remove( "twitter/OAuthToken" );
remove( "twitter/OAuthTokenSecret" );
remove( "twitter/CachedFriendsSinceID" );
remove( "twitter/CachedMentionsSinceID" );
remove( "twitter/CachedDirectMessagesSinceID" );
}
// create a zeroconf plugin too
addSipPlugin( "sipzeroconf_legacy" );
}
else if ( oldVersion == 3 )
{
if ( contains( "script/atticaresolverstates" ) )
{
// Do messy binary upgrade. remove attica resolvers :(
setValue( "script/atticaresolverstates", QVariant() );
QDir resolverDir = TomahawkUtils::appDataDir();
if ( !resolverDir.cd( QString( "atticaresolvers" ) ) )
return;
QStringList toremove;
QStringList resolvers = resolverDir.entryList( QDir::Dirs | QDir::NoDotAndDotDot );
QStringList listedResolvers = value( "script/resolvers" ).toStringList();
QStringList enabledResolvers = value( "script/loadedresolvers" ).toStringList();
foreach ( const QString& resolver, resolvers )
{
foreach ( const QString& r, listedResolvers )
{
if ( r.contains( resolver ) )
{
tDebug() << "Deleting listed resolver:" << r;
listedResolvers.removeAll( r );
}
}
foreach ( const QString& r, enabledResolvers )
{
if ( r.contains( resolver ) )
{
tDebug() << "Deleting enabled resolver:" << r;
enabledResolvers.removeAll( r );
}
}
}
setValue( "script/resolvers", listedResolvers );
setValue( "script/loadedresolvers", enabledResolvers );
tDebug() << "UPGRADING AND DELETING:" << resolverDir.absolutePath();
TomahawkUtils::removeDirectory( resolverDir.absolutePath() );
}
}
else if ( oldVersion == 4 || oldVersion == 5 )
{
// 0.3.0 contained a bug which prevent indexing local files. Force a reindex.
QTimer::singleShot( 0, this, SLOT( updateIndex() ) );
}
else if ( oldVersion == 6 )
{
// Migrate to accounts from sipplugins.
// collect old connected and enabled sip plugins
const QStringList allSip = sipPlugins();
const QStringList enabledSip = enabledSipPlugins();
QStringList accounts;
foreach ( const QString& sipPlugin, allSip )
{
const QStringList parts = sipPlugin.split( "_" );
Q_ASSERT( parts.size() == 2 );
const QString pluginName = parts[ 0 ];
const QString pluginId = parts[ 1 ];
// new key, <plugin>account_<id>
QString rawpluginname = pluginName;
rawpluginname.replace( "sip", "" );
if ( rawpluginname.contains( "jabber" ) )
rawpluginname.replace( "jabber", "xmpp" );
QString accountKey = QString( "%1account_%2" ).arg( rawpluginname ).arg( pluginId );
if ( pluginName == "sipjabber" || pluginName == "sipgoogle" )
{
QVariantHash credentials;
credentials[ "username" ] = value( sipPlugin + "/username" );
credentials[ "password" ] = value( sipPlugin + "/password" );
QVariantHash configuration;
configuration[ "port" ] = value( sipPlugin + "/port" );
configuration[ "server" ] = value( sipPlugin + "/server" );
setValue( QString( "accounts/%1/credentials" ).arg( accountKey ), credentials );
setValue( QString( "accounts/%1/configuration" ).arg( accountKey ), configuration );
setValue( QString( "accounts/%1/accountfriendlyname" ).arg( accountKey ), value( sipPlugin + "/username" ) );
}
else if ( pluginName == "siptwitter" )
{
// Only port twitter plugin if there's a valid twitter config
if ( value( sipPlugin + "/oauthtokensecret" ).toString().isEmpty() &&
value( sipPlugin + "/oauthtoken" ).toString().isEmpty() &&
value( sipPlugin + "/screenname" ).toString().isEmpty() )
continue;
QVariantHash credentials;
credentials[ "oauthtoken" ] = value( sipPlugin + "/oauthtoken" );
credentials[ "oauthtokensecret" ] = value( sipPlugin + "/oauthtokensecret" );
credentials[ "username" ] = value( sipPlugin + "/screenname" );
QVariantHash configuration;
configuration[ "cachedfriendssinceid" ] = value( sipPlugin + "/cachedfriendssinceid" );
configuration[ "cacheddirectmessagessinceid" ] = value( sipPlugin + "/cacheddirectmessagessinceid" );
configuration[ "cachedpeers" ] = value( sipPlugin + "/cachedpeers" );
qDebug() << "FOUND CACHED PEERS:" << value( sipPlugin + "/cachedpeers" ).toHash();
configuration[ "cachedmentionssinceid" ] = value( sipPlugin + "/cachedmentionssinceid" );
configuration[ "saveddbid" ] = value( sipPlugin + "/saveddbid" );
setValue( QString( "accounts/%1/credentials" ).arg( accountKey ), credentials );
setValue( QString( "accounts/%1/configuration" ).arg( accountKey ), configuration );
setValue( QString( "accounts/%1/accountfriendlyname" ).arg( accountKey ), "@" + value( sipPlugin + "/screenname" ).toString() );
sync();
}
else if ( pluginName == "sipzeroconf" )
{
setValue( QString( "accounts/%1/accountfriendlyname" ).arg( accountKey ), "Local Network" );
}
beginGroup( "accounts/" + accountKey );
setValue( "enabled", enabledSip.contains( sipPlugin ) == true );
setValue( "autoconnect", true );
setValue( "acl", QVariantHash() );
setValue( "types", QStringList() << "SipType" );
endGroup();
accounts << accountKey;
remove( sipPlugin );
}
remove( "sip" );
// Migrate all resolvers from old resolvers settings to new accounts system
const QStringList allResolvers = value( "script/resolvers" ).toStringList();
const QStringList enabledResolvers = value( "script/loadedresolvers" ).toStringList();
foreach ( const QString& resolver, allResolvers )
{
// We handle last.fm resolvers differently.
if ( resolver.contains( "lastfm" ) )
continue;
const QString accountKey = QString( "resolveraccount_%1" ).arg( QUuid::createUuid().toString().mid( 1, 8 ) );
accounts << accountKey;
beginGroup( "accounts/" + accountKey );
setValue( "accountfriendlyname", resolver );
setValue( "enabled", enabledResolvers.contains( resolver ) == true );
setValue( "autoconnect", true );
setValue( "types", QStringList() << "ResolverType" );
QVariantHash configuration;
configuration[ "path" ] = resolver;
// reasonably ugly check for attica resolvers
if ( resolver.contains( "atticaresolvers" ) && resolver.contains( "code" ) )
{
setValue( "atticaresolver", true );
QFileInfo info( resolver );
configuration[ "atticaId" ] = info.baseName();
}
setValue( "configuration", configuration );
endGroup();
}
// Add a Last.Fm account since we now moved the infoplugin into the account
const QString accountKey = QString( "lastfmaccount_%1" ).arg( QUuid::createUuid().toString().mid( 1, 8 ) );
accounts << accountKey;
const QString lfmUsername = value( "lastfm/username" ).toString();
const QString lfmPassword = value( "lastfm/password" ).toString();
const bool scrobble = value( "lastfm/enablescrobbling", false ).toBool();
beginGroup( "accounts/" + accountKey );
bool hasLastFmEnabled = false;
foreach ( const QString& r, enabledResolvers )
{
if ( r.contains( "lastfm" ) )
{
hasLastFmEnabled = true;
break;
}
}
setValue( "enabled", hasLastFmEnabled );
setValue( "autoconnect", true );
setValue( "types", QStringList() << "ResolverType" << "StatusPushType" );
QVariantHash credentials;
credentials[ "username" ] = lfmUsername;
credentials[ "password" ] = lfmPassword;
credentials[ "session" ] = value( "lastfm/session" ).toString();
setValue( "credentials", credentials );
QVariantHash configuration;
configuration[ "scrobble" ] = scrobble;
setValue( "configuration", configuration );
endGroup();
remove( "lastfm" );
remove( "script/resolvers" );
remove( "script/loadedresolvers" );
setValue( "accounts/allaccounts", accounts );
}
else if ( oldVersion == 7 )
{
// Upgrade spotify resolver to standalone account, if one exists
beginGroup( "accounts" );
QStringList allAccounts = value( "allaccounts" ).toStringList();
foreach ( const QString& account, allAccounts )
{
if ( account.startsWith( "resolveraccount_" ) && value( QString( "%1/accountfriendlyname" ).arg( account ) ).toString().endsWith( "spotify_tomahawkresolver" ) )
{
// This is a spotify resolver, convert!
const QVariantHash configuration = value( QString( "%1/configuration" ).arg( account ) ).toHash();
const bool enabled = value( QString( "%1/enabled" ).arg( account ) ).toBool();
const bool autoconnect = value( QString( "%1/autoconnect" ).arg( account ) ).toBool();
qDebug() << "Migrating Spotify resolver from legacy resolver type, path is:" << configuration[ "path" ].toString();
remove( account );
// Create new account
QString newAccount = account;
newAccount.replace( "resolveraccount_", "spotifyaccount_" );
beginGroup( newAccount );
setValue( "enabled", enabled );
setValue( "autoconnect", autoconnect );
setValue( "types", QStringList() << "ResolverType" );
setValue( "accountfriendlyname", "Spotify" );
setValue( "configuration", configuration );
endGroup();
allAccounts.replace( allAccounts.indexOf( account ), newAccount );
}
}
setValue( "allaccounts", allAccounts );
endGroup();
}
else if ( oldVersion == 8 )
{
// Some users got duplicate accounts for some reason, so make them unique if we can
QSet< QString > uniqueFriendlyNames;
beginGroup("accounts");
const QStringList accounts = childGroups();
QStringList allAccounts = value( "allaccounts" ).toStringList();
// qDebug() << "Got accounts to migrate:" << accounts;
foreach ( const QString& account, accounts )
{
if ( !allAccounts.contains( account ) ) // orphan
{
qDebug() << "Found account not in allaccounts list!" << account << "is a dup!";
remove( account );
continue;
}
const QString friendlyName = value( QString( "%1/accountfriendlyname" ).arg( account ) ).toString();
if ( !uniqueFriendlyNames.contains( friendlyName ) )
{
uniqueFriendlyNames.insert( friendlyName );
continue;
}
else
{
// Duplicate..?
qDebug() << "Found duplicate account friendly name:" << account << friendlyName << "is a dup!";
remove( account );
allAccounts.removeAll( account );
}
}
qDebug() << "Ended up with all accounts list:" << allAccounts << "and all accounts:" << childGroups();
setValue( "allaccounts", allAccounts );
endGroup();
}
else if ( oldVersion == 9 )
{
// Upgrade single-updater-per-playlist to list-per-playlist
beginGroup( "playlistupdaters" );
const QStringList playlists = childGroups();
SerializedUpdaters updaters;
foreach ( const QString& playlist, playlists )
{
beginGroup( playlist );
const QString type = value( "type" ).toString();
QVariantHash extraData;
foreach ( const QString& key, childKeys() )
{
if ( key == "type" )
continue;
extraData[ key ] = value( key );
}
updaters.insert( playlist, SerializedUpdater( type, extraData ) );
endGroup();
}
endGroup();
remove( "playlistupdaters" );
setValue( "playlists/updaters", QVariant::fromValue< SerializedUpdaters >( updaters ) );
}
else if ( oldVersion == 11 )
{
// If the user doesn't have a spotify account, create one, since now it
// is like the last.fm account and always exists
QStringList allAccounts = value( "accounts/allaccounts" ).toStringList();
QString acct;
foreach ( const QString& account, allAccounts )
{
if ( account.startsWith( "spotifyaccount_" ) )
{
acct = account;
break;
}
}
if ( !acct.isEmpty() )
{
beginGroup( "accounts/" + acct );
QVariantHash conf = value( "configuration" ).toHash();
foreach ( const QString& key, conf.keys() )
qDebug() << key << conf[ key ].toString();
endGroup();
}
else
{
createSpotifyAccount();
}
}
else if ( oldVersion == 12 )
{
// Force attica resolver pixmap cache refresh
QDir cacheDir = TomahawkUtils::appDataDir();
if ( cacheDir.cd( "atticacache" ) )
{
QStringList files = cacheDir.entryList( QStringList() << "*.png" );
foreach ( const QString& file, files )
{
const bool removed = cacheDir.remove( file );
tDebug() << "Tried to remove cached image, succeeded?" << removed << cacheDir.filePath( file );
}
}
}
}
void
TomahawkSettings::setAcceptedLegalWarning( bool accept )
{
setValue( "acceptedLegalWarning", accept );
}
bool
TomahawkSettings::acceptedLegalWarning() const
{
return value( "acceptedLegalWarning", false ).toBool();
}
void
TomahawkSettings::setInfoSystemCacheVersion( uint version )
{
setValue( "infosystemcacheversion", version );
}
uint
TomahawkSettings::infoSystemCacheVersion() const
{
return value( "infosystemcacheversion", 3 ).toUInt();
}
QString
TomahawkSettings::storageCacheLocation() const
{
return QDir::tempPath() + "/tomahawk/";
}
QStringList
TomahawkSettings::scannerPaths() const
{
QString musicLocation;
#if defined(Q_WS_X11)
musicLocation = QDir::homePath() + QLatin1String("/Music");
#endif
return value( "scanner/paths", musicLocation ).toStringList();
}
void
TomahawkSettings::setScannerPaths( const QStringList& paths )
{
setValue( "scanner/paths", paths );
}
bool
TomahawkSettings::hasScannerPaths() const
{
//FIXME: After enough time, remove this hack
return contains( "scanner/paths" ) || contains( "scannerpath" ) || contains( "scannerpaths" );
}
uint
TomahawkSettings::scannerTime() const
{
return value( "scanner/intervaltime", 60 ).toUInt();
}
void
TomahawkSettings::setScannerTime( uint time )
{
setValue( "scanner/intervaltime", time );
}
bool
TomahawkSettings::watchForChanges() const
{
return value( "scanner/watchforchanges", false ).toBool();
}
void
TomahawkSettings::setWatchForChanges( bool watch )
{
setValue( "scanner/watchforchanges", watch );
}
bool
TomahawkSettings::httpEnabled() const
{
return value( "network/http", true ).toBool();
}
void
TomahawkSettings::setHttpEnabled( bool enable )
{
setValue( "network/http", enable );
}
bool
TomahawkSettings::crashReporterEnabled() const
{
return value( "ui/crashReporter", true ).toBool();
}
void
TomahawkSettings::setCrashReporterEnabled( bool enable )
{
setValue( "ui/crashReporter", enable );
}
unsigned int
TomahawkSettings::volume() const
{
return value( "audio/volume", 75 ).toUInt();
}
void
TomahawkSettings::setVolume( unsigned int volume )
{
setValue( "audio/volume", volume );
}
QString
TomahawkSettings::proxyHost() const
{
return value( "network/proxy/host", QString() ).toString();
}
void
TomahawkSettings::setProxyHost( const QString& host )
{
setValue( "network/proxy/host", host );
}
QString
TomahawkSettings::proxyNoProxyHosts() const
{
return value( "network/proxy/noproxyhosts", QString() ).toString();
}
void
TomahawkSettings::setProxyNoProxyHosts( const QString& hosts )
{
setValue( "network/proxy/noproxyhosts", hosts );
}
qulonglong
TomahawkSettings::proxyPort() const
{
return value( "network/proxy/port", 1080 ).toULongLong();
}
void
TomahawkSettings::setProxyPort( const qulonglong port )
{
setValue( "network/proxy/port", port );
}
QString
TomahawkSettings::proxyUsername() const
{
return value( "network/proxy/username", QString() ).toString();
}
void
TomahawkSettings::setProxyUsername( const QString& username )
{
setValue( "network/proxy/username", username );
}
QString
TomahawkSettings::proxyPassword() const
{
return value( "network/proxy/password", QString() ).toString();
}
void
TomahawkSettings::setProxyPassword( const QString& password )
{
setValue( "network/proxy/password", password );
}
QNetworkProxy::ProxyType
TomahawkSettings::proxyType() const
{
return static_cast< QNetworkProxy::ProxyType>( value( "network/proxy/type", QNetworkProxy::NoProxy ).toInt() );
}
void
TomahawkSettings::setProxyType( const QNetworkProxy::ProxyType type )
{
setValue( "network/proxy/type", static_cast< uint >( type ) );
}
bool
TomahawkSettings::proxyDns() const
{
return value( "network/proxy/dns", false ).toBool();
}
void
TomahawkSettings::setProxyDns( bool lookupViaProxy )
{
setValue( "network/proxy/dns", lookupViaProxy );
}
QVariantList
TomahawkSettings::aclEntries() const
{
QVariant retVal = value( "acl/entries", QVariantList() );
if ( retVal.isValid() && retVal.canConvert< QVariantList >() )
return retVal.toList();
return QVariantList();
}
void
TomahawkSettings::setAclEntries( const QVariantList &entries )
{
tDebug() << "Setting entries";
setValue( "acl/entries", entries );
sync();
tDebug() << "Done setting entries";
}
QByteArray
TomahawkSettings::mainWindowGeometry() const
{
return value( "ui/mainwindow/geometry" ).toByteArray();
}
void
TomahawkSettings::setMainWindowGeometry( const QByteArray& geom )
{
setValue( "ui/mainwindow/geometry", geom );
}
QByteArray
TomahawkSettings::mainWindowState() const
{
return value( "ui/mainwindow/state" ).toByteArray();
}
void
TomahawkSettings::setMainWindowState( const QByteArray& state )
{
setValue( "ui/mainwindow/state", state );
}
QByteArray
TomahawkSettings::mainWindowSplitterState() const
{
return value( "ui/mainwindow/splitterState" ).toByteArray();
}
void
TomahawkSettings::setMainWindowSplitterState( const QByteArray& state )
{
setValue( "ui/mainwindow/splitterState", state );
}
bool
TomahawkSettings::verboseNotifications() const
{
return value( "ui/notifications/verbose", false ).toBool();
}
void
TomahawkSettings::setVerboseNotifications( bool notifications )
{
setValue( "ui/notifications/verbose", notifications );
}
bool
TomahawkSettings::menuBarVisible() const
{
#ifndef Q_OS_MAC
return value( "ui/mainwindow/menuBarVisible", true ).toBool();
#else
return true;
#endif
}
void
TomahawkSettings::setMenuBarVisible( bool visible )
{
#ifndef Q_OS_MAC
setValue( "ui/mainwindow/menuBarVisible", visible );
#endif
}
bool
TomahawkSettings::showOfflineSources() const
{
return value( "collection/sources/showoffline", false ).toBool();
}
void
TomahawkSettings::setShowOfflineSources( bool show )
{
setValue( "collection/sources/showoffline", show );
}
bool
TomahawkSettings::enableEchonestCatalogs() const
{
return value( "collection/enable_catalogs", false ).toBool();
}
void
TomahawkSettings::setEnableEchonestCatalogs( bool enable )
{
setValue( "collection/enable_catalogs", enable );
}
QByteArray
TomahawkSettings::playlistColumnSizes( const QString& playlistid ) const
{
return value( QString( "ui/playlist/%1/columnSizes" ).arg( playlistid ) ).toByteArray();
}
void
TomahawkSettings::setPlaylistColumnSizes( const QString& playlistid, const QByteArray& state )
{
setValue( QString( "ui/playlist/%1/columnSizes" ).arg( playlistid ), state );
}
bool
TomahawkSettings::shuffleState( const QString& playlistid ) const
{
return value( QString( "ui/playlist/%1/shuffleState" ).arg( playlistid )).toBool();
}
void
TomahawkSettings::setShuffleState( const QString& playlistid, bool state)
{
setValue( QString( "ui/playlist/%1/shuffleState" ).arg( playlistid ), state );
}
void
TomahawkSettings::removePlaylistSettings( const QString& playlistid )
{
remove( QString( "ui/playlist/%1/shuffleState" ).arg( playlistid ) );
remove( QString( "ui/playlist/%1/repeatMode" ).arg( playlistid ) );
}
void
TomahawkSettings::setRepeatMode( const QString& playlistid, Tomahawk::PlaylistModes::RepeatMode mode )
{
setValue( QString( "ui/playlist/%1/repeatMode" ).arg( playlistid ), (int)mode );
}
Tomahawk::PlaylistModes::RepeatMode
TomahawkSettings::repeatMode( const QString& playlistid )
{
return (PlaylistModes::RepeatMode)value( QString( "ui/playlist/%1/repeatMode" ).arg( playlistid )).toInt();
}
QStringList
TomahawkSettings::recentlyPlayedPlaylistGuids( unsigned int amount ) const
{
QStringList p = value( "playlists/recentlyPlayed" ).toStringList();
while ( amount && p.count() > (int)amount )
p.removeAt( 0 );
return p;
}
void
TomahawkSettings::appendRecentlyPlayedPlaylist( const QString& playlistguid, int sourceId )
{
QStringList playlist_guids = value( "playlists/recentlyPlayed" ).toStringList();
playlist_guids.removeAll( playlistguid );
playlist_guids.append( playlistguid );
setValue( "playlists/recentlyPlayed", playlist_guids );
emit recentlyPlayedPlaylistAdded( playlistguid, sourceId );
}
QString
TomahawkSettings::bookmarkPlaylist() const
{
return value( "playlists/bookmark", QString() ).toString();
}
void
TomahawkSettings::setBookmarkPlaylist( const QString& guid )
{
setValue( "playlists/bookmark", guid );
}
QStringList
TomahawkSettings::sipPlugins() const
{
return value( "sip/allplugins", QStringList() ).toStringList();
}
void
TomahawkSettings::setSipPlugins( const QStringList& plugins )
{
setValue( "sip/allplugins", plugins );
}
QStringList
TomahawkSettings::enabledSipPlugins() const
{
return value( "sip/enabledplugins", QStringList() ).toStringList();
}
void
TomahawkSettings::setEnabledSipPlugins( const QStringList& list )
{
setValue( "sip/enabledplugins", list );
}
void
TomahawkSettings::enableSipPlugin( const QString& pluginId )
{
QStringList list = enabledSipPlugins();
list << pluginId;
setEnabledSipPlugins( list );
}
void
TomahawkSettings::disableSipPlugin( const QString& pluginId )
{
QStringList list = enabledSipPlugins();
list.removeAll( pluginId );
setEnabledSipPlugins( list );
}
void
TomahawkSettings::addSipPlugin( const QString& pluginId, bool enable )
{
QStringList list = sipPlugins();
list << pluginId;
setSipPlugins( list );
if ( enable )
enableSipPlugin( pluginId );
}
void
TomahawkSettings::removeSipPlugin( const QString& pluginId )
{
QStringList list = sipPlugins();
list.removeAll( pluginId );
setSipPlugins( list );
if( enabledSipPlugins().contains( pluginId ) )
disableSipPlugin( pluginId );
}
QStringList
TomahawkSettings::accounts() const
{
QStringList accounts = value( "accounts/allaccounts", QStringList() ).toStringList();
accounts.removeDuplicates();
return accounts;
}
void
TomahawkSettings::setAccounts( const QStringList& accountIds )
{
QStringList accounts = accountIds;
accounts.removeDuplicates();
setValue( "accounts/allaccounts", accounts );
}
void
TomahawkSettings::addAccount( const QString& accountId )
{
QStringList list = accounts();
list << accountId;
setAccounts( list );
}
void
TomahawkSettings::removeAccount( const QString& accountId )
{
QStringList list = accounts();
list.removeAll( accountId );
setAccounts( list );
}
TomahawkSettings::ExternalAddressMode
TomahawkSettings::externalAddressMode()
{
if ( value( "network/prefer-static-host-and-port", false ).toBool() )
{
remove( "network/prefer-static-host-and-port" );
setValue( "network/external-address-mode", TomahawkSettings::Static );
}
return (TomahawkSettings::ExternalAddressMode) value( "network/external-address-mode", TomahawkSettings::Upnp ).toInt();
}
void
TomahawkSettings::setExternalAddressMode( ExternalAddressMode externalAddressMode )
{
setValue( "network/external-address-mode", externalAddressMode );
}
QString
TomahawkSettings::externalHostname() const
{
return value( "network/external-hostname" ).toString();
}
void
TomahawkSettings::setExternalHostname(const QString& externalHostname)
{
setValue( "network/external-hostname", externalHostname );
}
int
TomahawkSettings::defaultPort() const
{
return 50210;
}
int
TomahawkSettings::externalPort() const
{
return value( "network/external-port", 50210 ).toInt();
}
void
TomahawkSettings::setExternalPort(int externalPort)
{
if ( externalPort == 0 )
setValue( "network/external-port", 50210);
else
setValue( "network/external-port", externalPort);
}
QString
TomahawkSettings::xmppBotServer() const
{
return value( "xmppBot/server", QString() ).toString();
}
void
TomahawkSettings::setXmppBotServer( const QString& server )
{
setValue( "xmppBot/server", server );
}
QString
TomahawkSettings::xmppBotJid() const
{
return value( "xmppBot/jid", QString() ).toString();
}
void
TomahawkSettings::setXmppBotJid( const QString& component )
{
setValue( "xmppBot/jid", component );
}
QString
TomahawkSettings::xmppBotPassword() const
{
return value( "xmppBot/password", QString() ).toString();
}
void
TomahawkSettings::setXmppBotPassword( const QString& password )
{
setValue( "xmppBot/password", password );
}
int
TomahawkSettings::xmppBotPort() const
{
return value( "xmppBot/port", -1 ).toInt();
}
void
TomahawkSettings::setXmppBotPort( const int port )
{
setValue( "xmppBot/port", port );
}
QString
TomahawkSettings::scriptDefaultPath() const
{
return value( "script/defaultpath", QDir::homePath() ).toString();
}
void
TomahawkSettings::setScriptDefaultPath( const QString& path )
{
setValue( "script/defaultpath", path );
}
QString
TomahawkSettings::playlistDefaultPath() const
{
return value( "playlists/defaultpath", QDir::homePath() ).toString();
}
void
TomahawkSettings::setPlaylistDefaultPath( const QString& path )
{
setValue( "playlists/defaultpath", path );
}
bool
TomahawkSettings::nowPlayingEnabled() const
{
return value( "adium/enablenowplaying", false ).toBool();
}
void
TomahawkSettings::setNowPlayingEnabled( bool enable )
{
setValue( "adium/enablenowplaying", enable );
}
TomahawkSettings::PrivateListeningMode
TomahawkSettings::privateListeningMode() const
{
return ( TomahawkSettings::PrivateListeningMode ) value( "privatelisteningmode", TomahawkSettings::PublicListening ).toInt();
}
void
TomahawkSettings::setPrivateListeningMode( TomahawkSettings::PrivateListeningMode mode )
{
setValue( "privatelisteningmode", mode );
}
void
TomahawkSettings::updateIndex()
{
DatabaseCommand* cmd = new DatabaseCommand_UpdateSearchIndex();
Database::instance()->enqueue( QSharedPointer<DatabaseCommand>( cmd ) );
}
QString
TomahawkSettings::importXspfPath() const
{
if ( contains( "importXspfPath" ) )
return value( "importXspfPath" ).toString();
else
return QDir::homePath();
}
void
TomahawkSettings::setImportXspfPath( const QString& path )
{
setValue( "importXspfPath", path );
}
SerializedUpdaters
TomahawkSettings::playlistUpdaters() const
{
return value( "playlists/updaters" ).value< SerializedUpdaters >();
}
void
TomahawkSettings::setPlaylistUpdaters( const SerializedUpdaters& updaters )
{
setValue( "playlists/updaters", QVariant::fromValue< SerializedUpdaters >( updaters ) );
}
void
TomahawkSettings::setLastChartIds( const QVariant& ids ){
setValue( "chartIds", ids );
}
QVariant TomahawkSettings::lastChartIds(){
return value( "chartIds" ).value<QVariant>();
}
void
TomahawkSettings::registerCustomSettingsHandlers()
{
qRegisterMetaType< Tomahawk::SerializedUpdater >( "Tomahawk::SerializedUpdater" );
qRegisterMetaType< Tomahawk::SerializedUpdaters >( "Tomahawk::SerializedUpdaters" );
qRegisterMetaTypeStreamOperators< Tomahawk::SerializedUpdaters >( "Tomahawk::SerializedUpdaters" );
}