...
|
...
|
@@ -15,7 +15,7 @@ namespace Api; |
|
|
|
|
|
class Yohobuy
|
|
|
{
|
|
|
const API_URL = 'http://api.open.yohobuy.com/';
|
|
|
const API_URL = 'http://api2.open.yohobuy.com/';
|
|
|
const SERVICE_URL = 'http://service.api.yohobuy.com/';
|
|
|
|
|
|
/**
|
...
|
...
|
@@ -23,38 +23,84 @@ class Yohobuy |
|
|
*
|
|
|
* @var array
|
|
|
*/
|
|
|
public static $privateKeyList = array(
|
|
|
private static $privateKeyList = array(
|
|
|
'android' => 'fd4ad5fcfa0de589ef238c0e7331b585',
|
|
|
'iphone' => 'a85bb0674e08986c6b115d5e3a4884fa',
|
|
|
'ipad' => 'ad9fcda2e679cf9229e37feae2cdcf80',
|
|
|
);
|
|
|
|
|
|
/**
|
|
|
* 取得当前的客户端类型
|
|
|
*/
|
|
|
public static function clientType()
|
|
|
{
|
|
|
// 苹果设备
|
|
|
if (strstr($_SERVER['HTTP_USER_AGENT'], 'iPhone')) {
|
|
|
return 'iphone';
|
|
|
}
|
|
|
// 苹果IPAD
|
|
|
elseif (strstr($_SERVER['HTTP_USER_AGENT'], 'iPad')) {
|
|
|
return 'ipad';
|
|
|
}
|
|
|
// 其它
|
|
|
else {
|
|
|
return 'android';
|
|
|
}
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 取得公共的参数
|
|
|
*
|
|
|
* @return array
|
|
|
*/
|
|
|
public static function param()
|
|
|
{
|
|
|
$clientType = self::clientType();
|
|
|
$param = array(
|
|
|
'client_type' => '',
|
|
|
'app_version' => '',
|
|
|
'os_version' => '',
|
|
|
'screen_size' => '',
|
|
|
'v' => '',
|
|
|
'app_version' => '3.6',
|
|
|
'client_type' => $clientType,
|
|
|
'os_version' => 'yohobuy:h5',
|
|
|
'private_key' => self::$privateKeyList[$clientType],
|
|
|
'screen_size' => '720x1280',
|
|
|
'v' => '6',
|
|
|
);
|
|
|
return $param;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 构建URL
|
|
|
*
|
|
|
* @param string $url
|
|
|
* @param array $data
|
|
|
* @return string
|
|
|
*/
|
|
|
public static function httpBuildQuery($url, $data)
|
|
|
{
|
|
|
if (strstr($url, '?') !== false) {
|
|
|
$url .= '&' . http_build_query($data, null, '&');
|
|
|
} else {
|
|
|
$url .= '?' . http_build_query($data, null, '&');
|
|
|
}
|
|
|
return $url;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* get方式调用接口
|
|
|
*
|
|
|
* @param string $url 接口URL
|
|
|
* @param array $data 参数列表
|
|
|
* @param int $timeout 超时时间
|
|
|
* @return mixed
|
|
|
*/
|
|
|
public static function get($url, $timeout = 5)
|
|
|
public static function get($url, $data = array(), $timeout = 5)
|
|
|
{
|
|
|
if (isset($data['private_key'])) {
|
|
|
unset($data['private_key']);
|
|
|
}
|
|
|
if (!empty($data)) {
|
|
|
$url .= self::httpBuildQuery($url, $data);
|
|
|
}
|
|
|
|
|
|
$ch = curl_init($url);
|
|
|
curl_setopt($ch, CURLOPT_HEADER, 0);
|
|
|
curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
|
...
|
...
|
@@ -64,17 +110,17 @@ class Yohobuy |
|
|
$result = json_decode($result, true);
|
|
|
}
|
|
|
curl_close($ch);
|
|
|
$data = array();
|
|
|
|
|
|
return $result;
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
* post提交数据
|
|
|
*
|
|
|
* @param string $url 接口URL
|
|
|
* @param array $data
|
|
|
* @param int $timeout
|
|
|
* @param array $data 参数列表
|
|
|
* @param int $timeout 超时时间
|
|
|
* @param array $header
|
|
|
* @param array $cookie
|
|
|
* @return mixed
|
...
|
...
|
@@ -82,11 +128,12 @@ class Yohobuy |
|
|
public static function post($url, $data = array(), $timeout = 5, $header = array(), $cookie = array())
|
|
|
{
|
|
|
$ch = curl_init($url);
|
|
|
curl_setopt($ch, CURLOPT_HEADER, 0);
|
|
|
curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
|
|
|
|
|
|
curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
|
|
|
if (!empty($header)) {
|
|
|
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
|
|
|
} else {
|
|
|
curl_setopt($ch, CURLOPT_HEADER, 0);
|
|
|
}
|
|
|
|
|
|
if (!empty($cookie)) {
|
...
|
...
|
@@ -99,6 +146,9 @@ class Yohobuy |
|
|
|
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
|
|
curl_setopt($ch, CURLOPT_POST, true);
|
|
|
if (isset($data['private_key'])) {
|
|
|
unset($data['private_key']);
|
|
|
}
|
|
|
if (!empty($data)) {
|
|
|
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
|
|
|
}
|
...
|
...
|
@@ -107,6 +157,7 @@ class Yohobuy |
|
|
$result = json_decode($result, true);
|
|
|
}
|
|
|
curl_close($ch);
|
|
|
$data = array();
|
|
|
|
|
|
return $result;
|
|
|
}
|
...
|
...
|
@@ -186,7 +237,7 @@ class Yohobuy |
|
|
}
|
|
|
curl_multi_close($mh);
|
|
|
|
|
|
return $data;
|
|
|
return $result;
|
|
|
}
|
|
|
|
|
|
} |
...
|
...
|
|