/* * Cantata * * Copyright (c) 2011-2012 Craig Drummond * * ---- * * This program 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 2 of the License, or * (at your option) any later version. * * This program 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 this program; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. */ #include "settings.h" #include "config.h" #include "musiclibraryitemalbum.h" #include "fancytabwidget.h" #include "albumsmodel.h" #include "itemview.h" #include "mpdparseutils.h" #ifdef ENABLE_KDE_SUPPORT #include #include #include "kwallet.h" #include #include #include K_GLOBAL_STATIC(Settings, instance) #endif #include #include Settings * Settings::self() { #ifdef ENABLE_KDE_SUPPORT return instance; #else static Settings *instance=0;; if (!instance) { instance=new Settings; } return instance; #endif } struct MpdDefaults { MpdDefaults() : host("localhost") , dir("/var/lib/mpd/music/") , port(6600) { } static QString getVal(const QString &line) { QStringList parts=line.split('\"'); return parts.count()>1 ? parts[1] : QString(); } void read() { QFile f("/etc/mpd.conf"); if (f.open(QIODevice::ReadOnly|QIODevice::Text)) { while (!f.atEnd()) { QString line = f.readLine().trimmed(); if (line.startsWith('#')) { continue; } else if (line.startsWith(QLatin1String("music_directory"))) { QString val=getVal(line); if (!val.isEmpty() && QDir(val).exists()) { dir=val; } } else if (line.startsWith(QLatin1String("bind_to_address"))) { QString val=getVal(line); if (!val.isEmpty()) { host=val; } } else if (line.startsWith(QLatin1String("port"))) { int val=getVal(line).toInt(); if (val>0) { port=val; } } else if (line.startsWith(QLatin1String("password"))) { QString val=getVal(line); if (!val.isEmpty()) { QStringList parts=val.split('@'); if (parts.count()) { passwd=parts[0]; } } } } } } QString host; QString dir; QString passwd; int port; }; static MpdDefaults mpdDefaults; #ifdef ENABLE_KDE_SUPPORT #define CFG_GET_STRING(CFG, KEY, DEF) (CFG.readEntry(KEY, QString(DEF))) #define CFG_GET_STRINGLIST(CFG, KEY, DEF) (CFG.readEntry(KEY, DEF)) #define CFG_GET_BOOL(CFG, KEY, DEF) (CFG.readEntry(KEY, DEF)) #define CFG_GET_INT(CFG, KEY, DEF) (CFG.readEntry(KEY, DEF)) #define CFG_GET_BYTE_ARRAY(CFG, KEY) (CFG.readEntry(KEY, QByteArray())) #define CFG_GET_SIZE(CFG, KEY) (CFG.readEntry(KEY, QSize())) #define CFG_SET_VALUE(CFG, KEY, V) (CFG.writeEntry(KEY, V)) #define HAS_GROUP(GRP) (KGlobal::config()->hasGroup(GRP)) #define REMOVE_GROUP(KEY) (cfg.deleteGroup(KEY)) #define REMOVE_ENTRY(KEY) (cfg.deleteEntry(KEY)) #define GET_STRING(KEY, DEF) CFG_GET_STRING(cfg, KEY, DEF) #define GET_STRINGLIST(KEY, DEF) CFG_GET_STRINGLIST(cfg, KEY, DEF) #define GET_BOOL(KEY, DEF) CFG_GET_BOOL(cfg, KEY, DEF) #define GET_INT(KEY, DEF) CFG_GET_INT(cfg, KEY, DEF) #define GET_BYTE_ARRAY(KEY) CFG_GET_BYTE_ARRAY(cfg, KEY) #define GET_SIZE(KEY) CFG_GET_SIZE(cfg, KEY) #define SET_VALUE(KEY, V) CFG_SET_VALUE(cfg, KEY, V) #else #define GET_STRING(KEY, DEF) (cfg.contains(KEY) ? cfg.value(KEY).toString() : QString(DEF)) #define GET_STRINGLIST(KEY, DEF) (cfg.contains(KEY) ? cfg.value(KEY).toStringList() : DEF) #define GET_BOOL(KEY, DEF) (cfg.contains(KEY) ? cfg.value(KEY).toBool() : DEF) #define GET_INT(KEY, DEF) (cfg.contains(KEY) ? cfg.value(KEY).toInt() : DEF) #define GET_BYTE_ARRAY(KEY) (cfg.value(KEY).toByteArray()) #define GET_SIZE(KEY) (cfg.contains(KEY) ? cfg.value(KEY).toSize() : QSize()) #define SET_VALUE(KEY, V) (cfg.setValue(KEY, V)) #define HAS_GROUP(GRP) (cfg.contains(GRP)) #define REMOVE_GROUP(KEY) (cfg.remove(KEY)) #define REMOVE_ENTRY(KEY) (cfg.remove(KEY)) #endif static QString connGroupName(const QString &n=QString()) { return n.isEmpty() ? "Connection" : ("Connection-"+n); } Settings::Settings() : timer(0) , ver(-1) #ifdef ENABLE_KDE_SUPPORT , cfg(KGlobal::config(), "General") , wallet(0) #endif { // Only need to read system defaults if we have not previously been configured... if (version()readPassword("mpd", details.password); } } else if (name.isEmpty()) { details.password=mpdDefaults.passwd; } #else details.password=GET_STRING("connectionPasswd", name.isEmpty() ? mpdDefaults.passwd : QString()); #endif details.port=GET_INT("connectionPort", name.isEmpty() ? mpdDefaults.port : 6600); details.dir=MPDParseUtils::fixPath(GET_STRING("mpdDir", mpdDefaults.dir)); } else { QString n=connGroupName(name); details.name=name; if (HAS_GROUP(n)) { #ifdef ENABLE_KDE_SUPPORT KConfigGroup grp(KGlobal::config(), n); details.hostname=CFG_GET_STRING(grp, "host", name.isEmpty() ? mpdDefaults.host : QString()); details.port=CFG_GET_INT(grp, "port", name.isEmpty() ? mpdDefaults.port : 6600); details.dir=MPDParseUtils::fixPath(CFG_GET_STRING(grp, "dir", name.isEmpty() ? mpdDefaults.dir : "/var/lib/mpd/music")); if (CFG_GET_BOOL(grp, "passwd", false)) { if (openWallet()) { wallet->readPassword(name.isEmpty() ? "mpd" : name, details.password); } } else if (name.isEmpty()) { details.password=mpdDefaults.passwd; } #else cfg.beginGroup(name); details.hostname=GET_STRING("host", name.isEmpty() ? mpdDefaults.host : QString()); details.port=GET_INT("port", name.isEmpty() ? mpdDefaults.port : 6600); details.dir=MPDParseUtils::fixPath(GET_STRING("dir", name.isEmpty() ? mpdDefaults.dir : "/var/lib/mpd/music")); details.password=GET_STRING("passwd", name.isEmpty() ? mpdDefaults.passwd : QString()); cfg.endGroup(); #endif } } details.dirReadable=details.dir.isEmpty() ? false : QDir(details.dir).isReadable(); return details; } QList Settings::allConnections() { #ifdef ENABLE_KDE_SUPPORT QStringList groups=KGlobal::config()->groupList(); #else QStringList groups=cfg.childGroups(); #endif QList connections; foreach (const QString &grp, groups) { if (grp.startsWith("Connection")) { connections.append(connectionDetails(grp=="Connection" ? QString() : grp.mid(11))); } } if (connections.isEmpty()) { // If we are empty, add at lease the default connection... connections.append(connectionDetails()); } return connections; } #ifdef ENABLE_KDE_SUPPORT bool Settings::openWallet() { if (wallet) { return true; } wallet=KWallet::Wallet::openWallet(KWallet::Wallet::LocalWallet(), QApplication::activeWindow() ? QApplication::activeWindow()->winId() : 0); if (wallet) { if (!wallet->hasFolder(PACKAGE_NAME)) { wallet->createFolder(PACKAGE_NAME); } wallet->setFolder(PACKAGE_NAME); return true; } return false; } #endif bool Settings::showPlaylist() { return GET_BOOL("showPlaylist", true); } QByteArray Settings::playQueueHeaderState() { return GET_BYTE_ARRAY("playQueueHeaderState"); } QByteArray Settings::splitterState() { return GET_BYTE_ARRAY("splitterState"); } bool Settings::splitterAutoHide() { return GET_BOOL("splitterAutoHide", false); } QSize Settings::mainWindowSize() { return GET_SIZE("mainWindowSize"); } QSize Settings::mainWindowCollapsedSize() { return GET_SIZE("mainWindowCollapsedSize"); } bool Settings::useSystemTray() { return GET_BOOL("useSystemTray", false); } bool Settings::showPopups() { return GET_BOOL("showPopups", false); } bool Settings::stopOnExit() { return GET_BOOL("stopOnExit", false); } bool Settings::stopDynamizerOnExit() { return GET_BOOL("stopDynamizerOnExit", false); } bool Settings::smallPlaybackButtons() { return GET_BOOL("smallPlaybackButtons", false); } bool Settings::smallControlButtons() { return GET_BOOL("smallControlButtons", false); } bool Settings::storeCoversInMpdDir() { return GET_BOOL("storeCoversInMpdDir", true); } bool Settings::storeLyricsInMpdDir() { return GET_BOOL("storeLyricsInMpdDir", true); } int Settings::libraryView() { return GET_INT("libraryView", (int)(version()>=CANTATA_MAKE_VERSION(0, 5, 0) ? ItemView::Mode_Tree : ItemView::Mode_List)); } int Settings::albumsView() { return GET_INT("albumsView", (int)ItemView::Mode_IconTop); } int Settings::folderView() { return GET_INT("folderView", (int)ItemView::Mode_Tree); } int Settings::playlistsView() { return GET_INT("playlistsView", (int)(version()>=CANTATA_MAKE_VERSION(0, 5, 0) ? ItemView::Mode_Tree : ItemView::Mode_List)); } int Settings::streamsView() { return GET_INT("streamsView", (int)(version()>=CANTATA_MAKE_VERSION(0, 5, 0) ? ItemView::Mode_Tree : ItemView::Mode_List)); } int Settings::libraryCoverSize() { return GET_INT("libraryCoverSize", (int)(MusicLibraryItemAlbum::CoverMedium)); } int Settings::albumsCoverSize() { return GET_INT("albumsCoverSize", (int)(MusicLibraryItemAlbum::CoverMedium)); } int Settings::albumSort() { if (version()MaxFade)) { v=DefaultFade; } return v; } int Settings::httpPort() { return GET_INT("httpPort", 9001); } bool Settings::enableHttp() { return GET_BOOL("enableHttp", false); } bool Settings::alwaysUseHttp() { return GET_BOOL("alwaysUseHttp", false); } bool Settings::playQueueGrouped() { return GET_BOOL("playQueueGrouped", true); } bool Settings::playQueueAutoExpand() { return GET_BOOL("playQueueAutoExpand", true); } bool Settings::playQueueStartClosed() { return GET_BOOL("playQueueStartClosed", version()removeEntry(walletEntry); } } else if (openWallet()) { wallet->writePassword(walletEntry, v.password); } #else cfg.beginGroup(n); SET_VALUE("host", v.hostname); SET_VALUE("port", (int)v.port); SET_VALUE("dir", v.dir); SET_VALUE("passwd", v.password); cfg.endGroup(); #endif } void Settings::saveCurrentConnection(const QString &v) { SET_VALUE("currentConnection", v); } void Settings::saveShowPlaylist(bool v) { SET_VALUE("showPlaylist", v); } void Settings::savePlayQueueHeaderState(const QByteArray &v) { SET_VALUE("playQueueHeaderState", v); } void Settings::saveSplitterState(const QByteArray &v) { SET_VALUE("splitterState", v); } void Settings::saveSplitterAutoHide(bool v) { SET_VALUE("splitterAutoHide", v); } void Settings::saveMainWindowSize(const QSize &v) { SET_VALUE("mainWindowSize", v); } void Settings::saveMainWindowCollapsedSize(const QSize &v) { SET_VALUE("mainWindowCollapsedSize", v); } void Settings::saveUseSystemTray(bool v) { SET_VALUE("useSystemTray", v); } void Settings::saveShowPopups(bool v) { SET_VALUE("showPopups", v); } void Settings::saveStopOnExit(bool v) { SET_VALUE("stopOnExit", v); } void Settings::saveStopDynamizerOnExit(bool v) { SET_VALUE("stopDynamizerOnExit", v); } void Settings::saveSmallPlaybackButtons(bool v) { SET_VALUE("smallPlaybackButtons", v); } void Settings::saveSmallControlButtons(bool v) { SET_VALUE("smallControlButtons", v); } void Settings::saveStoreCoversInMpdDir(bool v) { SET_VALUE("storeCoversInMpdDir", v); } void Settings::saveStoreLyricsInMpdDir(bool v) { SET_VALUE("storeLyricsInMpdDir", v); } void Settings::saveLibraryView(int v) { SET_VALUE("libraryView", v); } void Settings::saveAlbumsView(int v) { SET_VALUE("albumsView", v); } void Settings::saveFolderView(int v) { SET_VALUE("folderView", v); } void Settings::savePlaylistsView(int v) { SET_VALUE("playlistsView", v); } void Settings::saveStreamsView(int v) { SET_VALUE("streamsView", v); } void Settings::saveLibraryCoverSize(int v) { SET_VALUE("libraryCoverSize", v); } void Settings::saveAlbumsCoverSize(int v) { SET_VALUE("albumsCoverSize", v); } void Settings::saveAlbumSort(int v) { SET_VALUE("albumSort", v); } void Settings::saveSidebar(int v) { SET_VALUE("sidebar", v); } void Settings::saveLibraryYear(bool v) { SET_VALUE("libraryYear", v); } void Settings::saveGroupSingle(bool v) { SET_VALUE("groupSingle", v); } void Settings::saveGroupMultiple(bool v) { SET_VALUE("groupMultiple", v); } void Settings::saveLyricProviders(const QStringList &p) { SET_VALUE("lyricProviders", p); } void Settings::saveLyricsZoom(int v) { SET_VALUE("lyricsZoom", v); } void Settings::saveLyricsBgnd(bool v) { SET_VALUE("lyricsBgnd", v); } void Settings::saveInfoZoom(int v) { SET_VALUE("infoZoom", v); } void Settings::savePage(const QString &v) { SET_VALUE("page", v); } void Settings::saveHiddenPages(const QStringList &p) { SET_VALUE("hiddenPages", p); } void Settings::saveMpris(bool v) { SET_VALUE("mpris", v); } void Settings::saveDockManager(bool v) { SET_VALUE("dockManager", v); } #ifdef ENABLE_DEVICES_SUPPORT void Settings::saveOverwriteSongs(bool v) { SET_VALUE("overwriteSongs", v); } void Settings::saveShowDeleteAction(bool v) { SET_VALUE("showDeleteAction", v); } void Settings::saveDevicesView(int v) { SET_VALUE("devicesView", v); } #endif void Settings::saveStopFadeDuration(int v) { if (v<=MinFade) { v=0; } else if (v>MaxFade) { v=MaxFade; } SET_VALUE("stopFadeDuration", v); } void Settings::saveHttpPort(int v) { SET_VALUE("httpPort", v); } void Settings::saveEnableHttp(bool v) { SET_VALUE("enableHttp", v); } void Settings::saveAlwaysUseHttp(bool v) { SET_VALUE("alwaysUseHttp", v); } void Settings::savePlayQueueGrouped(bool v) { SET_VALUE("playQueueGrouped", v); } void Settings::savePlayQueueAutoExpand(bool v) { SET_VALUE("playQueueAutoExpand", v); } void Settings::savePlayQueueStartClosed(bool v) { SET_VALUE("playQueueStartClosed", v); } void Settings::savePlayQueueScroll(bool v) { SET_VALUE("playQueueScroll", v); } void Settings::savePlayListsStartClosed(bool v) { SET_VALUE("playListsStartClosed", v); } #ifdef PHONON_FOUND void Settings::savePlayStream(bool v) { SET_VALUE("playStream", v); } void Settings::saveStreamUrl(const QString &v) { SET_VALUE("streamUrl", v); } #endif void Settings::save(bool force) { if (force) { SET_VALUE("version", PACKAGE_VERSION); #ifdef ENABLE_KDE_SUPPORT KGlobal::config()->sync(); #else cfg.sync(); #endif if (timer) { timer->stop(); } } else { if (!timer) { timer=new QTimer(this); connect(timer, SIGNAL(timeout()), this, SLOT(actualSave())); } timer->start(30*1000); } } void Settings::actualSave() { save(true); }