php-internal-api-client/src/Client.php
候学杰 e3f2a69a00 init
2018-03-01 17:57:25 +08:00

61 lines
1.4 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace InternalApi;
class Client
{
protected $currentApp;
protected $config;
public function __construct($config)
{
$this->config = $config;
}
/**
* @param $app
* @return $this
*/
public function app($app)
{
if (isset($this->config[$app]))
$this->currentApp = $app;
return $this;
}
/**
* 调用api如果状态码不为200则抛出异常
* @param $uri
* @param $params
* @return mixed
* @throws \Exception
*/
public function call($uri, $params)
{
$config = array_merge(['timeout' => 1],
$this->config[$this->currentApp]);
unset($config['secret']);
$client = new \GuzzleHttp\Client($config);
$params['appid'] = $this->currentApp;
$params['timestamp'] = time();
$params['sign'] = $this->sign($params);
$resp = $client->post($uri, ['form_params' => $params]);
if ($resp->getStatusCode() == 200) {
return \GuzzleHttp\json_decode($resp->getBody(), true);
} else {
throw new \Exception('request failed');
}
}
protected function sign($params)
{
$key = $this->config[$this->currentApp]['secret'];
unset($params['sign']);
ksort($params);
$str = http_build_query($params, null, '&');
return md5($str . $key);
}
}