aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2011-05-09 08:13:17 +0200
committerChristian Weiske <cweiske@cweiske.de>2011-05-09 08:13:17 +0200
commit2fba3020034cae12c244713311a7c76d5a6a4800 (patch)
tree4fb996459732465bbd87489d7d16d767c53720e8 /src
parent6447ca718686ea240532c2c56c4a23091c25a006 (diff)
downloadsemanticscuttle-2fba3020034cae12c244713311a7c76d5a6a4800.tar.gz
semanticscuttle-2fba3020034cae12c244713311a7c76d5a6a4800.tar.bz2
automatically register SSL client cert when user registers
Diffstat (limited to 'src')
-rw-r--r--src/SemanticScuttle/Service/User/SslClientCert.php27
1 files changed, 25 insertions, 2 deletions
diff --git a/src/SemanticScuttle/Service/User/SslClientCert.php b/src/SemanticScuttle/Service/User/SslClientCert.php
index 7b0c1eb..9e7b2c4 100644
--- a/src/SemanticScuttle/Service/User/SslClientCert.php
+++ b/src/SemanticScuttle/Service/User/SslClientCert.php
@@ -85,10 +85,32 @@ class SemanticScuttle_Service_User_SslClientCert extends SemanticScuttle_DbServi
*/
public function registerCurrentCertificate($uId)
{
- //FIXME
+ $serial = $_SERVER['SSL_CLIENT_M_SERIAL'];
+ $clientIssuerDn = $_SERVER['SSL_CLIENT_I_DN'];
+
+ $query = 'INSERT INTO ' . $this->getTableName()
+ . ' '. $this->db->sql_build_array(
+ 'INSERT', array(
+ 'uId' => $uId,
+ 'sslSerial' => $serial,
+ 'sslClientIssuerDn' => $clientIssuerDn,
+ 'sslName' => $_SERVER['SSL_CLIENT_S_DN_CN'],
+ 'sslEmail' => $_SERVER['SSL_CLIENT_S_DN_Email']
+ )
+ );
+ if (!($dbresult = $this->db->sql_query($query))) {
+ message_die(
+ GENERAL_ERROR, 'Could not load user for client certificate',
+ '', __LINE__, __FILE__, $query, $this->db
+ );
+ return false;
+ }
+
+ return true;
}
+
/**
* Takes values from the currently available SSL client certificate
* and adds the available profile data to the user.
@@ -109,8 +131,9 @@ class SemanticScuttle_Service_User_SslClientCert extends SemanticScuttle_DbServi
}
if (count($arData)) {
+ $us = SemanticScuttle_Service_Factory::get('User');
foreach ($arData as $column => $value) {
- $userservice->_updateuser($uId, $column, $value);
+ $us->_updateuser($uId, $column, $value);
}
}
return $arData;