加密后的代码
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

YlyRpcClient.php 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?php
  2. namespace App\Protocol;
  3. use App\Config\YlyConfig;
  4. use Exception;
  5. class YlyRpcClient{
  6. private $clientId;
  7. private $clientSecret;
  8. private $requestUrl;
  9. private $token;
  10. private $log;
  11. public function __construct($token, YlyConfig $config)
  12. {
  13. $this->clientId = $config->getClientId();
  14. $this->clientSecret = $config->getClientSecret();
  15. $this->requestUrl = $config->getRequestUrl();
  16. $this->log = $config->getLog();
  17. $this->token = $token;
  18. }
  19. public function call($action, array $params)
  20. {
  21. $time = time();
  22. $params = array_merge(array(
  23. 'client_id' => $this->clientId,
  24. 'timestamp' => $time,
  25. 'sign' => $this->getSign($time),
  26. 'id' => $this->uuid4(),
  27. 'access_token' => $this->token,
  28. ), $params);
  29. $result = $this->send($params, $this->requestUrl . '/' .$action);
  30. $response = json_decode($result, false, 512, JSON_BIGINT_AS_STRING);
  31. if (is_null($response)) {
  32. throw new Exception("invalid response.");
  33. }
  34. if (
  35. isset($response->error) &&
  36. $response->error != 0
  37. ){
  38. $errorDescription = isset($response->body) ? $response->error_description . $response->body : $response->error_description;
  39. throw new Exception('Call method ' . $action . ' error code is ' . $response->error . ' error message is ' . $errorDescription);
  40. }
  41. return $response;
  42. }
  43. public function getSign($timestamp)
  44. {
  45. return md5(
  46. $this->clientId.
  47. $timestamp.
  48. $this->clientSecret
  49. );
  50. }
  51. public function uuid4(){
  52. mt_srand((double)microtime() * 10000);
  53. $charid = strtolower(md5(uniqid(rand(), true)));
  54. $hyphen = '-';
  55. $uuidV4 =
  56. substr($charid, 0, 8) . $hyphen .
  57. substr($charid, 8, 4) . $hyphen .
  58. substr($charid, 12, 4) . $hyphen .
  59. substr($charid, 16, 4) . $hyphen .
  60. substr($charid, 20, 12);
  61. return $uuidV4;
  62. }
  63. public function send($data,$url)
  64. {
  65. $requestInfo = http_build_query($data);
  66. $log = $this->log;
  67. if ($log != null) {
  68. $log->info("request data: " . $requestInfo);
  69. }
  70. $curl = curl_init(); // 启动一个CURL会话
  71. curl_setopt($curl, CURLOPT_URL, $url); // 要访问的地址
  72. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, 0); // 对认证证书来源的检测
  73. curl_setopt($curl, CURLOPT_HTTPHEADER, array(
  74. 'Expect:'
  75. )); // 解决数据包大不能提交
  76. curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1); // 使用自动跳转
  77. curl_setopt($curl, CURLOPT_AUTOREFERER, 1); // 自动设置Referer
  78. curl_setopt($curl, CURLOPT_POST, 1); // 发送一个常规的Post请求
  79. curl_setopt($curl, CURLOPT_POSTFIELDS, $requestInfo); // Post提交的数据包
  80. curl_setopt($curl, CURLOPT_TIMEOUT, 30); // 设置超时限制防止死循
  81. curl_setopt($curl, CURLOPT_HEADER, 0); // 显示返回的Header区域内容
  82. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); // 获取的信息以文件流的形式返回
  83. $response = curl_exec($curl); // 执行操作
  84. if (curl_errno($curl)) {
  85. if ($log != null) {
  86. $log->error("error: " . curl_error($curl));
  87. }
  88. throw new Exception(curl_error($curl));
  89. }
  90. if ($log != null) {
  91. $log->info("response: " . $response);
  92. }
  93. curl_close($curl); // 关键CURL会话
  94. return $response; // 返回数据
  95. }
  96. }