|
@@ -33,25 +33,46 @@ function randomkeys($length) {
|
|
|
}
|
|
|
//参数1:访问的URL,参数2:post数据(不填则为GET),参数3:提交的$cookies,参数4:是否返回$cookies
|
|
|
function curl_request($url,$post=''){
|
|
|
- $curl = curl_init();
|
|
|
- curl_setopt($curl, CURLOPT_URL, $url);
|
|
|
- curl_setopt($curl, CURLOPT_USERAGENT, 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)');
|
|
|
- curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1);
|
|
|
- curl_setopt($curl, CURLOPT_AUTOREFERER, 1);
|
|
|
- curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
|
|
|
- if($post) {
|
|
|
- curl_setopt($curl, CURLOPT_POST, 1);
|
|
|
- curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($post));
|
|
|
- }
|
|
|
- curl_setopt($curl, CURLOPT_TIMEOUT, 10);
|
|
|
- curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
|
|
|
- $data = curl_exec($curl);
|
|
|
- if (curl_errno($curl)) {
|
|
|
- return curl_error($curl);
|
|
|
- }
|
|
|
- curl_close($curl);
|
|
|
- return $data;
|
|
|
+ $header = headerSign($post);
|
|
|
+ if(is_array($post)) $post=http_build_query($post);
|
|
|
+ $curl = curl_init();
|
|
|
+ curl_setopt($curl, CURLOPT_URL, $url);
|
|
|
+ curl_setopt($curl, CURLOPT_USERAGENT, 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)');
|
|
|
+ curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1);
|
|
|
+ curl_setopt($curl, CURLOPT_AUTOREFERER, 1);
|
|
|
+ curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
|
|
|
+ if($post) {
|
|
|
+ curl_setopt($curl, CURLOPT_POST, 1);
|
|
|
+ curl_setopt($curl, CURLOPT_POSTFIELDS, $post);
|
|
|
+ }
|
|
|
+ curl_setopt($curl, CURLOPT_TIMEOUT, 10);
|
|
|
+ curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
|
|
|
+ curl_setopt($curl, CURLOPT_HTTPHEADER, $header);
|
|
|
+ $data = curl_exec($curl);
|
|
|
+ if (curl_errno($curl)) {
|
|
|
+ return curl_error($curl);
|
|
|
+ }
|
|
|
+ curl_close($curl);
|
|
|
+ return $data;
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+if(!function_exists("headerSign")){
|
|
|
|
|
|
+ function headerSign($post){
|
|
|
+ $config = Config::get("sign");
|
|
|
+ $appid=$config['appid'];
|
|
|
+ $appkey=$config['appkey'];
|
|
|
+ $headerArr=["appid"=>'123',"noce"=>randomkeys(16),"sign"=>'',"timestamp"=>time()];
|
|
|
+ $value =array_merge($post,$headerArr);
|
|
|
+ $Sign= new \Sign($appid,$appkey);
|
|
|
+ $headerArr['sign'] = $Sign->makeSign($value);
|
|
|
+ $list=["Content-Type"=>"multipart/json;charset=utf-8"];
|
|
|
+ foreach ($headerArr as $key=>$value){
|
|
|
+ $list[]=$key.":".$value;
|
|
|
+ }
|
|
|
+ return $list;
|
|
|
+ }
|
|
|
}
|
|
|
/**
|
|
|
* @param $token
|
|
@@ -62,7 +83,7 @@ function curl_request($url,$post=''){
|
|
|
* @throws \think\exception\DbException
|
|
|
*/
|
|
|
function VerifyTokens($token){
|
|
|
- $url = env("user.hosturl")."verifyToken";
|
|
|
+ $url =env("user.hosturl")."verifyToken";
|
|
|
$data=[
|
|
|
"token"=>$token
|
|
|
];
|
|
@@ -76,9 +97,7 @@ function VerifyTokens($token){
|
|
|
* @return mixed
|
|
|
*/
|
|
|
function GetUserlist($token,$condition){
|
|
|
- $host = Config::get("app");
|
|
|
-
|
|
|
- $url = env("user.hosturl")."userlist";
|
|
|
+ $url = env("user.hosturl")."userlist";
|
|
|
$condition['token']=$token;
|
|
|
$response=curl_request($url,$condition);
|
|
|
|
|
@@ -91,8 +110,6 @@ function GetUserlist($token,$condition){
|
|
|
* @return mixed
|
|
|
*/
|
|
|
function GetAccountall($token, $condition){
|
|
|
- $host = Config::get("app");
|
|
|
-
|
|
|
$url = env("user.hosturl")."userall";
|
|
|
$condition['token']=$token;
|
|
|
$response=curl_request($url,$condition);
|
|
@@ -101,8 +118,6 @@ function GetAccountall($token, $condition){
|
|
|
}
|
|
|
|
|
|
function GetList($token,$condition){
|
|
|
- $host = Config::get("app");
|
|
|
-
|
|
|
$url = env("user.hosturl")."userlist";
|
|
|
$condition['token']=$token;
|
|
|
$response=curl_request($url,$condition);
|
|
@@ -110,13 +125,9 @@ function GetList($token,$condition){
|
|
|
return json_decode($response,true);
|
|
|
}
|
|
|
|
|
|
-function GetUserInfo($token){
|
|
|
- $host = Config::get("app");
|
|
|
+function GetUserInfo($condition){
|
|
|
$url = env("user.hosturl")."userinfo";
|
|
|
- $data=[
|
|
|
- "token"=>$token
|
|
|
- ];
|
|
|
- $response=curl_request($url,$data);
|
|
|
+ $response=curl_request($url,$condition);
|
|
|
|
|
|
return json_decode($response,true);
|
|
|
}
|
|
@@ -138,8 +149,6 @@ function checkMobile($mobile){
|
|
|
* @return mixed
|
|
|
*/
|
|
|
function resetinfo($token,$condition){
|
|
|
- $host = Config::get("app");
|
|
|
-
|
|
|
$url = env("user.hosturl")."usersave";
|
|
|
$condition['token']=$token;
|
|
|
$response=curl_request($url,$condition);
|
|
@@ -232,7 +241,6 @@ function made($var,$data=[]){
|
|
|
* @return mixed
|
|
|
*/
|
|
|
function GetInfoById($token,$condition){
|
|
|
- $host = Config::get("app");
|
|
|
$url = env("user.hosturl")."userinfo";
|
|
|
$condition['token']=$token;
|
|
|
$response=curl_request($url,$condition);
|