加密后的代码
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.

YlyOauthClient.php 3.9KB

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