1
0
mirror of https://github.com/Yubico/yubikey-val.git synced 2025-04-06 00:57:43 +02:00

Refactor.

- parse request before opening up a database connection
	and init'ing synclib.
This commit is contained in:
Jean Paul Galea 2015-07-17 00:03:41 +02:00
parent 552c3f8939
commit 7d4a2940d6

View File

@ -54,13 +54,6 @@ if (in_array($ipaddr, $allowed, TRUE) === FALSE) {
}
$sync = new SyncLib('ykval-sync:synclib');
$sync->addField('ip', $ipaddr);
if (! $sync->isConnected()) {
sendResp(S_BACKEND_ERROR, $myLog);
}
// define requirements on protocol
$syncParams = array(
'modified' => NULL,
@ -87,6 +80,13 @@ foreach ($syncParams as $param=>$value) {
$myLog->log(LOG_INFO, $tmp_log);
$sync = new SyncLib('ykval-sync:synclib');
$sync->addField('ip', $ipaddr);
if (! $sync->isConnected()) {
sendResp(S_BACKEND_ERROR, $myLog);
}
// at this point we should have the otp so let's add it to the logging module
$myLog->addField('otp', $syncParams['otp']);
$sync->addField('otp', $syncParams['otp']);