-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathBuilder.php
661 lines (562 loc) · 17 KB
/
Builder.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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
<?php
namespace Kitar\Dynamodb\Query;
use Closure;
use BadMethodCallException;
use Kitar\Dynamodb\Connection;
use Kitar\Dynamodb\Query\Grammar;
use Kitar\Dynamodb\Query\Processor;
use Kitar\Dynamodb\Query\ExpressionAttributes;
use Illuminate\Support\Str;
use Illuminate\Database\Query\Expression;
use Illuminate\Database\Query\Builder as BaseBuilder;
class Builder extends BaseBuilder
{
/**
* Name of the index.
* @var string|null
*/
public $index;
/**
* The key.
* @var array
*/
public $key = [];
/**
* The item.
* @var array
*/
public $item = [];
/**
* The key/values to update.
* @var array
*/
public $updates = [
'set' => [],
'remove' => []
];
/**
* Keys array for BatchGetItem
* https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_BatchGetItem.html
* @var array
*/
public $batch_get_keys = [];
/**
* RequestItems array for BatchWriteItem
* https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_BatchWriteItem.html
* @var array
*/
public $batch_write_request_items = [];
/**
* ScanIndexForward option.
*/
public $scan_index_forward;
/**
* LastEvaluatedKey option.
* @var array|null
*/
public $exclusive_start_key;
/**
* ConsistentRead option.
* @var boolean|null
*/
public $consistent_read;
/**
* dry run option.
* @var boolean
*/
public $dry_run = false;
/**
* The model class name used to transform the DynamoDB responses.
* @var string|null
*/
public $model_class;
/**
* The ExpressionAttributes object.
* @var Kitar\Dynamodb\Query\ExpressionAttributes
*/
protected $expression_attributes;
/**
* Available where methods which will pass to dedicated queries.
* @var array
*/
protected $available_wheres;
/**
* The attribute name to place compiled wheres.
* @var string
*/
protected $where_as;
/**
* Dedicated query for building FilterExpression.
* @var \Kitar\Dynamodb\Query\Builder
*/
protected $filter_query;
/**
* Dedicated query for building ConditionExpression.
* @var \Kitar\Dynamodb\Query\Builder
*/
protected $condition_query;
/**
* Dedicated query for building KeyConditionExpression.
* @var \Kitar\Dynamodb\Query\Builder
*/
protected $key_condition_query;
/**
* The attributes to be returned in the result
* @var string
*/
protected $selectAttributes = 'ALL_ATTRIBUTES';
/**
* Create a new query builder instance.
*
* @param \Kitar\Dynamodb\Connection $connection
* @param \Kitar\Dynamodb\Query\Grammar $grammar
* @param \Kitar\Dynamodb\Query\Processor $processor
* @param \Kitar\Dynamodb\Query\ExpressionAttributes|null $expression_attributes
* @param bool $is_nested_query
* @return void
*/
public function __construct(Connection $connection, Grammar $grammar, Processor $processor, $expression_attributes = null, $is_nested_query = false)
{
$this->connection = $connection;
$this->grammar = $grammar;
$this->processor = $processor;
$this->expression_attributes = $expression_attributes ?? new ExpressionAttributes();
if (! $is_nested_query) {
$this->initializeDedicatedQueries();
}
}
/**
* Set the index name.
*
* @param string $index
* @return $this
*/
public function index(string $index)
{
$this->index = $index;
return $this;
}
/**
* Set the key.
*
* @param array $key
* @return $this
*/
public function key(array $key)
{
$this->key = $key;
return $this;
}
/**
* Set the ScanIndexForward option.
*
* @param bool $bool
* @return $this
*/
public function scanIndexForward($bool)
{
$this->scan_index_forward = $bool;
return $this;
}
/**
* Set the ExclusiveStartKey option.
*
* @param array $key
* @return $this
*/
public function exclusiveStartKey($key)
{
$this->exclusive_start_key = $key;
return $this;
}
/**
* Set the ConsistentRead option.
*
* @param bool $active
* @return $this
*/
public function consistentRead($active = true)
{
$this->consistent_read = $active;
return $this;
}
/**
* Set the dry run option.
*
* @param bool $active
* @return $this
*/
public function dryRun($active = true)
{
$this->dry_run = $active;
return $this;
}
/**
* If set, response items will be converted to the model instance by using:
* (new $model_class)->newFromBuilder($item).
*
* @var string
* @return $this
*/
public function usingModel($class_name)
{
$this->model_class = $class_name;
return $this;
}
/**
* Set key name of wheres. eg. FilterExpression
*
* @param string $condition_key_name
* @return $this
*/
protected function whereAs($condition_key_name)
{
$this->where_as = $condition_key_name;
return $this;
}
/**
* Get the where_as attribute.
*
* @return string
*/
public function getWhereAs()
{
return $this->where_as;
}
/**
* Set select attributes
*
* @param string $selectAttributes
* @return $this
*/
protected function selectAttributes(string $selectAttributes) {
$this->selectAttributes = $selectAttributes;
return $this;
}
/**
* Get the selectAttributes attribute.
*
* @return string
*/
public function getSelectAttributes() {
return $this->selectAttributes;
}
/**
* Get item.
*
* @param array|null $key
* @return array|null
*/
public function getItem($key = null)
{
if ($key) {
$this->key($key);
}
return $this->process('getItem', 'processSingleItem');
}
/**
* Put item.
*
* @param array $item
* @return \Aws\Result
*/
public function putItem($item)
{
$this->item = $item;
return $this->process('putItem', null);
}
/**
* Delete item.
*
* @param array $key;
* @return \Aws\Result
*/
public function deleteItem($key)
{
$this->key($key);
return $this->process('deleteItem', null);
}
/**
* Update item.
*
* @param array $item
* @return array|null
*/
public function updateItem($item)
{
foreach ($item as $name => $value) {
$name = $this->expression_attributes->addName($name);
// If value is null, it will pass to REMOVE actions.
if ($value === null) {
$this->updates['remove'][] = $name;
// If value set, it will pass to SET actions.
} else {
$value = $this->expression_attributes->addValue($value);
$this->updates['set'][] = "{$name} = {$value}";
}
}
return $this->process('updateItem', 'processSingleItem');
}
public function batchGetItem($keys)
{
$this->batch_get_keys = $keys;
return $this->process('batchGetItem', 'processBatchGetItems');
}
public function batchPutItem($items)
{
$this->batch_write_request_items = collect($items)->map(function ($item) {
return [
'PutRequest' => [
'Item' => $item,
],
];
})->toArray();
return $this->batchWriteItem();
}
public function batchDeleteItem($keys)
{
$this->batch_write_request_items = collect($keys)->map(function ($key) {
return [
'DeleteRequest' => [
'Key' => $key,
],
];
})->toArray();
return $this->batchWriteItem();
}
public function batchWriteItem($request_items = [])
{
if (! empty($request_items)) {
$this->batch_write_request_items = $request_items;
}
return $this->process('batchWriteItem', null);
}
public function count($columns = '*') {
// reset columns selection
$this->select([])->selectAttributes('COUNT');
return (int) $this->process('clientQuery', 'processCount');
}
/**
* @inheritdoc
*/
public function increment($column, $amount = 1, array $extra = [])
{
return $this->incrementOrDecrement($column, '+', $amount, $extra);
}
/**
* @inheritdoc
*/
public function decrement($column, $amount = 1, array $extra = [])
{
return $this->incrementOrDecrement($column, '-', $amount, $extra);
}
/**
* Increment or decrement column's value by a given amount.
*
* @param $column
* @param $symbol
* @param int $amount
* @param array $extra
* @return array|\Aws\Result|Aws\Result|\Illuminate\Support\Collection
*/
protected function incrementOrDecrement($column, $symbol, $amount = 1, array $extra = [])
{
$name = $this->expression_attributes->addName($column);
$value = $this->expression_attributes->addValue($amount);
$this->updates['set'][] = "{$name} = {$name} {$symbol} {$value}";
return $this->updateItem($extra);
}
/**
* Query.
*
* @return \Illuminate\Support\Collection|array
*/
public function query()
{
return $this->process('clientQuery', 'processMultipleItems');
}
/**
* Scan.
*
* @param array $columns
* @return \Illuminate\Support\Collection|array
*/
public function scan($columns = [])
{
if (! empty($columns)) {
$this->select($columns);
}
return $this->process('scan', 'processMultipleItems');
}
/**
* Make individual Builder instance for condition types.
*
* @return void
*/
protected function initializeDedicatedQueries()
{
// Set builder instances.
$this->filter_query = $this->newQuery()->whereAs('FilterExpression');
$this->condition_query = $this->newQuery()->whereAs('ConditionExpression');
$this->key_condition_query = $this->newQuery()->whereAs('KeyConditionExpression');
// Make method map.
// Array of: 'incomingMethodName' => [ 'target_builder_instance_name', 'targetMethodName' ]
foreach (['filter', 'condition', 'key_condition'] as $query_type) {
foreach (['', 'or'] as $boolean) {
foreach (['', 'in', 'between'] as $where_type) {
$target_query = $query_type . '_query';
$source_method = Str::camel(implode('_', [$boolean, $query_type, $where_type]));
$target_method = Str::camel(implode('_', [$boolean, 'where', $where_type]));
$this->available_wheres[$source_method] = [$target_query, $target_method];
}
}
}
}
/**
* Perform where methods within dedicated queries.
*
* @param string $method
* @param array $parameters
* @return $this
*/
public function __call($method, $parameters)
{
if (isset($this->available_wheres[$method])) {
$target_query = $this->available_wheres[$method][0];
$target_method = $this->available_wheres[$method][1];
$this->$target_query = call_user_func_array([$this->$target_query, $target_method], $parameters);
return $this;
}
throw new BadMethodCallException('Call to undefined method ' . static::class . "::{$method}()");
}
/**
* @inheritdoc
*/
public function where($column, $operator = null, $value = null, $boolean = 'and')
{
// Convert column and value to ExpressionAttributes.
if (! $column instanceof Closure) {
$column = $this->expression_attributes->addName($column);
if ($value !== null) {
$value = $this->expression_attributes->addValue($value);
}
}
// If the columns is actually a Closure instance, we will assume the developer
// wants to begin a nested where statement which is wrapped in parenthesis.
// We'll add that Closure to the query then return back out immediately.
if ($column instanceof Closure) {
return $this->whereNested($column, $boolean);
}
// If the given operator is not found in the list of valid operators we will
// assume that the developer is just short-cutting the '=' operators and
// we will set the operators to '=' and set the values appropriately.
if ($this->invalidOperator($operator)) {
$operator = $this->expression_attributes->addValue($operator);
[$value, $operator] = [$operator, '='];
}
$type = 'Basic';
// Now that we are working with just a simple query we can put the elements
// in our array and add the query binding to our array of bindings that
// will be bound to each SQL statements when it is finally executed.
$this->wheres[] = compact(
'type',
'column',
'operator',
'value',
'boolean'
);
if (! $value instanceof Expression) {
$this->addBinding($value, 'where');
}
return $this;
}
/**
* @inheritdoc
*/
public function orWhere($column, $operator = null, $value = null)
{
return $this->where($column, $operator, $value, 'or');
}
/**
* @inheritdoc
*/
public function whereIn($column, $values, $boolean = 'and', $not = false)
{
$column = $this->expression_attributes->addName($column);
foreach ($values as &$value) {
$value = $this->expression_attributes->addValue($value);
}
return parent::whereIn($column, $values, $boolean, $not);
}
/**
* @inheritdoc
*/
public function whereBetween($column, iterable $values, $boolean = 'and', $not = false)
{
$column = $this->expression_attributes->addName($column);
foreach ($values as &$value) {
$value = $this->expression_attributes->addValue($value);
}
return parent::whereBetween($column, $values, $boolean, $not);
}
/**
* @inheritdoc
*/
public function newQuery()
{
return new static($this->connection, $this->grammar, $this->processor, $this->expression_attributes, true);
}
/**
* Execute DynamoDB call and returns processed result.
*
* @param string $query_method
* @param array $params
* @param string $processor_method
* @return array|\Illuminate\Support\Collection|\Aws\Result
*/
protected function process($query_method, $processor_method = null)
{
// Compile columns and wheres attributes.
// These attributes needs to interact with ExpressionAttributes during compile,
// so it need to run before compileExpressionAttributes.
$params = array_merge(
$this->grammar->compileSelectAttributes($this->selectAttributes),
$this->grammar->compileProjectionExpression($this->columns, $this->expression_attributes),
$this->grammar->compileConditions($this->filter_query),
$this->grammar->compileConditions($this->condition_query),
$this->grammar->compileConditions($this->key_condition_query)
);
// Compile rest of attributes.
$params = array_merge(
$params,
$this->grammar->compileTableName($this->from),
$this->grammar->compileIndexName($this->index),
$this->grammar->compileKey($this->key),
$this->grammar->compileItem($this->item),
$this->grammar->compileUpdates($this->updates),
$this->grammar->compileBatchGetRequestItems($this->from, $this->batch_get_keys),
$this->grammar->compileBatchWriteRequestItems($this->from, $this->batch_write_request_items),
$this->grammar->compileDynamodbLimit($this->limit),
$this->grammar->compileScanIndexForward($this->scan_index_forward),
$this->grammar->compileExclusiveStartKey($this->exclusive_start_key),
$this->grammar->compileConsistentRead($this->consistent_read),
$this->grammar->compileExpressionAttributes($this->expression_attributes)
);
// Dry run.
if ($this->dry_run) {
return [
'method' => $query_method,
'params' => $params,
'processor' => $processor_method
];
}
// Execute.
$response = $this->connection->$query_method($params);
// Process.
if ($processor_method) {
return $this->processor->$processor_method($response, $this->model_class);
} else {
return $response;
}
}
}