From b23d2eddc608ad84454df0c1477f779b2eb623a5 Mon Sep 17 00:00:00 2001 From: Akira Ohgaki <akiraohgaki@gmail.com> Date: Thu, 29 Sep 2016 14:07:23 +0900 Subject: [PATCH] Uncompress method for archives --- src/handlers/xdgurl.cpp | 39 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 38 insertions(+), 1 deletion(-) diff --git a/src/handlers/xdgurl.cpp b/src/handlers/xdgurl.cpp index abfdd66..136d6b2 100644 --- a/src/handlers/xdgurl.cpp +++ b/src/handlers/xdgurl.cpp @@ -1,6 +1,7 @@ #include <QDebug> #include <QUrl> #include <QUrlQuery> +#include <QMimeDatabase> #include <QProcess> #include "../core/config.h" @@ -142,7 +143,43 @@ bool XdgUrl::_installPlasmapkg(const QString &path, const QString &type) bool XdgUrl::_uncompressArchive(const QString &path, const QString &targetDir) { - return true; + QMimeDatabase mimeDb; + QString mimeType = mimeDb.mimeTypeForFile(path).name(); + QString archiveType; + + QProcess process; + QString program; + QStringList arguments; + + if (_archiveTypes.contains(mimeType)) { + archiveType = _archiveTypes[mimeType].toString(); + + if (archiveType == "tar") { + program = "tar"; + arguments << "-xf" << path << "-C" << targetDir; + } + else if (archiveType == "zip") { + program = "unzip"; + arguments << "-o" << path << "-d" << targetDir; + } + else if (archiveType == "7z") { + program = "7z"; + arguments << "x" << path << "-o" + targetDir; // No space between -o and directory + } + else if (archiveType == "rar") { + program = "unrar"; + arguments << "e" << path << targetDir; + } + + process.start(program, arguments); + + if (process.waitForFinished()) { + process.waitForReadyRead(); + return true; + } + } + + return false; } bool XdgUrl::_download() -- GitLab