-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathKMBlueprint.php
247 lines (205 loc) · 5.33 KB
/
KMBlueprint.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
<?php
/**
* @author kofimokome
*/
if ( ! class_exists( 'KMBlueprint' ) ) {
#[AllowDynamicProperties]
class KMBlueprint {
private $columns;
private $is_update;
private $drop_table;
public function __construct( bool $is_update = false ) {
$this->is_update = $is_update;
$this->columns = [];
$this->drop_table = false;
return $this;
}
/**
* @param string $table
* @param string $field
* @param string $type
* @param string $default
*
* @return void
* @author kofimokome
*
* @since 1.0.0
*/
public static function addColumn( string $table, string $field, string $type, string $default = '' ) {
global $wpdb;
$results = $wpdb->get_results( $wpdb->prepare( "SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE table_name = '%s' AND column_name = '%s'", [
$table,
$field
] ) );
if ( empty( $results ) ) {
$default_string = is_numeric( $default ) ? "DEFAULT $default" : "DEFAULT " . "'$default'";
$wpdb->query( $wpdb->prepare( "ALTER TABLE %s ADD %s %s NOT NULL %s", [
$table,
$field,
$type,
$default_string
] ) );
}
}
/*public function longText( string $name ) {
$column = new Column( $name, [ 'TEXT' ] );
array_push( $this->columns, $column );
return $column;
}*/
/*public function change( $name, $new_name ): Column {
$column = new Column( $name, [], [ 'new_name' => $new_name, 'is_change' => true ] );
array_push( $this->columns, $column );
return $column;
}*/
/**
* @author kofimokome
* @since 1.0.0
*/
public function string( string $name, int $size = 255 ): KMColumn {
$column = new KMColumn( $name, [ 'VARCHAR(' . $size . ')' ], [ 'is_update' => $this->is_update ] );
array_push( $this->columns, $column );
return $column;
}
/**
* @author kofimokome
* @since 1.0.0
*/
public function text( string $name ): KMColumn {
$column = new KMColumn( $name, [ 'TEXT' ], [ 'is_update' => $this->is_update ] );
array_push( $this->columns, $column );
return $column;
}
/**
* @author kofimokome
* @since 1.0.0
*/
public function integer( string $name ): KMColumn {
$column = new KMColumn( $name, [ 'INTEGER', 'SIGNED' ], [ 'is_update' => $this->is_update ] );
array_push( $this->columns, $column );
return $column;
}
/**
* @author kofimokome
* @since 1.0.0
*/
public function bigInt( string $name ): KMColumn {
$column = new KMColumn( $name, [ 'BIGINT', 'SIGNED' ], [ 'is_update' => $this->is_update ] );
array_push( $this->columns, $column );
return $column;
}
/**
* @author kofimokome
* @since 1.0.0
*/
public function id(): KMColumn {
$column = new KMColumn( 'id', [
'BIGINT',
'UNSIGNED',
'AUTO_INCREMENT',
'PRIMARY KEY'
], [ 'is_update' => $this->is_update ] );
array_push( $this->columns, $column );
return $column;
}
/**
* @author kofimokome
* @since 1.0.0
*/
public function timestamps() {
$this->dateTime( 'created_at' )->nullable();
$this->dateTime( 'updated_at' )->nullable();
}
/**
* @author kofimokome
* @since 1.0.0
*/
public function dateTime( string $name ): KMColumn {
$column = new KMColumn( $name, [ 'DATETIME' ], [ 'is_update' => $this->is_update ] );
array_push( $this->columns, $column );
return $column;
}
/**
* @author kofimokome
* @since 1.0.0
*/
public function softDelete() {
$this->boolean( 'deleted' )->nullable()->default( 0 );
}
/**
* @author kofimokome
* @since 1.0.0
*/
public function boolean( string $name ): KMColumn {
$column = new KMColumn( $name, [ 'BOOL' ], [ 'is_update' => $this->is_update ] );
array_push( $this->columns, $column );
return $column;
}
/**
* @author kofimokome
* @since 1.0.0
*/
public function date( string $name ): KMColumn {
$column = new KMColumn( $name, [ 'DATE' ], [ 'is_update' => $this->is_update ] );
array_push( $this->columns, $column );
return $column;
}
/**
* @author kofimokome
* @since 1.0.0
*/
public function dropColumn( $name ): void {
$column = new KMColumn( $name, [], [ 'is_delete' => true ] );
array_push( $this->columns, $column );
}
/**
* @author kofimokome
* @since 1.0.0
*/
public function rename( $name, $new_name ): void {
$column = new KMColumn( $name, [], [ 'new_name' => $new_name, 'is_rename' => true ] );
array_push( $this->columns, $column );
}
public function drop() {
$this->drop_table = true;
}
/**
* checks if a migration has a column
*
* @param string $field
*
* @return boolean
* @author kofimokome
* @since 1.0.0
*/
public function hasColumn( string $field ): bool {
foreach ( $this->columns as $column ) {
if ( $column->getName() == $field ) {
return true;
}
}
return false;
}
/**
* @author kofimokome
* Get the columns in this blueprint
*/
public function getColumns(): array {
return $this->columns;
}
/**
* @author kofimokome
* checks if the query is a drop table uery
*/
public function isDropTable(): bool {
return $this->drop_table;
}
public function toString(): string {
$column_string = '';
foreach ( $this->columns as $column ) {
$column_string .= $column->toString() . ',';
}
$column_string = rtrim( $column_string, ", " );
return $column_string;
}
}
}