From dd821497263f7d95ed5e7fae759004a966b4a46f Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Sat, 6 Jun 2020 09:51:40 -0700 Subject: mobile: make list of local cloud cache directories available This way QML can show those to the user. Signed-off-by: Dirk Hohndel --- mobile-widgets/qmlmanager.cpp | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'mobile-widgets/qmlmanager.cpp') diff --git a/mobile-widgets/qmlmanager.cpp b/mobile-widgets/qmlmanager.cpp index b56be67aa..7ec3df7ba 100644 --- a/mobile-widgets/qmlmanager.cpp +++ b/mobile-widgets/qmlmanager.cpp @@ -403,6 +403,8 @@ void QMLManager::openLocalThenRemote(QString url) updateAllGlobalLists(); setDiveListProcessing(false); + // this could have added a new local cache directory + emit cloudCacheListChanged(); } // Convenience function to accesss dive directly via its row. @@ -534,6 +536,9 @@ void QMLManager::finishSetup() } m_initialized = true; emit initializedChanged(); + // this could have brought in new cache directories, so make sure QML + // calls our getter function again and doesn't show us outdated information + emit cloudCacheListChanged(); } QMLManager::~QMLManager() @@ -2201,3 +2206,22 @@ void QMLManager::setDiveListProcessing(bool value) } } + +QStringList QMLManager::cloudCacheList() const +{ + QDir localCacheDir(QString("%1/cloudstorage/").arg(system_default_directory())); + QStringList dirs = localCacheDir.entryList().filter(QRegExp("...+")); + QStringList result; + foreach(QString dir, dirs) { + QString originsDir = QString("%1/cloudstorage/%2/.git/refs/remotes/origin/").arg(system_default_directory()).arg(dir); + QDir remote(originsDir); + if (dir == "localrepo") { + result << QString("localrepo[master]"); + } else { + foreach(QString branch, remote.entryList().filter(QRegExp("...+"))) { + result << QString("%1[%2]").arg(dir).arg(branch); + } + } + } + return result; +} -- cgit v1.2.3-70-g09d2