Skip to content
Snippets Groups Projects
Commit 437094bb authored by Robin Appelman's avatar Robin Appelman
Browse files

Check if classes/method exists before trying to call them in background jobs

parent 5b189315
No related branches found
No related tags found
No related merge requests found
......@@ -152,6 +152,10 @@ class JobList implements IJobList {
if ($class === 'OC_Cache_FileGlobalGC') {
$class = '\OC\Cache\FileGlobalGC';
}
if (class_exists($class)) {
// job from disabled app or old version of an app, no need to do anything
return null;
}
$job = new $class();
$job->setId($row['id']);
$job->setLastRun($row['last_run']);
......
......@@ -13,6 +13,8 @@ class QueuedJob extends \OC\BackgroundJob\QueuedJob {
$class = $argument['klass'];
$method = $argument['method'];
$parameters = $argument['parameters'];
call_user_func(array($class, $method), $parameters);
if (is_callable(array($class, $method))) {
call_user_func(array($class, $method), $parameters);
}
}
}
......@@ -10,6 +10,8 @@ namespace OC\BackgroundJob\Legacy;
class RegularJob extends \OC\BackgroundJob\Job {
public function run($argument) {
call_user_func($argument);
if (is_callable($argument)) {
call_user_func($argument);
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment