2009-07-23 13:11:51 -04:00
|
|
|
/****************************************************************
|
|
|
|
* RetroShare is distributed under the following license:
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 - 2009 RetroShare Team
|
|
|
|
*
|
|
|
|
* 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
|
2009-08-19 18:15:16 -04:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
2009-07-23 13:11:51 -04:00
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#include "rsiface/rspeers.h" //for rsPeers variable
|
|
|
|
#include "rsiface/rsiface.h"
|
|
|
|
|
|
|
|
#include <QtGui>
|
|
|
|
#include <QClipboard>
|
|
|
|
|
|
|
|
#include <rshare.h>
|
|
|
|
#include "CryptoPage.h"
|
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
#include <iostream>
|
|
|
|
#include <set>
|
|
|
|
|
|
|
|
/** Constructor */
|
|
|
|
CryptoPage::CryptoPage(QWidget * parent, Qt::WFlags flags)
|
2009-08-19 18:15:16 -04:00
|
|
|
: ConfigPage(parent, flags)
|
2009-07-23 13:11:51 -04:00
|
|
|
{
|
|
|
|
/* Invoke the Qt Designer generated object setup routine */
|
|
|
|
ui.setupUi(this);
|
|
|
|
|
|
|
|
/* Create RshareSettings object */
|
|
|
|
_settings = new RshareSettings();
|
|
|
|
|
|
|
|
connect(ui.copykeyButton, SIGNAL(clicked()), this, SLOT(copyPublicKey()));
|
|
|
|
connect(ui.exportkeyButton, SIGNAL(clicked()), this, SLOT(exportPublicKey()));
|
|
|
|
|
|
|
|
|
|
|
|
loadPublicKey();
|
|
|
|
|
|
|
|
|
|
|
|
/* Hide platform specific features */
|
|
|
|
#ifdef Q_WS_WIN
|
|
|
|
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CryptoPage::closeEvent (QCloseEvent * event)
|
|
|
|
{
|
|
|
|
|
|
|
|
QWidget::closeEvent(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Saves the changes on this page */
|
|
|
|
bool
|
|
|
|
CryptoPage::save(QString &errmsg)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Loads the settings for this page */
|
|
|
|
void
|
|
|
|
CryptoPage::load()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Loads ouer default Puplickey */
|
|
|
|
void
|
|
|
|
CryptoPage::loadPublicKey()
|
|
|
|
{
|
2010-01-13 16:29:21 -05:00
|
|
|
ui.certtextEdit->setText(QString::fromStdString(rsPeers->GetRetroshareInvite()));
|
2009-07-23 13:11:51 -04:00
|
|
|
ui.certtextEdit->setReadOnly(true);
|
|
|
|
ui.certtextEdit->setMinimumHeight(200);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CryptoPage::copyPublicKey()
|
|
|
|
{
|
|
|
|
QMessageBox::information(this,
|
|
|
|
tr("RetroShare"),
|
|
|
|
tr("Your Public Key is copied to Clipbard, paste and send it to your"
|
|
|
|
"friend via email or some other way"));
|
|
|
|
QClipboard *clipboard = QApplication::clipboard();
|
2009-08-19 18:15:16 -04:00
|
|
|
clipboard->setText(ui.certtextEdit->toPlainText());
|
2009-07-23 13:11:51 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CryptoPage::exportPublicKey()
|
|
|
|
{
|
|
|
|
qDebug() << " exportPulicKey";
|
|
|
|
|
|
|
|
QString qdir = QFileDialog::getSaveFileName(this,
|
|
|
|
"Please choose a filename",
|
|
|
|
QDir::homePath(),
|
|
|
|
"RetroShare Certificate (*.pqi)");
|
|
|
|
|
2010-01-13 16:22:52 -05:00
|
|
|
if ( rsPeers->saveCertificateToFile(rsPeers->getOwnId(), qdir.toStdString()) )
|
2009-07-23 13:11:51 -04:00
|
|
|
{
|
|
|
|
QMessageBox::information(this, tr("RetroShare"),
|
|
|
|
tr("Certificate file successfully created"),
|
|
|
|
QMessageBox::Ok, QMessageBox::Ok);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
QMessageBox::information(this, tr("RetroShare"),
|
|
|
|
tr("Sorry, certificate file creation failed"),
|
|
|
|
QMessageBox::Ok, QMessageBox::Ok);
|
|
|
|
}
|
|
|
|
}
|