ByteDance.php 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?php
  2. namespace app\service\byte_dance;
  3. use GuzzleHttp\Client;
  4. class ByteDance{
  5. public static function accessToken(){
  6. return self::single(ByteDanceAccessToken::class)
  7. ->setAppId(self::appId())
  8. ->setAppSecret(self::appSecret())
  9. ->get();
  10. }
  11. private static function single($class){
  12. static $container=[];
  13. if (!isset($container[$class])){
  14. $container[$class]=new $class;
  15. }
  16. return $container[$class];
  17. }
  18. public static function appId(){
  19. return config('site.byte_dance_mapp_appId');
  20. }
  21. public static function appSecret(){
  22. return config('site.byte_dance_mapp_appSecret');
  23. }
  24. public static function appIdTwo(){
  25. return config('site.byte_dance_mapp_two_appld');
  26. }
  27. public static function appSecretTwo(){
  28. return config('site.byte_dance _mapp_two_appSecret');
  29. }
  30. public static function httpGet($url){
  31. $request=(new Client)
  32. ->get($url);
  33. $requestData = json_decode($request->getBody()->getContents(),true);
  34. ByteDance::throwIf(!empty($requestData['err_no']),$requestData['err_tips']);
  35. return $requestData['data'];
  36. }
  37. public static function httpPost($url,$params,$header=[],$getData=true){
  38. $request=(new Client)
  39. ->request('post',$url,[
  40. 'json'=>$params,
  41. 'headers'=>$header
  42. ]);
  43. $requestData = json_decode($request->getBody()->getContents(),true);
  44. if(!$getData){
  45. return $requestData;
  46. }
  47. ByteDance::throwIf(!empty($requestData['err_no']),$requestData['err_tips']);
  48. return $requestData['data']??[];
  49. }
  50. public static function throwIf($condition,$msg){
  51. if($condition){
  52. throw new ByteDanceException($msg);
  53. }
  54. }
  55. public static function sign($map) {
  56. $rList = array();
  57. foreach($map as $k =>$v) {
  58. if ($k == "other_settle_params" || $k == "app_id" || $k == "sign" || $k == "thirdparty_id")
  59. continue;
  60. $value = trim(strval($v));
  61. $len = strlen($value);
  62. if ($len > 1 && substr($value, 0,1)=="\"" && substr($value,$len, $len-1)=="\"")
  63. $value = substr($value,1, $len-1);
  64. $value = trim($value);
  65. if ($value == "" || $value == "null")
  66. continue;
  67. array_push($rList, $value);
  68. }
  69. array_push($rList, config('site.byte_dance_mapp_pay_salt'));
  70. sort($rList, 2);
  71. return md5(implode('&', $rList));
  72. }
  73. }