You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
think-library/src/service/DingTalkService.php

99 lines
2.7 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<?php
// +----------------------------------------------------------------------
// | ThinkLibrary 6.0 for ThinkPhP 6.0
// +----------------------------------------------------------------------
// | 版权所有 2017~2020 [ https://www.dtapp.net ]
// +----------------------------------------------------------------------
// | 官方网站: https://gitee.com/liguangchun/ThinkLibrary
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/liguangchun/ThinkLibrary
// | github 仓库地址 https://github.com/GC0202/ThinkLibrary
// | Packagist 地址 https://packagist.org/packages/liguangchun/think-library
// +----------------------------------------------------------------------
namespace DtApp\ThinkLibrary\service;
use DtApp\ThinkLibrary\exception\DtaException;
use DtApp\ThinkLibrary\Service;
use DtApp\ThinkLibrary\service\curl\HttpService;
use think\exception\HttpException;
/**
* 钉钉
* Class DingTalkService
* @package DtApp\ThinkLibrary\service
*/
class DingTalkService extends Service
{
/**
* 消息类型
* @var string
*/
private $msg_type = 'text';
/**
* @var
*/
private $access_token;
/**
* @var string
*/
private $oapi_url = "https://oapi.dingtalk.com/";
/**
* 配置access_token
* @param string $str
* @return $this
*/
public function accessToken(string $str): self
{
$this->access_token = $str;
return $this;
}
/**
* 发送文本消息
* @param string $content 消息内容
* @return bool 发送结果
* @throws DtaException
*/
public function text(string $content): bool
{
$this->msg_type = 'text';
return $this->sendMsg([
'text' => [
'content' => $content,
],
]);
}
/**
* 组装发送消息
* @param array $data 消息内容数组
* @return bool 发送结果
* @throws DtaException
*/
private function sendMsg(array $data): bool
{
if (empty($this->access_token)) {
throw new DtaException("请检查access_token");
}
if (empty($data['msgtype'])) {
$data['msgtype'] = $this->msg_type;
}
$result = HttpService::instance()
->url("{$this->oapi_url}robot/send?access_token=" . $this->access_token)
->data($data)
->post()
->toArray();
if ($result['errcode'] == 0) {
return $result['errmsg'];
}
throw new HttpException(404, json_encode($result, JSON_UNESCAPED_UNICODE));
}
}