1
0
Fork 0

Merge pull request #1298 from pixelfed/frontend-ui-refactor

Update command
This commit is contained in:
daniel 2019-05-13 01:10:08 -06:00 committed by GitHub
commit 56d61bc074
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 8 deletions

View File

@ -40,19 +40,24 @@ class SeedFollows extends Command
*/ */
public function handle() public function handle()
{ {
$limit = 10000; $limit = 100;
for ($i = 0; $i < $limit; $i++) { for ($i = 0; $i < $limit; $i++) {
try { try {
$actor = Profile::inRandomOrder()->firstOrFail(); $actor = Profile::whereDomain(false)->inRandomOrder()->firstOrFail();
$target = Profile::inRandomOrder()->firstOrFail(); $target = Profile::whereDomain(false)->inRandomOrder()->firstOrFail();
$follow = new Follower(); if($actor->id == $target->id) {
$follow->profile_id = $actor->id; continue;
$follow->following_id = $target->id; }
$follow->save();
FollowPipeline::dispatch($follow); $follow = Follower::firstOrCreate([
'profile_id' => $actor->id,
'following_id' => $target->id
]);
if($follow->wasRecentlyCreated == true) {
FollowPipeline::dispatch($follow);
}
} catch (Exception $e) { } catch (Exception $e) {
continue; continue;
} }