2012-06-04 16:58:40 +02:00
|
|
|
<?php
|
|
|
|
|
/*
|
|
|
|
|
FusionPBX
|
|
|
|
|
Version: MPL 1.1
|
|
|
|
|
|
|
|
|
|
The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
|
1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
|
the License. You may obtain a copy of the License at
|
|
|
|
|
http://www.mozilla.org/MPL/
|
|
|
|
|
|
|
|
|
|
Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
|
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
|
for the specific language governing rights and limitations under the
|
|
|
|
|
License.
|
|
|
|
|
|
|
|
|
|
The Original Code is FusionPBX
|
|
|
|
|
|
|
|
|
|
The Initial Developer of the Original Code is
|
|
|
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
|
|
|
Portions created by the Initial Developer are Copyright (C) 2008-2012
|
|
|
|
|
the Initial Developer. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
Contributor(s):
|
|
|
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
|
|
|
Raymond Chandler <intralanman@gmail.com>
|
|
|
|
|
*/
|
|
|
|
|
include "root.php";
|
2013-07-06 08:46:07 +02:00
|
|
|
require_once "resources/functions.php";
|
2012-06-04 16:58:40 +02:00
|
|
|
|
|
|
|
|
//set defaults
|
2014-08-17 09:09:57 +02:00
|
|
|
if (isset($dbtype) > 0) {
|
|
|
|
|
$db_type = $dbtype;
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
2014-08-17 09:09:57 +02:00
|
|
|
if (isset($dbhost) > 0) {
|
|
|
|
|
$db_host = $dbhost;
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
2014-08-17 09:09:57 +02:00
|
|
|
if (isset($dbport) > 0) {
|
|
|
|
|
$db_port = $dbport;
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
2014-08-17 09:09:57 +02:00
|
|
|
if (isset($dbname) > 0) {
|
|
|
|
|
$db_name = $dbname;
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
2014-08-17 09:09:57 +02:00
|
|
|
if (isset($dbusername) > 0) {
|
|
|
|
|
$db_username = $dbusername;
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
2014-08-17 09:09:57 +02:00
|
|
|
if (isset($dbpassword) > 0) {
|
|
|
|
|
$db_password = $dbpassword;
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
2014-08-17 09:09:57 +02:00
|
|
|
if (isset($db_file_path) > 0) {
|
|
|
|
|
$db_path = $db_file_path;
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
2014-08-17 09:09:57 +02:00
|
|
|
if (isset($dbfilename) > 0) {
|
|
|
|
|
$db_name = $dbfilename;
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!function_exists('get_db_field_names')) {
|
|
|
|
|
function get_db_field_names($db, $table, $db_name='fusionpbx') {
|
|
|
|
|
$query = sprintf('SELECT * FROM %s LIMIT 1', $table);
|
|
|
|
|
foreach ($db->query($query, PDO::FETCH_ASSOC) as $row) {
|
|
|
|
|
return array_keys($row);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// if we're still here, we need to try something else
|
|
|
|
|
$fields = array();
|
|
|
|
|
$driver = $db->getAttribute(PDO::ATTR_DRIVER_NAME);
|
|
|
|
|
if ($driver == 'sqlite') {
|
|
|
|
|
$query = sprintf("Pragma table_info(%s);", $table);
|
|
|
|
|
$stmt = $db->prepare($query);
|
|
|
|
|
$result = $stmt->execute();
|
|
|
|
|
$rows = $stmt->fetchAll(PDO::FETCH_NAMED);
|
|
|
|
|
//printf('<pre>%s</pre>', print_r($rows, true));
|
|
|
|
|
$row_count = count($rows);
|
|
|
|
|
//printf('<pre>%s</pre>', print_r($rows, true));
|
|
|
|
|
for ($i = 0; $i < $row_count; $i++) {
|
|
|
|
|
array_push($fields, $rows[$i]['name']);
|
|
|
|
|
}
|
|
|
|
|
return $fields;
|
|
|
|
|
} else {
|
|
|
|
|
$query = sprintf("SELECT * FROM information_schema.columns
|
|
|
|
|
WHERE table_schema='%s' AND table_name='%s';"
|
|
|
|
|
, $db_name, $table
|
|
|
|
|
);
|
|
|
|
|
$stmt = $db->prepare($query);
|
|
|
|
|
$result = $stmt->execute();
|
|
|
|
|
$rows = $stmt->fetchAll(PDO::FETCH_NAMED);
|
|
|
|
|
$row_count = count($rows);
|
|
|
|
|
//printf('<pre>%s</pre>', print_r($rows, true));
|
|
|
|
|
for ($i = 0; $i < $row_count; $i++) {
|
|
|
|
|
array_push($fields, $rows[$i]['COLUMN_NAME']);
|
|
|
|
|
}
|
|
|
|
|
return $fields;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($db_type == "sqlite") {
|
2012-06-24 08:45:12 +02:00
|
|
|
|
|
|
|
|
//set the document_root
|
|
|
|
|
if (strlen($document_root) == 0) {
|
|
|
|
|
$document_root = $_SERVER["DOCUMENT_ROOT"];
|
|
|
|
|
}
|
|
|
|
|
|
2012-06-04 16:58:40 +02:00
|
|
|
//prepare the database connection
|
|
|
|
|
if (strlen($db_name) == 0) {
|
|
|
|
|
//if (strlen($_SERVER["SERVER_NAME"]) == 0) { $_SERVER["SERVER_NAME"] = "http://localhost"; }
|
|
|
|
|
$server_name = $_SERVER["SERVER_NAME"];
|
|
|
|
|
$server_name = str_replace ("www.", "", $server_name);
|
|
|
|
|
//$server_name = str_replace (".", "_", $server_name);
|
|
|
|
|
$db_name_short = $server_name;
|
|
|
|
|
$db_name = $server_name.'.db';
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$db_name_short = $db_name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$db_path = realpath($db_path);
|
|
|
|
|
if (file_exists($db_path.'/'.$db_name)) {
|
|
|
|
|
//echo "database file exists<br>";
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
if (is_writable($db_path.'/'.$db_name)) {
|
|
|
|
|
//use database in current location
|
|
|
|
|
}
|
2013-03-26 19:35:19 +01:00
|
|
|
else {
|
|
|
|
|
//not writable
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "The database ".$db_path."/".$db_name." does not exist or is not writable.";
|
|
|
|
|
exit;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!function_exists('php_md5')) {
|
|
|
|
|
function php_md5($string) {
|
|
|
|
|
return md5($string);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!function_exists('php_unix_timestamp')) {
|
|
|
|
|
function php_unix_timestamp($string) {
|
|
|
|
|
return strtotime($string);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!function_exists('php_now')) {
|
|
|
|
|
function php_now() {
|
|
|
|
|
return date("Y-m-d H:i:s");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!function_exists('php_left')) {
|
|
|
|
|
function php_left($string, $num) {
|
|
|
|
|
return substr($string, 0, $num);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!function_exists('php_right')) {
|
|
|
|
|
function php_right($string, $num) {
|
|
|
|
|
return substr($string, (strlen($string)-$num), strlen($string));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//database connection
|
|
|
|
|
try {
|
|
|
|
|
//create the database connection object
|
|
|
|
|
//$db = new PDO('sqlite2:example.db'); //sqlite 2
|
|
|
|
|
//$db = new PDO('sqlite::memory:'); //sqlite 3
|
|
|
|
|
$db = new PDO('sqlite:'.$db_path.'/'.$db_name); //sqlite 3
|
|
|
|
|
//enable foreign key constraints
|
|
|
|
|
$db->query('PRAGMA foreign_keys = ON;');
|
|
|
|
|
//add additional functions to SQLite so that they are accessible inside SQL
|
|
|
|
|
//bool PDO::sqliteCreateFunction ( string function_name, callback callback [, int num_args] )
|
|
|
|
|
$db->sqliteCreateFunction('md5', 'php_md5', 1);
|
|
|
|
|
$db->sqliteCreateFunction('unix_timestamp', 'php_unix_timestamp', 1);
|
|
|
|
|
$db->sqliteCreateFunction('now', 'php_now', 0);
|
|
|
|
|
$db->sqliteCreateFunction('sqlitedatatype', 'phpsqlitedatatype', 2);
|
|
|
|
|
$db->sqliteCreateFunction('strleft', 'php_left', 2);
|
|
|
|
|
$db->sqliteCreateFunction('strright', 'php_right', 2);
|
|
|
|
|
}
|
|
|
|
|
catch (PDOException $error) {
|
|
|
|
|
print "error: " . $error->getMessage() . "<br/>";
|
|
|
|
|
die();
|
|
|
|
|
}
|
|
|
|
|
} //end if db_type sqlite
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ($db_type == "mysql") {
|
|
|
|
|
//database connection
|
|
|
|
|
try {
|
|
|
|
|
//required for mysql_real_escape_string
|
|
|
|
|
if (function_exists(mysql_connect)) {
|
|
|
|
|
$mysql_connection = mysql_connect($db_host, $db_username, $db_password);
|
|
|
|
|
}
|
|
|
|
|
//mysql pdo connection
|
|
|
|
|
if (strlen($db_host) == 0 && strlen($db_port) == 0) {
|
|
|
|
|
//if both host and port are empty use the unix socket
|
2014-04-26 20:53:58 +02:00
|
|
|
$db = new PDO("mysql:host=$db_host;unix_socket=/var/run/mysqld/mysqld.sock;dbname=$db_name", $db_username, $db_password, array(PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8'));
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
if (strlen($db_port) == 0) {
|
|
|
|
|
//leave out port if it is empty
|
|
|
|
|
$db = new PDO("mysql:host=$db_host;dbname=$db_name;", $db_username, $db_password, array(
|
2014-04-26 20:53:58 +02:00
|
|
|
PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8',
|
2012-06-04 16:58:40 +02:00
|
|
|
PDO::ATTR_ERRMODE,
|
|
|
|
|
PDO::ERRMODE_EXCEPTION
|
|
|
|
|
));
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$db = new PDO("mysql:host=$db_host;port=$db_port;dbname=$db_name;", $db_username, $db_password, array(
|
2014-04-26 20:53:58 +02:00
|
|
|
PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8',
|
2012-06-04 16:58:40 +02:00
|
|
|
PDO::ATTR_ERRMODE,
|
|
|
|
|
PDO::ERRMODE_EXCEPTION
|
|
|
|
|
));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (PDOException $error) {
|
|
|
|
|
print "error: " . $error->getMessage() . "<br/>";
|
|
|
|
|
die();
|
|
|
|
|
}
|
|
|
|
|
} //end if db_type mysql
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ($db_type == "pgsql") {
|
|
|
|
|
//database connection
|
|
|
|
|
try {
|
|
|
|
|
if (strlen($db_host) > 0) {
|
|
|
|
|
if (strlen($db_port) == 0) { $db_port = "5432"; }
|
|
|
|
|
$db = new PDO("pgsql:host=$db_host port=$db_port dbname=$db_name user=$db_username password=$db_password");
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$db = new PDO("pgsql:dbname=$db_name user=$db_username password=$db_password");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (PDOException $error) {
|
|
|
|
|
print "error: " . $error->getMessage() . "<br/>";
|
|
|
|
|
die();
|
|
|
|
|
}
|
|
|
|
|
} //end if db_type pgsql
|
|
|
|
|
|
|
|
|
|
//domain list
|
|
|
|
|
if (strlen($_SESSION["domain_uuid"]) == 0) {
|
|
|
|
|
//get the domain
|
|
|
|
|
$domain_array = explode(":", $_SERVER["HTTP_HOST"]);
|
2014-08-17 09:09:57 +02:00
|
|
|
//natural sort domains into array
|
|
|
|
|
$sql = "select domain_name from v_domains";
|
|
|
|
|
$prep_statement = $db->prepare($sql);
|
|
|
|
|
$prep_statement->execute();
|
|
|
|
|
$result = $prep_statement->fetchAll(PDO::FETCH_NAMED);
|
|
|
|
|
if (count($result) > 0) {
|
|
|
|
|
foreach($result as $row) {
|
|
|
|
|
$domain_names[] = $row['domain_name'];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
unset($result, $prep_statement);
|
|
|
|
|
natsort($domain_names);
|
|
|
|
|
//get the domains in the natural sort order
|
|
|
|
|
$n = 1;
|
2014-08-17 09:13:39 +02:00
|
|
|
$sql = "select * from v_domains order by case ";
|
2014-08-17 09:09:57 +02:00
|
|
|
foreach ($domain_names as $dn) {
|
|
|
|
|
$sql .= "when domain_name = '".$dn."' then ".$n." ";
|
|
|
|
|
$n++;
|
|
|
|
|
}
|
|
|
|
|
$sql .= "else ".$n." end ";
|
2012-06-04 16:58:40 +02:00
|
|
|
$prep_statement = $db->prepare($sql);
|
|
|
|
|
$prep_statement->execute();
|
|
|
|
|
$result = $prep_statement->fetchAll(PDO::FETCH_NAMED);
|
|
|
|
|
foreach($result as $row) {
|
|
|
|
|
if (count($result) == 1) {
|
|
|
|
|
$_SESSION["domain_uuid"] = $row["domain_uuid"];
|
|
|
|
|
$_SESSION["domain_name"] = $row['domain_name'];
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
if ($row['domain_name'] == $domain_array[0] || $row['domain_name'] == 'www.'.$domain_array[0]) {
|
|
|
|
|
$_SESSION["domain_uuid"] = $row["domain_uuid"];
|
|
|
|
|
$_SESSION["domain_name"] = $row["domain_name"];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$_SESSION['domains'][$row['domain_uuid']]['domain_uuid'] = $row['domain_uuid'];
|
|
|
|
|
$_SESSION['domains'][$row['domain_uuid']]['domain_name'] = $row['domain_name'];
|
2014-02-25 07:00:40 +01:00
|
|
|
$_SESSION['domains'][$row['domain_uuid']]['domain_description'] = $row['domain_description'];
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
2013-09-27 05:34:23 +02:00
|
|
|
unset($result, $prep_statement);
|
|
|
|
|
}
|
2012-06-04 16:58:40 +02:00
|
|
|
|
2014-07-27 05:34:36 +02:00
|
|
|
//get the software name
|
2014-07-27 05:38:09 +02:00
|
|
|
if (!isset($_SESSION["software_name"])) {
|
2014-07-27 05:34:36 +02:00
|
|
|
$sql = "select * from v_software ";
|
|
|
|
|
$prep_statement = $db->prepare(check_sql($sql));
|
|
|
|
|
if ($prep_statement) {
|
|
|
|
|
$prep_statement->execute();
|
|
|
|
|
$row = $prep_statement->fetch(PDO::FETCH_ASSOC);
|
|
|
|
|
$_SESSION["software_name"] = $row['software_name'];
|
|
|
|
|
}
|
|
|
|
|
unset($prep_statement, $result);
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-11 08:36:24 +02:00
|
|
|
//set the setting arrays
|
|
|
|
|
if (!isset($_SESSION['domain']['menu'])){
|
2013-07-06 09:13:36 +02:00
|
|
|
require "resources/classes/domains.php";
|
2012-10-11 08:36:24 +02:00
|
|
|
$domain = new domains();
|
|
|
|
|
$domain->db = $db;
|
|
|
|
|
$domain->set();
|
2013-09-27 05:34:23 +02:00
|
|
|
}
|
2012-06-04 16:58:40 +02:00
|
|
|
|
|
|
|
|
//set the domain_uuid variable from the session
|
2014-08-17 09:09:57 +02:00
|
|
|
if (strlen($_SESSION["domain_uuid"]) > 0) {
|
2012-06-04 16:58:40 +02:00
|
|
|
$domain_uuid = $_SESSION["domain_uuid"];
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$domain_uuid = uuid();
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-29 06:26:32 +02:00
|
|
|
//check the domain cidr range
|
|
|
|
|
if (is_array($_SESSION['domain']["cidr"])) {
|
|
|
|
|
$found = false;
|
|
|
|
|
foreach($_SESSION['domain']["cidr"] as $cidr) {
|
|
|
|
|
if (check_cidr($cidr, $_SERVER['REMOTE_ADDR'])) {
|
|
|
|
|
$found = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!$found) {
|
|
|
|
|
echo "access denied";
|
|
|
|
|
exit;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//check the api cidr range
|
|
|
|
|
if (is_array($_SESSION['api']["cidr"])) {
|
|
|
|
|
$found = false;
|
|
|
|
|
foreach($_SESSION['api']["cidr"] as $cidr) {
|
|
|
|
|
if (check_cidr($cidr, $_SERVER['REMOTE_ADDR'])) {
|
|
|
|
|
$found = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!$found) {
|
|
|
|
|
unset ($_REQUEST['key']);
|
|
|
|
|
unset ($_POST['key']);
|
|
|
|
|
unset ($_GET['key']);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-06-04 16:58:40 +02:00
|
|
|
?>
|