pixelfed/pixelfed

View on GitHub
app/Console/Commands/SeedFollows.php

Summary

Maintainability
A
55 mins
Test Coverage
<?php

namespace App\Console\Commands;

use App\Follower;
use App\Jobs\FollowPipeline\FollowPipeline;
use App\Profile;
use Illuminate\Console\Command;

class SeedFollows extends Command
{
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'seed:follows';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Seed follows for testing';

    /**
     * Create a new command instance.
     *
     * @return void
     */
    public function __construct()
    {
        parent::__construct();
    }

    /**
     * Execute the console command.
     *
     * @return mixed
     */
    public function handle()
    {
        $limit = 100;

        for ($i = 0; $i < $limit; $i++) {
            try {
                $actor = Profile::whereDomain(false)->inRandomOrder()->firstOrFail();
                $target = Profile::whereDomain(false)->inRandomOrder()->firstOrFail();

                if($actor->id == $target->id) {
                    continue;
                }

                $follow = Follower::firstOrCreate([
                    'profile_id'    => $actor->id,
                    'following_id'  => $target->id
                ]);
                if($follow->wasRecentlyCreated == true) {
                    FollowPipeline::dispatch($follow);
                }
            } catch (Exception $e) {
                continue;
            }
        }
    }
}