PushNotification.php 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <?php
  2. namespace App\Components;
  3. use Exception;
  4. use Log;
  5. use stdClass;
  6. class PushNotification {
  7. public static function send($title, $content) {
  8. switch(Helpers::systemConfig()['is_notification']){
  9. case 'serverChan':
  10. return self::ServerChan($title, $content);
  11. break;
  12. case 'bark':
  13. return self::Bark($title, $content);
  14. break;
  15. default:
  16. return false;
  17. }
  18. }
  19. /**
  20. * ServerChan推送消息
  21. *
  22. * @param string $title 消息标题
  23. * @param string $content 消息内容
  24. *
  25. * @return mixed
  26. */
  27. private static function ServerChan($title, $content) {
  28. $ret = false;
  29. try{
  30. // TODO:一天仅可发送不超过500条
  31. $url = 'https://sc.ftqq.com/'.Helpers::systemConfig()['server_chan_key'].'.send?text='.$title.'&desp='.urlencode($content);
  32. $result = json_decode(Curl::send($url), true);
  33. if(empty(Helpers::systemConfig()['server_chan_key'])){
  34. $result = new stdClass();
  35. $result->errno = true;
  36. $result->errmsg = "未正确配置ServerChan";
  37. }
  38. if($result != null && !$result->errno){
  39. Helpers::addNotificationLog($title, $content, 2);
  40. $ret = true;
  41. }else{
  42. Helpers::addNotificationLog($title, $content, 2, 'admin', 1, $result? $result->errmsg : '未知');
  43. }
  44. }catch(Exception $e){
  45. Log::error('ServerChan消息推送异常:'.$e);
  46. }
  47. return $ret;
  48. }
  49. /**
  50. * Bark推送消息
  51. *
  52. * @param string $title 消息标题
  53. * @param string $content 消息内容
  54. *
  55. * @return mixed
  56. */
  57. private static function Bark($title, $content) {
  58. $ret = false;
  59. try{
  60. $url = 'https://api.day.app/'.Helpers::systemConfig()['bark_key'].'/'.$title.'/'.$content;
  61. $result = json_decode(Curl::send($url), true);
  62. if($result){
  63. if($result->code == 200){
  64. Helpers::addNotificationLog($title, $content, 3);
  65. $ret = true;
  66. }else{
  67. Helpers::addNotificationLog($title, $content, 3, 'admin', $result->message);
  68. }
  69. }
  70. }catch(Exception $e){
  71. Log::error('Bark消息推送异常:'.$e);
  72. }
  73. return $ret;
  74. }
  75. }