Files
ProxyPanel/app/Components/PushNotification.php
兔姬桑 5689018af0 添加Bark
整合 推送通知功能;
优化、简化系统设置选项;
2020-08-05 03:20:25 +08:00

83 lines
1.8 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
namespace App\Components;
use Exception;
use Log;
use stdClass;
class PushNotification
{
public static function send($title, $content)
{
switch(Helpers::systemConfig()['is_notification']){
case 1:
return self::ServerChan($title, $content);
break;
case 2:
return self::Bark($title, $content);
break;
default:
}
}
/**
* ServerChan推送消息
*
* @param string $title 消息标题
* @param string $content 消息内容
*
* @return mixed
*/
private static function ServerChan($title, $content)
{
try{
// TODO一天仅可发送不超过500条
$url = 'https://sc.ftqq.com/'.Helpers::systemConfig()['server_chan_key'].'.send?text='.$title.'&desp='.urlencode($content);
$result = json_decode(Curl::send($url));
if(empty(Helpers::systemConfig()['server_chan_key'])){
$result = new stdClass();
$result->errno = TRUE;
$result->errmsg = "未正确配置ServerChan";
}
if($result != NULL && !$result->errno){
Helpers::addNotificationLog($title, $content, 2);
}else{
Helpers::addNotificationLog($title, $content, 2, 'admin', 1, $result? $result->errmsg : '未知');
}
} catch(Exception $e){
Log::error('ServerChan消息推送异常'.$e);
}
return $result;
}
/**
* Bark推送消息
*
* @param string $title 消息标题
* @param string $content 消息内容
*
* @return mixed
*/
private static function Bark($title, $content)
{
try{
$url = 'https://api.day.app/'.Helpers::systemConfig()['bark_key'].'/'.$title.'/'.$content;
$result = json_decode(Curl::send($url));
if($result->code == 200){
Helpers::addNotificationLog($title, $content, 3);
}else{
Helpers::addNotificationLog($title, $content, 3, 'admin', $result->message);
}
} catch(Exception $e){
Log::error('Bark消息推送异常'.$e);
}
return $result;
}
}