Compare commits
14 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
80bb352dea | ||
![]() |
d588a7d108 | ||
![]() |
c02656e435 | ||
![]() |
4133ce2995 | ||
![]() |
eb92fe8e8b | ||
![]() |
3d7d02f353 | ||
![]() |
f6ed2277fa | ||
![]() |
1534831332 | ||
![]() |
029c02969b | ||
![]() |
74f2959272 | ||
![]() |
80655ac74d | ||
![]() |
b494903dfd | ||
![]() |
c9b502ac38 | ||
![]() |
9791b6dcfd |
|
@ -13,11 +13,5 @@
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"paidian/json-rpc": "~1.1"
|
"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
2077
composer.lock
generated
File diff suppressed because it is too large
Load Diff
|
@ -1,226 +1,220 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
//define('RPC_CONFIG', [
|
define('RPC_CONFIG', [
|
||||||
// 'app' => env('APP_NAME'),
|
'app' => env('APP_NAME'),
|
||||||
// 'client' => [
|
'client' => [
|
||||||
// 'auth' => [
|
'auth' => [
|
||||||
// 'base_uri' => 'http://auth.in.haowumc.com',
|
'base_uri' => 'http://auth.in.haowumc.com',
|
||||||
// ],
|
],
|
||||||
// ],
|
],
|
||||||
//]);
|
]);
|
||||||
//
|
|
||||||
///**
|
/**
|
||||||
// * 对企业微信群发送报警信息(需先创建
|
* 对企业微信群发送报警信息(需先创建
|
||||||
// *
|
*
|
||||||
// * @param $chat
|
* @param $chat
|
||||||
// * @param $text
|
* @param $text
|
||||||
// *
|
*
|
||||||
// * @return mixed|null
|
* @return mixed|null
|
||||||
// */
|
*/
|
||||||
//
|
|
||||||
//function chat_text_alert ($chat, $text)
|
function chat_text_alert ($chat, $text)
|
||||||
//{
|
{
|
||||||
// if (env('APP_ENV') == 'local') {
|
if (env('APP_ENV') == 'local') {
|
||||||
// return true;
|
return true;
|
||||||
// }
|
}
|
||||||
// $base_client = new \JsonRpc\Client(RPC_CONFIG);
|
$base_client = new \JsonRpc\Client(RPC_CONFIG);
|
||||||
// $client = $base_client->endpoint('auth');
|
$client = $base_client->endpoint('auth');
|
||||||
//
|
|
||||||
// try {
|
try {
|
||||||
// $resp = $client->call('notify.text', [
|
$resp = $client->call('notify.text', [
|
||||||
// ['chat' => $chat],
|
['chat' => $chat],
|
||||||
// $text,
|
$text,
|
||||||
// ]);
|
]);
|
||||||
// } catch (Exception $ex) {
|
} catch (Exception $ex) {
|
||||||
// var_dump($ex->getMessage());
|
return null;
|
||||||
// return null;
|
}
|
||||||
// }
|
|
||||||
//
|
return $resp;
|
||||||
// return $resp;
|
}
|
||||||
//}
|
|
||||||
//
|
/**
|
||||||
///**
|
* 对单个或多个用户发送报警或通知信息,多个用户id使用 | 隔开
|
||||||
// * 对单个或多个用户发送报警或通知信息,多个用户id使用 | 隔开
|
*
|
||||||
// *
|
* @param $text
|
||||||
// * @param $text
|
*
|
||||||
// *
|
* @return mixed|null
|
||||||
// * @return mixed|null
|
*/
|
||||||
// */
|
function user_text_alert ($username, $text)
|
||||||
//function user_text_alert ($username, $text)
|
{
|
||||||
//{
|
if (env('APP_ENV') == 'local') {
|
||||||
// if (env('APP_ENV') == 'local') {
|
return true;
|
||||||
// return true;
|
}
|
||||||
// }
|
$base_client = new \JsonRpc\Client(RPC_CONFIG);
|
||||||
// $base_client = new \JsonRpc\Client(RPC_CONFIG);
|
$client = $base_client->endpoint('auth');
|
||||||
// $client = $base_client->endpoint('auth');
|
|
||||||
//
|
$username = explode('|', $username);
|
||||||
// $username = explode('|', $username);
|
try {
|
||||||
// try {
|
$res = $client->call('notify.text', [
|
||||||
// $res = $client->call('notify.text', [
|
['user' => $username],
|
||||||
// ['user' => $username],
|
$text,
|
||||||
// $text,
|
]);
|
||||||
// ]);
|
} catch (Exception $ex) {
|
||||||
// } catch (Exception $ex) {
|
return null;
|
||||||
// var_dump($ex->getMessage());
|
}
|
||||||
// return null;
|
|
||||||
// }
|
return $res;
|
||||||
//
|
}
|
||||||
// return $res;
|
|
||||||
//}
|
/**
|
||||||
//
|
* 对微信群发送文本卡片
|
||||||
///**
|
*
|
||||||
// * 对微信群发送文本卡片
|
* @param $chat
|
||||||
// *
|
* @param $title
|
||||||
// * @param $chat
|
* @param $desc
|
||||||
// * @param $title
|
* @param $button
|
||||||
// * @param $desc
|
* @param $url
|
||||||
// * @param $button
|
*
|
||||||
// * @param $url
|
* @return mixed|null
|
||||||
// *
|
*/
|
||||||
// * @return mixed|null
|
function chat_card_alert ($chat, $title, $desc, $button, $url)
|
||||||
// */
|
{
|
||||||
//function chat_card_alert ($chat, $title, $desc, $button, $url)
|
if (env('APP_ENV') == 'local') {
|
||||||
//{
|
return true;
|
||||||
// if (env('APP_ENV') == 'local') {
|
}
|
||||||
// return true;
|
|
||||||
// }
|
$base_client = new \JsonRpc\Client(RPC_CONFIG);
|
||||||
//
|
$client = $base_client->endpoint('auth');
|
||||||
// $base_client = new \JsonRpc\Client(RPC_CONFIG);
|
|
||||||
// $client = $base_client->endpoint('auth');
|
try {
|
||||||
//
|
$resp = $client->call('notify.card', [
|
||||||
// try {
|
['chat' => $chat],
|
||||||
// $resp = $client->call('notify.card', [
|
$title,
|
||||||
// ['chat' => $chat],
|
$desc,
|
||||||
// $title,
|
$button,
|
||||||
// $desc,
|
$url,
|
||||||
// $button,
|
]);
|
||||||
// $url,
|
} catch (Exception $ex) {
|
||||||
// ]);
|
return null;
|
||||||
// } catch (Exception $ex) {
|
}
|
||||||
// var_dump($ex->getMessage());
|
|
||||||
// return null;
|
return $resp;
|
||||||
// }
|
}
|
||||||
//
|
|
||||||
// return $resp;
|
/**
|
||||||
//}
|
* 对单个或多个用户发送文本卡片,多个用户id使用 | 隔开
|
||||||
//
|
*
|
||||||
///**
|
* @param $username
|
||||||
// * 对单个或多个用户发送文本卡片,多个用户id使用 | 隔开
|
* @param $title
|
||||||
// *
|
* @param $desc
|
||||||
// * @param $username
|
* @param $button
|
||||||
// * @param $title
|
* @param $url
|
||||||
// * @param $desc
|
*
|
||||||
// * @param $button
|
* @return mixed|null
|
||||||
// * @param $url
|
*/
|
||||||
// *
|
function user_card_alert ($username, $title, $desc, $button, $url)
|
||||||
// * @return mixed|null
|
{
|
||||||
// */
|
if (env('APP_ENV') == 'local') {
|
||||||
//function user_card_alert ($username, $title, $desc, $button, $url)
|
return true;
|
||||||
//{
|
}
|
||||||
// if (env('APP_ENV') == 'local') {
|
|
||||||
// return true;
|
$base_client = new \JsonRpc\Client(RPC_CONFIG);
|
||||||
// }
|
$client = $base_client->endpoint('auth');
|
||||||
//
|
|
||||||
// $base_client = new \JsonRpc\Client(RPC_CONFIG);
|
$username = explode('|', $username);
|
||||||
// $client = $base_client->endpoint('auth');
|
try {
|
||||||
//
|
$resp = $client->call('notify.card', [
|
||||||
// $username = explode('|', $username);
|
['user' => $username],
|
||||||
// try {
|
$title,
|
||||||
// $resp = $client->call('notify.card', [
|
$desc,
|
||||||
// ['user' => $username],
|
$button,
|
||||||
// $title,
|
$url,
|
||||||
// $desc,
|
]);
|
||||||
// $button,
|
} catch (Exception $ex) {
|
||||||
// $url,
|
return null;
|
||||||
// ]);
|
}
|
||||||
// } catch (Exception $ex) {
|
|
||||||
// var_dump($ex->getMessage());
|
return $resp;
|
||||||
// return null;
|
}
|
||||||
// }
|
|
||||||
//
|
/**
|
||||||
// return $resp;
|
* 对单个或多个用户发送文本卡片,多个用户id使用 | 隔开
|
||||||
//}
|
*
|
||||||
//
|
* @param $username
|
||||||
///**
|
* @param $appid //小程序的appid
|
||||||
// * 对单个或多个用户发送文本卡片,多个用户id使用 | 隔开
|
* @param $title //标题
|
||||||
// *
|
* @param $page //小程序页面路径
|
||||||
// * @param $username
|
* @param $desc //描述
|
||||||
// * @param $appid //小程序的appid
|
* @param $items //消息内容键值对,最多允许10个item
|
||||||
// * @param $title //标题
|
* @param $emphasisFirstItem //是否放大第一个content_item
|
||||||
// * @param $page //小程序页面路径
|
*
|
||||||
// * @param $desc //描述
|
* @return mixed|null
|
||||||
// * @param $items //消息内容键值对,最多允许10个item
|
*/
|
||||||
// * @param $emphasisFirstItem //是否放大第一个content_item
|
function user_mp_alert ($username, $appid, $title, $page = null, $desc = null, $items = null, $emphasisFirstItem = null)
|
||||||
// *
|
{
|
||||||
// * @return mixed|null
|
if (env('APP_ENV') == 'local') {
|
||||||
// */
|
return true;
|
||||||
//function user_mp_alert ($username, $appid, $title, $page = null, $desc = null, $items = null, $emphasisFirstItem = null)
|
}
|
||||||
//{
|
|
||||||
// if (env('APP_ENV') == 'local') {
|
$base_client = new \JsonRpc\Client(RPC_CONFIG);
|
||||||
// return true;
|
$client = $base_client->endpoint('auth');
|
||||||
// }
|
|
||||||
//
|
$username = explode('|', $username);
|
||||||
// $base_client = new \JsonRpc\Client(RPC_CONFIG);
|
try {
|
||||||
// $client = $base_client->endpoint('auth');
|
$resp = $client->call('notify.mp', [
|
||||||
//
|
['user' => $username],
|
||||||
// $username = explode('|', $username);
|
$appid,
|
||||||
// try {
|
$title,
|
||||||
// $resp = $client->call('notify.mp', [
|
$page,
|
||||||
// ['user' => $username],
|
$desc,
|
||||||
// $appid,
|
$items,
|
||||||
// $title,
|
$emphasisFirstItem
|
||||||
// $page,
|
]);
|
||||||
// $desc,
|
} catch (Exception $ex) {
|
||||||
// $items,
|
return null;
|
||||||
// $emphasisFirstItem
|
}
|
||||||
// ]);
|
|
||||||
// } catch (Exception $ex) {
|
return $resp;
|
||||||
// var_dump($ex->getMessage());
|
}
|
||||||
// return null;
|
|
||||||
// }
|
/**
|
||||||
//
|
* 对单个或多个用户发送文本卡片,多个用户id使用 | 隔开
|
||||||
// return $resp;
|
*
|
||||||
//}
|
* @param $username
|
||||||
//
|
* @param $appid //小程序的appid
|
||||||
///**
|
* @param $title //标题
|
||||||
// * 对单个或多个用户发送文本卡片,多个用户id使用 | 隔开
|
* @param $page //小程序页面路径
|
||||||
// *
|
* @param $desc //描述
|
||||||
// * @param $username
|
* @param $items //消息内容键值对,最多允许10个item
|
||||||
// * @param $appid //小程序的appid
|
* @param $emphasisFirstItem //是否放大第一个content_item
|
||||||
// * @param $title //标题
|
*
|
||||||
// * @param $page //小程序页面路径
|
* @return mixed|null
|
||||||
// * @param $desc //描述
|
*/
|
||||||
// * @param $items //消息内容键值对,最多允许10个item
|
function tag_mp_alert ($tag, $appid, $title, $page = null, $desc = null, $items = null, $emphasisFirstItem = null)
|
||||||
// * @param $emphasisFirstItem //是否放大第一个content_item
|
{
|
||||||
// *
|
if (env('APP_ENV') == 'local') {
|
||||||
// * @return mixed|null
|
return true;
|
||||||
// */
|
}
|
||||||
//function tag_mp_alert ($tag, $appid, $title, $page = null, $desc = null, $items = null, $emphasisFirstItem = null)
|
|
||||||
//{
|
$base_client = new \JsonRpc\Client(RPC_CONFIG);
|
||||||
// if (env('APP_ENV') == 'local') {
|
$client = $base_client->endpoint('auth');
|
||||||
// return true;
|
|
||||||
// }
|
try {
|
||||||
//
|
$resp = $client->call('notify.mp', [
|
||||||
// $base_client = new \JsonRpc\Client(RPC_CONFIG);
|
['tag' => $tag],
|
||||||
// $client = $base_client->endpoint('auth');
|
$appid,
|
||||||
//
|
$title,
|
||||||
// try {
|
$page,
|
||||||
// $resp = $client->call('notify.mp', [
|
$desc,
|
||||||
// ['tag' => $tag],
|
$items,
|
||||||
// $appid,
|
$emphasisFirstItem
|
||||||
// $title,
|
]);
|
||||||
// $page,
|
} catch (Exception $ex) {
|
||||||
// $desc,
|
return null;
|
||||||
// $items,
|
}
|
||||||
// $emphasisFirstItem
|
|
||||||
// ]);
|
return $resp;
|
||||||
// } catch (Exception $ex) {
|
}
|
||||||
// var_dump($ex->getMessage());
|
|
||||||
// return null;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// return $resp;
|
|
||||||
//}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -241,9 +235,12 @@
|
||||||
function bot_notify($name, $content)
|
function bot_notify($name, $content)
|
||||||
{
|
{
|
||||||
switch ($name) {
|
switch ($name) {
|
||||||
case 'inventory';
|
case 'inventory':
|
||||||
$uri = 'https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=20a40b87-7bb9-4bcf-bd38-6612377d0970';
|
$uri = 'https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=20a40b87-7bb9-4bcf-bd38-6612377d0970';
|
||||||
break;
|
break;
|
||||||
|
case 'test':
|
||||||
|
$uri = 'https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=757bcb2d-913c-4ab6-9395-bfa45f488f68';
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
throw new Exception('bot name not found!');
|
throw new Exception('bot name not found!');
|
||||||
}
|
}
|
||||||
|
@ -255,4 +252,90 @@ function bot_notify($name, $content)
|
||||||
} else {
|
} else {
|
||||||
return [];
|
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;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user