]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/CoreBundle/DataFixtures/SiteCredentialFixtures.php
Merge remote-tracking branch 'origin/master' into 2.4
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / DataFixtures / SiteCredentialFixtures.php
1 <?php
2
3 namespace Wallabag\CoreBundle\DataFixtures;
4
5 use Doctrine\Bundle\FixturesBundle\Fixture;
6 use Doctrine\Common\DataFixtures\DependentFixtureInterface;
7 use Doctrine\Common\Persistence\ObjectManager;
8 use Symfony\Component\DependencyInjection\ContainerAwareInterface;
9 use Symfony\Component\DependencyInjection\ContainerInterface;
10 use Wallabag\CoreBundle\Entity\SiteCredential;
11 use Wallabag\UserBundle\DataFixtures\UserFixtures;
12
13 class SiteCredentialFixtures extends Fixture implements DependentFixtureInterface, 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 * {@inheritdoc}
27 */
28 public function load(ObjectManager $manager)
29 {
30 $credential = new SiteCredential($this->getReference('admin-user'));
31 $credential->setHost('.super.com');
32 $credential->setUsername($this->container->get('wallabag_core.helper.crypto_proxy')->crypt('.super'));
33 $credential->setPassword($this->container->get('wallabag_core.helper.crypto_proxy')->crypt('bar'));
34
35 $manager->persist($credential);
36
37 $credential = new SiteCredential($this->getReference('admin-user'));
38 $credential->setHost('paywall.example.com');
39 $credential->setUsername($this->container->get('wallabag_core.helper.crypto_proxy')->crypt('paywall.example'));
40 $credential->setPassword($this->container->get('wallabag_core.helper.crypto_proxy')->crypt('bar'));
41
42 $manager->persist($credential);
43
44 $manager->flush();
45 }
46
47 /**
48 * {@inheritdoc}
49 */
50 public function getDependencies()
51 {
52 return [
53 UserFixtures::class,
54 ];
55 }
56 }