|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/** |
|
4
|
|
|
* This file is part of Phuria SQL Builder package. |
|
5
|
|
|
* |
|
6
|
|
|
* Copyright (c) 2016 Beniamin Jonatan Šimko |
|
7
|
|
|
* |
|
8
|
|
|
* For the full copyright and license information, please view the LICENSE |
|
9
|
|
|
* file that was distributed with this source code. |
|
10
|
|
|
*/ |
|
11
|
|
|
|
|
12
|
|
|
namespace Phuria\UnderQuery\TableFactory; |
|
13
|
|
|
|
|
14
|
|
|
use Phuria\UnderQuery\QueryBuilder\BuilderInterface; |
|
15
|
|
|
use Phuria\UnderQuery\Table\SubQueryTable; |
|
16
|
|
|
use Phuria\UnderQuery\Table\UnknownTable; |
|
17
|
|
|
use Phuria\UnderQuery\TableRecognizer; |
|
18
|
|
|
use Phuria\UnderQuery\TableRegistry; |
|
19
|
|
|
|
|
20
|
|
|
/** |
|
21
|
|
|
* @author Beniamin Jonatan Šimko <[email protected]> |
|
22
|
|
|
*/ |
|
23
|
|
|
class TableFactory implements TableFactoryInterface |
|
24
|
|
|
{ |
|
25
|
|
|
/** |
|
26
|
|
|
* @var TableRegistry $registry |
|
27
|
|
|
*/ |
|
28
|
|
|
private $registry; |
|
29
|
|
|
|
|
30
|
|
|
/** |
|
31
|
|
|
* @var TableRecognizer $tableRecognizer |
|
32
|
|
|
*/ |
|
33
|
|
|
private $tableRecognizer; |
|
34
|
|
|
|
|
35
|
|
|
/** |
|
36
|
|
|
* @param TableRegistry $registry |
|
37
|
|
|
*/ |
|
38
|
|
|
public function __construct(TableRegistry $registry) |
|
39
|
|
|
{ |
|
40
|
|
|
$this->registry = $registry; |
|
41
|
|
|
$this->tableRecognizer = new TableRecognizer(); |
|
42
|
|
|
} |
|
43
|
|
|
|
|
44
|
|
|
/** |
|
45
|
|
|
* @inheritdoc |
|
46
|
|
|
*/ |
|
47
|
|
|
public function createNewTable($table, BuilderInterface $qb) |
|
48
|
|
|
{ |
|
49
|
|
|
$tableType = $this->tableRecognizer->recognizeType($table); |
|
50
|
|
|
|
|
51
|
|
|
$tableClass = null; |
|
52
|
|
|
|
|
53
|
|
|
switch ($tableType) { |
|
54
|
|
|
case TableRecognizer::TYPE_CLOSURE: |
|
55
|
|
|
$tableClass = $this->tableRecognizer->extractClassName($table); |
|
56
|
|
|
break; |
|
57
|
|
|
case TableRecognizer::TYPE_CLASS_NAME: |
|
58
|
|
|
$tableClass = $table; |
|
59
|
|
|
break; |
|
60
|
|
|
case TableRecognizer::TYPE_TABLE_NAME: |
|
61
|
|
|
$tableClass = $this->registry->getTableClass($table); |
|
62
|
|
|
break; |
|
63
|
|
|
case TableRecognizer::TYPE_SUB_QUERY: |
|
64
|
|
|
return $this->createSubQueryTable($table, $qb); |
|
65
|
|
|
} |
|
66
|
|
|
|
|
67
|
|
|
return $this->doCreate($table, $tableClass, $qb); |
|
68
|
|
|
} |
|
69
|
|
|
|
|
70
|
|
|
/** |
|
71
|
|
|
* @param string $requestedTable |
|
72
|
|
|
* @param string $tableClass |
|
73
|
|
|
* @param BuilderInterface $qb |
|
74
|
|
|
* |
|
75
|
|
|
* @return mixed |
|
76
|
|
|
*/ |
|
77
|
|
|
private function doCreate($requestedTable, $tableClass, BuilderInterface $qb) |
|
78
|
|
|
{ |
|
79
|
|
|
$tableObject = new $tableClass($qb); |
|
80
|
|
|
|
|
81
|
|
|
if ($tableObject instanceof UnknownTable) { |
|
82
|
|
|
$tableObject->setTableName($requestedTable); |
|
83
|
|
|
} |
|
84
|
|
|
|
|
85
|
|
|
return $tableObject; |
|
86
|
|
|
} |
|
87
|
|
|
|
|
88
|
|
|
/** |
|
89
|
|
|
* @param BuilderInterface $subQb |
|
90
|
|
|
* @param BuilderInterface $qb |
|
91
|
|
|
* |
|
92
|
|
|
* @return SubQueryTable |
|
93
|
|
|
*/ |
|
94
|
|
|
private function createSubQueryTable(BuilderInterface $subQb, BuilderInterface $qb) |
|
95
|
|
|
{ |
|
96
|
|
|
return new SubQueryTable($subQb, $qb); |
|
97
|
|
|
} |
|
98
|
|
|
} |