<?php
/*
*********************************************************************************************************
* daloRADIUS - RADIUS Web Platform
* Copyright (C) 2007 - Liran Tal <hide@address.com> All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*********************************************************************************************************
*
* Authors: Liran Tal <hide@address.com>
*
*********************************************************************************************************
*/
include (dirname(__FILE__).'/config_read.php');
include (dirname(__FILE__).'/tableConventions.php');
// setup database connectio information according to the session's location name which is held in $SESSION['location_name'].
// this is introduced in order to provide daloRADIUS to authenticate and manage several database backends without having to
// install several web directories of daloradius
if ((isset($_SESSION['location_name'])) && ($_SESSION['location_name'] == "default")) {
$mydbEngine = $configValues['CONFIG_DB_ENGINE'];
$mydbUser = $configValues['CONFIG_DB_USER'];
$mydbPass = $configValues['CONFIG_DB_PASS'];
$mydbHost = $configValues['CONFIG_DB_HOST'];
$mydbName = $configValues['CONFIG_DB_NAME'];
$dbConnectString = $mydbEngine . "://".$mydbUser.":".$mydbPass."@".
$mydbHost."/".$mydbName;
} elseif ((isset($_SESSION['location_name'])) && ($_SESSION['location_name'] != "default")) {
$mydbEngine = $configValues['CONFIG_LOCATIONS'][$_SESSION['location_name']]['Engine'];
$mydbUser = $configValues['CONFIG_LOCATIONS'][$_SESSION['location_name']]['Username'];
$mydbPass = $configValues['CONFIG_LOCATIONS'][$_SESSION['location_name']]['Password'];
$mydbHost = $configValues['CONFIG_LOCATIONS'][$_SESSION['location_name']]['Hostname'];
$mydbName = $configValues['CONFIG_LOCATIONS'][$_SESSION['location_name']]['Database'];
$dbConnectString = $mydbEngine . "://".$mydbUser.":".$mydbPass."@".
$mydbHost."/".$mydbName;
} else {
// TODO
// requires handling of un-initialized session variable incase opendb.php is called not inside
// a session for some reason. requires further handling, possibly a log file entry
//exit;
$mydbEngine = $configValues['CONFIG_DB_ENGINE'];
$mydbUser = $configValues['CONFIG_DB_USER'];
$mydbPass = $configValues['CONFIG_DB_PASS'];
$mydbHost = $configValues['CONFIG_DB_HOST'];
$mydbName = $configValues['CONFIG_DB_NAME'];
$dbConnectString = $mydbEngine . "://".$mydbUser.":".$mydbPass."@".
$mydbHost."/".$mydbName;
}
// we introduced support for php's database abstraction layer which simplifies database connections
// to different technologies like mysql, oracle, postgresql, etc...
// until everything is completely migrated we will leave these commented out
include_once ('DB.php');
$dbSocket = DB::connect($dbConnectString);
if (DB::isError ($dbSocket))
die ("<b>Database connection error</b><br/>
<b>Error Message</b>: " . $dbSocket->getMessage () . "<br/>" .
"<b>Debug</b>: " . $dbSocket->getDebugInfo() . "<br/>");
include_once ('errorHandling.php'); // we declare the errorHandler() function in errorHandling.php
$dbSocket->setErrorHandling(PEAR_ERROR_CALLBACK, 'errorHandler'); // setting errorHandler function for the dbSocket obj
?>