-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCreateTable.php
103 lines (81 loc) · 1.78 KB
/
CreateTable.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?php
namespace ModernPDO\Actions;
use ModernPDO\Fields\Field;
use ModernPDO\Keys\Key;
use ModernPDO\Traits\CheckIfExistsTrait;
/**
* Class for creating tables.
*/
class CreateTable extends Action
{
use CheckIfExistsTrait;
/**
* @var Field[] table fields
*/
protected array $fields = [];
/**
* @var Key[] table keys
*/
protected array $keys = [];
/**
* Returns base query.
*/
protected function buildQuery(): string
{
$escaper = $this->mpdo->escaper();
$query = 'CREATE TABLE';
if ($this->checkIfExists) {
$query .= ' IF NOT EXISTS';
}
$query .= ' ' . $escaper->table($this->table);
$query .= ' (';
foreach ($this->fields as $field) {
$query .= $field->build($escaper) . ', ';
}
foreach ($this->keys as $key) {
$query .= $key->build($escaper) . ', ';
}
$query = substr($query, 0, -2) . ')';
return $query;
}
/**
* Returns placeholders.
*
* @return mixed[]
*/
protected function getPlaceholders(): array
{
return [];
}
/**
* Set table fields.
*
* @param Field[] $fields table fields
*/
public function fields(array $fields): self
{
$this->fields = $fields;
return $this;
}
/**
* Set table keys.
*
* @param Key[] $keys table keys
*/
public function keys(array $keys): self
{
$this->keys = $keys;
return $this;
}
/**
* Creates table.
*/
public function execute(): bool
{
if (empty($this->fields)) {
return false;
}
$this->query = $this->buildQuery();
return $this->exec()->status();
}
}