diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2017-11-26 08:58:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-26 08:58:17 +0100 |
commit | 1d91f14516e109978f497e9f55d2f87c8268e1d7 (patch) | |
tree | abfab5d6303ca3bb5996e2e98fbfdc6bc804ba45 /app/DoctrineMigrations | |
parent | 773ac5b0f7a56ff2527601498b0822d6ef8bfa40 (diff) | |
parent | 893fd6434f11b6a1fef375f19e6ea427402bc605 (diff) | |
download | wallabag-1d91f14516e109978f497e9f55d2f87c8268e1d7.tar.gz wallabag-1d91f14516e109978f497e9f55d2f87c8268e1d7.tar.zst wallabag-1d91f14516e109978f497e9f55d2f87c8268e1d7.zip |
Merge pull request #3436 from wallabag/origin-shaarli
Add craue setting to enable sharing of origin url to Shaarli
Diffstat (limited to 'app/DoctrineMigrations')
-rw-r--r-- | app/DoctrineMigrations/Version20171125164500.php | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/app/DoctrineMigrations/Version20171125164500.php b/app/DoctrineMigrations/Version20171125164500.php new file mode 100644 index 00000000..980e0e75 --- /dev/null +++ b/app/DoctrineMigrations/Version20171125164500.php | |||
@@ -0,0 +1,52 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Application\Migrations; | ||
4 | |||
5 | use Doctrine\DBAL\Migrations\AbstractMigration; | ||
6 | use Doctrine\DBAL\Schema\Schema; | ||
7 | use Symfony\Component\DependencyInjection\ContainerAwareInterface; | ||
8 | use Symfony\Component\DependencyInjection\ContainerInterface; | ||
9 | |||
10 | /** | ||
11 | * Add shaarli_share_origin_url in craue_config_setting. | ||
12 | */ | ||
13 | class Version20171125164500 extends AbstractMigration implements ContainerAwareInterface | ||
14 | { | ||
15 | /** | ||
16 | * @var ContainerInterface | ||
17 | */ | ||
18 | private $container; | ||
19 | |||
20 | public function setContainer(ContainerInterface $container = null) | ||
21 | { | ||
22 | $this->container = $container; | ||
23 | } | ||
24 | |||
25 | /** | ||
26 | * @param Schema $schema | ||
27 | */ | ||
28 | public function up(Schema $schema) | ||
29 | { | ||
30 | $shaarliShareOriginUrl = $this->container | ||
31 | ->get('doctrine.orm.default_entity_manager') | ||
32 | ->getConnection() | ||
33 | ->fetchArray('SELECT * FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'shaarli_share_origin_url'"); | ||
34 | |||
35 | $this->skipIf(false !== $shaarliShareOriginUrl, 'It seems that you already played this migration.'); | ||
36 | |||
37 | $this->addSql('INSERT INTO ' . $this->getTable('craue_config_setting') . " (name, value, section) VALUES ('shaarli_share_origin_url', '0', 'entry')"); | ||
38 | } | ||
39 | |||
40 | /** | ||
41 | * @param Schema $schema | ||
42 | */ | ||
43 | public function down(Schema $schema) | ||
44 | { | ||
45 | $this->addSql('DELETE FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'shaarli_share_origin_url';"); | ||
46 | } | ||
47 | |||
48 | private function getTable($tableName) | ||
49 | { | ||
50 | return $this->container->getParameter('database_table_prefix') . $tableName; | ||
51 | } | ||
52 | } | ||