2016-01-15 14:57:40 +01:00
|
|
|
/****************************************************************************
|
2012-04-18 20:30:57 +03:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 BogDan Vatra <bog_dan_ro@yahoo.com>
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
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
|
2016-01-15 14:57:40 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2012-04-18 20:30:57 +03:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2012-04-18 20:30:57 +03:00
|
|
|
**
|
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"
|
|
|
|
|
|
2016-04-29 16:52:58 +02:00
|
|
|
#include <utils/synchronousprocess.h>
|
|
|
|
|
|
2012-04-18 20:30:57 +03:00
|
|
|
#include <QFileDialog>
|
2020-06-10 12:26:57 +02:00
|
|
|
#include <QRegularExpression>
|
2012-04-18 20:30:57 +03:00
|
|
|
#include <QMessageBox>
|
|
|
|
|
|
2019-06-06 16:27:55 +02:00
|
|
|
using namespace Utils;
|
|
|
|
|
|
2012-04-18 20:30:57 +03:00
|
|
|
using namespace Android::Internal;
|
|
|
|
|
|
|
|
|
|
AndroidCreateKeystoreCertificate::AndroidCreateKeystoreCertificate(QWidget *parent) :
|
|
|
|
|
QDialog(parent),
|
|
|
|
|
ui(new Ui::AndroidCreateKeystoreCertificate)
|
|
|
|
|
{
|
|
|
|
|
ui->setupUi(this);
|
2016-06-26 22:52:59 +03:00
|
|
|
connect(ui->keystorePassLineEdit, &QLineEdit::textChanged,
|
|
|
|
|
this, &AndroidCreateKeystoreCertificate::checkKeystorePassword);
|
|
|
|
|
connect(ui->keystoreRetypePassLineEdit, &QLineEdit::textChanged,
|
|
|
|
|
this, &AndroidCreateKeystoreCertificate::checkKeystorePassword);
|
|
|
|
|
connect(ui->certificatePassLineEdit, &QLineEdit::textChanged,
|
|
|
|
|
this, &AndroidCreateKeystoreCertificate::checkCertificatePassword);
|
|
|
|
|
connect(ui->certificateRetypePassLineEdit, &QLineEdit::textChanged,
|
|
|
|
|
this, &AndroidCreateKeystoreCertificate::checkCertificatePassword);
|
|
|
|
|
connect(ui->certificateAliasLineEdit, &QLineEdit::textChanged,
|
|
|
|
|
this, &AndroidCreateKeystoreCertificate::checkCertificateAlias);
|
|
|
|
|
connect(ui->countryLineEdit, &QLineEdit::textChanged,
|
|
|
|
|
this, &AndroidCreateKeystoreCertificate::checkCountryCode);
|
2020-06-25 13:37:29 +02:00
|
|
|
connect(ui->buttonBox, &QDialogButtonBox::rejected,
|
|
|
|
|
this, &QDialog::reject);
|
|
|
|
|
connect(ui->keystorePassLineEdit,
|
|
|
|
|
&QLineEdit::editingFinished,
|
|
|
|
|
ui->keystoreRetypePassLineEdit,
|
|
|
|
|
QOverload<>::of(&QLineEdit::setFocus));
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AndroidCreateKeystoreCertificate::~AndroidCreateKeystoreCertificate()
|
|
|
|
|
{
|
|
|
|
|
delete ui;
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-28 13:49:26 +02:00
|
|
|
Utils::FilePath 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()
|
|
|
|
|
{
|
2020-06-10 12:26:57 +02:00
|
|
|
if (!ui->countryLineEdit->text().contains(QRegularExpression("[A-Z]{2}"))) {
|
2013-08-29 18:53:52 +02:00
|
|
|
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;
|
|
|
|
|
|
2019-05-28 13:49:26 +02:00
|
|
|
m_keystoreFilePath = Utils::FilePath::fromString(QFileDialog::getSaveFileName(this, tr("Keystore Filename"),
|
2012-04-24 15:49:09 +02:00
|
|
|
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("\\,"))));
|
|
|
|
|
|
2020-01-15 19:10:34 +01:00
|
|
|
if (!ui->organizationUnitLineEdit->text().isEmpty())
|
2012-04-18 20:30:57 +03:00
|
|
|
distinguishedNames += QLatin1String(", OU=") + ui->organizationUnitLineEdit->text().replace(QLatin1Char(','), QLatin1String("\\,"));
|
|
|
|
|
|
2020-01-15 19:10:34 +01:00
|
|
|
if (!ui->stateNameLineEdit->text().isEmpty())
|
2012-04-18 20:30:57 +03:00
|
|
|
distinguishedNames += QLatin1String(", S=") + ui->stateNameLineEdit->text().replace(QLatin1Char(','), QLatin1String("\\,"));
|
|
|
|
|
|
2019-06-06 16:27:55 +02:00
|
|
|
const CommandLine command(AndroidConfigurations::currentConfig().keytoolPath(),
|
|
|
|
|
{ "-genkey", "-keyalg", "RSA",
|
|
|
|
|
"-keystore", m_keystoreFilePath.toString(),
|
|
|
|
|
"-storepass", keystorePassword(),
|
|
|
|
|
"-alias", certificateAlias(),
|
|
|
|
|
"-keysize", ui->keySizeSpinBox->text(),
|
|
|
|
|
"-validity", ui->validitySpinBox->text(),
|
|
|
|
|
"-keypass", certificatePassword(),
|
|
|
|
|
"-dname", distinguishedNames});
|
|
|
|
|
|
|
|
|
|
SynchronousProcess genKeyCertProc;
|
2016-04-29 16:52:58 +02:00
|
|
|
genKeyCertProc.setTimeoutS(15);
|
2019-06-06 16:27:55 +02:00
|
|
|
SynchronousProcessResponse response = genKeyCertProc.run(command);
|
2012-04-18 20:30:57 +03:00
|
|
|
|
2016-04-29 16:52:58 +02:00
|
|
|
if (response.result != Utils::SynchronousProcessResponse::Finished || response.exitCode != 0) {
|
|
|
|
|
QMessageBox::critical(this, tr("Error"),
|
2019-06-06 16:27:55 +02:00
|
|
|
response.exitMessage(command.executable().toString(), 15) + '\n' + response.allOutput());
|
2012-04-18 20:30:57 +03:00
|
|
|
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;
|
|
|
|
|
}
|