MichatService.php 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\service\service;
  15. use library\tools\Http;
  16. use think\Exception;
  17. /**
  18. * 小米消息服务
  19. * Class MichatService
  20. * @package app\service\service
  21. */
  22. class MichatService
  23. {
  24. const URI = 'https://mimc.chat.xiaomi.net';
  25. const BIZ_TYPE_PING = 'PING';
  26. const BIZ_TYPE_POND = 'PONG';
  27. const BIZ_TYPE_TEXT = 'TEXT';
  28. const BIZ_TYPE_PIC_FILE = 'PIC_FILE';
  29. const BIZ_TYPE_BIN_FILE = 'BIN_FILE';
  30. const BIZ_TYPE_AUDIO_FILE = 'AUDIO_FILE';
  31. const MSG_TYPE_BASE64 = 'base64';
  32. /**
  33. * 给指定账号推送消息内容
  34. * @param string $from 消息来源
  35. * @param string $to 消息目标
  36. * @param string $message 消息内容
  37. * @return bool|string
  38. * @throws Exception
  39. * @throws \think\exception\PDOException
  40. */
  41. public static function push($from, $to, $message)
  42. {
  43. return self::post('/api/push/p2p/', [
  44. 'appId' => sysconf('michat_appid'),
  45. 'appKey' => sysconf('michat_appkey'),
  46. 'appSecret' => sysconf('michat_appsecert'),
  47. 'fromAccount' => $from,
  48. 'fromResource' => $from,
  49. 'toAccount' => $to,
  50. 'msg' => base64_encode($message),
  51. 'msgType' => 'base64',
  52. 'bizType' => '',
  53. 'isStore' => false,
  54. ]);
  55. }
  56. /**
  57. * POST提交消息数据
  58. * @param string $api 接口地址
  59. * @param array $data 接口数据
  60. * @return bool|string
  61. * @throws Exception
  62. */
  63. private static function post($api, array $data)
  64. {
  65. $result = json_decode(Http::request('post', self::URI . $api, [
  66. 'data' => json_encode($data, JSON_UNESCAPED_UNICODE),
  67. 'headers' => ['Content-Type: application/json'],
  68. ]), true);
  69. if (isset($result['code']) && intval($result['code']) === 200) {
  70. return $result['data'];
  71. } else {
  72. throw new Exception($result['message'], $result['code']);
  73. }
  74. }
  75. }