2021-05-05 21:21:05 +09:00
|
|
|
<?php
|
|
|
|
|
2021-10-10 17:26:18 +09:00
|
|
|
declare(strict_types = 1);
|
|
|
|
|
2021-05-05 21:21:05 +09:00
|
|
|
namespace App\DataFixtures;
|
|
|
|
|
2021-05-24 04:56:45 +09:00
|
|
|
use App\Core\VisibilityScope;
|
2021-09-18 11:22:27 +09:00
|
|
|
use App\Entity\Actor;
|
2021-05-07 06:53:25 +09:00
|
|
|
use App\Entity\GroupInbox;
|
2021-08-19 01:26:37 +09:00
|
|
|
use App\Entity\GroupMember;
|
2021-05-05 21:21:05 +09:00
|
|
|
use App\Entity\LocalGroup;
|
|
|
|
use App\Entity\LocalUser;
|
2021-05-07 06:53:25 +09:00
|
|
|
use App\Entity\Note;
|
2021-11-11 21:27:10 +09:00
|
|
|
use App\Entity\Subscription;
|
2021-05-05 21:21:05 +09:00
|
|
|
use Doctrine\Bundle\FixturesBundle\Fixture;
|
|
|
|
use Doctrine\Persistence\ObjectManager;
|
|
|
|
|
2021-05-07 06:53:25 +09:00
|
|
|
class CoreFixtures extends Fixture
|
2021-05-05 21:21:05 +09:00
|
|
|
{
|
|
|
|
public function load(ObjectManager $manager)
|
|
|
|
{
|
2021-05-07 06:53:25 +09:00
|
|
|
$actors = [];
|
|
|
|
$local_entities = [];
|
2021-08-19 01:26:37 +09:00
|
|
|
foreach ([
|
|
|
|
'taken_user' => [LocalUser::class, 'setId', ['password' => LocalUser::hashPassword('foobar'), 'outgoing_email' => 'email@provider']],
|
|
|
|
'some_user' => [LocalUser::class, 'setId', []],
|
2021-08-05 05:05:11 +09:00
|
|
|
'form_personal_info_test_user' => [LocalUser::class, 'setId', []],
|
|
|
|
'form_account_test_user' => [LocalUser::class, 'setId', ['password' => LocalUser::hashPassword('some password')]],
|
2021-08-19 01:26:37 +09:00
|
|
|
'taken_group' => [LocalGroup::class, 'setGroupId', []],
|
|
|
|
] as $nick => [$entity, $method, $extra_create]) {
|
2021-09-18 11:22:27 +09:00
|
|
|
$actor = Actor::create(['nickname' => $nick]);
|
2021-05-05 21:21:05 +09:00
|
|
|
$manager->persist($actor);
|
2021-07-29 06:25:07 +09:00
|
|
|
$ent = $entity::create(array_merge(['nickname' => $nick], $extra_create)); // cannot use array spread for arrays with string keys
|
2021-05-05 21:21:05 +09:00
|
|
|
$ent->{$method}($actor->getId());
|
2021-05-07 06:53:25 +09:00
|
|
|
$local_entities[$nick] = $ent;
|
2021-05-05 21:21:05 +09:00
|
|
|
$manager->persist($ent);
|
2021-11-08 22:44:35 +09:00
|
|
|
// Add self subscriptions
|
|
|
|
$manager->persist(Subscription::create(['subscriber' => $actor->getId(), 'subscribed' => $actor->getId()]));
|
2021-05-07 06:53:25 +09:00
|
|
|
$actors[$nick] = $actor;
|
2021-05-05 21:21:05 +09:00
|
|
|
}
|
2021-05-07 06:53:25 +09:00
|
|
|
|
2021-10-29 02:05:28 +09:00
|
|
|
$n = Note::create(['actor_id' => $actors['taken_user']->getId(), 'content' => 'some content', 'content_type' => 'text/plain']);
|
2021-05-24 04:56:45 +09:00
|
|
|
$manager->persist($n);
|
2021-11-11 21:27:10 +09:00
|
|
|
$notes = [];
|
2021-11-15 08:17:36 +09:00
|
|
|
$notes[] = Note::create(['actor_id' => $actors['taken_user']->getId(), 'content' => 'some other content', 'content_type' => 'text/plain']);
|
2021-11-11 21:27:10 +09:00
|
|
|
$notes[] = Note::create(['actor_id' => $actors['taken_user']->getId(), 'content' => 'private note', 'scope' => VisibilityScope::SUBSCRIBER, 'content_type' => 'text/plain']);
|
|
|
|
$notes[] = $group_note = Note::create(['actor_id' => $actors['taken_user']->getId(), 'content' => 'group note', 'scope' => VisibilityScope::GROUP, 'content_type' => 'text/plain']);
|
2021-05-24 04:56:45 +09:00
|
|
|
foreach ($notes as $note) {
|
|
|
|
$manager->persist($note);
|
|
|
|
}
|
2021-05-07 06:53:25 +09:00
|
|
|
|
2021-09-18 11:22:27 +09:00
|
|
|
$manager->persist(GroupMember::create(['group_id' => $local_entities['taken_group']->getGroupId(), 'actor_id' => $actors['some_user']->getId()]));
|
2021-08-19 01:26:37 +09:00
|
|
|
$manager->persist(GroupInbox::create(['group_id' => $local_entities['taken_group']->getGroupId(), 'activity_id' => $group_note->getId()]));
|
2021-05-05 21:21:05 +09:00
|
|
|
$manager->flush();
|
|
|
|
}
|
|
|
|
}
|