2015-04-13 10:14:59 +00:00
< ? php
/*
* Sakura MySQL Database Engine
*/
2015-06-25 22:35:06 +00:00
namespace Sakura\DBWrapper ;
2015-04-13 10:14:59 +00:00
use PDO ;
use PDOException ;
use PDOStatement ;
2015-06-25 22:35:06 +00:00
use \Sakura\Configuration ;
2015-04-13 10:14:59 +00:00
2015-05-29 19:27:45 +00:00
class MySQL {
2015-04-13 10:14:59 +00:00
// Variable that will contain the SQL connection
// Please refrain from referring to this, unless it's for your personal branch/purpose, despite it being public
// it sort of defeats the "dynamic database system" I want to go for.
2015-05-29 19:27:45 +00:00
public $sql ;
2015-04-13 10:14:59 +00:00
// Constructor
2015-05-29 19:27:45 +00:00
function __construct () {
2015-04-13 10:14:59 +00:00
if ( ! extension_loaded ( 'PDO' )) {
// Return error and die
2015-05-29 19:27:45 +00:00
trigger_error ( 'PDO extension not loaded.' , E_USER_ERROR );
2015-04-13 10:14:59 +00:00
}
// Initialise connection
2015-05-29 19:27:45 +00:00
$this -> initConnect (
2015-04-13 10:14:59 +00:00
(
2015-05-29 19:27:45 +00:00
Configuration :: getLocalConfig ( 'database' , 'unixsocket' ) ?
$this -> prepareSock (
Configuration :: getLocalConfig ( 'database' , 'host' ),
Configuration :: getLocalConfig ( 'database' , 'database' )
2015-04-13 10:14:59 +00:00
) :
2015-05-29 19:27:45 +00:00
$this -> prepareHost (
Configuration :: getLocalConfig ( 'database' , 'host' ),
Configuration :: getLocalConfig ( 'database' , 'database' ),
2015-04-13 10:14:59 +00:00
(
2015-05-29 19:27:45 +00:00
Configuration :: getLocalConfig ( 'database' , 'port' ) !== null ?
Configuration :: getLocalConfig ( 'database' , 'port' ) :
2015-04-13 10:14:59 +00:00
3306
)
)
),
2015-05-29 19:27:45 +00:00
Configuration :: getLocalConfig ( 'database' , 'username' ),
Configuration :: getLocalConfig ( 'database' , 'password' )
2015-04-13 10:14:59 +00:00
);
2015-05-29 19:27:45 +00:00
2015-04-13 10:14:59 +00:00
}
// Regular IP/Hostname connection method prepare function
2015-05-29 19:27:45 +00:00
private function prepareHost ( $dbHost , $dbName , $dbPort = 3306 ) {
2015-04-13 10:14:59 +00:00
$DSN = 'mysql:host=' . $dbHost . ';port=' . $dbPort . ';dbname=' . $dbName ;
return $DSN ;
}
// Unix Socket connection method prepare function
2015-05-29 19:27:45 +00:00
private function prepareSock ( $dbHost , $dbName ) {
2015-04-13 10:14:59 +00:00
$DSN = 'mysql:unix_socket=' . $dbHost . ';dbname=' . $dbName ;
return $DSN ;
}
// Initialise connection using default PDO stuff
2015-05-29 19:27:45 +00:00
private function initConnect ( $DSN , $dbUname , $dbPword ) {
2015-04-13 10:14:59 +00:00
try {
// Connect to SQL server using PDO
2015-06-20 23:06:04 +00:00
$this -> sql = new PDO ( $DSN , $dbUname , $dbPword , array ( PDO :: ATTR_EMULATE_PREPARES => false , PDO :: ATTR_ERRMODE => PDO :: ERRMODE_WARNING ));
2015-04-13 10:14:59 +00:00
} catch ( PDOException $e ) {
// Catch connection errors
trigger_error ( 'SQL Driver: ' . $e -> getMessage (), E_USER_ERROR );
}
return true ;
}
// Fetch array from database
2015-05-29 19:27:45 +00:00
public function fetch ( $table , $fetchAll = true , $data = null , $order = null , $limit = null , $group = null , $distinct = false , $column = '*' , $prefix = null ) {
2015-04-13 10:14:59 +00:00
// Begin preparation of the statement
2015-05-29 19:27:45 +00:00
$prepare = 'SELECT ' . ( $distinct ? 'DISTINCT ' : '' ) . ( $column == '*' ? '' : '`' ) . $column . ( $column == '*' ? '' : '`' ) . ' FROM `' . ( $prefix ? $prefix : Configuration :: getLocalConfig ( 'database' , 'prefix' )) . $table . '`' ;
2015-04-13 10:14:59 +00:00
// If $data is set and is an array continue
if ( is_array ( $data )) {
$prepare .= ' WHERE' ;
foreach ( $data as $key => $value ) {
$prepare .= ' `' . $key . '` ' . $value [ 1 ] . ' :' . $key . ( $key == key ( array_slice ( $data , - 1 , 1 , true )) ? '' : ' AND' );
// Unset variables to be safe
unset ( $key );
unset ( $value );
}
}
// If $group is set and is an array continue
if ( is_array ( $group )) {
$prepare .= ' GROUP BY' ;
foreach ( $group as $key => $value ) {
$prepare .= ' `' . $value . '`' . ( $key == key ( array_slice ( $group , - 1 , 1 , true )) ? '' : ',' );
// Unset variables to be safe
unset ( $key );
unset ( $value );
}
}
2015-07-08 13:09:57 +00:00
// If $order is set and is an array continue
if ( is_array ( $order )) {
$prepare .= ' ORDER BY `' . $order [ 0 ] . '`' . ( ! empty ( $order [ 1 ]) && $order [ 1 ] ? ' DESC' : '' );
}
2015-04-13 10:14:59 +00:00
// If $limit is set and is an array continue
if ( is_array ( $limit )) {
$prepare .= ' LIMIT' ;
foreach ( $limit as $key => $value ) {
$prepare .= ' ' . $value . ( $key == key ( array_slice ( $limit , - 1 , 1 , true )) ? '' : ',' );
// Unset variables to be safe
unset ( $key );
unset ( $value );
}
}
// Add the finishing semicolon
$prepare .= ';' ;
// Actually prepare the preration
2015-05-29 19:27:45 +00:00
$query = $this -> sql -> prepare ( $prepare );
2015-04-13 10:14:59 +00:00
// Bind those parameters if $data is an array that is
if ( is_array ( $data )) {
2015-05-29 19:27:45 +00:00
2015-04-13 10:14:59 +00:00
foreach ( $data as $key => $value ) {
$query -> bindParam ( ':' . $key , $value [ 0 ]);
// Unset variables to be safe
unset ( $key );
unset ( $value );
}
2015-05-29 19:27:45 +00:00
2015-04-13 10:14:59 +00:00
}
// Execute the prepared statements with parameters bound
$query -> execute ();
2015-05-29 19:27:45 +00:00
// Return the output
return $fetchAll ? $query -> fetchAll ( PDO :: FETCH_BOTH ) : $query -> fetch ( PDO :: FETCH_BOTH );
2015-04-13 10:14:59 +00:00
}
2015-05-29 19:27:45 +00:00
2015-04-13 10:14:59 +00:00
// Insert data to database
2015-05-29 19:27:45 +00:00
public function insert ( $table , $data , $prefix = null ) {
2015-04-13 10:14:59 +00:00
// Begin preparation of the statement
2015-05-29 19:27:45 +00:00
$prepare = 'INSERT INTO `' . ( $prefix ? $prefix : Configuration :: getLocalConfig ( 'database' , 'prefix' )) . $table . '` ' ;
2015-04-13 10:14:59 +00:00
// Run the foreach statement twice for (`stuff`) VALUES (:stuff)
for ( $i = 0 ; $i < 2 ; $i ++ ) {
$prepare .= '(' ;
// Do more shit, don't feel like describing this so yeah
foreach ( $data as $key => $value ) {
if ( strlen ( $value ))
$prepare .= ( $i ? ':' : '`' ) . $key . ( $i ? '' : '`' ) . ( $key == key ( array_slice ( $data , - 1 , 1 , true )) ? '' : ', ' );
}
$prepare .= ')' . ( $i ? ';' : ' VALUES ' );
}
// Actually prepare the preration
2015-05-29 19:27:45 +00:00
$query = $this -> sql -> prepare ( $prepare );
2015-04-13 10:14:59 +00:00
// Bind those parameters
foreach ( $data as $key => $value ) {
if ( strlen ( $value ))
$query -> bindParam ( ':' . $key , $value );
// Unset variables to be safe
unset ( $key );
unset ( $value );
}
// Execute the prepared statements with parameters bound
$result = $query -> execute ();
// Return whatever can be returned
return $result ;
}
// Update data in the database
2015-05-29 19:27:45 +00:00
public function update ( $table , $data , $prefix = null ) {
2015-04-13 10:14:59 +00:00
// Begin preparation of the statement
2015-05-29 19:27:45 +00:00
$prepare = 'UPDATE `' . ( $prefix ? $prefix : Configuration :: getLocalConfig ( 'database' , 'prefix' )) . $table . '`' ;
2015-04-13 10:14:59 +00:00
// Run a foreach on $data and complete the statement
foreach ( $data as $key => $values ) {
// Append WHERE or SET depending on where we are
$prepare .= ' ' . ( $key ? 'WHERE' : 'SET' );
// Do this complicated shit, I barely know what's going on anymore but it works
foreach ( $values as $column => $column_data )
$prepare .= ' `' . $column . '` ' . ( $key ? $column_data [ 1 ] : '=' ) . ' :' . ( $key ? 'w' : 's' ) . '_' . $column . ( $column == key ( array_slice ( $values , - 1 , 1 , true )) ? ( $key ? ';' : '' ) : ( $key ? ' AND' : ',' ));
}
// Actually prepare the preration
2015-05-29 19:27:45 +00:00
$query = $this -> sql -> prepare ( $prepare );
2015-04-13 10:14:59 +00:00
// Seperate the foreaches for the SET and WHERE clauses because it's fucking it up for some odd reason
// Bind Set Clauses
foreach ( $data [ 0 ] as $key => $value ) {
// Do the binding
$query -> bindParam ( ':s_' . $key , $value );
// Unset variables to be safe
unset ( $key );
unset ( $value );
}
// Bind Where Clauses
foreach ( $data [ 1 ] as $key => $values ) {
// Assign the array entry to a variable because fuck strict standards
$value = $values [ 0 ];
// Binding two electrifying memes
$query -> bindParam ( ':w_' . $key , $value );
// Unset variables to be safe
unset ( $key );
unset ( $value );
unset ( $values );
}
// Execute the prepared statements with parameters bound
$result = $query -> execute ();
// Return whatever can be returned
return $result ;
}
2015-04-17 22:14:31 +00:00
// Delete data from the database
2015-05-29 19:27:45 +00:00
public function delete ( $table , $data , $prefix = null ) {
2015-04-17 22:14:31 +00:00
// Begin preparation of the statement
2015-05-29 19:27:45 +00:00
$prepare = 'DELETE FROM `' . ( $prefix ? $prefix : Configuration :: getLocalConfig ( 'database' , 'prefix' )) . $table . '`' ;
2015-04-17 22:14:31 +00:00
// If $data is set and is an array continue
if ( is_array ( $data )) {
$prepare .= ' WHERE' ;
foreach ( $data as $key => $value ) {
$prepare .= ' `' . $key . '` ' . $value [ 1 ] . ' :' . $key . ( $key == key ( array_slice ( $data , - 1 , 1 , true )) ? '' : ' AND' );
// Unset variables to be safe
unset ( $key );
unset ( $value );
}
}
// Actually prepare the preration
2015-05-29 19:27:45 +00:00
$query = $this -> sql -> prepare ( $prepare );
2015-04-17 22:14:31 +00:00
// Bind those parameters
foreach ( $data as $key => $value ) {
$query -> bindParam ( ':' . $key , $value [ 0 ]);
// Unset variables to be safe
unset ( $key );
unset ( $value );
}
// Execute the prepared statements with parameters bound
$result = $query -> execute ();
// Return whatever can be returned
return $result ;
}
2015-07-05 00:03:15 +00:00
// Count data from the database
public function count ( $table , $data , $prefix = null ) {
// Begin preparation of the statement
$prepare = 'SELECT COUNT(*) FROM `' . ( $prefix ? $prefix : Configuration :: getLocalConfig ( 'database' , 'prefix' )) . $table . '`' ;
// If $data is set and is an array continue
if ( is_array ( $data )) {
$prepare .= ' WHERE' ;
foreach ( $data as $key => $value ) {
$prepare .= ' `' . $key . '` ' . $value [ 1 ] . ' :' . $key . ( $key == key ( array_slice ( $data , - 1 , 1 , true )) ? '' : ' AND' );
// Unset variables to be safe
unset ( $key );
unset ( $value );
}
}
// Add the finishing semicolon
$prepare .= ';' ;
// Actually prepare the preration
$query = $this -> sql -> prepare ( $prepare );
// Bind those parameters if $data is an array that is
if ( is_array ( $data )) {
foreach ( $data as $key => $value ) {
$query -> bindParam ( ':' . $key , $value [ 0 ]);
// Unset variables to be safe
unset ( $key );
unset ( $value );
}
}
// Execute the prepared statements with parameters bound
$query -> execute ();
// Return the output
return $query -> fetch ( PDO :: FETCH_BOTH );
}
2015-04-13 10:14:59 +00:00
}