forked from qt-creator/qt-creator
RemoteLinux: Rename a bunch of classes.
They still had "Maemo" in their names, even though they are not Maemo-specific (and will not move to the respective plugin). Change-Id: I5eec0de27db8340f2a987a6ed685b3ae46ec17b0 Reviewed-on: http://codereview.qt.nokia.com/2036 Reviewed-by: Christian Kandeler <christian.kandeler@nokia.com>
This commit is contained in:
113
src/plugins/remotelinux/sshkeydeployer.cpp
Normal file
113
src/plugins/remotelinux/sshkeydeployer.cpp
Normal file
@@ -0,0 +1,113 @@
|
||||
/**************************************************************************
|
||||
**
|
||||
** This file is part of Qt Creator
|
||||
**
|
||||
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
||||
**
|
||||
** Contact: Nokia Corporation (info@qt.nokia.com)
|
||||
**
|
||||
** GNU Lesser General Public License Usage
|
||||
**
|
||||
** 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.
|
||||
**
|
||||
** 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.
|
||||
**
|
||||
** If you have questions regarding the use of this file, please contact
|
||||
** Nokia at info@qt.nokia.com.
|
||||
**
|
||||
**************************************************************************/
|
||||
#include "sshkeydeployer.h"
|
||||
|
||||
#include <utils/ssh/sshremoteprocessrunner.h>
|
||||
#include <utils/fileutils.h>
|
||||
|
||||
#include <QtCore/QFile>
|
||||
|
||||
using namespace Utils;
|
||||
|
||||
namespace RemoteLinux {
|
||||
|
||||
SshKeyDeployer::SshKeyDeployer(QObject *parent) : QObject(parent)
|
||||
{
|
||||
}
|
||||
|
||||
SshKeyDeployer::~SshKeyDeployer()
|
||||
{
|
||||
cleanup();
|
||||
}
|
||||
|
||||
void SshKeyDeployer::deployPublicKey(const SshConnectionParameters &sshParams,
|
||||
const QString &keyFilePath)
|
||||
{
|
||||
cleanup();
|
||||
m_deployProcess = SshRemoteProcessRunner::create(sshParams);
|
||||
|
||||
Utils::FileReader reader;
|
||||
if (!reader.fetch(keyFilePath)) {
|
||||
emit error(tr("Public key error: %1").arg(reader.errorString()));
|
||||
return;
|
||||
}
|
||||
|
||||
connect(m_deployProcess.data(), SIGNAL(connectionError(Utils::SshError)), this,
|
||||
SLOT(handleConnectionFailure()));
|
||||
connect(m_deployProcess.data(), SIGNAL(processClosed(int)), this,
|
||||
SLOT(handleKeyUploadFinished(int)));
|
||||
const QByteArray command = "test -d .ssh "
|
||||
"|| mkdir .ssh && chmod 0700 .ssh && echo '"
|
||||
+ reader.data() + "' >> .ssh/authorized_keys && chmod 0600 .ssh/authorized_keys";
|
||||
m_deployProcess->run(command);
|
||||
}
|
||||
|
||||
void SshKeyDeployer::handleConnectionFailure()
|
||||
{
|
||||
if (!m_deployProcess)
|
||||
return;
|
||||
const QString errorMsg = m_deployProcess->connection()->errorString();
|
||||
cleanup();
|
||||
emit error(tr("Connection failed: %1").arg(errorMsg));
|
||||
}
|
||||
|
||||
void SshKeyDeployer::handleKeyUploadFinished(int exitStatus)
|
||||
{
|
||||
Q_ASSERT(exitStatus == SshRemoteProcess::FailedToStart
|
||||
|| exitStatus == SshRemoteProcess::KilledBySignal
|
||||
|| exitStatus == SshRemoteProcess::ExitedNormally);
|
||||
|
||||
if (!m_deployProcess)
|
||||
return;
|
||||
|
||||
const int exitCode = m_deployProcess->process()->exitCode();
|
||||
const QString errorMsg = m_deployProcess->process()->errorString();
|
||||
cleanup();
|
||||
if (exitStatus == SshRemoteProcess::ExitedNormally && exitCode == 0)
|
||||
emit finishedSuccessfully();
|
||||
else
|
||||
emit error(tr("Key deployment failed: %1.").arg(errorMsg));
|
||||
}
|
||||
|
||||
void SshKeyDeployer::stopDeployment()
|
||||
{
|
||||
cleanup();
|
||||
}
|
||||
|
||||
void SshKeyDeployer::cleanup()
|
||||
{
|
||||
if (m_deployProcess) {
|
||||
disconnect(m_deployProcess.data(), 0, this, 0);
|
||||
m_deployProcess.clear();
|
||||
}
|
||||
}
|
||||
|
||||
} // namespace RemoteLinux
|
||||
Reference in New Issue
Block a user