| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <?php
- namespace App\Console\Commands;
- use Illuminate\Console\Command;
- use Illuminate\Support\Carbon;
- use Illuminate\Support\Facades\Log;
- class UpgradeDaily extends Command
- {
- /**
- * The name and signature of the console command.
- *
- * @var string
- */
- protected $signature = 'upgrade:daily';
- /**
- * The console command description.
- *
- * @var string
- */
- protected $description = '每天的任务';
- /**
- * Create a new command instance.
- *
- * @return void
- */
- public function __construct()
- {
- parent::__construct();
- }
- /**
- * Execute the console command.
- *
- * @return int
- */
- public function handle()
- {
- if (\App\Tools\Tools::isStop()) {
- return 0;
- }
- $env = config('app.env');
- Log::info('daily task start ', ['app.env' => $env]);
- $start = time();
- if (app()->isLocal() == false) {
- $this->call('message:webhook', [
- 'listener' => 'dingtalk',
- 'url' => 'dingtalk1',
- 'title' => "后台任务",
- 'message' => " wikipali: 每日统计后台任务开始执行。app.env=" . $env,
- ]);
- }
- Log::info('wikipali: 每日统计后台任务开始执行{app.env}', ['app.env' => $env]);
- $message = "wikipali: 每日统计后台任务执行完毕。" . $env;
- //更新单词首选意思
- $this->call('upgrade:dict.default.meaning');
- $time = time() - $start;
- $message .= "dict.default.meaning:{$time}; ";
- $currTime = time();
- Log::info('更新单词首选意思完毕' . $env);
- //社区术语表
- $this->call('upgrade:community.term', ['lang' => 'zh-Hans']);
- $time = time() - $currTime;
- $message .= "community.term:{$time}; ";
- $currTime = time();
- Log::info('社区术语表完毕 {app.env}', ['app.env' => $env]);
- # 导出离线数据
- $this->call('export:offline', ['format' => 'lzma', '--driver' => 'str']);
- $time = time() - $currTime;
- $message .= "export:offline:{$time}; ";
- Log::info('导出离线数据完毕{app.env}', ['app.env' => $env]);
- $time = time() - $start;
- $message .= "总时间:{$time}; ";
- if (app()->isLocal() === false) {
- $this->call('message:webhook', [
- 'listener' => 'dingtalk',
- 'url' => 'dingtalk1',
- 'title' => "后台任务",
- 'message' => $message . ' app.env=' . $env,
- ]);
- //发送dingding消息
- $this->call('message:webhookarticlenew', [
- 'host' => 'https://oapi.dingtalk.com/robot/send?access_token=34143dbec80a8fc09c1cb5897a5639ee3a9a32ecfe31835ad29bf7013bdb9fdf',
- 'type' => 'dingtalk',
- ]);
- //发送微信消息
- $this->call('message:webhookarticlenew', [
- 'host' => 'https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=25dbd74f-c89c-40e5-8cbc-48b1ef7710b8',
- 'type' => 'wechat',
- ]);
- }
- return 0;
- }
- }
|