2011-04-13 08:42:33 +02:00
|
|
|
/**************************************************************************
|
2010-04-06 17:47:31 +02:00
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** This file is part of Qt Creator
|
2010-04-06 17:47:31 +02:00
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
2010-04-06 17:47:31 +02:00
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Contact: Nokia Corporation (info@qt.nokia.com)
|
2010-04-06 17:47:31 +02:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2011-04-13 08:42:33 +02:00
|
|
|
**
|
|
|
|
|
** This file may be used under the terms of the GNU Lesser General Public
|
|
|
|
|
** License version 2.1 as published by the Free Software Foundation and
|
|
|
|
|
** appearing in the file LICENSE.LGPL included in the packaging of this file.
|
|
|
|
|
** Please review the following information to ensure the GNU Lesser General
|
|
|
|
|
** Public License version 2.1 requirements will be met:
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2010-04-06 17:47:31 +02:00
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2011-04-13 08:42:33 +02:00
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
2010-04-06 17:47:31 +02:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Other Usage
|
|
|
|
|
**
|
|
|
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
|
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
|
|
|
|
**
|
2010-04-06 17:47:31 +02:00
|
|
|
** If you have questions regarding the use of this file, please contact
|
|
|
|
|
** Nokia at qt-info@nokia.com.
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
**************************************************************************/
|
2010-04-06 17:47:31 +02:00
|
|
|
|
|
|
|
|
#include "maemosshconfigdialog.h"
|
|
|
|
|
|
2010-04-15 16:11:12 +02:00
|
|
|
#include "maemodeviceconfigurations.h"
|
|
|
|
|
|
2011-02-14 16:34:17 +01:00
|
|
|
#include <utils/ssh/sshkeygenerator.h>
|
2010-04-06 17:47:31 +02:00
|
|
|
|
|
|
|
|
#include <QtCore/QDir>
|
2010-04-15 16:11:12 +02:00
|
|
|
#include <QtGui/QApplication>
|
|
|
|
|
#include <QtGui/QDesktopServices>
|
|
|
|
|
#include <QtGui/QFileDialog>
|
2010-04-26 11:43:25 +02:00
|
|
|
#include <QtGui/QMessageBox>
|
|
|
|
|
#include <QtNetwork/QHostInfo>
|
|
|
|
|
|
2011-02-14 16:34:17 +01:00
|
|
|
using namespace Utils;
|
2010-04-06 17:47:31 +02:00
|
|
|
using namespace Qt4ProjectManager::Internal;
|
|
|
|
|
|
|
|
|
|
MaemoSshConfigDialog::MaemoSshConfigDialog(QWidget *parent)
|
|
|
|
|
: QDialog(parent)
|
2010-04-15 16:11:12 +02:00
|
|
|
, home(QDesktopServices::storageLocation(QDesktopServices::HomeLocation))
|
2010-07-12 09:33:22 +02:00
|
|
|
, m_keyGenerator(new SshKeyGenerator)
|
2010-04-06 17:47:31 +02:00
|
|
|
{
|
|
|
|
|
m_ui.setupUi(this);
|
|
|
|
|
|
2010-04-15 16:11:12 +02:00
|
|
|
connect(m_ui.rsa, SIGNAL(toggled(bool)), this, SLOT(slotToggled()));
|
|
|
|
|
connect(m_ui.dsa, SIGNAL(toggled(bool)), this, SLOT(slotToggled()));
|
2010-04-06 17:47:31 +02:00
|
|
|
|
|
|
|
|
connect(m_ui.generateButton, SIGNAL(clicked()), this, SLOT(generateSshKey()));
|
2010-04-15 16:11:12 +02:00
|
|
|
connect(m_ui.savePublicKey, SIGNAL(clicked()), this, SLOT(savePublicKey()));
|
|
|
|
|
connect(m_ui.savePrivateKey, SIGNAL(clicked()), this, SLOT(savePrivateKey()));
|
2010-04-06 17:47:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MaemoSshConfigDialog::~MaemoSshConfigDialog()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-15 16:11:12 +02:00
|
|
|
void MaemoSshConfigDialog::slotToggled()
|
|
|
|
|
{
|
|
|
|
|
m_ui.comboBox->setCurrentIndex(0);
|
|
|
|
|
m_ui.comboBox->setEnabled(m_ui.rsa->isChecked());
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-06 17:47:31 +02:00
|
|
|
void MaemoSshConfigDialog::generateSshKey()
|
|
|
|
|
{
|
2010-07-12 09:33:22 +02:00
|
|
|
const SshKeyGenerator::KeyType keyType = m_ui.rsa->isChecked()
|
|
|
|
|
? SshKeyGenerator::Rsa
|
|
|
|
|
: SshKeyGenerator::Dsa;
|
2010-04-26 11:43:25 +02:00
|
|
|
|
2010-04-15 16:11:12 +02:00
|
|
|
QByteArray userId = QString(home.mid(home.lastIndexOf(QLatin1Char('/')) + 1)
|
|
|
|
|
+ QLatin1Char('@') + QHostInfo::localHostName()).toUtf8();
|
|
|
|
|
|
|
|
|
|
QApplication::setOverrideCursor(Qt::BusyCursor);
|
|
|
|
|
|
2010-07-12 09:33:22 +02:00
|
|
|
if (m_keyGenerator->generateKeys(keyType, SshKeyGenerator::OpenSsl,
|
2010-04-26 11:43:25 +02:00
|
|
|
m_ui.comboBox->currentText().toUShort())) {
|
|
|
|
|
m_ui.plainTextEdit->setPlainText(m_keyGenerator->publicKey());
|
2010-04-15 16:11:12 +02:00
|
|
|
m_ui.savePublicKey->setEnabled(true);
|
|
|
|
|
m_ui.savePrivateKey->setEnabled(true);
|
2010-04-06 17:47:31 +02:00
|
|
|
} else {
|
2010-04-26 11:43:25 +02:00
|
|
|
m_ui.plainTextEdit->setPlainText(m_keyGenerator->error());
|
2010-04-06 17:47:31 +02:00
|
|
|
}
|
2010-04-15 16:11:12 +02:00
|
|
|
|
|
|
|
|
QApplication::restoreOverrideCursor();
|
2010-04-06 17:47:31 +02:00
|
|
|
}
|
|
|
|
|
|
2010-04-15 16:11:12 +02:00
|
|
|
void MaemoSshConfigDialog::savePublicKey()
|
2010-04-06 17:47:31 +02:00
|
|
|
{
|
2010-04-26 11:43:25 +02:00
|
|
|
saveKey(true);
|
2010-04-06 17:47:31 +02:00
|
|
|
}
|
|
|
|
|
|
2010-04-15 16:11:12 +02:00
|
|
|
void MaemoSshConfigDialog::savePrivateKey()
|
2010-04-06 17:47:31 +02:00
|
|
|
{
|
2010-04-26 11:43:25 +02:00
|
|
|
saveKey(false);
|
2010-04-15 16:11:12 +02:00
|
|
|
}
|
2010-04-06 17:47:31 +02:00
|
|
|
|
2010-04-15 16:11:12 +02:00
|
|
|
void MaemoSshConfigDialog::checkSshDir()
|
|
|
|
|
{
|
|
|
|
|
QDir dir(home + QString::fromLatin1("/.ssh"));
|
|
|
|
|
if (!dir.exists())
|
|
|
|
|
dir.mkpath(home + QString::fromLatin1("/.ssh"));
|
2010-04-06 17:47:31 +02:00
|
|
|
}
|
|
|
|
|
|
2010-04-26 11:43:25 +02:00
|
|
|
void MaemoSshConfigDialog::saveKey(bool publicKey)
|
2010-04-06 17:47:31 +02:00
|
|
|
{
|
2010-04-26 11:43:25 +02:00
|
|
|
checkSshDir();
|
|
|
|
|
const QString suggestedTypeSuffix =
|
2010-07-12 09:33:22 +02:00
|
|
|
m_keyGenerator->type() == SshKeyGenerator::Rsa ? "rsa" : "dsa";
|
2010-04-26 11:43:25 +02:00
|
|
|
const QString suggestedName = home + QString::fromLatin1("/.ssh/id_%1%2")
|
|
|
|
|
.arg(suggestedTypeSuffix).arg(publicKey ? ".pub" : "");
|
|
|
|
|
const QString dlgTitle
|
2010-05-14 15:45:43 +02:00
|
|
|
= publicKey ? tr("Save Public Key File") : tr("Save Private Key File");
|
2010-04-26 11:43:25 +02:00
|
|
|
const QString fileName
|
|
|
|
|
= QFileDialog::getSaveFileName(this, dlgTitle, suggestedName);
|
|
|
|
|
if (fileName.isEmpty())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
QFile file(fileName);
|
|
|
|
|
const bool canOpen = file.open(QIODevice::WriteOnly);
|
|
|
|
|
if (canOpen)
|
|
|
|
|
file.write(publicKey
|
2010-07-12 09:33:22 +02:00
|
|
|
? m_keyGenerator->publicKey()
|
|
|
|
|
: m_keyGenerator->privateKey());
|
2010-04-26 11:43:25 +02:00
|
|
|
if (!canOpen || file.error() != QFile::NoError) {
|
|
|
|
|
QMessageBox::critical(this, tr("Error writing file"),
|
|
|
|
|
tr("Could not write file '%1':\n %2")
|
|
|
|
|
.arg(fileName, file.errorString()));
|
|
|
|
|
} else if (!publicKey) {
|
|
|
|
|
emit privateKeyGenerated(fileName);
|
2010-04-06 17:47:31 +02:00
|
|
|
}
|
|
|
|
|
}
|