Total Complexity | 42 |
Total Lines | 266 |
Duplicated Lines | 0 % |
Changes | 0 |
Complex classes like ExportFacade often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use ExportFacade, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
17 | class ExportFacade extends AbstractFacade |
||
18 | { |
||
19 | use Traits\TableExportTrait; |
||
|
|||
20 | use Traits\TableDumpTrait; |
||
21 | |||
22 | /** |
||
23 | * The databases to dump |
||
24 | * |
||
25 | * @var array |
||
26 | */ |
||
27 | private $databases; |
||
28 | |||
29 | /** |
||
30 | * The tables to dump |
||
31 | * |
||
32 | * @var array |
||
33 | */ |
||
34 | private $tables; |
||
35 | |||
36 | /** |
||
37 | * Get data for export |
||
38 | * |
||
39 | * @param string $database The database name |
||
40 | * @param string $table |
||
41 | * |
||
42 | * @return array |
||
43 | */ |
||
44 | public function getExportOptions(string $database, string $table = ''): array |
||
45 | { |
||
46 | $results = [ |
||
47 | 'options' => $this->getBaseOptions($database, $table), |
||
48 | 'prefixes' => [], |
||
49 | 'labels' => [ |
||
50 | 'export' => $this->utils->trans->lang('Export'), |
||
51 | ], |
||
52 | ]; |
||
53 | if (($database)) { |
||
54 | $results['tables'] = $this->getDbTables(); |
||
55 | } else { |
||
56 | $results['databases'] = $this->getDatabases(); |
||
57 | } |
||
58 | return $results; |
||
59 | } |
||
60 | |||
61 | /** |
||
62 | * Dump routines in the connected database |
||
63 | * |
||
64 | * @param string $database The database name |
||
65 | * |
||
66 | * @return void |
||
67 | */ |
||
68 | private function dumpRoutines(string $database) |
||
69 | { |
||
70 | // From dump.inc.php |
||
71 | $style = $this->options['db_style']; |
||
72 | |||
73 | if ($this->options['routines']) { |
||
74 | $sql = 'SHOW FUNCTION STATUS WHERE Db = ' . $this->driver->quote($database); |
||
75 | foreach ($this->driver->rows($sql) as $row) { |
||
76 | $sql = 'SHOW CREATE FUNCTION ' . $this->driver->escapeId($row['Name']); |
||
77 | $create = $this->driver->removeDefiner($this->driver->result($sql, 2)); |
||
78 | $this->queries[] = $this->driver->setUtf8mb4($create); |
||
79 | if ($style != 'DROP+CREATE') { |
||
80 | $this->queries[] = 'DROP FUNCTION IF EXISTS ' . $this->driver->escapeId($row['Name']) . ';;'; |
||
81 | } |
||
82 | $this->queries[] = "$create;;\n"; |
||
83 | } |
||
84 | $sql = 'SHOW PROCEDURE STATUS WHERE Db = ' . $this->driver->quote($database); |
||
85 | foreach ($this->driver->rows($sql) as $row) { |
||
86 | $sql = 'SHOW CREATE PROCEDURE ' . $this->driver->escapeId($row['Name']); |
||
87 | $create = $this->driver->removeDefiner($this->driver->result($sql, 2)); |
||
88 | $this->queries[] = $this->driver->setUtf8mb4($create); |
||
89 | if ($style != 'DROP+CREATE') { |
||
90 | $this->queries[] = 'DROP PROCEDURE IF EXISTS ' . $this->driver->escapeId($row['Name']) . ';;'; |
||
91 | } |
||
92 | $this->queries[] = "$create;;\n"; |
||
93 | } |
||
94 | } |
||
95 | } |
||
96 | |||
97 | /** |
||
98 | * Dump events in the connected database |
||
99 | * |
||
100 | * @return void |
||
101 | */ |
||
102 | private function dumpEvents() |
||
103 | { |
||
104 | // From dump.inc.php |
||
105 | $style = $this->options['db_style']; |
||
106 | |||
107 | if ($this->options['events']) { |
||
108 | foreach ($this->driver->rows('SHOW EVENTS') as $row) { |
||
109 | $sql = 'SHOW CREATE EVENT ' . $this->driver->escapeId($row['Name']); |
||
110 | $create = $this->driver->removeDefiner($this->driver->result($sql, 3)); |
||
111 | $this->queries[] = $this->driver->setUtf8mb4($create); |
||
112 | if ($style != 'DROP+CREATE') { |
||
113 | $this->queries[] = 'DROP EVENT IF EXISTS ' . $this->driver->escapeId($row['Name']) . ';;'; |
||
114 | } |
||
115 | $this->queries[] = "$create;;\n"; |
||
116 | } |
||
117 | } |
||
118 | } |
||
119 | |||
120 | /** |
||
121 | * @return void |
||
122 | */ |
||
123 | private function dumpViewsAndFKeys() |
||
134 | } |
||
135 | } |
||
136 | |||
137 | /** |
||
138 | * @param string $database |
||
139 | * |
||
140 | * @return string |
||
141 | */ |
||
142 | private function getCreateDatabaseQuery(string $database): string |
||
143 | { |
||
144 | if (!$this->options['is_sql'] || preg_match('~CREATE~', $this->options['db_style']) === false) { |
||
145 | return ''; |
||
146 | } |
||
147 | $sql = 'SHOW CREATE DATABASE ' . $this->driver->escapeId($database); |
||
148 | return $this->driver->result($sql, 1); |
||
149 | } |
||
150 | |||
151 | /** |
||
152 | * @param string $database |
||
153 | * |
||
154 | * @return void |
||
155 | */ |
||
156 | private function dumpUseDatabaseQuery(string $database) |
||
157 | { |
||
158 | if (!$this->options['is_sql'] || !$this->options['db_style'] || $this->driver->jush() !== 'sql') { |
||
159 | return; |
||
160 | } |
||
161 | if (($query = $this->driver->getUseDatabaseQuery($database))) { |
||
162 | $this->queries[] = $query . ';'; |
||
163 | $this->queries[] = ''; // Empty line |
||
164 | } |
||
165 | } |
||
166 | |||
167 | /** |
||
168 | * @param string $database |
||
169 | * |
||
170 | * @return void |
||
171 | */ |
||
172 | private function dumpCreateDatabaseQuery(string $database) |
||
185 | } |
||
186 | |||
187 | /** |
||
188 | * @param string $database |
||
189 | * |
||
190 | * @return void |
||
191 | */ |
||
192 | private function dumpDatabase(string $database) |
||
217 | } |
||
218 | |||
219 | /** |
||
220 | * @return array|null |
||
221 | */ |
||
222 | private function getDatabaseExportHeaders(): ?array |
||
244 | } |
||
245 | |||
246 | /** |
||
247 | * Export databases |
||
248 | * |
||
249 | * @param array $databases The databases to dump |
||
250 | * @param array $tables The tables to dump |
||
251 | * @param array $options The export options |
||
252 | * |
||
253 | * @return array|string |
||
254 | */ |
||
255 | public function exportDatabases(array $databases, array $tables, array $options) |
||
283 | ]; |
||
284 | } |
||
286 |