Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
catfan committed Jun 26, 2016
2 parents 342e2d6 + 75da91f commit 697abce
Showing 1 changed file with 140 additions and 56 deletions.
196 changes: 140 additions & 56 deletions medoo.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/*!
* Medoo database framework
* http://medoo.in
* Version 1.0.2
* Version 1.1
*
* Copyright 2016, Angel Lai
* Released under the MIT license
Expand Down Expand Up @@ -127,7 +127,7 @@ public function __construct($options = null)
}

if (
in_array($type, explode(' ', 'mariadb mysql pgsql sybase mssql')) &&
in_array($type, array('mariadb', 'mysql', 'pgsql', 'sybase', 'mssql')) &&
$this->charset
)
{
Expand Down Expand Up @@ -162,7 +162,7 @@ public function query($query)
return false;
}

array_push($this->logs, $query);
$this->logs[] = $query;

return $this->pdo->query($query);
}
Expand All @@ -178,7 +178,7 @@ public function exec($query)
return false;
}

array_push($this->logs, $query);
$this->logs[] = $query;

return $this->pdo->exec($query);
}
Expand All @@ -188,12 +188,17 @@ public function quote($string)
return $this->pdo->quote($string);
}

protected function table_quote($table)
{
return '"' . $this->prefix . $table . '"';
}

protected function column_quote($string)
{
return '"' . str_replace('.', '"."', preg_replace('/(^#|\(JSON\)\s*)/', '', $string)) . '"';
return preg_replace('/(\(JSON\)\s*|^#)?([a-zA-Z0-9_]*)\.([a-zA-Z0-9_]*)/', '"' . $this->prefix . '$2"."$3"', $string);
}

protected function column_push($columns)
protected function column_push(&$columns)
{
if ($columns == '*')
{
Expand All @@ -209,15 +214,24 @@ protected function column_push($columns)

foreach ($columns as $key => $value)
{
preg_match('/([a-zA-Z0-9_\-\.]*)\s*\(([a-zA-Z0-9_\-]*)\)/i', $value, $match);

if (isset($match[ 1 ], $match[ 2 ]))
if (is_array($value))
{
array_push($stack, $this->column_quote( $match[ 1 ] ) . ' AS ' . $this->column_quote( $match[ 2 ] ));
$stack[] = $this->column_push($value);
}
else
{
array_push($stack, $this->column_quote( $value ));
preg_match('/([a-zA-Z0-9_\-\.]*)\s*\(([a-zA-Z0-9_\-]*)\)/i', $value, $match);

if (isset($match[ 1 ], $match[ 2 ]))
{
$stack[] = $this->column_quote( $match[ 1 ] ) . ' AS ' . $this->column_quote( $match[ 2 ] );

$columns[ $key ] = $match[ 2 ];
}
else
{
$stack[] = $this->column_quote( $value );
}
}
}

Expand Down Expand Up @@ -344,15 +358,7 @@ protected function data_implode($data, $conjunctor, $outer_conjunctor = null)
$item = strval($item);
$suffix = mb_substr($item, -1, 1);

if ($suffix === '_')
{
$item = substr_replace($item, '%', -1);
}
elseif ($suffix === '%')
{
$item = '%' . substr_replace($item, '', -1, 1);
}
elseif (preg_match('/^(?!%).+(?<!%)$/', $item))
if (preg_match('/^(?!(%|\[|_])).+(?<!(%|\]|_))$/', $item))
{
$item = '%' . $item . '%';
}
Expand Down Expand Up @@ -422,7 +428,7 @@ protected function where_clause($where)
$where_OR = preg_grep("/^OR\s*#?$/i", $where_keys);

$single_condition = array_diff_key($where, array_flip(
explode(' ', 'AND OR GROUP ORDER HAVING LIMIT LIKE MATCH')
array('AND', 'OR', 'GROUP', 'ORDER', 'HAVING', 'LIMIT', 'LIKE', 'MATCH')
));

if ($single_condition != array())
Expand Down Expand Up @@ -469,37 +475,33 @@ protected function where_clause($where)

if (isset($where[ 'ORDER' ]))
{
$rsort = '/(^[a-zA-Z0-9_\-\.]*)(\s*(DESC|ASC))?/';
$ORDER = $where[ 'ORDER' ];

if (is_array($ORDER))
{
if (
isset($ORDER[ 1 ]) &&
is_array($ORDER[ 1 ])
)
{
$where_clause .= ' ORDER BY FIELD(' . $this->column_quote($ORDER[ 0 ]) . ', ' . $this->array_quote($ORDER[ 1 ]) . ')';
}
else
{
$stack = array();
$stack = array();

foreach ($ORDER as $column)
foreach ($ORDER as $column => $value)
{
if (is_array($value))
{
preg_match($rsort, $column, $order_match);

array_push($stack, '"' . str_replace('.', '"."', $order_match[ 1 ]) . '"' . (isset($order_match[ 3 ]) ? ' ' . $order_match[ 3 ] : ''));
$stack[] = 'FIELD(' . $this->column_quote($column) . ', ' . $this->array_quote($value) . ')';
}
else if ($value === 'ASC' || $value === 'DESC')
{
$stack[] = '"' . str_replace('.', '"."', $column) . ' ' . $value . '"';
}
else if (is_int($column))
{
$stack[] = $this->column_quote($value);
}

$where_clause .= ' ORDER BY ' . implode($stack, ',');
}

$where_clause .= ' ORDER BY ' . implode($stack, ',');
}
else
{
preg_match($rsort, $ORDER, $order_match);

$where_clause .= ' ORDER BY "' . str_replace('.', '"."', $order_match[ 1 ]) . '"' . (isset($order_match[ 3 ]) ? ' ' . $order_match[ 3 ] : '');
$where_clause .= ' ORDER BY ' . $this->column_quote($ORDER);
}
}

Expand Down Expand Up @@ -542,7 +544,21 @@ protected function where_clause($where)

protected function select_context($table, $join, &$columns = null, $where = null, $column_fn = null)
{
$table = '"' . $this->prefix . $table . '"';
preg_match('/([a-zA-Z0-9_\-]*)\s*\(([a-zA-Z0-9_\-]*)\)/i', $table, $table_match);

if (isset($table_match[ 1 ], $table_match[ 2 ]))
{
$table = $this->table_quote($table_match[ 1 ]);

$table_query = $this->table_quote($table_match[ 1 ]) . ' AS ' . $this->table_quote($table_match[ 2 ]);
}
else
{
$table = $this->table_quote($table);

$table_query = $table;
}

$join_key = is_array($join) ? array_keys($join) : null;

if (
Expand Down Expand Up @@ -583,27 +599,34 @@ protected function select_context($table, $join, &$columns = null, $where = null

foreach ($relation as $key => $value)
{
$joins[] = $this->prefix . (
$joins[] = (
strpos($key, '.') > 0 ?
// For ['tableB.column' => 'column']
'"' . str_replace('.', '"."', $key) . '"' :
$this->column_quote($key) :

// For ['column1' => 'column2']
$table . '."' . $key . '"'
) .
' = ' .
'"' . (isset($match[ 5 ]) ? $match[ 5 ] : $match[ 3 ]) . '"."' . $value . '"';
$this->table_quote(isset($match[ 5 ]) ? $match[ 5 ] : $match[ 3 ]) . '."' . $value . '"';
}

$relation = 'ON ' . implode($joins, ' AND ');
}
}

$table_join[] = $join_array[ $match[ 2 ] ] . ' JOIN "' . $this->prefix . $match[ 3 ] . '" ' . (isset($match[ 5 ]) ? 'AS "' . $match[ 5 ] . '" ' : '') . $relation;
$table_name = $this->table_quote($match[ 3 ]) . ' ';

if (isset($match[ 5 ]))
{
$table_name .= 'AS ' . $this->table_quote($match[ 5 ]) . ' ';
}

$table_join[] = $join_array[ $match[ 2 ] ] . ' JOIN ' . $table_name . $relation;
}
}

$table .= ' ' . implode($table_join, ' ');
$table_query .= ' ' . implode($table_join, ' ');
}
else
{
Expand Down Expand Up @@ -665,16 +688,77 @@ protected function select_context($table, $join, &$columns = null, $where = null
$column = $this->column_push($columns);
}

return 'SELECT ' . $column . ' FROM ' . $table . $this->where_clause($where);
return 'SELECT ' . $column . ' FROM ' . $table_query . $this->where_clause($where);
}

protected function data_map($index, $key, $value, $data, &$stack)
{
if (is_array($value))
{
$sub_stack = array();

foreach ($value as $sub_key => $sub_value)
{
if (is_array($sub_value))
{
$current_stack = $stack[ $index ][ $key ];

$this->data_map(false, $sub_key, $sub_value, $data, $current_stack);

$stack[ $index ][ $key ][ $sub_key ] = $current_stack[ 0 ][ $sub_key ];
}
else
{
$this->data_map(false, preg_replace('/^[\w]*\./i', "", $sub_value), $sub_key, $data, $sub_stack);

$stack[ $index ][ $key ] = $sub_stack;
}
}
}
else
{
if ($index !== false)
{
$stack[ $index ][ $value ] = $data[ $value ];
}
else
{
$stack[ $key ] = $data[ $key ];
}
}
}

public function select($table, $join, $columns = null, $where = null)
{
$query = $this->query($this->select_context($table, $join, $columns, $where));

return $query ? $query->fetchAll(
(is_string($columns) && $columns != '*') ? PDO::FETCH_COLUMN : PDO::FETCH_ASSOC
) : false;
$stack = array();

$index = 0;

if (!$query)
{
return false;
}

while ($row = $query->fetch(PDO::FETCH_ASSOC))
{
foreach ($columns as $key => $value)
{
if (is_array($value))
{
$this->data_map($index, $key, $value, $row, $stack);
}
else
{
$this->data_map($index, $key, preg_replace('/^[\w]*\./i', "", $value), $row, $stack);
}
}

$index++;
}

return $stack;
}

public function insert($table, $datas)
Expand All @@ -694,7 +778,7 @@ public function insert($table, $datas)

foreach ($data as $key => $value)
{
array_push($columns, $this->column_quote($key));
$columns[] = $this->column_quote($key);

switch (gettype($value))
{
Expand Down Expand Up @@ -722,7 +806,7 @@ public function insert($table, $datas)
}
}

$this->exec('INSERT INTO "' . $this->prefix . $table . '" (' . implode(', ', $columns) . ') VALUES (' . implode($values, ', ') . ')');
$this->exec('INSERT INTO ' . $this->table_quote($table) . ' (' . implode(', ', $columns) . ') VALUES (' . implode($values, ', ') . ')');

$lastId[] = $this->pdo->lastInsertId();
}
Expand Down Expand Up @@ -776,12 +860,12 @@ public function update($table, $data, $where = null)
}
}

return $this->exec('UPDATE "' . $this->prefix . $table . '" SET ' . implode(', ', $fields) . $this->where_clause($where));
return $this->exec('UPDATE ' . $this->table_quote($table) . ' SET ' . implode(', ', $fields) . $this->where_clause($where));
}

public function delete($table, $where)
{
return $this->exec('DELETE FROM "' . $this->prefix . $table . '"' . $this->where_clause($where));
return $this->exec('DELETE FROM ' . $this->table_quote($table) . $this->where_clause($where));
}

public function replace($table, $columns, $search = null, $replace = null, $where = null)
Expand Down Expand Up @@ -821,7 +905,7 @@ public function replace($table, $columns, $search = null, $replace = null, $wher
}
}

return $this->exec('UPDATE "' . $this->prefix . $table . '" SET ' . $replace_query . $this->where_clause($where));
return $this->exec('UPDATE ' . $this->table_quote($table) . ' SET ' . $replace_query . $this->where_clause($where));
}

public function get($table, $join = null, $column = null, $where = null)
Expand Down

0 comments on commit 697abce

Please sign in to comment.