2011-05-12 14:15:20 +00:00
|
|
|
<?php
|
|
|
|
|
2016-11-11 01:40:53 +00:00
|
|
|
/*
|
|
|
|
* dbFacile - A Database API that should have existed from the start
|
|
|
|
* Version 0.4.3
|
|
|
|
*
|
|
|
|
* This code is covered by the MIT license http://en.wikipedia.org/wiki/MIT_License
|
|
|
|
*
|
|
|
|
* By Alan Szlosek from http://www.greaterscope.net/projects/dbFacile
|
|
|
|
*
|
|
|
|
* The non-OO version of dbFacile. It's a bit simplistic, but gives you the
|
|
|
|
* really useful bits in non-class form.
|
|
|
|
*
|
|
|
|
* Usage
|
|
|
|
* 1. Connect to MySQL as you normally would ... this code uses an existing connection
|
|
|
|
* 2. Use dbFacile as you normally would, without the object context
|
|
|
|
* 3. Oh, and dbFetchAll() is now dbFetchRows()
|
|
|
|
*/
|
|
|
|
|
2018-08-17 15:29:20 -05:00
|
|
|
use Illuminate\Database\QueryException;
|
2018-04-11 10:15:13 -05:00
|
|
|
use LibreNMS\Config;
|
2017-04-06 16:02:37 -05:00
|
|
|
use LibreNMS\Exceptions\DatabaseConnectException;
|
2018-08-17 15:29:20 -05:00
|
|
|
use LibreNMS\DB\Eloquent;
|
2019-03-12 23:59:03 -05:00
|
|
|
use LibreNMS\Util\Laravel;
|
2017-04-06 16:02:37 -05:00
|
|
|
|
2017-07-17 13:02:28 -05:00
|
|
|
function dbIsConnected()
|
|
|
|
{
|
2018-08-17 15:29:20 -05:00
|
|
|
return Eloquent::isConnected();
|
2017-07-17 13:02:28 -05:00
|
|
|
}
|
|
|
|
|
2017-04-06 16:02:37 -05:00
|
|
|
/**
|
|
|
|
* Connect to the database.
|
2019-06-23 00:29:12 -05:00
|
|
|
* Will use global config variables if they are not sent: db_host, db_user, db_pass, db_name, db_port, db_socket
|
2017-04-06 16:02:37 -05:00
|
|
|
*
|
2018-04-11 10:15:13 -05:00
|
|
|
* @param string $db_host
|
|
|
|
* @param string $db_user
|
|
|
|
* @param string $db_pass
|
|
|
|
* @param string $db_name
|
|
|
|
* @param string $db_port
|
|
|
|
* @param string $db_socket
|
2018-08-17 15:29:20 -05:00
|
|
|
* @return \Illuminate\Database\Connection
|
2017-04-06 16:02:37 -05:00
|
|
|
* @throws DatabaseConnectException
|
|
|
|
*/
|
2018-04-11 10:15:13 -05:00
|
|
|
function dbConnect($db_host = null, $db_user = '', $db_pass = '', $db_name = '', $db_port = null, $db_socket = null)
|
2017-04-06 16:02:37 -05:00
|
|
|
{
|
2018-08-17 15:29:20 -05:00
|
|
|
if (Eloquent::isConnected()) {
|
|
|
|
return Eloquent::DB();
|
2017-07-17 13:02:28 -05:00
|
|
|
}
|
|
|
|
|
2019-03-14 13:10:45 -05:00
|
|
|
if (!extension_loaded('pdo_mysql')) {
|
|
|
|
throw new DatabaseConnectException("PHP pdo_mysql extension not loaded!");
|
2017-11-07 14:09:49 -06:00
|
|
|
}
|
|
|
|
|
2018-08-17 15:29:20 -05:00
|
|
|
try {
|
2019-03-17 16:25:38 -05:00
|
|
|
if (!is_null($db_host) || !empty($db_name)) {
|
|
|
|
// legacy connection override
|
|
|
|
\Config::set('database.connections.setup', [
|
|
|
|
"driver" => "mysql",
|
|
|
|
"host" => $db_host,
|
|
|
|
"port" => $db_port,
|
|
|
|
"database" => $db_name,
|
|
|
|
"username" => $db_user,
|
|
|
|
"password" => $db_pass,
|
|
|
|
"unix_socket" => $db_socket,
|
|
|
|
"charset" => "utf8",
|
|
|
|
"collation" => "utf8_unicode_ci",
|
|
|
|
"prefix" => "",
|
|
|
|
"strict" => true,
|
|
|
|
"engine" => null
|
|
|
|
]);
|
|
|
|
\Config::set('database.default', 'setup');
|
2017-04-06 16:02:37 -05:00
|
|
|
}
|
2019-03-17 16:25:38 -05:00
|
|
|
|
|
|
|
Eloquent::boot();
|
2018-08-17 15:29:20 -05:00
|
|
|
} catch (PDOException $e) {
|
|
|
|
throw new DatabaseConnectException($e->getMessage(), $e->getCode(), $e);
|
2017-04-06 16:02:37 -05:00
|
|
|
}
|
|
|
|
|
2018-08-17 15:29:20 -05:00
|
|
|
return Eloquent::DB();
|
2017-04-06 16:02:37 -05:00
|
|
|
}
|
|
|
|
|
2018-08-17 15:29:20 -05:00
|
|
|
/**
|
2016-11-11 01:40:53 +00:00
|
|
|
* Performs a query using the given string.
|
2018-08-17 15:29:20 -05:00
|
|
|
* @param string $sql
|
|
|
|
* @param array $parameters
|
|
|
|
* @return bool if query was successful or not
|
|
|
|
*/
|
|
|
|
function dbQuery($sql, $parameters = [])
|
2016-11-11 01:40:53 +00:00
|
|
|
{
|
2018-08-17 15:29:20 -05:00
|
|
|
try {
|
|
|
|
if (empty($parameters)) {
|
|
|
|
// don't use prepared statements for queries without parameters
|
|
|
|
return Eloquent::DB()->getPdo()->exec($sql) !== false;
|
2016-11-11 01:40:53 +00:00
|
|
|
}
|
|
|
|
|
2018-08-17 20:49:34 -05:00
|
|
|
return Eloquent::DB()->statement($sql, (array)$parameters);
|
2018-08-17 15:29:20 -05:00
|
|
|
} catch (PDOException $pdoe) {
|
|
|
|
dbHandleException(new QueryException($sql, $parameters, $pdoe));
|
|
|
|
return false;
|
2016-11-11 01:40:53 +00:00
|
|
|
}
|
2018-08-17 15:29:20 -05:00
|
|
|
}
|
2016-11-11 01:40:53 +00:00
|
|
|
|
|
|
|
|
2018-08-17 15:29:20 -05:00
|
|
|
/**
|
|
|
|
* @param array $data
|
|
|
|
* @param string $table
|
|
|
|
* @return null|int
|
|
|
|
*/
|
2016-11-11 01:40:53 +00:00
|
|
|
function dbInsert($data, $table)
|
|
|
|
{
|
2016-11-23 00:57:19 -06:00
|
|
|
$time_start = microtime(true);
|
2016-11-11 01:40:53 +00:00
|
|
|
|
2018-08-17 15:29:20 -05:00
|
|
|
$sql = 'INSERT IGNORE INTO `'.$table.'` (`'.implode('`,`', array_keys($data)).'`) VALUES ('.implode(',', dbPlaceHolders($data)).')';
|
2016-11-11 01:40:53 +00:00
|
|
|
|
2018-08-17 15:29:20 -05:00
|
|
|
try {
|
2018-08-17 20:49:34 -05:00
|
|
|
$result = Eloquent::DB()->insert($sql, (array)$data);
|
2018-08-17 15:29:20 -05:00
|
|
|
} catch (PDOException $pdoe) {
|
2018-08-18 12:34:02 -05:00
|
|
|
dbHandleException(new QueryException($sql, $data, $pdoe));
|
2018-08-17 15:29:20 -05:00
|
|
|
}
|
2016-11-11 01:40:53 +00:00
|
|
|
|
2018-08-17 15:29:20 -05:00
|
|
|
recordDbStatistic('insert', $time_start);
|
2016-11-11 01:40:53 +00:00
|
|
|
if ($result) {
|
2018-08-17 15:29:20 -05:00
|
|
|
return Eloquent::DB()->getPdo()->lastInsertId();
|
2016-11-11 01:40:53 +00:00
|
|
|
} else {
|
2018-08-17 15:29:20 -05:00
|
|
|
return null;
|
2016-11-11 01:40:53 +00:00
|
|
|
}
|
|
|
|
}//end dbInsert()
|
|
|
|
|
|
|
|
|
2018-08-17 15:29:20 -05:00
|
|
|
/**
|
2016-11-11 01:40:53 +00:00
|
|
|
* Passed an array and a table name, it attempts to insert the data into the table.
|
|
|
|
* $data is an array (rows) of key value pairs. keys are fields. Rows need to have same fields.
|
|
|
|
* Check for boolean false to determine whether insert failed
|
2018-08-17 15:29:20 -05:00
|
|
|
*
|
|
|
|
* @param array $data
|
|
|
|
* @param string $table
|
|
|
|
* @return bool
|
|
|
|
*/
|
2016-11-11 01:40:53 +00:00
|
|
|
function dbBulkInsert($data, $table)
|
|
|
|
{
|
2016-11-23 00:57:19 -06:00
|
|
|
$time_start = microtime(true);
|
2018-08-17 15:29:20 -05:00
|
|
|
|
2017-09-03 13:58:39 -05:00
|
|
|
// check that data isn't an empty array
|
|
|
|
if (empty($data)) {
|
2016-11-11 01:40:53 +00:00
|
|
|
return false;
|
|
|
|
}
|
2019-05-06 19:42:25 -07:00
|
|
|
|
2017-09-03 13:58:39 -05:00
|
|
|
// make sure we have fields to insert
|
|
|
|
$fields = array_keys(reset($data));
|
|
|
|
if (empty($fields)) {
|
2016-11-11 01:40:53 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-05-06 19:42:25 -07:00
|
|
|
// Break into managable chunks to prevent situations where insert
|
|
|
|
// fails due to prepared statement having too many placeholders.
|
|
|
|
$data_chunks = array_chunk($data, 10000, true);
|
2016-11-11 01:40:53 +00:00
|
|
|
|
2019-05-06 19:42:25 -07:00
|
|
|
foreach ($data_chunks as $data_chunk) {
|
|
|
|
try {
|
|
|
|
$result = Eloquent::DB()->table($table)->insert((array)$data_chunk);
|
|
|
|
|
|
|
|
recordDbStatistic('insert', $time_start);
|
|
|
|
return $result;
|
|
|
|
} catch (PDOException $pdoe) {
|
|
|
|
// FIXME query?
|
|
|
|
dbHandleException(new QueryException("Bulk insert $table", $data_chunk, $pdoe));
|
|
|
|
}
|
2016-11-11 01:40:53 +00:00
|
|
|
}
|
|
|
|
|
2018-08-17 15:29:20 -05:00
|
|
|
return false;
|
2016-11-11 01:40:53 +00:00
|
|
|
}//end dbBulkInsert()
|
|
|
|
|
|
|
|
|
2018-08-17 15:29:20 -05:00
|
|
|
/**
|
2016-11-11 01:40:53 +00:00
|
|
|
* Passed an array, table name, WHERE clause, and placeholder parameters, it attempts to update a record.
|
|
|
|
* Returns the number of affected rows
|
2018-08-17 15:29:20 -05:00
|
|
|
*
|
|
|
|
* @param array $data
|
|
|
|
* @param string $table
|
|
|
|
* @param string $where
|
|
|
|
* @param array $parameters
|
|
|
|
* @return bool|int
|
|
|
|
*/
|
|
|
|
function dbUpdate($data, $table, $where = null, $parameters = [])
|
2016-11-11 01:40:53 +00:00
|
|
|
{
|
2016-11-23 00:57:19 -06:00
|
|
|
$time_start = microtime(true);
|
2016-11-11 01:40:53 +00:00
|
|
|
|
|
|
|
// need field name and placeholder value
|
|
|
|
// but how merge these field placeholders with actual $parameters array for the WHERE clause
|
|
|
|
$sql = 'UPDATE `'.$table.'` set ';
|
|
|
|
foreach ($data as $key => $value) {
|
2018-08-17 15:29:20 -05:00
|
|
|
$sql .= '`'.$key.'`=';
|
|
|
|
if (is_array($value)) {
|
|
|
|
$sql .= reset($value);
|
|
|
|
unset($data[$key]);
|
|
|
|
} else {
|
|
|
|
$sql .= '?';
|
|
|
|
}
|
|
|
|
$sql .= ',';
|
2016-11-11 01:40:53 +00:00
|
|
|
}
|
|
|
|
|
2018-08-17 15:29:20 -05:00
|
|
|
// strip keys
|
|
|
|
$data = array_values($data);
|
|
|
|
|
2016-11-11 01:40:53 +00:00
|
|
|
$sql = substr($sql, 0, -1);
|
|
|
|
// strip off last comma
|
|
|
|
if ($where) {
|
|
|
|
$sql .= ' WHERE '.$where;
|
|
|
|
$data = array_merge($data, $parameters);
|
|
|
|
}
|
|
|
|
|
2018-08-17 15:29:20 -05:00
|
|
|
try {
|
2018-08-17 20:49:34 -05:00
|
|
|
$result = Eloquent::DB()->update($sql, (array)$data);
|
2018-08-17 15:29:20 -05:00
|
|
|
|
|
|
|
recordDbStatistic('update', $time_start);
|
|
|
|
return $result;
|
|
|
|
} catch (PDOException $pdoe) {
|
|
|
|
dbHandleException(new QueryException($sql, $data, $pdoe));
|
2016-11-11 01:40:53 +00:00
|
|
|
}
|
|
|
|
|
2018-08-17 15:29:20 -05:00
|
|
|
return false;
|
2016-11-11 01:40:53 +00:00
|
|
|
}//end dbUpdate()
|
|
|
|
|
|
|
|
|
|
|
|
function dbDelete($table, $where = null, $parameters = array())
|
|
|
|
{
|
2016-11-23 00:57:19 -06:00
|
|
|
$time_start = microtime(true);
|
|
|
|
|
2016-11-11 01:40:53 +00:00
|
|
|
$sql = 'DELETE FROM `'.$table.'`';
|
|
|
|
if ($where) {
|
|
|
|
$sql .= ' WHERE '.$where;
|
|
|
|
}
|
|
|
|
|
2018-08-17 15:29:20 -05:00
|
|
|
try {
|
2018-08-17 20:49:34 -05:00
|
|
|
$result = Eloquent::DB()->delete($sql, (array)$parameters);
|
2018-08-17 15:29:20 -05:00
|
|
|
} catch (PDOException $pdoe) {
|
|
|
|
dbHandleException(new QueryException($sql, $parameters, $pdoe));
|
|
|
|
}
|
2016-11-23 00:57:19 -06:00
|
|
|
|
|
|
|
recordDbStatistic('delete', $time_start);
|
2018-08-17 15:29:20 -05:00
|
|
|
return $result;
|
2016-11-11 01:40:53 +00:00
|
|
|
}//end dbDelete()
|
|
|
|
|
|
|
|
|
2017-12-01 01:53:26 -06:00
|
|
|
/**
|
|
|
|
* Delete orphaned entries from a table that no longer have a parent in parent_table
|
2017-12-06 16:44:23 -06:00
|
|
|
* Format of parents array is as follows table.table_key_column<.target_key_column>
|
2017-12-01 01:53:26 -06:00
|
|
|
*
|
2017-12-06 16:44:23 -06:00
|
|
|
* @param string $target_table The table to delete entries from
|
|
|
|
* @param array $parents an array of parent tables to check.
|
2017-12-01 01:53:26 -06:00
|
|
|
* @return bool|int
|
|
|
|
*/
|
2017-12-06 16:44:23 -06:00
|
|
|
function dbDeleteOrphans($target_table, $parents)
|
2017-12-01 01:53:26 -06:00
|
|
|
{
|
|
|
|
$time_start = microtime(true);
|
|
|
|
|
2017-12-06 16:44:23 -06:00
|
|
|
if (empty($parents)) {
|
|
|
|
// don't delete all entries if parents is missing
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$target_table = mres($target_table);
|
|
|
|
$sql = "DELETE T FROM `$target_table` T";
|
|
|
|
$where = array();
|
|
|
|
|
|
|
|
foreach ((array)$parents as $parent) {
|
|
|
|
$parent_parts = explode('.', mres($parent));
|
|
|
|
if (count($parent_parts) == 2) {
|
|
|
|
list($parent_table, $parent_column) = $parent_parts;
|
|
|
|
$target_column = $parent_column;
|
|
|
|
} elseif (count($parent_parts) == 3) {
|
|
|
|
list($parent_table, $parent_column, $target_column) = $parent_parts;
|
|
|
|
} else {
|
|
|
|
// invalid input
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$sql .= " LEFT JOIN `$parent_table` ON `$parent_table`.`$parent_column` = T.`$target_column`";
|
|
|
|
$where[] = " `$parent_table`.`$parent_column` IS NULL";
|
|
|
|
}
|
2017-12-01 01:53:26 -06:00
|
|
|
|
2017-12-06 16:44:23 -06:00
|
|
|
$query = "$sql WHERE" . implode(' AND', $where);
|
2017-12-01 01:53:26 -06:00
|
|
|
|
2018-08-17 15:29:20 -05:00
|
|
|
try {
|
|
|
|
$result = Eloquent::DB()->delete($query);
|
|
|
|
} catch (PDOException $pdoe) {
|
|
|
|
dbHandleException(new QueryException($query, [], $pdoe));
|
2017-12-01 01:53:26 -06:00
|
|
|
}
|
2018-08-17 15:29:20 -05:00
|
|
|
|
|
|
|
recordDbStatistic('delete', $time_start);
|
|
|
|
return $result;
|
2017-12-01 01:53:26 -06:00
|
|
|
}
|
|
|
|
|
2016-11-11 01:40:53 +00:00
|
|
|
/*
|
|
|
|
* Fetches all of the rows (associatively) from the last performed query.
|
|
|
|
* Most other retrieval functions build off this
|
|
|
|
* */
|
|
|
|
|
|
|
|
|
2018-08-17 15:29:20 -05:00
|
|
|
function dbFetchRows($sql, $parameters = [])
|
2016-11-11 01:40:53 +00:00
|
|
|
{
|
2018-08-17 15:29:20 -05:00
|
|
|
global $PDO_FETCH_ASSOC;
|
2016-11-11 01:40:53 +00:00
|
|
|
$time_start = microtime(true);
|
|
|
|
|
2018-08-17 15:29:20 -05:00
|
|
|
try {
|
|
|
|
$PDO_FETCH_ASSOC = true;
|
2018-08-17 20:49:34 -05:00
|
|
|
$rows = Eloquent::DB()->select($sql, (array)$parameters);
|
2018-07-13 17:08:00 -05:00
|
|
|
|
2018-08-17 15:29:20 -05:00
|
|
|
recordDbStatistic('fetchrows', $time_start);
|
|
|
|
return $rows;
|
|
|
|
} catch (PDOException $pdoe) {
|
|
|
|
dbHandleException(new QueryException($sql, $parameters, $pdoe));
|
|
|
|
} finally {
|
|
|
|
$PDO_FETCH_ASSOC = false;
|
2016-11-11 01:40:53 +00:00
|
|
|
}
|
|
|
|
|
2018-07-13 17:08:00 -05:00
|
|
|
return [];
|
2016-11-11 01:40:53 +00:00
|
|
|
}//end dbFetchRows()
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is intended to be the method used for large result sets.
|
|
|
|
* It is intended to return an iterator, and act upon buffered data.
|
|
|
|
* */
|
|
|
|
|
|
|
|
|
2018-08-17 15:29:20 -05:00
|
|
|
function dbFetch($sql, $parameters = [])
|
2016-11-11 01:40:53 +00:00
|
|
|
{
|
2017-12-10 14:40:45 -06:00
|
|
|
return dbFetchRows($sql, $parameters);
|
2016-11-11 01:40:53 +00:00
|
|
|
/*
|
|
|
|
// for now, don't do the iterator thing
|
|
|
|
$result = dbQuery($sql, $parameters);
|
|
|
|
if($result) {
|
|
|
|
// return new iterator
|
|
|
|
return new dbIterator($result);
|
|
|
|
} else {
|
|
|
|
return null; // ??
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
}//end dbFetch()
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Like fetch(), accepts any number of arguments
|
|
|
|
* The first argument is an sprintf-ready query stringTypes
|
|
|
|
* */
|
|
|
|
|
|
|
|
|
2018-08-17 15:29:20 -05:00
|
|
|
function dbFetchRow($sql = null, $parameters = [])
|
2016-11-11 01:40:53 +00:00
|
|
|
{
|
2018-08-17 15:29:20 -05:00
|
|
|
global $PDO_FETCH_ASSOC;
|
2016-11-11 01:40:53 +00:00
|
|
|
$time_start = microtime(true);
|
2018-08-17 15:29:20 -05:00
|
|
|
|
|
|
|
try {
|
|
|
|
$PDO_FETCH_ASSOC = true;
|
2018-08-17 20:49:34 -05:00
|
|
|
$row = Eloquent::DB()->selectOne($sql, (array)$parameters);
|
2016-11-11 01:40:53 +00:00
|
|
|
|
2016-11-23 00:57:19 -06:00
|
|
|
recordDbStatistic('fetchrow', $time_start);
|
2016-11-11 01:40:53 +00:00
|
|
|
return $row;
|
2018-08-17 15:29:20 -05:00
|
|
|
} catch (PDOException $pdoe) {
|
|
|
|
dbHandleException(new QueryException($sql, $parameters, $pdoe));
|
|
|
|
} finally {
|
|
|
|
$PDO_FETCH_ASSOC = false;
|
2016-11-11 01:40:53 +00:00
|
|
|
}
|
2018-08-17 15:29:20 -05:00
|
|
|
|
|
|
|
return [];
|
2016-11-11 01:40:53 +00:00
|
|
|
}//end dbFetchRow()
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Fetches the first call from the first row returned by the query
|
|
|
|
* */
|
|
|
|
|
|
|
|
|
2018-08-17 15:29:20 -05:00
|
|
|
function dbFetchCell($sql, $parameters = [])
|
2016-11-11 01:40:53 +00:00
|
|
|
{
|
2018-08-17 15:29:20 -05:00
|
|
|
global $PDO_FETCH_ASSOC;
|
2016-11-11 01:40:53 +00:00
|
|
|
$time_start = microtime(true);
|
2016-11-23 00:57:19 -06:00
|
|
|
|
2018-08-17 15:29:20 -05:00
|
|
|
try {
|
|
|
|
$PDO_FETCH_ASSOC = true;
|
2018-08-17 20:49:34 -05:00
|
|
|
$row = Eloquent::DB()->selectOne($sql, (array)$parameters);
|
2018-08-17 15:29:20 -05:00
|
|
|
recordDbStatistic('fetchcell', $time_start);
|
|
|
|
if ($row) {
|
|
|
|
return reset($row);
|
|
|
|
// shift first field off first row
|
|
|
|
}
|
|
|
|
} catch (PDOException $pdoe) {
|
|
|
|
dbHandleException(new QueryException($sql, $parameters, $pdoe));
|
|
|
|
} finally {
|
|
|
|
$PDO_FETCH_ASSOC = false;
|
2016-11-11 01:40:53 +00:00
|
|
|
}
|
2018-08-17 15:29:20 -05:00
|
|
|
|
2016-11-11 01:40:53 +00:00
|
|
|
return null;
|
|
|
|
}//end dbFetchCell()
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This method is quite different from fetchCell(), actually
|
|
|
|
* It fetches one cell from each row and places all the values in 1 array
|
|
|
|
* */
|
|
|
|
|
|
|
|
|
2018-08-17 15:29:20 -05:00
|
|
|
function dbFetchColumn($sql, $parameters = [])
|
2016-11-11 01:40:53 +00:00
|
|
|
{
|
2018-08-17 15:29:20 -05:00
|
|
|
global $PDO_FETCH_ASSOC;
|
2016-11-11 01:40:53 +00:00
|
|
|
$time_start = microtime(true);
|
2018-08-17 15:29:20 -05:00
|
|
|
|
|
|
|
$cells = [];
|
|
|
|
|
|
|
|
try {
|
|
|
|
$PDO_FETCH_ASSOC = true;
|
2018-08-17 20:49:34 -05:00
|
|
|
foreach (Eloquent::DB()->select($sql, (array)$parameters) as $row) {
|
2018-08-17 15:29:20 -05:00
|
|
|
$cells[] = reset($row);
|
|
|
|
}
|
|
|
|
$PDO_FETCH_ASSOC = false;
|
|
|
|
|
|
|
|
recordDbStatistic('fetchcolumn', $time_start);
|
|
|
|
return $cells;
|
|
|
|
} catch (PDOException $pdoe) {
|
|
|
|
dbHandleException(new QueryException($sql, $parameters, $pdoe));
|
|
|
|
} finally {
|
|
|
|
$PDO_FETCH_ASSOC = false;
|
2016-11-11 01:40:53 +00:00
|
|
|
}
|
|
|
|
|
2018-08-17 15:29:20 -05:00
|
|
|
return [];
|
2016-11-11 01:40:53 +00:00
|
|
|
}//end dbFetchColumn()
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Should be passed a query that fetches two fields
|
|
|
|
* The first will become the array key
|
|
|
|
* The second the key's value
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2017-12-10 14:40:45 -06:00
|
|
|
function dbFetchKeyValue($sql, $parameters = array())
|
2016-11-11 01:40:53 +00:00
|
|
|
{
|
|
|
|
$data = array();
|
2017-12-10 14:40:45 -06:00
|
|
|
foreach (dbFetch($sql, $parameters) as $row) {
|
2016-11-11 01:40:53 +00:00
|
|
|
$key = array_shift($row);
|
|
|
|
if (sizeof($row) == 1) {
|
|
|
|
// if there were only 2 fields in the result
|
|
|
|
// use the second for the value
|
|
|
|
$data[$key] = array_shift($row);
|
|
|
|
} else {
|
|
|
|
// if more than 2 fields were fetched
|
|
|
|
// use the array of the rest as the value
|
|
|
|
$data[$key] = $row;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}//end dbFetchKeyValue()
|
|
|
|
|
2018-08-17 15:29:20 -05:00
|
|
|
/**
|
|
|
|
* Legacy dbFacile indicates DB::raw() as a value wrapped in an array
|
|
|
|
*
|
|
|
|
* @param array $data
|
|
|
|
* @return array
|
2016-11-11 01:40:53 +00:00
|
|
|
*/
|
2018-08-17 15:29:20 -05:00
|
|
|
function dbArrayToRaw($data)
|
2016-11-11 01:40:53 +00:00
|
|
|
{
|
2018-08-17 15:29:20 -05:00
|
|
|
array_walk($data, function (&$item) {
|
|
|
|
if (is_array($item)) {
|
|
|
|
$item = Eloquent::DB()->raw(reset($item));
|
2016-11-11 01:40:53 +00:00
|
|
|
}
|
2018-08-17 15:29:20 -05:00
|
|
|
});
|
2016-11-11 01:40:53 +00:00
|
|
|
|
2018-08-17 15:29:20 -05:00
|
|
|
return $data;
|
|
|
|
}
|
2016-11-11 01:40:53 +00:00
|
|
|
|
2018-08-17 15:29:20 -05:00
|
|
|
function dbHandleException(QueryException $exception)
|
|
|
|
{
|
|
|
|
$message = $exception->getMessage();
|
|
|
|
|
|
|
|
if ($exception->getCode() == 2002) {
|
|
|
|
$message = "Could not connect to database! " . $message;
|
2017-01-07 17:32:38 +00:00
|
|
|
}
|
2016-11-11 01:40:53 +00:00
|
|
|
|
2018-08-17 15:29:20 -05:00
|
|
|
// ? bindings should already be replaced, just replace named bindings
|
|
|
|
foreach ($exception->getBindings() as $key => $value) {
|
|
|
|
if (is_string($key)) {
|
|
|
|
$message = str_replace(":$key", $value, $message);
|
2016-11-11 01:40:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-12 23:59:03 -05:00
|
|
|
$message .= $exception->getTraceAsString();
|
2016-11-11 01:40:53 +00:00
|
|
|
|
2019-03-12 23:59:03 -05:00
|
|
|
if (Laravel::isBooted()) {
|
2018-08-17 15:29:20 -05:00
|
|
|
Log::error($message);
|
|
|
|
} else {
|
|
|
|
c_echo("%rSQL Error!%n ");
|
|
|
|
echo $message . PHP_EOL;
|
2016-11-11 01:40:53 +00:00
|
|
|
}
|
|
|
|
|
2018-08-17 15:29:20 -05:00
|
|
|
// TODO remove this
|
|
|
|
// exit;
|
|
|
|
}
|
2016-11-11 01:40:53 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Given a data array, this returns an array of placeholders
|
|
|
|
* These may be question marks, or ":email" type
|
|
|
|
*
|
|
|
|
* @param array $values
|
|
|
|
* @return array
|
|
|
|
*/
|
2018-08-17 15:29:20 -05:00
|
|
|
function dbPlaceHolders(&$values)
|
2016-11-11 01:40:53 +00:00
|
|
|
{
|
|
|
|
$data = array();
|
|
|
|
foreach ($values as $key => $value) {
|
2018-08-17 15:29:20 -05:00
|
|
|
if (is_array($value)) {
|
|
|
|
// array wrapped values are raw sql
|
|
|
|
$data[] = reset($value);
|
|
|
|
unset($values[$key]);
|
|
|
|
} elseif (is_numeric($key)) {
|
2016-11-11 01:40:53 +00:00
|
|
|
$data[] = '?';
|
|
|
|
} else {
|
|
|
|
$data[] = ':'.$key;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}//end dbPlaceHolders()
|
|
|
|
|
|
|
|
|
|
|
|
function dbBeginTransaction()
|
|
|
|
{
|
2018-08-17 15:29:20 -05:00
|
|
|
Eloquent::DB()->beginTransaction();
|
2016-11-11 01:40:53 +00:00
|
|
|
}//end dbBeginTransaction()
|
|
|
|
|
|
|
|
|
|
|
|
function dbCommitTransaction()
|
|
|
|
{
|
2018-08-17 15:29:20 -05:00
|
|
|
Eloquent::DB()->commit();
|
2016-11-11 01:40:53 +00:00
|
|
|
}//end dbCommitTransaction()
|
|
|
|
|
|
|
|
|
|
|
|
function dbRollbackTransaction()
|
|
|
|
{
|
2018-08-17 15:29:20 -05:00
|
|
|
Eloquent::DB()->rollBack();
|
2016-11-11 01:40:53 +00:00
|
|
|
}//end dbRollbackTransaction()
|
feature: Wireless Sensors Overhaul (#6471)
* feature: Wireless Sensors
Includes client counts for ios and unifi
Graphing could use some improvement.
Alerting and threshold ui not implemented
WIP: starting OO based wireless sensors.
Class based functionality working
remove old functional files
add schema file
discovery needs to be enabled, not polling
fix up schema
fix Unifi discovery not returning an array
Add some debug when discovering a sensor.
Fix style.
Add missing semicolin
Add a null object (Generic) for OS.
Fill out some phpdocs
Re-organized code
Each sensor type now has it's own discovery and polling interface
Custom polling tested with Unifi CCQ
Left to do:
Implement UI (Graphs and Custom thresholds)
Alerting
Testing
Fix event message text
Remove runDiscovery and runPolling from OS, they are unused and don't belong there.
Cleanups/docs
Missed this file.
Remove the requirement to fetch the current value to check validity.
Do that automatically if current is not specified
A few cleanups here and there
First pass at graphing.
device_ and wireless_ graphs added.
Add RouterOS support
Singleton OS instance isn't required right now.
Remove that to allow some memory to be freed.
Add wireless to the device list metrics.
Make all metrics clickable
Tweak graphs a bit
Implement limit configuration page.
Use sensors page as common code instead of duplicating.
Clean up some javascript interactions: Allow enter on values to save. Cancel if update is not needed. Enable the clear custom button after setting a custom value.
Add some wireless alert rules to the library.
Add documentation.
Add unifi client counts by ssid in addition to radio.
Optimize Sensor polling a bit.
Add HP MSM clients support (for full controller)
Fix function accessibility
Formalize the discovery and poller interfaces.
Add Xirrus clients and noise floor
move module interfaces to a more appropriate place.
push caching code up to os, unsure about this do to the limitations
No point in selectively enabling wireless discovery. We only discover if the device supports something.
Add RSSI, Power, and Rate.
Add these sensors for Ubnt Airos.
Clean up some copyrights.
Reduce the amount of files need to add new types.
Leave graph files for consistency and to allow customization.
Remove the old wifi clients graph completely.
ciscowlc should have improved counts (total and per-ssid)
Schema didn't get added.
Impelement the rest of the AirOS sensors
Reformat and re-organize the Airos.php class.
Add several UBNT AirFiber sensors
A few fixes add links to the section headers
Add HP MSM mibs.
* Schema file got dropped in rebase.
* Add wireless menu to view sensors across all devices.
Icons in the menu need help :/
* Add HeliOS, Mimosa, and Siklu support
Sensors added SNR + Noise
* Add power and utilization to Unifi
* Update polling to prefetch all sensor data in a few snmp requests as possible
* Add Extendair: tx+rx power, aggregate rate, frequency
* Add a check for duplicate sensors in discovery. Just print an error for now.
* Add Bit Error Ratio (named error-ratio to allow for bit error rate to be added if needed)
Fix an incorrect link in the wireless sensors table
* Add error rate and change all bps and Hz to use si units
* Fixes to limits and frequency display
* Fix overview graph frequency display
A few decimal place tweaks
* Don't allow switching sensor and wireless-sensor graphs, it doesn't work.
Change individual distance graphs to use si units
* Go through the OS and make sure I got all the sensors I can (probably missed some still)
Because pollWirelessChannelAsFrequency() is generic and a little complex, so pull it up to OS.
Message to help developers adding supports that don't return an array from discover functions.
* Fix some issues
* Remove noise and signal for now at least
A couple more fixes
Add a notification
* Oopsie
* Bonus AirFiber sensors
2017-05-01 23:49:11 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate a string of placeholders to pass to fill in a list
|
|
|
|
* result will look like this: (?, ?, ?, ?)
|
|
|
|
*
|
|
|
|
* @param $count
|
|
|
|
* @return string placholder list
|
|
|
|
*/
|
|
|
|
function dbGenPlaceholders($count)
|
|
|
|
{
|
|
|
|
return '(' . implode(',', array_fill(0, $count, '?')) . ')';
|
|
|
|
}
|
2018-02-10 14:38:25 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Update statistics for db operations
|
|
|
|
*
|
|
|
|
* @param string $stat fetchcell, fetchrow, fetchrows, fetchcolumn, update, insert, delete
|
|
|
|
* @param float $start_time The time the operation started with 'microtime(true)'
|
|
|
|
* @return float The calculated run time
|
|
|
|
*/
|
|
|
|
function recordDbStatistic($stat, $start_time)
|
|
|
|
{
|
2018-07-13 17:08:00 -05:00
|
|
|
global $db_stats, $db_stats_last;
|
2018-02-10 14:38:25 -06:00
|
|
|
|
|
|
|
if (!isset($db_stats)) {
|
|
|
|
$db_stats = array(
|
|
|
|
'ops' => array(
|
|
|
|
'insert' => 0,
|
|
|
|
'update' => 0,
|
|
|
|
'delete' => 0,
|
|
|
|
'fetchcell' => 0,
|
|
|
|
'fetchcolumn' => 0,
|
|
|
|
'fetchrow' => 0,
|
|
|
|
'fetchrows' => 0,
|
|
|
|
),
|
|
|
|
'time' => array(
|
|
|
|
'insert' => 0.0,
|
|
|
|
'update' => 0.0,
|
|
|
|
'delete' => 0.0,
|
|
|
|
'fetchcell' => 0.0,
|
|
|
|
'fetchcolumn' => 0.0,
|
|
|
|
'fetchrow' => 0.0,
|
|
|
|
'fetchrows' => 0.0,
|
|
|
|
),
|
|
|
|
);
|
2018-07-13 17:08:00 -05:00
|
|
|
$db_stats_last = $db_stats;
|
2018-02-10 14:38:25 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
$runtime = microtime(true) - $start_time;
|
|
|
|
$db_stats['ops'][$stat]++;
|
|
|
|
$db_stats['time'][$stat] += $runtime;
|
|
|
|
|
|
|
|
//double accounting corrections
|
|
|
|
if ($stat == 'fetchcolumn') {
|
|
|
|
$db_stats['ops']['fetchrows']--;
|
|
|
|
$db_stats['time']['fetchrows'] -= $runtime;
|
|
|
|
}
|
|
|
|
if ($stat == 'fetchcell') {
|
|
|
|
$db_stats['ops']['fetchrow']--;
|
|
|
|
$db_stats['time']['fetchrow'] -= $runtime;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $runtime;
|
|
|
|
}
|
2018-03-14 20:25:19 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Synchronize a relationship to a list of related ids
|
|
|
|
*
|
|
|
|
* @param string $table
|
|
|
|
* @param string $target_column column name for the target
|
|
|
|
* @param int $target column target id
|
|
|
|
* @param string $list_column related column names
|
|
|
|
* @param array $list list of related ids
|
|
|
|
* @return array [$inserted, $deleted]
|
|
|
|
*/
|
|
|
|
function dbSyncRelationship($table, $target_column = null, $target = null, $list_column = null, $list = null)
|
|
|
|
{
|
|
|
|
$inserted = 0;
|
|
|
|
|
|
|
|
$delete_query = "`$target_column`=? AND `$list_column`";
|
|
|
|
$delete_params = [$target];
|
|
|
|
if (!empty($list)) {
|
|
|
|
$delete_query .= ' NOT IN ' . dbGenPlaceholders(count($list));
|
|
|
|
$delete_params = array_merge($delete_params, $list);
|
|
|
|
}
|
|
|
|
$deleted = (int)dbDelete($table, $delete_query, $delete_params);
|
|
|
|
|
|
|
|
$db_list = dbFetchColumn("SELECT `$list_column` FROM `$table` WHERE `$target_column`=?", [$target]);
|
|
|
|
foreach ($list as $item) {
|
|
|
|
if (!in_array($item, $db_list)) {
|
|
|
|
dbInsert([$target_column => $target, $list_column => $item], $table);
|
|
|
|
$inserted++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return [$inserted, $deleted];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Synchronize a relationship to a list of relations
|
|
|
|
*
|
|
|
|
* @param string $table
|
|
|
|
* @param array $relationships array of relationship pairs with columns as keys and ids as values
|
|
|
|
* @return array [$inserted, $deleted]
|
|
|
|
*/
|
|
|
|
function dbSyncRelationships($table, $relationships = array())
|
|
|
|
{
|
|
|
|
$changed = [[0, 0]];
|
|
|
|
list($target_column, $list_column) = array_keys(reset($relationships));
|
|
|
|
|
|
|
|
$grouped = [];
|
|
|
|
foreach ($relationships as $relationship) {
|
|
|
|
$grouped[$relationship[$target_column]][] = $relationship[$list_column];
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($grouped as $target => $list) {
|
|
|
|
$changed[] = dbSyncRelationship($table, $target_column, $target, $list_column, $list);
|
|
|
|
}
|
|
|
|
|
|
|
|
return [array_sum(array_column($changed, 0)), array_sum(array_column($changed, 1))];
|
|
|
|
}
|