no message

This commit is contained in:
候学杰 2019-07-02 16:41:17 +08:00
parent 9791b6dcfd
commit c9b502ac38

View File

@ -1,226 +1,226 @@
<?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()); 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) {
// var_dump($ex->getMessage()); var_dump($ex->getMessage());
// return null; return null;
// } }
//
// return $res; return $res;
//} }
//
///** /**
// * 对微信群发送文本卡片 * 对微信群发送文本卡片
// * *
// * @param $chat * @param $chat
// * @param $title * @param $title
// * @param $desc * @param $desc
// * @param $button * @param $button
// * @param $url * @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') { 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.card', [ $resp = $client->call('notify.card', [
// ['chat' => $chat], ['chat' => $chat],
// $title, $title,
// $desc, $desc,
// $button, $button,
// $url, $url,
// ]); ]);
// } catch (Exception $ex) { } catch (Exception $ex) {
// var_dump($ex->getMessage()); var_dump($ex->getMessage());
// return null; return null;
// } }
//
// return $resp; return $resp;
//} }
//
///** /**
// * 对单个或多个用户发送文本卡片多个用户id使用 | 隔开 * 对单个或多个用户发送文本卡片多个用户id使用 | 隔开
// * *
// * @param $username * @param $username
// * @param $title * @param $title
// * @param $desc * @param $desc
// * @param $button * @param $button
// * @param $url * @param $url
// * *
// * @return mixed|null * @return mixed|null
// */ */
//function user_card_alert ($username, $title, $desc, $button, $url) function user_card_alert ($username, $title, $desc, $button, $url)
//{ {
// 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 {
// $resp = $client->call('notify.card', [ $resp = $client->call('notify.card', [
// ['user' => $username], ['user' => $username],
// $title, $title,
// $desc, $desc,
// $button, $button,
// $url, $url,
// ]); ]);
// } catch (Exception $ex) { } catch (Exception $ex) {
// var_dump($ex->getMessage()); var_dump($ex->getMessage());
// return null; return null;
// } }
//
// return $resp; return $resp;
//} }
//
///** /**
// * 对单个或多个用户发送文本卡片多个用户id使用 | 隔开 * 对单个或多个用户发送文本卡片多个用户id使用 | 隔开
// * *
// * @param $username * @param $username
// * @param $appid //小程序的appid * @param $appid //小程序的appid
// * @param $title //标题 * @param $title //标题
// * @param $page //小程序页面路径 * @param $page //小程序页面路径
// * @param $desc //描述 * @param $desc //描述
// * @param $items //消息内容键值对最多允许10个item * @param $items //消息内容键值对最多允许10个item
// * @param $emphasisFirstItem //是否放大第一个content_item * @param $emphasisFirstItem //是否放大第一个content_item
// * *
// * @return mixed|null * @return mixed|null
// */ */
//function user_mp_alert ($username, $appid, $title, $page = null, $desc = null, $items = null, $emphasisFirstItem = null) function user_mp_alert ($username, $appid, $title, $page = null, $desc = null, $items = null, $emphasisFirstItem = null)
//{ {
// 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 {
// $resp = $client->call('notify.mp', [ $resp = $client->call('notify.mp', [
// ['user' => $username], ['user' => $username],
// $appid, $appid,
// $title, $title,
// $page, $page,
// $desc, $desc,
// $items, $items,
// $emphasisFirstItem $emphasisFirstItem
// ]); ]);
// } catch (Exception $ex) { } catch (Exception $ex) {
// var_dump($ex->getMessage()); var_dump($ex->getMessage());
// return null; return null;
// } }
//
// return $resp; return $resp;
//} }
//
///** /**
// * 对单个或多个用户发送文本卡片多个用户id使用 | 隔开 * 对单个或多个用户发送文本卡片多个用户id使用 | 隔开
// * *
// * @param $username * @param $username
// * @param $appid //小程序的appid * @param $appid //小程序的appid
// * @param $title //标题 * @param $title //标题
// * @param $page //小程序页面路径 * @param $page //小程序页面路径
// * @param $desc //描述 * @param $desc //描述
// * @param $items //消息内容键值对最多允许10个item * @param $items //消息内容键值对最多允许10个item
// * @param $emphasisFirstItem //是否放大第一个content_item * @param $emphasisFirstItem //是否放大第一个content_item
// * *
// * @return mixed|null * @return mixed|null
// */ */
//function tag_mp_alert ($tag, $appid, $title, $page = null, $desc = null, $items = null, $emphasisFirstItem = null) function tag_mp_alert ($tag, $appid, $title, $page = null, $desc = null, $items = null, $emphasisFirstItem = null)
//{ {
// 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.mp', [ $resp = $client->call('notify.mp', [
// ['tag' => $tag], ['tag' => $tag],
// $appid, $appid,
// $title, $title,
// $page, $page,
// $desc, $desc,
// $items, $items,
// $emphasisFirstItem $emphasisFirstItem
// ]); ]);
// } catch (Exception $ex) { } catch (Exception $ex) {
// var_dump($ex->getMessage()); var_dump($ex->getMessage());
// return null; return null;
// } }
//
// return $resp; return $resp;
//} }
/** /**