3 Commits
1.0.2 ... 1.0.5

Author SHA1 Message Date
Gregory Letellier
0db845a116 add orWhere 2023-11-15 11:50:15 +01:00
Gregory Letellier
35188860ce gestion du charset en mysql 2023-11-14 16:41:09 +01:00
Gregory Letellier
c8d6e911a6 meilleure gestion des noms de tables sur les modèles hérités 2023-11-14 15:55:08 +01:00
4 changed files with 68 additions and 9 deletions

View File

@@ -18,6 +18,7 @@ class Connection
private string $database; private string $database;
private ?string $port; private ?string $port;
private ?string $host; private ?string $host;
private ?string $charset;
private string $error; private string $error;
private function __construct($name, $config) private function __construct($name, $config)
@@ -44,6 +45,7 @@ class Connection
$this->password = isset($config[$key]["PASSWORD"]) ? $config[$key]["PASSWORD"] : null; $this->password = isset($config[$key]["PASSWORD"]) ? $config[$key]["PASSWORD"] : null;
$this->database = isset($config[$key]["DATABASE"]) ? $config[$key]["DATABASE"] : null; $this->database = isset($config[$key]["DATABASE"]) ? $config[$key]["DATABASE"] : null;
$this->port = isset($config[$key]["PORT"]) ? $config[$key]["PORT"] : null; $this->port = isset($config[$key]["PORT"]) ? $config[$key]["PORT"] : null;
$this->charset = isset($config[$key]["CHARSET"]) ? $config[$key]["CHARSET"] : null;
} catch (\Throwable $th) { } catch (\Throwable $th) {
$this->error = $th->getMessage(); $this->error = $th->getMessage();
} }
@@ -70,6 +72,7 @@ class Connection
$this->password = isset($_ENV[$this->getKey("PASSWORD", $key)]) ? $_ENV[$this->getKey("PASSWORD", $key)] : null; $this->password = isset($_ENV[$this->getKey("PASSWORD", $key)]) ? $_ENV[$this->getKey("PASSWORD", $key)] : null;
$this->database = isset($_ENV[$this->getKey("DATABASE", $key)]) ? $_ENV[$this->getKey("DATABASE", $key)] : null; $this->database = isset($_ENV[$this->getKey("DATABASE", $key)]) ? $_ENV[$this->getKey("DATABASE", $key)] : null;
$this->port = isset($_ENV[$this->getKey("PORT", $key)]) ? $_ENV[$this->getKey("PORT", $key)] : null; $this->port = isset($_ENV[$this->getKey("PORT", $key)]) ? $_ENV[$this->getKey("PORT", $key)] : null;
$this->charset = isset($_ENV[$this->getKey("CHARSET", $key)]) ? $_ENV[$this->getKey("CHARSET", $key)] : null;
} catch (\Throwable $th) { } catch (\Throwable $th) {
$this->error = $th->getMessage(); $this->error = $th->getMessage();
} }
@@ -117,10 +120,19 @@ class Connection
return $stmt; return $stmt;
} }
private function getMySQLOptions()
{
$ret = "";
if ($this->charset) {
$ret .= ";charset=" . $this->charset;
}
return $ret;
}
private function getConnString() private function getConnString()
{ {
$this->connstring = match ($this->type) { $this->connstring = match ($this->type) {
"mysql" => "mysql:host=" . $this->host . ":" . $this->port . ";dbname=" . $this->database, "mysql" => "mysql:host=" . $this->host . ":" . $this->port . ";dbname=" . $this->database . $this->getMySQLOptions() ,
"sqlite" => "sqlite:" . $this->database, "sqlite" => "sqlite:" . $this->database,
}; };
} }

View File

@@ -8,7 +8,7 @@ class Model implements JsonSerializable
{ {
protected mixed $values; protected mixed $values;
protected array $updated; protected array $updated;
protected string $table; protected string $table = "";
protected string $connection = ""; protected string $connection = "";
protected string $pk; protected string $pk;
private bool $new; private bool $new;
@@ -19,7 +19,14 @@ class Model implements JsonSerializable
$this->values = array(); $this->values = array();
$this->updated = array(); $this->updated = array();
$this->pk = "id"; $this->pk = "id";
$this->table = $this->getDefaultTableName(); $this->initTable();
}
private function initTable(): void
{
if ($this->table == "") {
$this->table = $this->getDefaultTableName();
}
} }
public function getTable(): string public function getTable(): string

View File

@@ -6,6 +6,7 @@ class QueryBuilder
{ {
protected array $columns; protected array $columns;
protected array $wheres; protected array $wheres;
protected array $orwheres;
protected array $orders; protected array $orders;
protected array $groupby; protected array $groupby;
protected string $table; protected string $table;
@@ -16,6 +17,9 @@ class QueryBuilder
protected string $raw_query; protected string $raw_query;
protected bool $distinct; protected bool $distinct;
public const MODE_AND = 0;
public const MODE_OR = 1;
public function __construct($table, $pk = "id", $connection = "") public function __construct($table, $pk = "id", $connection = "")
{ {
$this->table = $table; $this->table = $table;
@@ -28,6 +32,7 @@ class QueryBuilder
{ {
$this->columns = []; $this->columns = [];
$this->wheres = []; $this->wheres = [];
$this->orwheres = [];
$this->orders = []; $this->orders = [];
$this->groupby = []; $this->groupby = [];
$this->offset = null; $this->offset = null;
@@ -128,12 +133,28 @@ class QueryBuilder
return $this; return $this;
} }
public function orWhere($condition, $operator, $value = null)
{
if ($value === null) {
$this->orwheres[] = new Expression($condition, "=", $operator);
} else {
$this->orwheres[] = new Expression($condition, $operator, $value);
}
return $this;
}
public function whereRaw(string $raw) public function whereRaw(string $raw)
{ {
$this->wheres[] = $raw; $this->wheres[] = $raw;
return $this; return $this;
} }
public function orWhereRaw(string $raw)
{
$this->orwheres[] = $raw;
return $this;
}
public function find($id): mixed public function find($id): mixed
{ {
$this->reset(); $this->reset();
@@ -213,10 +234,17 @@ class QueryBuilder
$query = "SELECT " . $distinct . " " . $columns . " FROM " . $this->table ; $query = "SELECT " . $distinct . " " . $columns . " FROM " . $this->table ;
$where = $this->getWhere(); $where = $this->getWhere();
$Orwhere = $this->getWhere(QueryBuilder::MODE_OR);
$this->fillData($ret); $this->fillData($ret);
if($where!="" && $Orwhere!="")
{
$Orwhere = " OR " . $Orwhere;
}
if ($where != "") { if ($where != "") {
$query .= " WHERE " . $where; $query .= " WHERE " . $where . $Orwhere;
} }
$query .= $this->getClause("GROUP By", $this->groupby); $query .= $this->getClause("GROUP By", $this->groupby);
@@ -229,7 +257,7 @@ class QueryBuilder
private function fillData(Query &$query): void private function fillData(Query &$query): void
{ {
foreach ($this->wheres as $expression) { foreach (array_merge($this->wheres,$this->orwheres) as $expression) {
if ($expression instanceof Expression) { if ($expression instanceof Expression) {
if ($expression->hasData()) { if ($expression->hasData()) {
$query->addData($expression->getValue()); $query->addData($expression->getValue());
@@ -238,10 +266,18 @@ class QueryBuilder
} }
} }
private function getWhere(): string private function getWhere(int $mode = QueryBuilder::MODE_AND): string
{ {
$where = ""; $where = "";
foreach ($this->wheres as $expression) { $collection = match ($mode) {
QueryBuilder::MODE_AND => $this->wheres,
QueryBuilder::MODE_OR => $this->orwheres,
};
$keyword = match ($mode) {
QueryBuilder::MODE_AND => " AND ",
QueryBuilder::MODE_OR => " OR ",
};
foreach ($collection as $expression) {
$sw = ""; $sw = "";
if ($expression instanceof Expression) { if ($expression instanceof Expression) {
$sw = $expression->raw(); $sw = $expression->raw();
@@ -252,7 +288,7 @@ class QueryBuilder
} }
} }
if ($where != "" && $sw != "") { if ($where != "" && $sw != "") {
$where .= " AND "; $where .= " $keyword ";
} }
$where .= $sw; $where .= $sw;
} }

View File

@@ -98,6 +98,10 @@ test("querybuilder", function() {
$qb->reset(); $qb->reset();
$rows = $qb->whereNotNull("col1")->get(); $rows = $qb->whereNotNull("col1")->get();
expect(count($rows))->toBe(2); expect(count($rows))->toBe(2);
$qb->reset();
$rows = $qb->where("id",1)->orWhere("id",2)->get();
expect(count($rows))->toBe(2);
}); });
test("extending model",function() test("extending model",function()