]> WPIA git - cassiopeia.git/blobdiff - src/mysql.cpp
add: Read the CSR (naive approach)
[cassiopeia.git] / src / mysql.cpp
index 38cb606658511fff675051ac028c1bce0902006c..ab37553ce1899f1fd00c776264398b24209559c8 100644 (file)
@@ -139,6 +139,10 @@ std::shared_ptr<Job> MySQLJobProvider::fetchJob() {
     }
 
     job->id = std::string( row[0], row[0] + l[0] );
+    job->target = std::string( row[1], row[1] + l[1] );
+    job->task = std::string( row[2], row[2] + l[2] );
+    job->from = std::string( row[3], row[3] + l[3] );
+    job->to = std::string( row[4], row[4] + l[4] );
 
     for( unsigned int i = 0; i < num; i++ ) {
         printf( "[%.*s] ", ( int ) l[i], row[i] ? row[i] : "NULL" );
@@ -178,3 +182,38 @@ bool MySQLJobProvider::finishJob( std::shared_ptr<Job> job ) {
 
     return true;
 }
+
+std::shared_ptr<TBSCertificate> MySQLJobProvider::fetchTBSCert( std::shared_ptr<Job> job ) {
+    std::shared_ptr<TBSCertificate> cert = std::shared_ptr<TBSCertificate>( new TBSCertificate() );
+    std::string q = "SELECT CN, subject, md, profile, csr_name, csr_type FROM certs WHERE id='" + this->escape_string( job->id ) + "'";
+
+    int err = 0;
+    std::shared_ptr<MYSQL_RES> res;
+
+    std::tie( err, res ) = query( q );
+
+    if( err ) {
+        return std::shared_ptr<TBSCertificate>();
+    }
+
+    MYSQL_ROW row = mysql_fetch_row( res.get() );
+
+    if( !row ) {
+        return std::shared_ptr<TBSCertificate>();
+    }
+
+    unsigned long* l = mysql_fetch_lengths( res.get() );
+
+    if( !l ) {
+        return std::shared_ptr<TBSCertificate>();
+    }
+
+    cert->CN = std::string( row[0], row[0] + l[0] );
+    cert->subj = std::string( row[1], row[1] + l[1] );
+    cert->md = std::string( row[2], row[2] + l[2] );
+    cert->profile = std::string( row[3], row[3] + l[3] );
+    cert->csr = std::string( row[4], row[4] + l[4] );
+    cert->csr_type = std::string( row[5], row[5] + l[5] );
+
+    return cert;
+}