1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Soupmix; |
4
|
|
|
/* |
5
|
|
|
SQL Adapter |
6
|
|
|
*/ |
7
|
|
|
|
8
|
|
|
use Doctrine\DBAL\Connection; |
9
|
|
|
use Doctrine\DBAL\Schema\Table; |
10
|
|
|
use Doctrine\DBAL\Schema\Column; |
11
|
|
|
use Doctrine\DBAL\Types\Type; |
12
|
|
|
use Doctrine\DBAL\Schema\Index; |
13
|
|
|
|
14
|
|
|
class SQL implements Base |
15
|
|
|
{ |
16
|
|
|
protected $doctrine = null; |
17
|
|
|
protected $dbName = null; |
18
|
|
|
protected static $columnDefaults = [ |
19
|
|
|
'name' => null, |
20
|
|
|
'type' => 'string', |
21
|
|
|
'type_info' => null, |
22
|
|
|
'maxLength' => 255, |
23
|
|
|
'default' => null, |
24
|
|
|
'index' => null, |
25
|
|
|
'index_type'=> null, |
26
|
|
|
] ; |
27
|
|
|
|
28
|
3 |
|
public function __construct($config, Connection $client) |
29
|
|
|
{ |
30
|
3 |
|
$this->doctrine = $client; |
31
|
3 |
|
$this->dbName = $config['db_name']; |
32
|
3 |
|
} |
33
|
|
|
|
34
|
2 |
|
public function getConnection() |
35
|
|
|
{ |
36
|
2 |
|
return $this->doctrine; |
37
|
|
|
} |
38
|
|
|
|
39
|
3 |
|
public function create($collection, $fields) |
40
|
|
|
{ |
41
|
3 |
|
$columns = []; |
42
|
3 |
|
$indexes = []; |
43
|
3 |
|
$schemaManager = $this->doctrine->getSchemaManager(); |
44
|
3 |
|
$columns[] = new Column('id', Type::getType('integer'), ['unsigned' => true, 'autoincrement' => true] ); |
45
|
3 |
|
$indexes[] = new Index($collection.'_PK', ['id'], false, true); |
46
|
3 |
|
$tmpIndexes = []; |
47
|
3 |
|
foreach ($fields as $field){ |
48
|
3 |
|
$field = array_merge(self::$columnDefaults, $field); |
49
|
3 |
|
$options = []; |
50
|
3 |
|
if ($field['type'] == 'integer' && $field['type_info'] == 'unsigned') { |
51
|
|
|
$options['unsigned'] = true; |
52
|
|
|
} |
53
|
3 |
|
$options['length'] = $field['maxLength']; |
54
|
3 |
|
$options['default'] = $field['default']; |
55
|
3 |
View Code Duplication |
if ($field['index'] !== null) { |
|
|
|
|
56
|
3 |
|
if ( $field['index_type'] == 'unique' ) { |
57
|
3 |
|
$indexes[] = new Index($collection . '_' . $field['name'] . '_UNQ', [$field['name']], true, false); |
58
|
3 |
|
} else { |
59
|
3 |
|
$tmpIndexes[] = $field['name']; |
60
|
|
|
} |
61
|
3 |
|
} |
62
|
3 |
|
$columns[] = new Column($field['name'], Type::getType($field['type']), $options ); |
63
|
3 |
|
} |
64
|
3 |
View Code Duplication |
if(count($tmpIndexes)>0){ |
|
|
|
|
65
|
3 |
|
$indexes[] = new Index($collection . '_IDX', $tmpIndexes, false, false); |
66
|
3 |
|
} |
67
|
3 |
|
$table = new Table($collection, $columns, $indexes); |
68
|
3 |
|
return $schemaManager->createTable($table); |
69
|
|
|
} |
70
|
|
|
|
71
|
3 |
|
public function drop($collection) |
72
|
|
|
{ |
73
|
3 |
|
$schemaManager = $this->doctrine->getSchemaManager(); |
74
|
3 |
|
if ($schemaManager->tablesExist([$collection])) { |
75
|
2 |
|
return $schemaManager->dropTable($collection); |
76
|
|
|
} else { |
77
|
1 |
|
return null; |
78
|
|
|
} |
79
|
|
|
} |
80
|
|
|
|
81
|
|
|
public function truncate($collection) |
82
|
|
|
{ |
83
|
|
|
return $this->client->doctrine->query('TRUNCATE TABLE `' . $collection . '`'); |
|
|
|
|
84
|
|
|
} |
85
|
|
|
|
86
|
|
|
public function createIndexes($collection, $indexes) |
87
|
|
|
{ |
88
|
|
|
$schemaManager = $this->doctrine->getSchemaManager(); |
89
|
|
|
$tmpIndexes = []; |
90
|
|
|
foreach ($indexes as $field){ |
91
|
|
|
$field = array_merge(self::$columnDefaults, $field); |
92
|
|
View Code Duplication |
if ($field['index'] !== null) { |
|
|
|
|
93
|
|
|
if ( $field['index_type'] == 'unique' ) { |
94
|
|
|
$indexes[] = new Index($collection . '_' . $field['name'] . '_UNQ', [$field['name']], true, false); |
95
|
|
|
} else { |
96
|
|
|
$tmpIndexes[] = $field['name']; |
97
|
|
|
} |
98
|
|
|
} |
99
|
|
|
} |
100
|
|
View Code Duplication |
if (count($tmpIndexes) > 0) { |
|
|
|
|
101
|
|
|
$indexes[] = new Index($collection . '_IDX', $tmpIndexes, false, false); |
102
|
|
|
} |
103
|
|
|
foreach ($indexes as $index) { |
104
|
|
|
$schemaManager->createIndex($index, $collection); |
105
|
|
|
} |
106
|
|
|
} |
107
|
|
|
|
108
|
3 |
|
public function insert($collection, $values) |
109
|
|
|
{ |
110
|
3 |
|
$insertion = $this->doctrine->insert($collection, $values); |
111
|
3 |
|
if($insertion !== 0) { |
112
|
3 |
|
return $this->doctrine->lastInsertId(); |
113
|
|
|
} |
114
|
|
|
return null; |
115
|
|
|
} |
116
|
|
|
|
117
|
|
|
public function update($collection, $filter, $values) |
118
|
|
|
{ |
119
|
|
|
return $this->doctrine->update($collection, $values, $filter); |
120
|
|
|
} |
121
|
|
|
|
122
|
2 |
|
public function delete($collection, $filter) |
123
|
|
|
{ |
124
|
2 |
|
$numberOfDeletedItems = $this->doctrine->delete($collection, $filter); |
125
|
2 |
|
if ($numberOfDeletedItems>0) { |
126
|
2 |
|
return 1; |
127
|
|
|
} |
128
|
|
|
return 0; |
129
|
|
|
} |
130
|
|
|
|
131
|
1 |
|
public function get($collection, $docId) |
132
|
|
|
{ |
133
|
1 |
|
return $this->doctrine->fetchAssoc('SELECT * FROM '.$collection.' WHERE id = ?', array($docId)); |
134
|
|
|
} |
135
|
|
|
|
136
|
1 |
|
public function find($collection, $filters, $fields = null, $sort = null, $offset = 0, $limit = 25, $debug = false) |
137
|
|
|
{ |
138
|
1 |
|
$query = $this->query($collection); |
139
|
1 |
|
foreach ($filters as $filter => $value) { |
140
|
1 |
|
if (is_array($value)) { |
141
|
1 |
|
$query->orFilters($value); |
142
|
1 |
|
} else { |
143
|
1 |
|
$query->andFilter($filter, $value); |
144
|
|
|
} |
145
|
1 |
|
} |
146
|
1 |
|
return $query->returnFields($fields) |
147
|
1 |
|
->sortFields($sort) |
148
|
1 |
|
->offset($offset) |
149
|
1 |
|
->limit($limit) |
150
|
1 |
|
->run(); |
151
|
|
|
} |
152
|
|
|
|
153
|
3 |
|
public function buildQuery($collection, $filters) |
154
|
|
|
{ |
155
|
2 |
|
$queryBuilder = $this->doctrine->createQueryBuilder(); |
156
|
2 |
|
$queryBuilder->from($collection); |
157
|
2 |
|
if ($filters !== null) { |
158
|
2 |
|
foreach ($filters as $key => $value) { |
159
|
2 |
|
if (strpos($key, '__') === false && is_array($value)) { |
160
|
2 |
|
$orQuery =[]; |
161
|
2 |
|
foreach ($value as $orValue) { |
162
|
2 |
|
$subKey = array_keys($orValue)[0]; |
163
|
2 |
|
$subValue = $orValue[$subKey]; |
164
|
2 |
|
$sqlOptions = self::buildFilter([$subKey => $subValue]); |
165
|
2 |
|
if (in_array($sqlOptions['method'], ['in', 'notIn'])) { |
166
|
1 |
|
$orQuery[] = $queryBuilder->expr()->{$sqlOptions['method']}( $sqlOptions['key'], $sqlOptions['value']); |
167
|
1 |
View Code Duplication |
} else { |
|
|
|
|
168
|
2 |
|
$orQuery[] = |
169
|
2 |
|
'`'.$sqlOptions['key'].'`' |
170
|
2 |
|
. ' ' . $sqlOptions['operand'] |
171
|
2 |
|
. ' ' . $queryBuilder->createNamedParameter($sqlOptions['value']); |
172
|
|
|
} |
173
|
2 |
|
} |
174
|
3 |
|
$queryBuilder->andWhere( |
175
|
2 |
|
'(' . implode(' OR ', $orQuery) . ')' |
176
|
2 |
|
); |
177
|
2 |
|
} else { |
178
|
2 |
|
$sqlOptions = self::buildFilter([$key=>$value]); |
179
|
2 |
|
if (in_array($sqlOptions['method'], ['in', 'notIn'])) { |
180
|
|
|
$queryBuilder->andWhere( |
181
|
|
|
$queryBuilder->expr()->{$sqlOptions['method']}( $sqlOptions['key'], $sqlOptions['value']) |
182
|
|
|
); |
183
|
|
View Code Duplication |
} else { |
|
|
|
|
184
|
2 |
|
$queryBuilder->andWhere( |
185
|
2 |
|
'`'.$sqlOptions['key'].'`' |
186
|
2 |
|
. ' ' . $sqlOptions['operand'] |
187
|
2 |
|
. ' ' . $queryBuilder->createNamedParameter($sqlOptions['value']) |
188
|
2 |
|
); |
189
|
|
|
} |
190
|
|
|
} |
191
|
2 |
|
} |
192
|
2 |
|
} |
193
|
2 |
|
return $queryBuilder; |
194
|
|
|
} |
195
|
|
|
|
196
|
2 |
|
public function query($collection) |
197
|
|
|
{ |
198
|
2 |
|
return new SQLQueryBuilder($collection, $this); |
199
|
|
|
} |
200
|
|
|
|
201
|
2 |
|
public static function buildFilter($filter) |
202
|
|
|
{ |
203
|
2 |
|
$key = array_keys($filter)[0]; |
204
|
2 |
|
$value = $filter[$key]; |
205
|
2 |
|
$operator = ' = '; |
206
|
2 |
|
$method = 'eq'; |
207
|
|
|
$options =[ |
208
|
2 |
|
'gte' => ['method' => 'gte', 'operand' => ' >= '], |
209
|
2 |
|
'gt' => ['method' => 'gt', 'operand' => ' > '], |
210
|
2 |
|
'lte' => ['method' => 'lte', 'operand' => ' <= '], |
211
|
2 |
|
'lt' => ['method' => 'lt', 'operand' => ' < '], |
212
|
2 |
|
'in' => ['method' => 'in', 'operand' => ' IN '], |
213
|
2 |
|
'!in' => ['method' => 'notIn', 'operand' => ' NOT IN '], |
214
|
2 |
|
'not' => ['method' => 'not', 'operand' => ' NOT '], |
215
|
2 |
|
'wildcard' => ['method' => 'like', 'operand' => ' LIKE '], |
216
|
2 |
|
'prefix' => ['method' => 'like', 'operand' => ' LIKE '], |
217
|
2 |
|
]; |
218
|
2 |
|
if (strpos($key, '__') !== false) { |
219
|
2 |
|
preg_match('/__(.*?)$/i', $key, $matches); |
220
|
2 |
|
$key = str_replace($matches[0], '', $key); |
221
|
2 |
|
$queryOperator = $matches[1]; |
222
|
2 |
|
$method = $options[$queryOperator]['method']; |
223
|
2 |
|
$operator = $options[$queryOperator]['operand']; |
224
|
|
|
switch ($queryOperator) { |
225
|
2 |
|
case 'wildcard': |
226
|
1 |
|
$value = '%'.str_replace(array('?', '*'), array('_', '%'), $value).'%'; |
227
|
1 |
|
break; |
228
|
2 |
|
case 'prefix': |
229
|
1 |
|
$value = $value.'%'; |
230
|
1 |
|
break; |
231
|
|
|
} |
232
|
2 |
|
} |
233
|
|
|
return [ |
234
|
2 |
|
'key' => $key, |
235
|
2 |
|
'operand' => $operator, |
236
|
2 |
|
'method' => $method, |
237
|
|
|
'value' => $value |
238
|
2 |
|
]; |
239
|
|
|
} |
240
|
|
|
|
241
|
|
|
} |
242
|
|
|
|
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.