12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- use app\admin\model\Admin;
- use think\Db;
- use think\Env;
- use Workerman\Lib\Timer;
- use Workerman\Worker as WO;
- class BugReport extends Com{
- public static function run(){
- $work=self::newWorker();
- $work->onWorkerStart=function (WO $worker){
- $file=ROOT_PATH.'/webhook';
- $table= Db::name('bug_report');
- Timer::add(3,function ()use ($worker,$file,$table){
- try {
- if(file_exists($file)){
- $url=preg_replace('/\s+/','',file_get_contents(ROOT_PATH.'/webhook'));
- if($url){
- $bug=$table->where('send',0)->order('id','desc')->find();
- if($bug){
- $table->where('id',$bug['id'])->update(['send'=>1]);
- $bug['content']=json_decode($bug['content'],true);
- $bug['content']['msg']=str_replace("\\",'/',$bug['content']['msg']);
- $bug['content']['file']=str_replace("\\",'/',$bug['content']['file']);
- $bug['content']['line']=str_replace("\\",'/',$bug['content']['line']);
- $res=(new \GuzzleHttp\Client())
- ->post($url,[
- 'json'=>[
- /*'msgtype'=>'markdown',
- 'markdown'=>[
- 'content'=>"ERROR:<font color='warning'>{$bug['content']['msg']}</font>\n
- >FILE:<font color='comment'>{$bug['content']['file']}</font>
- >LINE:<font color='comment'>{$bug['content']['line']}</font>
- "
- ],*/
- 'msgtype'=>'text',
- 'text'=>[
- 'content'=>"错误:{$bug['content']['msg']}\n文件:{$bug['content']['file']}\n行数:{$bug['content']['line']}"
- ],
- 'at'=>[
- 'isAtAll'=>true,
- ],
- ]
- ]);
- self::log($res->getBody()->getContents());
- }
- }
- }
- }catch (\Exception $e){
- self::logError($e);
- }
- });
- };
- }
- }
- BugReport::run();
|