error("\nThis script will check all images in covers/console and compare to db->consoleinfo.\nTo run:\nphp $argv[0] true\n"); exit(); } $path2covers = NN_COVERS.'console'.DS; $itr = File::allFiles($path2covers); foreach ($itr as $filePath) { if (is_file($filePath->getPathname()) && preg_match('/\d+\.jpg$/', $filePath->getPathname())) { preg_match('/(\d+)\.jpg$/', $filePath->getPathname(), $hit); if (isset($hit[1])) { $run = ConsoleInfo::query()->where( [ 'cover' => 0, 'id' => $hit[1], ] )->update(['cover' => 1]); if ($run >= 1) { $covers++; } else { $run = ConsoleInfo::query()->where('id', $hit[1])->value('id'); if ($run === 0) { $colorCli->info($filePath.' not found in db.'); } } } } } $qry = ConsoleInfo::query()->where('cover', '=', 1)->value('id'); foreach ($qry as $rows) { if (! is_file($path2covers.$rows['id'].'.jpg')) { ConsoleInfo::query()->where( [ ['cover' => 1], ['id' => $rows['id']], ] )->update(['cover' => 0]); $colorCli->info($path2covers.$rows['id'].'.jpg does not exist.'); $deleted++; } } $colorCli->header($covers.' covers set.'); $colorCli->header($deleted.' consoles unset.');