2012-04-18 20:30:57 +03:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
2014-01-07 13:27:11 +01:00
|
|
|
** Copyright (c) 2014 BogDan Vatra <bog_dan_ro@yahoo.com>
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2012-04-18 20:30:57 +03:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2012-04-18 20:30:57 +03:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
2012-04-18 20:30:57 +03:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2012-04-18 20:30:57 +03:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2012-04-18 20:30:57 +03:00
|
|
|
|
|
|
|
|
#include "androidcreatekeystorecertificate.h"
|
|
|
|
|
#include "androidconfigurations.h"
|
|
|
|
|
#include "ui_androidcreatekeystorecertificate.h"
|
|
|
|
|
|
|
|
|
|
#include <QFileDialog>
|
|
|
|
|
#include <QProcess>
|
|
|
|
|
#include <QMessageBox>
|
|
|
|
|
|
|
|
|
|
using namespace Android::Internal;
|
|
|
|
|
|
|
|
|
|
AndroidCreateKeystoreCertificate::AndroidCreateKeystoreCertificate(QWidget *parent) :
|
|
|
|
|
QDialog(parent),
|
|
|
|
|
ui(new Ui::AndroidCreateKeystoreCertificate)
|
|
|
|
|
{
|
|
|
|
|
ui->setupUi(this);
|
|
|
|
|
connect(ui->keystorePassLineEdit, SIGNAL(textChanged(QString)), this, SLOT(checkKeystorePassword()));
|
|
|
|
|
connect(ui->keystoreRetypePassLineEdit, SIGNAL(textChanged(QString)), this, SLOT(checkKeystorePassword()));
|
|
|
|
|
connect(ui->certificatePassLineEdit, SIGNAL(textChanged(QString)), this, SLOT(checkCertificatePassword()));
|
|
|
|
|
connect(ui->certificateRetypePassLineEdit, SIGNAL(textChanged(QString)), this, SLOT(checkCertificatePassword()));
|
2013-08-29 18:53:52 +02:00
|
|
|
connect(ui->certificateAliasLineEdit, SIGNAL(textChanged(QString)), this, SLOT(checkCertificateAlias()));
|
|
|
|
|
connect(ui->countryLineEdit, SIGNAL(textChanged(QString)), this, SLOT(checkCountryCode()));
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AndroidCreateKeystoreCertificate::~AndroidCreateKeystoreCertificate()
|
|
|
|
|
{
|
|
|
|
|
delete ui;
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
Utils::FileName AndroidCreateKeystoreCertificate::keystoreFilePath()
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
|
|
|
|
return m_keystoreFilePath;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString AndroidCreateKeystoreCertificate::keystorePassword()
|
|
|
|
|
{
|
|
|
|
|
return ui->keystorePassLineEdit->text();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString AndroidCreateKeystoreCertificate::certificateAlias()
|
|
|
|
|
{
|
2013-08-29 18:53:52 +02:00
|
|
|
return ui->certificateAliasLineEdit->text();
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString AndroidCreateKeystoreCertificate::certificatePassword()
|
|
|
|
|
{
|
2013-08-29 18:53:52 +02:00
|
|
|
return (ui->samePasswordCheckBox->checkState() == Qt::Checked)
|
|
|
|
|
? keystorePassword()
|
|
|
|
|
: ui->certificatePassLineEdit->text();
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AndroidCreateKeystoreCertificate::PasswordStatus AndroidCreateKeystoreCertificate::checkKeystorePassword()
|
|
|
|
|
{
|
|
|
|
|
if (ui->keystorePassLineEdit->text().length() < 6) {
|
2013-08-29 18:53:52 +02:00
|
|
|
ui->infoLabel->setText(tr("<span style=\" color:#ff0000;\">Keystore password is too short</span>"));
|
2012-04-18 20:30:57 +03:00
|
|
|
return Invalid;
|
|
|
|
|
}
|
|
|
|
|
if (ui->keystorePassLineEdit->text() != ui->keystoreRetypePassLineEdit->text()) {
|
2013-08-29 18:53:52 +02:00
|
|
|
ui->infoLabel->setText(tr("<span style=\" color:#ff0000;\">Keystore passwords do not match</span>"));
|
2012-04-18 20:30:57 +03:00
|
|
|
return NoMatch;
|
|
|
|
|
}
|
2013-08-29 18:53:52 +02:00
|
|
|
|
|
|
|
|
ui->infoLabel->clear();
|
2012-04-18 20:30:57 +03:00
|
|
|
return Match;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AndroidCreateKeystoreCertificate::PasswordStatus AndroidCreateKeystoreCertificate::checkCertificatePassword()
|
|
|
|
|
{
|
2013-08-29 18:53:52 +02:00
|
|
|
if (ui->samePasswordCheckBox->checkState() == Qt::Checked)
|
|
|
|
|
return Match;
|
|
|
|
|
|
2012-04-18 20:30:57 +03:00
|
|
|
if (ui->certificatePassLineEdit->text().length() < 6) {
|
2013-08-29 18:53:52 +02:00
|
|
|
ui->infoLabel->setText(tr("<span style=\" color:#ff0000;\">Certificate password is too short</span>"));
|
2012-04-18 20:30:57 +03:00
|
|
|
return Invalid;
|
|
|
|
|
}
|
|
|
|
|
if (ui->certificatePassLineEdit->text() != ui->certificateRetypePassLineEdit->text()) {
|
2013-08-29 18:53:52 +02:00
|
|
|
ui->infoLabel->setText(tr("<span style=\" color:#ff0000;\">Certificate passwords do not match</span>"));
|
2012-04-18 20:30:57 +03:00
|
|
|
return NoMatch;
|
|
|
|
|
}
|
2013-08-29 18:53:52 +02:00
|
|
|
|
|
|
|
|
ui->infoLabel->clear();
|
2012-04-18 20:30:57 +03:00
|
|
|
return Match;
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-29 18:53:52 +02:00
|
|
|
bool AndroidCreateKeystoreCertificate::checkCertificateAlias()
|
|
|
|
|
{
|
|
|
|
|
if (ui->certificateAliasLineEdit->text().length() == 0) {
|
|
|
|
|
ui->infoLabel->setText(tr("<span style=\" color:#ff0000;\">Certificate alias is missing</span>"));
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ui->infoLabel->clear();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool AndroidCreateKeystoreCertificate::checkCountryCode()
|
|
|
|
|
{
|
|
|
|
|
if (!ui->countryLineEdit->text().contains(QRegExp(QLatin1String("[A-Z]{2}")))) {
|
|
|
|
|
ui->infoLabel->setText(tr("<span style=\" color:#ff0000;\">Invalid country code</span>"));
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ui->infoLabel->clear();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-18 20:30:57 +03:00
|
|
|
void AndroidCreateKeystoreCertificate::on_keystoreShowPassCheckBox_stateChanged(int state)
|
|
|
|
|
{
|
|
|
|
|
ui->keystorePassLineEdit->setEchoMode(state == Qt::Checked ? QLineEdit::Normal : QLineEdit::Password);
|
|
|
|
|
ui->keystoreRetypePassLineEdit->setEchoMode(ui->keystorePassLineEdit->echoMode());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AndroidCreateKeystoreCertificate::on_certificateShowPassCheckBox_stateChanged(int state)
|
|
|
|
|
{
|
|
|
|
|
ui->certificatePassLineEdit->setEchoMode(state == Qt::Checked ? QLineEdit::Normal : QLineEdit::Password);
|
|
|
|
|
ui->certificateRetypePassLineEdit->setEchoMode(ui->certificatePassLineEdit->echoMode());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AndroidCreateKeystoreCertificate::on_buttonBox_accepted()
|
|
|
|
|
{
|
2013-08-29 18:53:52 +02:00
|
|
|
if (!validateUserInput())
|
2012-04-18 20:30:57 +03:00
|
|
|
return;
|
|
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
m_keystoreFilePath = Utils::FileName::fromString(QFileDialog::getSaveFileName(this, tr("Keystore file name"),
|
|
|
|
|
QDir::homePath() + QLatin1String("/android_release.keystore"),
|
|
|
|
|
tr("Keystore files (*.keystore *.jks)")));
|
|
|
|
|
if (m_keystoreFilePath.isEmpty())
|
2012-04-18 20:30:57 +03:00
|
|
|
return;
|
|
|
|
|
QString distinguishedNames(QString::fromLatin1("CN=%1, O=%2, L=%3, C=%4")
|
|
|
|
|
.arg(ui->commonNameLineEdit->text().replace(QLatin1Char(','), QLatin1String("\\,")))
|
|
|
|
|
.arg(ui->organizationNameLineEdit->text().replace(QLatin1Char(','), QLatin1String("\\,")))
|
|
|
|
|
.arg(ui->localityNameLineEdit->text().replace(QLatin1Char(','), QLatin1String("\\,")))
|
|
|
|
|
.arg(ui->countryLineEdit->text().replace(QLatin1Char(','), QLatin1String("\\,"))));
|
|
|
|
|
|
|
|
|
|
if (ui->organizationUnitLineEdit->text().length())
|
|
|
|
|
distinguishedNames += QLatin1String(", OU=") + ui->organizationUnitLineEdit->text().replace(QLatin1Char(','), QLatin1String("\\,"));
|
|
|
|
|
|
|
|
|
|
if (ui->stateNameLineEdit->text().length())
|
|
|
|
|
distinguishedNames += QLatin1String(", S=") + ui->stateNameLineEdit->text().replace(QLatin1Char(','), QLatin1String("\\,"));
|
|
|
|
|
|
|
|
|
|
QStringList params;
|
|
|
|
|
params << QLatin1String("-genkey") << QLatin1String("-keyalg") << QLatin1String("RSA")
|
2012-04-24 15:49:09 +02:00
|
|
|
<< QLatin1String("-keystore") << m_keystoreFilePath.toString()
|
2013-08-29 18:53:52 +02:00
|
|
|
<< QLatin1String("-storepass") << keystorePassword()
|
|
|
|
|
<< QLatin1String("-alias") << certificateAlias()
|
2012-04-18 20:30:57 +03:00
|
|
|
<< QLatin1String("-keysize") << ui->keySizeSpinBox->text()
|
|
|
|
|
<< QLatin1String("-validity") << ui->validitySpinBox->text()
|
2013-08-29 18:53:52 +02:00
|
|
|
<< QLatin1String("-keypass") << certificatePassword()
|
2012-04-18 20:30:57 +03:00
|
|
|
<< QLatin1String("-dname") << distinguishedNames;
|
|
|
|
|
|
|
|
|
|
QProcess genKeyCertProc;
|
2012-04-24 15:49:09 +02:00
|
|
|
genKeyCertProc.start(AndroidConfigurations::instance().keytoolPath().toString(), params );
|
2012-04-18 20:30:57 +03:00
|
|
|
|
|
|
|
|
if (!genKeyCertProc.waitForStarted() || !genKeyCertProc.waitForFinished())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (genKeyCertProc.exitCode()) {
|
|
|
|
|
QMessageBox::critical(this, tr("Error")
|
|
|
|
|
, QString::fromLatin1(genKeyCertProc.readAllStandardOutput())
|
|
|
|
|
+ QString::fromLatin1(genKeyCertProc.readAllStandardError()));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
accept();
|
|
|
|
|
}
|
2013-08-29 18:53:52 +02:00
|
|
|
|
|
|
|
|
void AndroidCreateKeystoreCertificate::on_samePasswordCheckBox_stateChanged(int state)
|
|
|
|
|
{
|
|
|
|
|
if (state == Qt::Checked) {
|
|
|
|
|
ui->certificatePassLineEdit->setDisabled(true);
|
|
|
|
|
ui->certificateRetypePassLineEdit->setDisabled(true);
|
|
|
|
|
ui->certificateShowPassCheckBox->setDisabled(true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (state == Qt::Unchecked) {
|
|
|
|
|
ui->certificatePassLineEdit->setEnabled(true);
|
|
|
|
|
ui->certificateRetypePassLineEdit->setEnabled(true);
|
|
|
|
|
ui->certificateShowPassCheckBox->setEnabled(true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
validateUserInput();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool AndroidCreateKeystoreCertificate::validateUserInput()
|
|
|
|
|
{
|
|
|
|
|
switch (checkKeystorePassword()) {
|
|
|
|
|
case Invalid:
|
|
|
|
|
ui->keystorePassLineEdit->setFocus();
|
|
|
|
|
return false;
|
|
|
|
|
case NoMatch:
|
|
|
|
|
ui->keystoreRetypePassLineEdit->setFocus();
|
|
|
|
|
return false;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!checkCertificateAlias()) {
|
|
|
|
|
ui->certificateAliasLineEdit->setFocus();
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (checkCertificatePassword()) {
|
|
|
|
|
case Invalid:
|
|
|
|
|
ui->certificatePassLineEdit->setFocus();
|
|
|
|
|
return false;
|
|
|
|
|
case NoMatch:
|
|
|
|
|
ui->certificateRetypePassLineEdit->setFocus();
|
|
|
|
|
return false;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!checkCountryCode()) {
|
|
|
|
|
ui->countryLineEdit->setFocus();
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|