mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-13 17:38:32 +03:00
[cse] Call the CSR job.
There's something wrong on the CSR job that I need to discover.
This commit is contained in:
parent
304231811d
commit
307dfd195c
2 changed files with 20 additions and 10 deletions
|
@ -148,13 +148,11 @@ QString ClientSideEncryption::generateCSR(EVP_PKEY *keyPair)
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
int nVersion = 1;
|
int nVersion = 1;
|
||||||
|
|
||||||
X509_REQ *x509_req = NULL;
|
X509_REQ *x509_req = nullptr;
|
||||||
auto out = BIO_new(BIO_s_mem());
|
auto out = BIO_new(BIO_s_mem());
|
||||||
QString output;
|
QByteArray output("csr=\"");
|
||||||
char data[80];
|
char data[80];
|
||||||
|
SignPublicKeyApiJob *job = nullptr;
|
||||||
// auto out = BIO_new_file("/home/tcanabrava/.nextcloud-keys/request.pem","w");
|
|
||||||
|
|
||||||
|
|
||||||
// 2. set version of x509 req
|
// 2. set version of x509 req
|
||||||
x509_req = X509_REQ_new();
|
x509_req = X509_REQ_new();
|
||||||
|
@ -191,14 +189,18 @@ QString ClientSideEncryption::generateCSR(EVP_PKEY *keyPair)
|
||||||
if (output.endsWith("-----END CERTIFICATE REQUEST-----"))
|
if (output.endsWith("-----END CERTIFICATE REQUEST-----"))
|
||||||
break;
|
break;
|
||||||
} while (ret > 0 );
|
} while (ret > 0 );
|
||||||
|
output += "\"";
|
||||||
if (ret != 1) {
|
|
||||||
qCInfo(lcCse()) << "Error saving the csr file";
|
|
||||||
}
|
|
||||||
|
|
||||||
qCInfo(lcCse()) << "Returning the certificate";
|
qCInfo(lcCse()) << "Returning the certificate";
|
||||||
qCInfo(lcCse()) << output;
|
qCInfo(lcCse()) << output;
|
||||||
|
|
||||||
|
job = new SignPublicKeyApiJob(_account, baseUrl + "public-key", this);
|
||||||
|
job->setCsr(output);
|
||||||
|
connect(job, &SignPublicKeyApiJob::jsonReceived, [this](const QJsonDocument& doc, int retCode) {
|
||||||
|
qCInfo(lcCse()) << retCode;
|
||||||
|
qCInfo(lcCse()) << doc;
|
||||||
|
});
|
||||||
|
job->start();
|
||||||
|
|
||||||
free_all:
|
free_all:
|
||||||
X509_REQ_free(x509_req);
|
X509_REQ_free(x509_req);
|
||||||
|
|
|
@ -958,6 +958,11 @@ void SignPublicKeyApiJob::start()
|
||||||
QNetworkRequest req;
|
QNetworkRequest req;
|
||||||
req.setRawHeader("OCS-APIREQUEST", "true");
|
req.setRawHeader("OCS-APIREQUEST", "true");
|
||||||
QUrl url = Utility::concatUrlPath(account()->url(), path());
|
QUrl url = Utility::concatUrlPath(account()->url(), path());
|
||||||
|
QList<QPair<QString, QString>> params = {
|
||||||
|
qMakePair(QString::fromLatin1("format"), QString::fromLatin1("json"))
|
||||||
|
};
|
||||||
|
url.setQueryItems(params);
|
||||||
|
|
||||||
sendRequest("POST", url, req, &_csr);
|
sendRequest("POST", url, req, &_csr);
|
||||||
AbstractNetworkJob::start();
|
AbstractNetworkJob::start();
|
||||||
}
|
}
|
||||||
|
@ -965,7 +970,10 @@ void SignPublicKeyApiJob::start()
|
||||||
bool SignPublicKeyApiJob::finished()
|
bool SignPublicKeyApiJob::finished()
|
||||||
{
|
{
|
||||||
qCInfo(lcSignPublicKeyApiJob()) << "Sending CSR ended with" << path() << errorString() << reply()->attribute(QNetworkRequest::HttpStatusCodeAttribute);
|
qCInfo(lcSignPublicKeyApiJob()) << "Sending CSR ended with" << path() << errorString() << reply()->attribute(QNetworkRequest::HttpStatusCodeAttribute);
|
||||||
qCInfo(lcSignPublicKeyApiJob()) << reply()->readAll();
|
|
||||||
|
QJsonParseError error;
|
||||||
|
auto json = QJsonDocument::fromJson(reply()->readAll(), &error);
|
||||||
|
emit jsonReceived(json, reply()->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt());
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace OCC
|
} // namespace OCC
|
||||||
|
|
Loading…
Reference in a new issue