call(function () { if ((rand(0, 99) % 2) == 0) { exit(); } if(date('H') % 4 != 0) { Log::info("schedule queryUpVideoList skipped at: " .date("Y-m-d H:i:s")); exit; } $bilibili = new BilibiliServiceV2(); Log::info("schedule queryUpVideoList started at: ". date("Y-m-d H:i:s")); $bilibili->queryUpVideoList(); })->hourlyAt(5); // })->yearly(); $schedule->call(function () { if ((rand(0, 99) % 2) == 1) { exit(); } if(date('H') % 4 != 0) { Log::info("schedule queryDBCollectionList skipped at: " .date("Y-m-d H:i:s")); exit; } $bilibili = new BilibiliServiceV2(); Log::info("schedule queryDBCollectionList started at: ". date("Y-m-d H:i:s")); $bilibili->queryDBCollectionList(); })->hourlyAt(35); // })->yearly(); $schedule->call(function () { $bilibili = new BilibiliServiceV2(); Log::info("schedule queryForVideoParts started at: ". date("Y-m-d H:i:s")); $bilibili->queryForVideoParts(); })->dailyAt("02:00"); $schedule->call(function () { $bilibili = new BilibiliServiceV2(); Log::info("schedule compareAndDownloadUpVideos started at: ". date("Y-m-d H:i:s")); $bilibili->compareAndDownloadUpVideos(); })->dailyAt('03:00'); $schedule->call(function () { $bilibili = new BilibiliServiceV2(); Log::info("schedule compareAndDownloadCollectionVideos started at: ". date("Y-m-d H:i:s")); $bilibili->compareAndDownloadCollectionVideos(); })->dailyAt('04:00'); $schedule->call(function () { // $bilibili = new BilibiliServiceV2(); // Log::info("schedule checkVideoHasDownload started at: ". date("Y-m-d H:i:s")); // $bilibili->checkVideoHasDownload(); })->dailyAt('09:30'); // $schedule->command('inspire') // ->hourly(); $schedule->call(function () { echo "======================================================\n"; echo "=======================". date("Y-m-d H:i:s") ."=========================\n"; echo "======================================================\n"; // $service = new InstagramService(); // $service->scrapeLikedUsers(); // $service->scrapeUsers(); // $service = new VitabioticsService(); // $service->testPromoCode(); // $service->scrapeUsers(); // $service->scanLocalFiles(); // $xiuService = new XiuGirlsService(); // $xiuService->scrapeXiuGirls(); // $bilibili = new BilibiliService(); // $bilibili->queryUpVideoList(); // $bilibili->queryPlayList(); // $bilibili->downloadBSitePlaylist("av75454867 av75207675 av75065073 av74866823 av74764675 av74648540"); // $bilibili->deleteFileNotContainP(); // $youService = new YouKnowService(); // $youService->scrape1024(); // $compressService = new CompressImageService(); // $compressService->compressImage(); echo "111"; // })->everyMinute(); })->dailyAt("00:10"); // $schedule->call(function () { // $service = new InstagramService(); // $service->scrapeLikedUsers(); // })->everyMinute(); // })->dailyAt('02:00'); $schedule->call(function () { $xiuService = new NewXiuGirlsService(); $xiuService->scrapeXiuGirls(); // })->everyMinute(); })->dailyAt('05:00'); $schedule->call(function () { if (App::environment() == "local") { $nvshenService = new NewNvshenService(); $nvshenService->scrapeNvshenGirls(); } // })->cron("0 */3 * * *"); })->dailyAt('05:00'); $schedule->call(function () { if (App::environment() == "local") { $tuji = new TujiguService(); $tuji->scrapeTujiguGirls(); } // })->cron("30 */3 * * *"); })->dailyAt('04:00'); $schedule->call(function () { // $dailySignService = new DailySignService(); // $dailySignService->signClubHmoe(); })->dailyAt('04:00'); // $schedule->command("vitabiotics") } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__.'/Commands'); require base_path('routes/console.php'); } }