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/curl/BtService.php

170 lines
4.3 KiB

<?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\curl;
use DtApp\ThinkLibrary\Service;
use think\exception\HttpException;
/**
* 宝塔网络请求接口
* https://www.bt.cn/
* Class BtService
* @package DtApp\ThinkLibrary\service\curl
*/
class BtService extends Service
{
/**
* @var
*/
private $url, $key, $panel, $output, $cookie;
/**
* @var array
*/
private $data = [];
/**
* @var int
*/
private $timeout = 60;
/**
* 配置宝塔密钥
* @param string $str
* @return $this
*/
public function key(string $str): self
{
$this->key = $str;
return $this;
}
/**
* 配置宝塔网址
* @param string $str
* @return $this
*/
public function panel(string $str): self
{
$this->panel = $str;
return $this;
}
/**
* 配置网址
* @param string $str
* @return $this
*/
public function url(string $str): self
{
$this->url = $str;
return $this;
}
/**
* 认证内容
* @param string $str
* @return $this
*/
public function cookie(string $str): self
{
$this->cookie = $str;
return $this;
}
/**
* 超时默认60s
* @param int $int
* @return $this
*/
public function timeout(int $int): self
{
$this->timeout = $int;
return $this;
}
/**
* 数据
* @param array $array
* @return $this
*/
public function data(array $array): self
{
$this->data = $array;
return $this;
}
/**
* 返回数组数据
* @param bool $is
* @return array|bool|mixed|string
*/
public function toArray(bool $is = true)
{
if (empty($this->cookie)) {
throw new HttpException(404, '请检查cookie内容');
}
if (!extension_loaded("curl")) {
throw new HttpException(404, '请开启curl模块');
}
$this->http();
if (empty($is)) {
return $this->output;
}
if (is_array($this->output)) {
return $this->output;
}
return json_decode($this->output, true);
}
/**
* 发起请求
* @return $this
*/
private function http(): self
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $this->panel . $this->url);
curl_setopt($ch, CURLOPT_TIMEOUT, $this->timeout);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, array_merge($this->getKeyData(), $this->data));
curl_setopt($ch, CURLOPT_COOKIEJAR, $this->cookie);
curl_setopt($ch, CURLOPT_COOKIEFILE, $this->cookie);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$output = curl_exec($ch);
curl_close($ch);
$this->output = $output;
return $this;
}
/**
* 构造带有签名的关联数组
* @return array
*/
private function getKeyData(): array
{
$time = time();
return array(
'request_token' => md5($time . '' . md5($this->key)),
'request_time' => $time
);
}
}