1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
|
/*
* gpgprocess.cpp - QProcess wrapper makes it easy to handle gpg
*
* Copyright (C) 2013 Ivan Romanov <drizt@land.ru>
*
* 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; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <QFileInfo>
#include "gpgprocess.h"
#include <QCoreApplication>
#include <QDir>
#ifdef Q_OS_WIN
#include <windows.h>
#endif
GpgProcess::GpgProcess(QObject *parent)
: QProcess(parent)
, _bin("")
{
_bin = findBin();
}
inline bool checkBin(const QString &bin)
{
QFileInfo fi(bin);
return fi.exists();
}
#ifdef Q_OS_WIN
static bool getRegKey(HKEY root, const char *path, QString &value)
{
HKEY hkey = 0;
bool res = false;
if(RegOpenKeyExA(root, path, 0, KEY_QUERY_VALUE, &hkey) == ERROR_SUCCESS) {
DWORD dwLen = 256;
char szValue[256];
if (RegQueryValueExA(hkey, "Install Directory", NULL, NULL, (LPBYTE)szValue, &dwLen) == ERROR_SUCCESS) {
value = QString::fromLocal8Bit(szValue);
res = true;
}
RegCloseKey(hkey);
}
return res;
}
static QString findRegGpgProgram()
{
QStringList bins;
bins << "gpg.exe" << "gpg2.exe";
HKEY root;
root = HKEY_CURRENT_USER;
const char *path = "Software\\GNU\\GnuPG";
const char *path2 = "Software\\Wow6432Node\\GNU\\GnuPG";
QString dir;
getRegKey(HKEY_CURRENT_USER, path, dir) ||
getRegKey(HKEY_CURRENT_USER, path2, dir) ||
getRegKey(HKEY_LOCAL_MACHINE, path, dir) ||
getRegKey(HKEY_LOCAL_MACHINE, path2, dir);
if (!dir.isEmpty()) {
foreach (const QString &bin, bins) {
if (checkBin(dir + "\\" + bin)) {
return dir + "\\" + bin;
}
}
}
return QString();
}
#endif
QString GpgProcess::findBin() const
{
// gpg and gpg2 has identical semantics
// so any from them can be used
QStringList bins;
#ifdef Q_OS_WIN
bins << "gpg.exe" << "gpg2.exe";
#else
bins << "gpg" << "gpg2";
#endif
// Prefer bundled gpg
foreach (const QString &bin, bins) {
if (checkBin(QCoreApplication::applicationDirPath() + "/" + bin)) {
return QCoreApplication::applicationDirPath() + "/" + bin;
}
}
#ifdef Q_OS_WIN
// On Windows look up at registry
QString bin = findRegGpgProgram();
if (!bin.isEmpty())
return bin;
#endif
// Look up at PATH environment
#ifdef Q_OS_WIN
QString pathSep = ";";
#else
QString pathSep = ":";
#endif
QStringList paths = QString::fromLocal8Bit(qgetenv("PATH")).split(pathSep, QString::SkipEmptyParts);
#ifdef Q_OS_MAC
// On Mac OS bundled always uses system default PATH
// so it need explicity add extra paths which can
// contain gpg
// Mac GPG and brew use /usr/local/bin
// MacPorts uses /opt/local/bin
paths << "/usr/local/bin" << "/opt/local/bin";
#endif
paths.removeDuplicates();
foreach (const QString &path, paths) {
foreach (const QString &bin, bins) {
if (checkBin(path + "/" + bin)) {
return path + "/" + bin;
}
}
}
// Return nothing if gpg not found
return QString();
}
bool GpgProcess::info(QString &message)
{
QStringList arguments;
arguments << "--version"
<< "--no-tty";
start(arguments);
waitForFinished();
bool res = false;
if (!_bin.isEmpty()) {
if (error() == FailedToStart) {
message = trUtf8("Can't start ") + _bin;
}
else {
message = QString("%1 %2\n%3").arg(QDir::toNativeSeparators(_bin)).arg(arguments.join(" ")).arg(QString::fromLocal8Bit(readAll()));
res = true;
}
}
else {
message = trUtf8("GnuPG program not found");
}
return res;
}
|