bug_report.php 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. use app\admin\model\Admin;
  3. use think\Db;
  4. use think\Env;
  5. use Workerman\Lib\Timer;
  6. use Workerman\Worker as WO;
  7. class BugReport extends Com{
  8. public static function run(){
  9. $work=self::newWorker();
  10. $work->onWorkerStart=function (WO $worker){
  11. $file=ROOT_PATH.'/webhook';
  12. $table= Db::name('bug_report');
  13. Timer::add(3,function ()use ($worker,$file,$table){
  14. try {
  15. if(file_exists($file)){
  16. $url=preg_replace('/\s+/','',file_get_contents(ROOT_PATH.'/webhook'));
  17. if($url){
  18. $bug=$table->where('send',0)->order('id','desc')->find();
  19. if($bug){
  20. $table->where('id',$bug['id'])->update(['send'=>1]);
  21. $bug['content']=json_decode($bug['content'],true);
  22. $bug['content']['msg']=str_replace("\\",'/',$bug['content']['msg']);
  23. $bug['content']['file']=str_replace("\\",'/',$bug['content']['file']);
  24. $bug['content']['line']=str_replace("\\",'/',$bug['content']['line']);
  25. $res=(new \GuzzleHttp\Client())
  26. ->post($url,[
  27. 'json'=>[
  28. /*'msgtype'=>'markdown',
  29. 'markdown'=>[
  30. 'content'=>"ERROR:<font color='warning'>{$bug['content']['msg']}</font>\n
  31. >FILE:<font color='comment'>{$bug['content']['file']}</font>
  32. >LINE:<font color='comment'>{$bug['content']['line']}</font>
  33. "
  34. ],*/
  35. 'msgtype'=>'text',
  36. 'text'=>[
  37. 'content'=>"错误:{$bug['content']['msg']}\n文件:{$bug['content']['file']}\n行数:{$bug['content']['line']}"
  38. ],
  39. 'at'=>[
  40. 'isAtAll'=>true,
  41. ],
  42. ]
  43. ]);
  44. self::log($res->getBody()->getContents());
  45. }
  46. }
  47. }
  48. }catch (\Exception $e){
  49. self::logError($e);
  50. }
  51. });
  52. };
  53. }
  54. }
  55. BugReport::run();