123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623 |
- <?php
- /*
- * Helper functions for building a DataTables server-side processing SQL query
- *
- * The static functions in this class are just helper functions to help build
- * the SQL used in the DataTables demo server-side processing scripts. These
- * functions obviously do not represent all that can be done with server-side
- * processing, they are intentionally simple to show how it works. More complex
- * server-side processing operations will likely require a custom script.
- *
- * See https://datatables.net/usage/server-side for full details on the server-
- * side processing requirements of DataTables.
- *
- * @license MIT - https://datatables.net/license_mit
- */
- class SSP {
- /**
- * Create the data output array for the DataTables rows
- *
- * @param array $columns Column information array
- * @param array $data Data from the SQL get
- * @return array Formatted data in a row based format
- */
- static function data_output ( $columns, $data )
- {
- $out = array();
- for ( $i=0, $ien=count($data) ; $i<$ien ; $i++ ) {
- $row = array();
- for ( $j=0, $jen=count($columns) ; $j<$jen ; $j++ ) {
- $column = $columns[$j];
- // Is there a formatter?
- if ( isset( $column['formatter'] ) ) {
- if(empty($column['db'])){
- $row[ $column['dt'] ] = $column['formatter']( $data[$i] );
- }
- else{
- $row[ $column['dt'] ] = $column['formatter']( $data[$i][ $column['db'] ], $data[$i] );
- }
- }
- else {
- if(!empty($column['db']) && (!isset($column['dummy']) || $column['dummy'] !== true)){
- $row[ $column['dt'] ] = $data[$i][ $columns[$j]['db'] ];
- }
- else{
- $row[ $column['dt'] ] = "";
- }
- }
- }
- $out[] = $row;
- }
- return $out;
- }
- /**
- * Database connection
- *
- * Obtain an PHP PDO connection from a connection details array
- *
- * @param array $conn SQL connection details. The array should have
- * the following properties
- * * host - host name
- * * db - database name
- * * user - user name
- * * pass - user password
- * * Optional: `'charset' => 'utf8'` - you might need this depending on your PHP / MySQL config
- * @return resource PDO connection
- */
- static function db ( $conn )
- {
- if ( is_array( $conn ) ) {
- return self::sql_connect( $conn );
- }
- return $conn;
- }
- /**
- * Paging
- *
- * Construct the LIMIT clause for server-side processing SQL query
- *
- * @param array $request Data sent to server by DataTables
- * @param array $columns Column information array
- * @return string SQL limit clause
- */
- static function limit ( $request, $columns )
- {
- $limit = '';
- if ( isset($request['start']) && $request['length'] != -1 ) {
- $limit = "LIMIT ".intval($request['start']).", ".intval($request['length']);
- }
- return $limit;
- }
- /**
- * Ordering
- *
- * Construct the ORDER BY clause for server-side processing SQL query
- *
- * @param array $request Data sent to server by DataTables
- * @param array $columns Column information array
- * @return string SQL order by clause
- */
- static function order ( $tableAS, $request, $columns )
- {
- $select = '';
- $order = '';
- if ( isset($request['order']) && count($request['order']) ) {
- $selects = [];
- $orderBy = [];
- $dtColumns = self::pluck( $columns, 'dt' );
- for ( $i=0, $ien=count($request['order']) ; $i<$ien ; $i++ ) {
- // Convert the column index into the column data property
- $columnIdx = intval($request['order'][$i]['column']);
- $requestColumn = $request['columns'][$columnIdx];
- $columnIdx = array_search( $columnIdx, $dtColumns );
- $column = $columns[ $columnIdx ];
- if ( $requestColumn['orderable'] == 'true' ) {
- $dir = $request['order'][$i]['dir'] === 'asc' ?
- 'ASC' :
- 'DESC';
-
- if(isset($column['order_subquery'])) {
- $selects[] = '('.$column['order_subquery'].') AS `'.$column['db'].'_count`';
- $orderBy[] = '`'.$column['db'].'_count` '.$dir;
- } else {
- $orderBy[] = '`'.$tableAS.'`.`'.$column['db'].'` '.$dir;
- }
- }
- }
- if ( count( $selects ) ) {
- $select = ', '.implode(', ', $selects);
- }
- if ( count( $orderBy ) ) {
- $order = 'ORDER BY '.implode(', ', $orderBy);
- }
- }
- return [$select, $order];
- }
- /**
- * Searching / Filtering
- *
- * Construct the WHERE clause for server-side processing SQL query.
- *
- * NOTE this does not match the built-in DataTables filtering which does it
- * word by word on any field. It's possible to do here performance on large
- * databases would be very poor
- *
- * @param array $request Data sent to server by DataTables
- * @param array $columns Column information array
- * @param array $bindings Array of values for PDO bindings, used in the
- * sql_exec() function
- * @return string SQL where clause
- */
- static function filter ( $tablesAS, $request, $columns, &$bindings )
- {
- $globalSearch = array();
- $columnSearch = array();
- $joins = array();
- $dtColumns = self::pluck( $columns, 'dt' );
- if ( isset($request['search']) && $request['search']['value'] != '' ) {
- $str = $request['search']['value'];
- for ( $i=0, $ien=count($request['columns']) ; $i<$ien ; $i++ ) {
- $requestColumn = $request['columns'][$i];
- $columnIdx = array_search( $i, $dtColumns );
- $column = $columns[ $columnIdx ];
- if ( $requestColumn['searchable'] == 'true' ) {
- if(!empty($column['db'])){
- $binding = self::bind( $bindings, '%'.$str.'%', PDO::PARAM_STR );
-
- if(isset($column['search']['join'])) {
- $joins[] = $column['search']['join'];
- $globalSearch[] = $column['search']['where_column'].' LIKE '.$binding;
- } else {
- $globalSearch[] = "`".$tablesAS."`.`".$column['db']."` LIKE ".$binding;
- }
- }
- }
- }
- }
- // Individual column filtering
- if ( isset( $request['columns'] ) ) {
- for ( $i=0, $ien=count($request['columns']) ; $i<$ien ; $i++ ) {
- $requestColumn = $request['columns'][$i];
- $columnIdx = array_search( $requestColumn['data'], $dtColumns );
- $column = $columns[ $columnIdx ];
- $str = $requestColumn['search']['value'];
- if ( $requestColumn['searchable'] == 'true' &&
- $str != '' ) {
- if(!empty($column['db'])){
- $binding = self::bind( $bindings, '%'.$str.'%', PDO::PARAM_STR );
- $columnSearch[] = "`".$tablesAS."`.`".$column['db']."` LIKE ".$binding;
- }
- }
- }
- }
- // Combine the filters into a single string
- $where = '';
- if ( count( $globalSearch ) ) {
- $where = '('.implode(' OR ', $globalSearch).')';
- }
- if ( count( $columnSearch ) ) {
- $where = $where === '' ?
- implode(' AND ', $columnSearch) :
- $where .' AND '. implode(' AND ', $columnSearch);
- }
-
- $join = '';
- if( count($joins) ) {
- $join = implode(' ', $joins);
- }
- if ( $where !== '' ) {
- $where = 'WHERE '.$where;
- }
- return [$join, $where];
- }
- /**
- * Perform the SQL queries needed for an server-side processing requested,
- * utilising the helper functions of this class, limit(), order() and
- * filter() among others. The returned array is ready to be encoded as JSON
- * in response to an SSP request, or can be modified if needed before
- * sending back to the client.
- *
- * @param array $request Data sent to server by DataTables
- * @param array|PDO $conn PDO connection resource or connection parameters array
- * @param string $table SQL table to query
- * @param string $primaryKey Primary key of the table
- * @param array $columns Column information array
- * @return array Server-side processing response array
- */
- static function simple ( $request, $conn, $table, $primaryKey, $columns )
- {
- $bindings = array();
- $db = self::db( $conn );
- // Allow for a JSON string to be passed in
- if (isset($request['json'])) {
- $request = json_decode($request['json'], true);
- }
- // table AS
- $tablesAS = null;
- if(is_array($table)) {
- $tablesAS = $table[1];
- $table = $table[0];
- }
- // Build the SQL query string from the request
- list($select, $order) = self::order( $tablesAS, $request, $columns );
- $limit = self::limit( $request, $columns );
- list($join, $where) = self::filter( $tablesAS, $request, $columns, $bindings );
- // Main query to actually get the data
- $data = self::sql_exec( $db, $bindings,
- "SELECT `$tablesAS`.`".implode("`, `$tablesAS`.`", self::pluck($columns, 'db'))."`
- $select
- FROM `$table` AS `$tablesAS`
- $join
- $where
- GROUP BY `{$tablesAS}`.`{$primaryKey}`
- $order
- $limit"
- );
- // Data set length after filtering
- $resFilterLength = self::sql_exec( $db, $bindings,
- "SELECT COUNT(DISTINCT `{$tablesAS}`.`{$primaryKey}`)
- FROM `$table` AS `$tablesAS`
- $join
- $where"
- );
- $recordsFiltered = $resFilterLength[0][0];
- // Total data set length
- $resTotalLength = self::sql_exec( $db,
- "SELECT COUNT(`{$tablesAS}`.`{$primaryKey}`)
- FROM `$table` AS `$tablesAS`"
- );
- $recordsTotal = $resTotalLength[0][0];
- /*
- * Output
- */
- return array(
- "draw" => isset ( $request['draw'] ) ?
- intval( $request['draw'] ) :
- 0,
- "recordsTotal" => intval( $recordsTotal ),
- "recordsFiltered" => intval( $recordsFiltered ),
- "data" => self::data_output( $columns, $data )
- );
- }
- /**
- * The difference between this method and the `simple` one, is that you can
- * apply additional `where` conditions to the SQL queries. These can be in
- * one of two forms:
- *
- * * 'Result condition' - This is applied to the result set, but not the
- * overall paging information query - i.e. it will not effect the number
- * of records that a user sees they can have access to. This should be
- * used when you want apply a filtering condition that the user has sent.
- * * 'All condition' - This is applied to all queries that are made and
- * reduces the number of records that the user can access. This should be
- * used in conditions where you don't want the user to ever have access to
- * particular records (for example, restricting by a login id).
- *
- * In both cases the extra condition can be added as a simple string, or if
- * you are using external values, as an assoc. array with `condition` and
- * `bindings` parameters. The `condition` is a string with the SQL WHERE
- * condition and `bindings` is an assoc. array of the binding names and
- * values.
- *
- * @param array $request Data sent to server by DataTables
- * @param array|PDO $conn PDO connection resource or connection parameters array
- * @param string|array $table SQL table to query, if array second key is AS
- * @param string $primaryKey Primary key of the table
- * @param array $columns Column information array
- * @param string $join JOIN sql string
- * @param string|array $whereResult WHERE condition to apply to the result set
- * @return array Server-side processing response array
- */
- static function complex (
- $request,
- $conn,
- $table,
- $primaryKey,
- $columns,
- $join=null,
- $whereResult=null
- ) {
- $bindings = array();
- $db = self::db( $conn );
- // table AS
- $tablesAS = null;
- if(is_array($table)) {
- $tablesAS = $table[1];
- $table = $table[0];
- }
- // Build the SQL query string from the request
- list($select, $order) = self::order( $tablesAS, $request, $columns );
- $limit = self::limit( $request, $columns );
- list($join_filter, $where) = self::filter( $tablesAS, $request, $columns, $bindings );
- // whereResult can be a simple string, or an assoc. array with a
- // condition and bindings
- if ( $whereResult ) {
- $str = $whereResult;
- if ( is_array($whereResult) ) {
- $str = $whereResult['condition'];
- if ( isset($whereResult['bindings']) ) {
- self::add_bindings($bindings, $whereResult);
- }
- }
- $where = $where ?
- $where .' AND '.$str :
- 'WHERE '.$str;
- }
- // Main query to actually get the data
- $data = self::sql_exec( $db, $bindings,
- "SELECT `$tablesAS`.`".implode("`, `$tablesAS`.`", self::pluck($columns, 'db'))."`
- $select
- FROM `$table` AS `$tablesAS`
- $join
- $join_filter
- $where
- GROUP BY `{$tablesAS}`.`{$primaryKey}`
- $order
- $limit"
- );
- // Data set length after filtering
- $resFilterLength = self::sql_exec( $db, $bindings,
- "SELECT COUNT(DISTINCT `{$tablesAS}`.`{$primaryKey}`)
- FROM `$table` AS `$tablesAS`
- $join
- $join_filter
- $where"
- );
- $recordsFiltered = (isset($resFilterLength[0])) ? $resFilterLength[0][0] : 0;
- // Total data set length
- $resTotalLength = self::sql_exec( $db, $bindings,
- "SELECT COUNT(`{$tablesAS}`.`{$primaryKey}`)
- FROM `$table` AS `$tablesAS`
- $join
- $join_filter
- $where"
- );
- $recordsTotal = (isset($resTotalLength[0])) ? $resTotalLength[0][0] : 0;
- /*
- * Output
- */
- return array(
- "draw" => isset ( $request['draw'] ) ?
- intval( $request['draw'] ) :
- 0,
- "recordsTotal" => intval( $recordsTotal ),
- "recordsFiltered" => intval( $recordsFiltered ),
- "data" => self::data_output( $columns, $data )
- );
- }
- /**
- * Connect to the database
- *
- * @param array $sql_details SQL server connection details array, with the
- * properties:
- * * host - host name
- * * db - database name
- * * user - user name
- * * pass - user password
- * @return resource Database connection handle
- */
- static function sql_connect ( $sql_details )
- {
- try {
- $db = @new PDO(
- "mysql:host={$sql_details['host']};dbname={$sql_details['db']}",
- $sql_details['user'],
- $sql_details['pass'],
- array( PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION )
- );
- }
- catch (PDOException $e) {
- self::fatal(
- "An error occurred while connecting to the database. ".
- "The error reported by the server was: ".$e->getMessage()
- );
- }
- return $db;
- }
- /**
- * Execute an SQL query on the database
- *
- * @param resource $db Database handler
- * @param array $bindings Array of PDO binding values from bind() to be
- * used for safely escaping strings. Note that this can be given as the
- * SQL query string if no bindings are required.
- * @param string $sql SQL query to execute.
- * @return array Result from the query (all rows)
- */
- static function sql_exec ( $db, $bindings, $sql=null )
- {
- // Argument shifting
- if ( $sql === null ) {
- $sql = $bindings;
- }
- $stmt = $db->prepare( $sql );
- // Bind parameters
- if ( is_array( $bindings ) ) {
- for ( $i=0, $ien=count($bindings) ; $i<$ien ; $i++ ) {
- $binding = $bindings[$i];
- $stmt->bindValue( $binding['key'], $binding['val'], $binding['type'] );
- }
- }
- // Execute
- try {
- $stmt->execute();
- }
- catch (PDOException $e) {
- self::fatal( "An SQL error occurred: ".$e->getMessage() );
- }
- // Return all
- return $stmt->fetchAll( PDO::FETCH_BOTH );
- }
- /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * Internal methods
- */
- /**
- * Throw a fatal error.
- *
- * This writes out an error message in a JSON string which DataTables will
- * see and show to the user in the browser.
- *
- * @param string $msg Message to send to the client
- */
- static function fatal ( $msg )
- {
- echo json_encode( array(
- "error" => $msg
- ) );
- exit(0);
- }
- /**
- * Create a PDO binding key which can be used for escaping variables safely
- * when executing a query with sql_exec()
- *
- * @param array &$a Array of bindings
- * @param * $val Value to bind
- * @param int $type PDO field type
- * @return string Bound key to be used in the SQL where this parameter
- * would be used.
- */
- static function bind ( &$a, $val, $type )
- {
- $key = ':binding_'.count( $a );
- $a[] = array(
- 'key' => $key,
- 'val' => $val,
- 'type' => $type
- );
- return $key;
- }
- static function add_bindings(&$bindings, $vals)
- {
- foreach($vals['bindings'] as $key => $value) {
- $bindings[] = array(
- 'key' => $key,
- 'val' => $value,
- 'type' => PDO::PARAM_STR
- );
- }
- }
- /**
- * Pull a particular property from each assoc. array in a numeric array,
- * returning and array of the property values from each item.
- *
- * @param array $a Array to get data from
- * @param string $prop Property to read
- * @return array Array of property values
- */
- static function pluck ( $a, $prop )
- {
- $out = array();
- for ( $i=0, $len=count($a) ; $i<$len ; $i++ ) {
- if ( empty($a[$i][$prop]) && $a[$i][$prop] !== 0 ) {
- continue;
- }
- if ( $prop == 'db' && isset($a[$i]['dummy']) && $a[$i]['dummy'] === true ) {
- continue;
- }
- //removing the $out array index confuses the filter method in doing proper binding,
- //adding it ensures that the array data are mapped correctly
- $out[$i] = $a[$i][$prop];
- }
- return $out;
- }
- /**
- * Return a string from an array or a string
- *
- * @param array|string $a Array to join
- * @param string $join Glue for the concatenation
- * @return string Joined string
- */
- static function _flatten ( $a, $join = ' AND ' )
- {
- if ( ! $a ) {
- return '';
- }
- else if ( $a && is_array($a) ) {
- return implode( $join, $a );
- }
- return $a;
- }
- }
|