You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

168 lines
5.7 KiB

<?php
namespace App\Console;
use App\Services\BilibiliService;
use App\Services\BilibiliServiceV2;
use App\Services\CompressImageService;
use App\Services\DailySignService;
use App\Services\NewNvshenService;
use App\Services\NewXiuGirlsService;
use App\Services\TujiguService;
use App\Services\XiuGirlsService;
use App\Services\VitabioticsService;
use App\Services\YouKnowService;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
use App\Services\InstagramService;
use Illuminate\Support\Facades\Log;
date_default_timezone_set('PRC');
class Kernel extends ConsoleKernel
{
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
//
];
/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
$schedule->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 () {
$nvshenService = new NewNvshenService();
$nvshenService->scrapeNvshenGirls();
// })->cron("0 */3 * * *");
})->dailyAt('04:00');
$schedule->call(function () {
$tuji = new TujiguService();
$tuji->scrapeTujiguGirls();
// })->cron("30 */3 * * *");
})->dailyAt('05: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');
}
}