Compare commits

...

13 Commits
v0.5 ... main

Author SHA1 Message Date
xAmast
80bb352dea feat: remove repositories 2024-06-12 20:54:44 +08:00
董巍
d588a7d108 Merge branch 'feature/notify_file' into 'master'
发送文件消息

See merge request composer/php-alert-client!5
2019-07-15 10:41:21 +08:00
侯登峰
c02656e435 发送文件消息 2019-07-12 18:20:27 +08:00
董巍
4133ce2995 Merge branch 'feature/rpc_alert' into 'master'
alert 请求实体机器

See merge request composer/php-alert-client!4
2019-07-11 15:34:03 +08:00
lisida
eb92fe8e8b alert 请求实体机器 2019-07-11 15:33:19 +08:00
董巍
3d7d02f353 Merge branch 'feature/rpc_alert' into 'master'
Feature/rpc alert

See merge request composer/php-alert-client!3
2019-07-10 18:55:56 +08:00
lisida
f6ed2277fa Merge branch 'master' into feature/rpc_alert 2019-07-10 18:55:19 +08:00
lisida
1534831332 alert 2019-07-10 18:55:07 +08:00
董巍
029c02969b Merge branch 'feature/rpc_alert' into 'master'
地址

See merge request composer/php-alert-client!2
2019-07-10 18:37:54 +08:00
lisida
74f2959272 地址 2019-07-10 18:37:13 +08:00
dongwei
80655ac74d remove log 2019-07-03 14:28:47 +08:00
dongwei
b494903dfd log exception and return null 2019-07-03 14:10:37 +08:00
候学杰
c9b502ac38 no message 2019-07-02 16:41:17 +08:00
3 changed files with 301 additions and 2304 deletions

View File

@ -13,11 +13,5 @@
},
"require": {
"paidian/json-rpc": "~1.1"
},
"repositories": {
"php-json-rpc": {
"type": "vcs",
"url": "git@git.int.haowumc.com:composer/php-json-rpc.git"
}
}
}

2077
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,226 +1,220 @@
<?php
//define('RPC_CONFIG', [
// 'app' => env('APP_NAME'),
// 'client' => [
// 'auth' => [
// 'base_uri' => 'http://auth.in.haowumc.com',
// ],
// ],
//]);
//
///**
// * 对企业微信群发送报警信息(需先创建
// *
// * @param $chat
// * @param $text
// *
// * @return mixed|null
// */
//
//function chat_text_alert ($chat, $text)
//{
// if (env('APP_ENV') == 'local') {
// return true;
// }
// $base_client = new \JsonRpc\Client(RPC_CONFIG);
// $client = $base_client->endpoint('auth');
//
// try {
// $resp = $client->call('notify.text', [
// ['chat' => $chat],
// $text,
// ]);
// } catch (Exception $ex) {
// var_dump($ex->getMessage());
// return null;
// }
//
// return $resp;
//}
//
///**
// * 对单个或多个用户发送报警或通知信息多个用户id使用 | 隔开
// *
// * @param $text
// *
// * @return mixed|null
// */
//function user_text_alert ($username, $text)
//{
// if (env('APP_ENV') == 'local') {
// return true;
// }
// $base_client = new \JsonRpc\Client(RPC_CONFIG);
// $client = $base_client->endpoint('auth');
//
// $username = explode('|', $username);
// try {
// $res = $client->call('notify.text', [
// ['user' => $username],
// $text,
// ]);
// } catch (Exception $ex) {
// var_dump($ex->getMessage());
// return null;
// }
//
// return $res;
//}
//
///**
// * 对微信群发送文本卡片
// *
// * @param $chat
// * @param $title
// * @param $desc
// * @param $button
// * @param $url
// *
// * @return mixed|null
// */
//function chat_card_alert ($chat, $title, $desc, $button, $url)
//{
// if (env('APP_ENV') == 'local') {
// return true;
// }
//
// $base_client = new \JsonRpc\Client(RPC_CONFIG);
// $client = $base_client->endpoint('auth');
//
// try {
// $resp = $client->call('notify.card', [
// ['chat' => $chat],
// $title,
// $desc,
// $button,
// $url,
// ]);
// } catch (Exception $ex) {
// var_dump($ex->getMessage());
// return null;
// }
//
// return $resp;
//}
//
///**
// * 对单个或多个用户发送文本卡片多个用户id使用 | 隔开
// *
// * @param $username
// * @param $title
// * @param $desc
// * @param $button
// * @param $url
// *
// * @return mixed|null
// */
//function user_card_alert ($username, $title, $desc, $button, $url)
//{
// if (env('APP_ENV') == 'local') {
// return true;
// }
//
// $base_client = new \JsonRpc\Client(RPC_CONFIG);
// $client = $base_client->endpoint('auth');
//
// $username = explode('|', $username);
// try {
// $resp = $client->call('notify.card', [
// ['user' => $username],
// $title,
// $desc,
// $button,
// $url,
// ]);
// } catch (Exception $ex) {
// var_dump($ex->getMessage());
// return null;
// }
//
// return $resp;
//}
//
///**
// * 对单个或多个用户发送文本卡片多个用户id使用 | 隔开
// *
// * @param $username
// * @param $appid //小程序的appid
// * @param $title //标题
// * @param $page //小程序页面路径
// * @param $desc //描述
// * @param $items //消息内容键值对最多允许10个item
// * @param $emphasisFirstItem //是否放大第一个content_item
// *
// * @return mixed|null
// */
//function user_mp_alert ($username, $appid, $title, $page = null, $desc = null, $items = null, $emphasisFirstItem = null)
//{
// if (env('APP_ENV') == 'local') {
// return true;
// }
//
// $base_client = new \JsonRpc\Client(RPC_CONFIG);
// $client = $base_client->endpoint('auth');
//
// $username = explode('|', $username);
// try {
// $resp = $client->call('notify.mp', [
// ['user' => $username],
// $appid,
// $title,
// $page,
// $desc,
// $items,
// $emphasisFirstItem
// ]);
// } catch (Exception $ex) {
// var_dump($ex->getMessage());
// return null;
// }
//
// return $resp;
//}
//
///**
// * 对单个或多个用户发送文本卡片多个用户id使用 | 隔开
// *
// * @param $username
// * @param $appid //小程序的appid
// * @param $title //标题
// * @param $page //小程序页面路径
// * @param $desc //描述
// * @param $items //消息内容键值对最多允许10个item
// * @param $emphasisFirstItem //是否放大第一个content_item
// *
// * @return mixed|null
// */
//function tag_mp_alert ($tag, $appid, $title, $page = null, $desc = null, $items = null, $emphasisFirstItem = null)
//{
// if (env('APP_ENV') == 'local') {
// return true;
// }
//
// $base_client = new \JsonRpc\Client(RPC_CONFIG);
// $client = $base_client->endpoint('auth');
//
// try {
// $resp = $client->call('notify.mp', [
// ['tag' => $tag],
// $appid,
// $title,
// $page,
// $desc,
// $items,
// $emphasisFirstItem
// ]);
// } catch (Exception $ex) {
// var_dump($ex->getMessage());
// return null;
// }
//
// return $resp;
//}
define('RPC_CONFIG', [
'app' => env('APP_NAME'),
'client' => [
'auth' => [
'base_uri' => 'http://auth.in.haowumc.com',
],
],
]);
/**
* 对企业微信群发送报警信息(需先创建
*
* @param $chat
* @param $text
*
* @return mixed|null
*/
function chat_text_alert ($chat, $text)
{
if (env('APP_ENV') == 'local') {
return true;
}
$base_client = new \JsonRpc\Client(RPC_CONFIG);
$client = $base_client->endpoint('auth');
try {
$resp = $client->call('notify.text', [
['chat' => $chat],
$text,
]);
} catch (Exception $ex) {
return null;
}
return $resp;
}
/**
* 对单个或多个用户发送报警或通知信息多个用户id使用 | 隔开
*
* @param $text
*
* @return mixed|null
*/
function user_text_alert ($username, $text)
{
if (env('APP_ENV') == 'local') {
return true;
}
$base_client = new \JsonRpc\Client(RPC_CONFIG);
$client = $base_client->endpoint('auth');
$username = explode('|', $username);
try {
$res = $client->call('notify.text', [
['user' => $username],
$text,
]);
} catch (Exception $ex) {
return null;
}
return $res;
}
/**
* 对微信群发送文本卡片
*
* @param $chat
* @param $title
* @param $desc
* @param $button
* @param $url
*
* @return mixed|null
*/
function chat_card_alert ($chat, $title, $desc, $button, $url)
{
if (env('APP_ENV') == 'local') {
return true;
}
$base_client = new \JsonRpc\Client(RPC_CONFIG);
$client = $base_client->endpoint('auth');
try {
$resp = $client->call('notify.card', [
['chat' => $chat],
$title,
$desc,
$button,
$url,
]);
} catch (Exception $ex) {
return null;
}
return $resp;
}
/**
* 对单个或多个用户发送文本卡片多个用户id使用 | 隔开
*
* @param $username
* @param $title
* @param $desc
* @param $button
* @param $url
*
* @return mixed|null
*/
function user_card_alert ($username, $title, $desc, $button, $url)
{
if (env('APP_ENV') == 'local') {
return true;
}
$base_client = new \JsonRpc\Client(RPC_CONFIG);
$client = $base_client->endpoint('auth');
$username = explode('|', $username);
try {
$resp = $client->call('notify.card', [
['user' => $username],
$title,
$desc,
$button,
$url,
]);
} catch (Exception $ex) {
return null;
}
return $resp;
}
/**
* 对单个或多个用户发送文本卡片多个用户id使用 | 隔开
*
* @param $username
* @param $appid //小程序的appid
* @param $title //标题
* @param $page //小程序页面路径
* @param $desc //描述
* @param $items //消息内容键值对最多允许10个item
* @param $emphasisFirstItem //是否放大第一个content_item
*
* @return mixed|null
*/
function user_mp_alert ($username, $appid, $title, $page = null, $desc = null, $items = null, $emphasisFirstItem = null)
{
if (env('APP_ENV') == 'local') {
return true;
}
$base_client = new \JsonRpc\Client(RPC_CONFIG);
$client = $base_client->endpoint('auth');
$username = explode('|', $username);
try {
$resp = $client->call('notify.mp', [
['user' => $username],
$appid,
$title,
$page,
$desc,
$items,
$emphasisFirstItem
]);
} catch (Exception $ex) {
return null;
}
return $resp;
}
/**
* 对单个或多个用户发送文本卡片多个用户id使用 | 隔开
*
* @param $username
* @param $appid //小程序的appid
* @param $title //标题
* @param $page //小程序页面路径
* @param $desc //描述
* @param $items //消息内容键值对最多允许10个item
* @param $emphasisFirstItem //是否放大第一个content_item
*
* @return mixed|null
*/
function tag_mp_alert ($tag, $appid, $title, $page = null, $desc = null, $items = null, $emphasisFirstItem = null)
{
if (env('APP_ENV') == 'local') {
return true;
}
$base_client = new \JsonRpc\Client(RPC_CONFIG);
$client = $base_client->endpoint('auth');
try {
$resp = $client->call('notify.mp', [
['tag' => $tag],
$appid,
$title,
$page,
$desc,
$items,
$emphasisFirstItem
]);
} catch (Exception $ex) {
return null;
}
return $resp;
}
/**
@ -258,4 +252,90 @@ function bot_notify($name, $content)
} else {
return [];
}
}
/**
* 对单个或多个用户发送报警或通知图片多个用户id使用 | 隔开
*
* @param $media_id
*
* @return mixed|null
*/
function user_image_alert ($username, $media_id)
{
if (env('APP_ENV') == 'local') {
return true;
}
$base_client = new \JsonRpc\Client(RPC_CONFIG);
$client = $base_client->endpoint('auth');
$username = explode('|', $username);
try {
$res = $client->call('notify.image', [
['user' => $username],
$media_id,
]);
} catch (Exception $ex) {
return null;
}
return $res;
}
/**
* 对企业微信群发送报警图片(需先创建
*
* @param $chat
* @param $media_id
*
* @return mixed|null
*/
function chat_image_alert ($chat, $media_id)
{
if (env('APP_ENV') == 'local') {
return true;
}
$base_client = new \JsonRpc\Client(RPC_CONFIG);
$client = $base_client->endpoint('auth');
try {
$resp = $client->call('notify.image', [
['chat' => $chat],
$media_id,
]);
} catch (Exception $ex) {
return null;
}
return $resp;
}
/**
* 对企业微信群发送报警文件(需先创建
*
* @param $chat
* @param $media_id
*
* @return mixed|null
*/
function chat_file_alert ($chat, $media_id)
{
if (env('APP_ENV') == 'local') {
return true;
}
$base_client = new \JsonRpc\Client(RPC_CONFIG);
$client = $base_client->endpoint('auth');
try {
$resp = $client->call('notify.file', [
['chat' => $chat],
$media_id,
]);
} catch (Exception $ex) {
return null;
}
return $resp;
}