setInterval(60 * 60 * 24); $this->setTimeSensitivity(self::TIME_INSENSITIVE); } protected function run($argument) { $uid = $argument['uid']; $folder = $argument['folder']; try { $userFolder = $this->rootFolder->getUserFolder($uid); $userRoot = $userFolder->getParent(); /** @var Folder $uploads */ $uploads = $userRoot->get('uploads'); $uploadFolder = $uploads->get($folder); } catch (NotFoundException|NoUserException $e) { $this->jobList->remove(self::class, $argument); return; } // Remove if all files have an mtime of more than a day $time = $this->time->getTime() - 60 * 60 * 24; if (!($uploadFolder instanceof Folder)) { $this->logger->error('Found a file inside the uploads folder. Uid: ' . $uid . ' folder: ' . $folder); if ($uploadFolder->getMTime() < $time) { $uploadFolder->delete(); } $this->jobList->remove(self::class, $argument); return; } /** @var File[] $files */ $files = $uploadFolder->getDirectoryListing(); // The folder has to be more than a day old $initial = $uploadFolder->getMTime() < $time; $expire = array_reduce($files, function (bool $carry, File $file) use ($time) { return $carry && $file->getMTime() < $time; }, $initial); if ($expire) { $uploadFolder->delete(); $this->jobList->remove(self::class, $argument); } } }