2021-05-05 21:21:05 +09:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\DataFixtures;
|
|
|
|
|
2021-05-24 04:56:45 +09:00
|
|
|
use App\Core\VisibilityScope;
|
2021-05-07 06:53:25 +09:00
|
|
|
use App\Entity\GroupInbox;
|
2021-05-05 21:21:05 +09:00
|
|
|
use App\Entity\GSActor;
|
|
|
|
use App\Entity\LocalGroup;
|
|
|
|
use App\Entity\LocalUser;
|
2021-05-07 06:53:25 +09:00
|
|
|
use App\Entity\Note;
|
2021-05-05 21:21:05 +09:00
|
|
|
use App\Util\Nickname;
|
|
|
|
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-05-05 21:21:05 +09:00
|
|
|
foreach ([LocalUser::class => ['taken_user', 'setId'], LocalGroup::class => ['taken_group', 'setGroupId']] as $entity => [$nick, $method]) {
|
|
|
|
$actor = GSActor::create(['nickname' => $nick, 'normalized_nickname' => Nickname::normalize($nick, check_already_used: false)]);
|
|
|
|
$manager->persist($actor);
|
|
|
|
$ent = $entity::create(['nickname' => $nick]);
|
|
|
|
$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-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-05-24 04:56:45 +09:00
|
|
|
$n = Note::create(['gsactor_id' => $actors['taken_user']->getId(), 'content' => 'some content']);
|
|
|
|
$manager->persist($n);
|
|
|
|
$notes[] = Note::create(['gsactor_id' => $actors['taken_user']->getId(), 'content' => 'some other content', 'reply_to' => $n->getId()]);
|
|
|
|
$notes[] = Note::create(['gsactor_id' => $actors['taken_user']->getId(), 'content' => 'private note', 'scope' => VisibilityScope::FOLLOWER]);
|
|
|
|
foreach ($notes as $note) {
|
|
|
|
$manager->persist($note);
|
|
|
|
}
|
2021-05-07 06:53:25 +09:00
|
|
|
|
|
|
|
$manager->persist(GroupInbox::create(['group_id' => $local_entities['taken_group']->getGroupId(), 'activity_id' => $note->getId()]));
|
2021-05-05 21:21:05 +09:00
|
|
|
$manager->flush();
|
|
|
|
}
|
|
|
|
}
|