1 | <?php |
||
40 | abstract class PdoAdapter extends AbstractAdapter |
||
41 | { |
||
42 | /** |
||
43 | * @var \PDO|null |
||
44 | */ |
||
45 | protected $connection; |
||
46 | |||
47 | /** |
||
48 | * {@inheritdoc} |
||
49 | */ |
||
50 | public function setOptions(array $options) |
||
51 | 287 | { |
|
52 | parent::setOptions($options); |
||
53 | 287 | ||
54 | if (isset($options['connection'])) { |
||
55 | 287 | $this->setConnection($options['connection']); |
|
56 | 3 | } |
|
57 | 3 | ||
58 | return $this; |
||
59 | 287 | } |
|
60 | |||
61 | /** |
||
62 | * Sets the database connection. |
||
63 | * |
||
64 | * @param \PDO $connection Connection |
||
65 | * @return \Phinx\Db\Adapter\AdapterInterface |
||
66 | */ |
||
67 | public function setConnection(\PDO $connection) |
||
68 | 193 | { |
|
69 | $this->connection = $connection; |
||
70 | 193 | ||
71 | // Create the schema table if it doesn't already exist |
||
72 | if (!$this->hasSchemaTable()) { |
||
73 | 193 | $this->createSchemaTable(); |
|
74 | 191 | } else { |
|
75 | 191 | $table = new Table($this->getSchemaTableName(), [], $this); |
|
76 | 74 | if (!$table->hasColumn('migration_name')) { |
|
77 | 74 | $table |
|
78 | ->addColumn( |
||
79 | 'migration_name', |
||
80 | 'string', |
||
81 | ['limit' => 100, 'after' => 'version', 'default' => null, 'null' => true] |
||
82 | ) |
||
83 | ->save(); |
||
84 | } |
||
85 | if (!$table->hasColumn('breakpoint')) { |
||
86 | 74 | $table |
|
87 | ->addColumn('breakpoint', 'boolean', ['default' => false]) |
||
88 | ->save(); |
||
89 | } |
||
90 | } |
||
91 | |||
92 | return $this; |
||
93 | 193 | } |
|
94 | |||
95 | /** |
||
96 | * Gets the database connection |
||
97 | * |
||
98 | * @return \PDO |
||
99 | */ |
||
100 | public function getConnection() |
||
101 | 191 | { |
|
102 | if ($this->connection === null) { |
||
103 | 191 | $this->connect(); |
|
104 | 189 | } |
|
105 | 189 | ||
106 | 191 | return $this->connection; |
|
107 | } |
||
108 | |||
109 | /** |
||
110 | * {@inheritdoc} |
||
111 | */ |
||
112 | 1 | public function connect() |
|
115 | |||
116 | /** |
||
117 | * {@inheritdoc} |
||
118 | */ |
||
119 | public function disconnect() |
||
122 | |||
123 | /** |
||
124 | * {@inheritdoc} |
||
125 | */ |
||
126 | 218 | public function execute($sql) |
|
140 | |||
141 | /** |
||
142 | 220 | * Executes a query and returns PDOStatement. |
|
143 | * |
||
144 | 220 | * @param string $sql SQL |
|
145 | * @return \PDOStatement |
||
146 | */ |
||
147 | public function query($sql) |
||
155 | |||
156 | /** |
||
157 | * {@inheritdoc} |
||
158 | */ |
||
159 | 213 | public function fetchRow($sql) |
|
165 | 208 | ||
166 | 213 | /** |
|
167 | * {@inheritdoc} |
||
168 | */ |
||
169 | public function fetchAll($sql) |
||
179 | 1 | ||
180 | 1 | /** |
|
181 | 1 | * {@inheritdoc} |
|
182 | */ |
||
183 | 1 | public function insert(Table $table, $row) |
|
197 | 11 | ||
198 | 11 | /** |
|
199 | 11 | * {@inheritdoc} |
|
200 | */ |
||
201 | 11 | public function bulkinsert(Table $table, $rows) |
|
229 | |||
230 | /** |
||
231 | * {@inheritdoc} |
||
232 | 8 | */ |
|
233 | public function getVersions() |
||
239 | 6 | ||
240 | 2 | /** |
|
241 | 1 | * {@inheritdoc} |
|
242 | 1 | */ |
|
243 | 1 | public function getVersionLog() |
|
244 | 1 | { |
|
245 | 8 | $result = []; |
|
246 | |||
247 | 7 | switch ($this->options['version_order']) { |
|
248 | 7 | case \Phinx\Config\Config::VERSION_ORDER_CREATION_TIME: |
|
249 | 7 | $orderBy = 'version ASC'; |
|
250 | 7 | break; |
|
251 | case \Phinx\Config\Config::VERSION_ORDER_EXECUTION_TIME: |
||
252 | 7 | $orderBy = 'start_time ASC, version ASC'; |
|
253 | break; |
||
254 | default: |
||
255 | throw new \RuntimeException('Invalid version_order configuration option'); |
||
256 | } |
||
257 | |||
258 | 5 | $rows = $this->fetchAll(sprintf('SELECT * FROM %s ORDER BY %s', $this->getSchemaTableName(), $orderBy)); |
|
259 | foreach ($rows as $version) { |
||
260 | 5 | $result[$version['version']] = $version; |
|
261 | } |
||
262 | 5 | ||
263 | 5 | return $result; |
|
264 | 5 | } |
|
265 | 5 | ||
266 | 5 | /** |
|
267 | 5 | * {@inheritdoc} |
|
268 | 5 | */ |
|
269 | 5 | public function migrated(MigrationInterface $migration, $direction, $startTime, $endTime) |
|
303 | 1 | ||
304 | 1 | /** |
|
305 | 1 | * @inheritDoc |
|
306 | 1 | */ |
|
307 | 1 | public function toggleBreakpoint(MigrationInterface $migration) |
|
308 | 1 | { |
|
309 | 1 | $this->query( |
|
310 | sprintf( |
||
311 | 1 | 'UPDATE %1$s SET %2$s = CASE %2$s WHEN %3$s THEN %4$s ELSE %3$s END, %7$s = %7$s WHERE %5$s = \'%6$s\';', |
|
312 | $this->getSchemaTableName(), |
||
313 | $this->quoteColumnName('breakpoint'), |
||
314 | $this->castToBool(true), |
||
315 | $this->castToBool(false), |
||
316 | $this->quoteColumnName('version'), |
||
317 | 1 | $migration->getVersion(), |
|
318 | $this->quoteColumnName('start_time') |
||
319 | 1 | ) |
|
320 | 1 | ); |
|
321 | 1 | ||
322 | 1 | return $this; |
|
323 | 1 | } |
|
324 | 1 | ||
325 | 1 | /** |
|
326 | 1 | * @inheritDoc |
|
327 | 1 | */ |
|
328 | public function resetAllBreakpoints() |
||
329 | { |
||
330 | return $this->execute( |
||
331 | sprintf( |
||
332 | 'UPDATE %1$s SET %2$s = %3$s, %4$s = %4$s WHERE %2$s <> %3$s;', |
||
333 | $this->getSchemaTableName(), |
||
334 | $this->quoteColumnName('breakpoint'), |
||
335 | $this->castToBool(false), |
||
336 | $this->quoteColumnName('start_time') |
||
337 | ) |
||
338 | ); |
||
339 | } |
||
340 | |||
341 | /** |
||
342 | * {@inheritdoc} |
||
343 | */ |
||
344 | public function createSchema($schemaName = 'public') |
||
348 | |||
349 | 208 | /** |
|
350 | * {@inheritdoc} |
||
351 | */ |
||
352 | 208 | public function dropSchema($name) |
|
356 | 208 | ||
357 | 208 | /** |
|
358 | 208 | * {@inheritdoc} |
|
359 | 208 | */ |
|
360 | 208 | public function getColumnTypes() |
|
386 | |||
387 | /** |
||
388 | * {@inheritdoc} |
||
389 | */ |
||
390 | public function castToBool($value) |
||
391 | { |
||
392 | return (bool)$value ? 1 : 0; |
||
393 | } |
||
394 | } |
||
395 |