Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BatchesController missing check for existence of batch #1419

Closed
Crmteam-IVG opened this issue Apr 17, 2024 · 2 comments · Fixed by #1424
Closed

BatchesController missing check for existence of batch #1419

Crmteam-IVG opened this issue Apr 17, 2024 · 2 comments · Fixed by #1424

Comments

@Crmteam-IVG
Copy link

Crmteam-IVG commented Apr 17, 2024

Horizon Version

5.24.2

Laravel Version

11.2.0

PHP Version

8.3.4

Redis Driver

PhpRedis

Redis Version

6.0.2

Database Driver & Version

No response

Description

If you try to access a batch that is not existent (in the database) or call any action like retry the xhr response is a 500 (Attempt to read property "failedJobIds" on null).

The batch retrieval checks for the existence before calling toBatch

public function find(string $batchId)
{
        $batch = $this->connection->table($this->table)
                            ->useWritePdo()
                            ->where('id', $batchId)
                            ->first();

        if ($batch) {
            return $this->toBatch($batch);
        }
}

but show or retry just assume the batch is existent.

public function show($id)
{
        $batch = $this->batches->find($id);

        $failedJobs = app(JobRepository::class)
                        ->getJobs($batch->failedJobIds);

        return [
            'batch' => $batch,
            'failedJobs' => $failedJobs,
        ];
}

public function retry($id)
{
        $batch = $this->batches->find($id);

        app(JobRepository::class)
                        ->getJobs($batch->failedJobIds)
                        ->reject(function ($job) {
                            $payload = json_decode($job->payload);

                            return isset($payload->retry_of);
                        })->each(function ($job) {
                            dispatch(new RetryFailedJob($job->id));
                        });
}

Steps To Reproduce

Access any batch url via horizon that is not existent.

i.e:
/horizon/batches/9bc9d622-c2d0-45ca-aa13-4e7dfb1efed0

@driesvints
Copy link
Member

We'd appreciate PR's for these!

Copy link

Thank you for reporting this issue!

As Laravel is an open source project, we rely on the community to help us diagnose and fix issues as it is not possible to research and fix every issue reported to us via GitHub.

If possible, please make a pull request fixing the issue you have described, along with corresponding tests. All pull requests are promptly reviewed by the Laravel team.

Thank you!

taylorotwell pushed a commit that referenced this issue Apr 25, 2024
* show: check for $batch

* retry: check for $batch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants