summaryrefslogtreecommitdiffstats
path: root/vendor/gipfl/db-migration/src/Migration.php
blob: 2e6c5863fc424dbe31279ede680f0da908d6844b (plain)
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
<?php

namespace gipfl\DbMigration;

use Exception;
use gipfl\ZfDb\Adapter\Pdo\PdoAdapter as Db;
use InvalidArgumentException;
use RuntimeException;
use Zend_Db_Adapter_Pdo_Abstract as ZfDb;

class Migration
{
    /**
     * @var string
     */
    protected $sql;

    /**
     * @var int
     */
    protected $version;

    public function __construct($version, $sql)
    {
        $this->version = $version;
        $this->sql     = $sql;
    }

    /**
     * @param Db|ZfDb $db
     * @return $this
     */
    public function apply($db)
    {
        if (! ($db instanceof Db || $db instanceof ZfDb)) {
            throw new InvalidArgumentException('$db must be an valid Zend_Db PDO adapter');
        }
        // TODO: this is fragile and depends on accordingly written schema files:
        $sql = preg_replace('/-- .*$/m', '', $this->sql);
        $queries = preg_split(
            '/[\n\s\t]*;[\n\s\t]+/s',
            $sql,
            -1,
            PREG_SPLIT_NO_EMPTY
        );

        if (empty($queries)) {
            throw new RuntimeException(sprintf(
                'Migration %d has no queries',
                $this->version
            ));
        }

        try {
            foreach ($queries as $query) {
                if (preg_match('/^(?:OPTIMIZE|EXECUTE) /i', $query)) {
                    $db->query($query);
                } else {
                    $db->exec($query);
                }
            }
        } catch (Exception $e) {
            throw new RuntimeException(sprintf(
                'Migration %d failed (%s) while running %s',
                $this->version,
                $e->getMessage(),
                $query
            ));
        }

        return $this;
    }
}