]> git.immae.eu Git - github/wallabag/wallabag.git/blame - app/DoctrineMigrations/Version20170719231144.php
Fixed migrations with dash into db name
[github/wallabag/wallabag.git] / app / DoctrineMigrations / Version20170719231144.php
CommitLineData
bd164a75
KD
1<?php
2
3namespace Application\Migrations;
4
bd164a75 5use Doctrine\DBAL\Schema\Schema;
bfe7a692 6use Wallabag\CoreBundle\Doctrine\WallabagMigration;
bd164a75
KD
7
8/**
7b4f6688 9 * Changed tags to lowercase.
bd164a75 10 */
bfe7a692 11class Version20170719231144 extends WallabagMigration
bd164a75 12{
bd164a75
KD
13 /**
14 * @param Schema $schema
15 */
16 public function up(Schema $schema)
17 {
3ef055ce 18 $this->skipIf('sqlite' === $this->connection->getDatabasePlatform()->getName(), 'Migration can only be executed safely on \'mysql\' or \'postgresql\'.');
7b4f6688 19
bd164a75 20 // Find tags which need to be merged
7b4f6688 21 $dupTags = $this->connection->query('
40a63c8b 22 SELECT LOWER(label) AS lower_label
7b4f6688 23 FROM ' . $this->getTable('tag') . '
bd164a75 24 GROUP BY LOWER(label)
7b4f6688 25 HAVING COUNT(*) > 1'
bd164a75
KD
26 );
27 $dupTags->execute();
28
29 foreach ($dupTags->fetchAll() as $duplicates) {
40a63c8b 30 $label = $duplicates['lower_label'];
bd164a75
KD
31
32 // Retrieve all duplicate tags for a given tag
40a63c8b 33 $tags = $this->connection->executeQuery('
bd164a75 34 SELECT id
40a63c8b 35 FROM ' . $this->getTable('tag') . '
6c5904ba 36 WHERE LOWER(label) = :label
40a63c8b
KD
37 ORDER BY id ASC',
38 [
39 'label' => $label,
40 ]
bd164a75 41 );
bd164a75
KD
42
43 $first = true;
44 $newId = null;
45 $ids = [];
46
47 foreach ($tags->fetchAll() as $tag) {
48 // Ignore the first tag as we use it as the new reference tag
49 if ($first) {
50 $first = false;
51 $newId = $tag['id'];
52 } else {
53 $ids[] = $tag['id'];
54 }
55 }
56
57 // Just in case...
58 if (count($ids) > 0) {
59 // Merge tags
7b4f6688
KD
60 $this->addSql('
61 UPDATE ' . $this->getTable('entry_tag') . '
62 SET tag_id = ' . $newId . '
40a63c8b
KD
63 WHERE tag_id IN (' . implode(',', $ids) . ')
64 AND entry_id NOT IN (
65 SELECT entry_id
caf719f1 66 FROM (SELECT * FROM ' . $this->getTable('entry_tag') . ') AS _entry_tag
40a63c8b
KD
67 WHERE tag_id = ' . $newId . '
68 )'
69 );
70
71 // Delete links to unused tags
72 $this->addSql('
73 DELETE FROM ' . $this->getTable('entry_tag') . '
74 WHERE tag_id IN (' . implode(',', $ids) . ')'
bd164a75
KD
75 );
76
77 // Delete unused tags
7b4f6688
KD
78 $this->addSql('
79 DELETE FROM ' . $this->getTable('tag') . '
80 WHERE id IN (' . implode(',', $ids) . ')'
bd164a75
KD
81 );
82 }
83 }
84
85 // Iterate over all tags to lowercase them
7b4f6688
KD
86 $this->addSql('
87 UPDATE ' . $this->getTable('tag') . '
88 SET label = LOWER(label)'
bd164a75
KD
89 );
90 }
91
92 /**
93 * @param Schema $schema
94 */
95 public function down(Schema $schema)
96 {
97 throw new SkipMigrationException('Too complex ...');
98 }
99}