summaryrefslogtreecommitdiffstats
path: root/etc/inc/voucher.inc
diff options
context:
space:
mode:
authorRenato Botelho <renato.botelho@bluepex.com>2010-09-08 10:20:04 -0300
committerRenato Botelho <renato.botelho@bluepex.com>2010-09-08 10:20:04 -0300
commit8c04b1ae0a9bf0d41746824c3d34d24ba2d54d9b (patch)
treececf571643c08858880695d453d4f199649423f9 /etc/inc/voucher.inc
parent86385ef36f81052afc3febdbce3a3af49373c7a6 (diff)
parent245da5436bc5a30d6c65d68dbd54a56dca1ec896 (diff)
downloadpfsense-8c04b1ae0a9bf0d41746824c3d34d24ba2d54d9b.zip
pfsense-8c04b1ae0a9bf0d41746824c3d34d24ba2d54d9b.tar.gz
Merge remote branch 'mainline/master' into inc
Conflicts: etc/inc/filter.inc etc/inc/pkg-utils.inc etc/inc/service-utils.inc etc/inc/system.inc etc/inc/vpn.inc
Diffstat (limited to 'etc/inc/voucher.inc')
-rw-r--r--etc/inc/voucher.inc127
1 files changed, 68 insertions, 59 deletions
diff --git a/etc/inc/voucher.inc b/etc/inc/voucher.inc
index e746d8a..58c6dc5 100644
--- a/etc/inc/voucher.inc
+++ b/etc/inc/voucher.inc
@@ -33,6 +33,60 @@
/* include all configuration functions */
+function xmlrpc_sync_used_voucher($voucher_received, $syncip, $port, $password, $username) {
+ global $g, $config;
+ require_once("xmlrpc.inc");
+ if($port == "443")
+ $url = "https://{$syncip}:{$port}";
+ else
+ $url = "http://{$syncip}:{$port}";
+
+ /* Construct code that is run on remote machine */
+ $method = 'pfsense.exec_php';
+ $execcmd = <<<EOF
+ require_once('/etc/inc/voucher.inc');
+ \$timeleft = voucher_auth($voucher_received);
+ \$toreturn = array();
+ \$toreturn['timeleft'] = \$timeleft;
+ \$toreturn['voucher']['roll'] = \$config['voucher']['roll'];
+
+EOF;
+
+ /* assemble xmlrpc payload */
+ $params = array(
+ XML_RPC_encode($password),
+ XML_RPC_encode($execcmd)
+ );
+
+ log_error("Captive Portal Voucher XMLRPC sync data {$url}:{$port}.");
+ $msg = new XML_RPC_Message($method, $params);
+ $cli = new XML_RPC_Client('/xmlrpc.php', $url, $port);
+ $cli->setCredentials($username, $password);
+ $resp = $cli->send($msg, "250");
+ if(!$resp) {
+ $error = "A communications error occurred while attempting CaptivePortalVoucherSync XMLRPC sync with {$url}:{$port} (pfsense.exec_php).";
+ log_error($error);
+ file_notice("CaptivePortalVoucherSync", $error, "Communications error occurred", "");
+ return array("timeleft" => "0");
+ } elseif($resp->faultCode()) {
+ $cli->setDebug(1);
+ $resp = $cli->send($msg, "250");
+ $error = "An error code was received while attempting CaptivePortalVoucherSync XMLRPC sync with {$url}:{$port} - Code " . $resp->faultCode() . ": " . $resp->faultString();
+ log_error($error);
+ file_notice("CaptivePortalVoucherSync", $error, "Error code received", "");
+ return array("timeleft" => "0");
+ } else {
+ log_error("CaptivePortalVoucherSync XMLRPC reload data success with {$url}:{$port} (pfsense.exec_php).");
+ }
+ $toreturn = XML_RPC_Decode($resp->value());
+ if(count($toreturn['voucher']['roll']) <> count($config['voucher']['roll'])) {
+ $config['voucher']['roll'] = $toreturn['voucher']['roll'];
+ write_config("Captive Portal Voucher database synchronized with {$url}");
+ voucher_configure();
+ }
+ return $toreturn['timeleft'];
+}
+
/*
*Authenticate a voucher and return the remaining time credit in minutes
* if $test is set, don't mark the voucher as used nor add it to the list
@@ -47,6 +101,16 @@ function voucher_auth($voucher_received, $test = 0) {
$voucherlck = lock('voucher');
+ // XMLRPC Call over to the master Voucher node
+ $a_voucher = &$config['voucher'];
+ if($a_voucher['vouchersyncdbip']) {
+ $syncip = $a_voucher['vouchersyncdbip'];
+ $syncport = $a_voucher['vouchersyncport'];
+ $syncpass = $a_voucher['vouchersyncpass'];
+ $vouchersyncusername = $a_voucher['vouchersyncusername'];
+ $remote_time_used = xmlrpc_sync_used_voucher($voucher_received, $syncip, $syncport, $syncpass, $vouchersyncusername);
+ }
+
// read rolls into assoc array with rollid as key and minutes as value
$a_roll = &$config['voucher']['roll'];
foreach ($a_roll as $rollent) {
@@ -127,7 +191,7 @@ function voucher_auth($voucher_received, $test = 0) {
} else {
$test_result[] = sprintf(gettext("Access granted for %d Minutes in total."), $total_minutes);
}
- unlock($voucherlck);
+ unlock($voucherlck);
return $test_result;
}
@@ -142,17 +206,10 @@ function voucher_auth($voucher_received, $test = 0) {
return $total_minutes; // well, at least one voucher had errors. Say NO ACCESS
}
- // XMLRPC Call over to the master Voucher node
- $a_voucher = &$config['voucher'];
- if($a_voucher['vouchersyncdbip']) {
- $syncip = $a_voucher['vouchersyncdbip'];
- $syncport = $a_voucher['vouchersyncport'];
- $syncpass = $a_voucher['vouchersyncpass'];
- $syncpass = $a_voucher['vouchersyncusername'];
- $remote_time_used = sync_used_voucher($voucher_received, $syncip, $syncport, $syncpass, $vouchersyncusername);
- if($remote_time_used['timeleft'] < 1)
+ // If we did a XMLRPC sync earlier check the timeleft
+ if($a_voucher['vouchersyncdbip'])
+ if($remote_time_used['timeleft'] < $total_minutes)
$total_minutes = $remote_time_used['timeleft'];
- }
// All given vouchers were valid and this isn't simply a test.
// Write back the used DB's
@@ -191,54 +248,6 @@ function voucher_auth($voucher_received, $test = 0) {
return $total_minutes;
}
-function sync_used_voucher($voucher_received, $syncip, $port, $password, $username) {
- require_once("xmlrpc.inc");
- if($port == "443")
- $url = "https://{$syncip}:{$port}";
- else
- $url = "http://{$syncip}:{$port}";
-
- /* Construct code that is run on remote machine */
- $method = 'pfsense.exec_php';
- $execcmd = <<<EOF
- require_once('/etc/inc/voucher.inc');
- \$timeleft = voucher_auth($voucher_received);
- \$toreturn = array();
- \$toreturn['timeleft'] = \$timeleft;
-
-EOF;
-
- /* assemble xmlrpc payload */
- $params = array(
- XML_RPC_encode($password),
- XML_RPC_encode($execcmd)
- );
-
- log_error("voucher XMLRPC sync data {$url}:{$port}.");
- $msg = new XML_RPC_Message($method, $params);
- $cli = new XML_RPC_Client('/xmlrpc.php', $url, $port);
- $cli->setCredentials('admin', $password);
- $resp = $cli->send($msg, "250");
- if(!$resp) {
- $error = "A communications error occurred while attempting CaptivePortalVoucherSync XMLRPC sync with {$url}:{$port} (pfsense.exec_php).";
- log_error($error);
- file_notice("CaptivePortalVoucherSync", $error, "Communications error occurred", "");
- return array("timeleft" => "0");
- } elseif($resp->faultCode()) {
- $cli->setDebug(1);
- $resp = $cli->send($msg, "250");
- $error = "An error code was received while attempting CaptivePortalVoucherSync XMLRPC sync with {$url}:{$port} - Code " . $resp->faultCode() . ": " . $resp->faultString();
- log_error($error);
- file_notice("CaptivePortalVoucherSync", $error, "Error code received", "");
- return array("timeleft" => "0");
- } else {
- log_error("CaptivePortalVoucherSync XMLRPC reload data success with {$url}:{$port} (pfsense.exec_php).");
- }
- $timeleft = XML_RPC_Decode($resp->value());
- //print_r($timeleft);
- return $timeleft;
-}
-
function voucher_configure() {
global $config, $g;
OpenPOWER on IntegriCloud