2010-04-06 17:47:31 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2011-01-11 16:28:15 +01:00
|
|
|
** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
2010-04-06 17:47:31 +02:00
|
|
|
** All rights reserved.
|
|
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
|
**
|
|
|
|
|
** $QT_BEGIN_LICENSE:LGPL$
|
|
|
|
|
** No Commercial Usage
|
|
|
|
|
** This file contains pre-release code and may not be distributed.
|
|
|
|
|
** You may use this file in accordance with the terms and conditions
|
|
|
|
|
** contained in the Technology Preview License Agreement accompanying
|
|
|
|
|
** this package.
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
** Alternatively, 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.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
|
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
|
|
|
|
** If you have questions regarding the use of this file, please contact
|
|
|
|
|
** Nokia at qt-info@nokia.com.
|
|
|
|
|
**
|
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "maemosshconfigdialog.h"
|
|
|
|
|
|
2010-04-15 16:11:12 +02:00
|
|
|
#include "maemodeviceconfigurations.h"
|
|
|
|
|
|
2010-04-26 11:43:25 +02:00
|
|
|
#include <coreplugin/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>
|
|
|
|
|
|
2010-07-12 09:33:22 +02:00
|
|
|
using namespace Core;
|
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
|
|
|
}
|
|
|
|
|
}
|