SdPlatform.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: liukun
  5. * Date: 2018/9/28
  6. * Time: 下午12:32
  7. */
  8. namespace battery\portal\model;
  9. use think\Config;
  10. class SdPlatform
  11. {
  12. var $url='http://mo2oceshi.sudianwang.com/index.php/WebInter/';
  13. var $zh='test';
  14. var $pwd='test17810';
  15. var $safecode='testqwijdnshlena';
  16. var $extime='172800';
  17. //电瓶匹配
  18. function weblcMatch($car_id=0){
  19. $rinfo=array('status'=>0,'info'=>'');
  20. $arrinfo=array(
  21. 'sign'=>md5($this->zh.$this->pwd.$this->safecode),
  22. 'car_id'=>$car_id,
  23. );
  24. $post_data=array(
  25. 'result'=>json_encode($arrinfo),
  26. );
  27. $result=$this->curl($this->url.'WeblcMatch',$post_data);
  28. if($result['code']===0){
  29. $rinfo['status']=1;
  30. $rinfo['info']= $result['data'];
  31. if(count($rinfo['info'])>0){
  32. $batteryBaseModel=new BatteryBaseModel();
  33. $time=time();
  34. foreach ($rinfo['info'] as $v){
  35. $price=bcmul($v['price'],100,0);
  36. $md5=md5($v['battery_brand'].$v['battery_model'].$price.$v['id'].'1');
  37. $whrer=array();
  38. $whrer['md5']=$md5;
  39. $batteryBaseModel->startTrans();
  40. $order=$batteryBaseModel->name('good')->where($whrer)->find();
  41. $batteryBaseModel->commit();
  42. if(!$order){
  43. $insert=array(
  44. 'brand'=>$v['battery_brand'],
  45. 'model'=>$v['battery_model'],
  46. 'price'=>$price,
  47. 'create_time'=>$time,
  48. 'gid'=>$v['id'],
  49. 'md5'=>$md5,
  50. );
  51. $batteryBaseModel->name('good')->insert($insert);
  52. }
  53. }
  54. }
  55. }
  56. return $rinfo;
  57. }
  58. //获取品牌列表
  59. function searchBrand()
  60. {
  61. $rinfo=array('status'=>0,'info'=>'');
  62. // $redisModel=new RedisModel();
  63. // $redinfo=$redisModel->get('searchBrand');
  64. // if($redinfo){
  65. // $rinfo['status']=1;
  66. // $rinfo['info']= $redinfo;
  67. // return;
  68. // }
  69. $arrinfo=array(
  70. 'sign'=>md5($this->zh.$this->pwd.$this->safecode),
  71. );
  72. $post_data=array(
  73. 'result'=>json_encode($arrinfo),
  74. );
  75. $result=$this->curl($this->url.'WebSearchBrand',$post_data);
  76. if($result['code']===0){
  77. $rinfo['status']=1;
  78. $sdata=$this->getGroupData($result['data']);
  79. // $redisModel->set('searchBrand',$sdata,$this->extime);
  80. $rinfo['info']= $sdata;
  81. }
  82. return $rinfo;
  83. }
  84. //获取车型列表
  85. function searchSeries($name='')
  86. {
  87. $rinfo=array('status'=>0,'info'=>'');
  88. // $redisModel=new RedisModel();
  89. // $tag=md5('searchSeries'.$name);
  90. // $redinfo=$redisModel->get($tag);
  91. // if($redinfo){
  92. // $rinfo['status']=1;
  93. // $rinfo['info']= $redinfo;
  94. // return;
  95. // }
  96. $arrinfo=array(
  97. 'sign'=>md5($this->zh.$this->pwd.$this->safecode),
  98. 'brand'=>$name,
  99. );
  100. $post_data=array(
  101. 'result'=>json_encode($arrinfo),
  102. );
  103. $result=$this->curl($this->url.'WebSearchSeries',$post_data);
  104. if($result['code']===0){
  105. $rinfo['status']=1;
  106. // $redisModel->set($tag,$result['data'],$this->extime);
  107. $rinfo['info']= $result['data'];
  108. }
  109. return $rinfo;
  110. }
  111. //获取车型列表
  112. function searchYear($name='',$type='')
  113. {
  114. $rinfo=array('status'=>0,'info'=>'');
  115. // $redisModel=new RedisModel();
  116. // $tag=md5('searchYear'.$name.$type);
  117. // $redinfo=$redisModel->get($tag);
  118. // if($redinfo){
  119. // $rinfo['status']=1;
  120. // $rinfo['info']= $redinfo;
  121. // return;
  122. // }
  123. $arrinfo=array(
  124. 'sign'=>md5($this->zh.$this->pwd.$this->safecode),
  125. 'brand'=>$name,
  126. 'series'=>$type,
  127. );
  128. $post_data=array(
  129. 'result'=>json_encode($arrinfo),
  130. );
  131. $result=$this->curl($this->url.'WebSearchYear',$post_data);
  132. if($result['code']===0){
  133. $rinfo['status']=1;
  134. // $redisModel->set($tag,$result['data'],$this->extime);
  135. $rinfo['info']= $result['data'];
  136. }
  137. return $rinfo;
  138. }
  139. //获取车型列表
  140. function searchModel($name='',$type='',$year='')
  141. {
  142. $rinfo=array('status'=>0,'info'=>'');
  143. // $redisModel=new RedisModel();
  144. // $tag=md5('searchModel'.$name.$type.$year);
  145. // $redinfo=$redisModel->get($tag);
  146. // if($redinfo){
  147. // $rinfo['status']=1;
  148. // $rinfo['info']= $redinfo;
  149. // return;
  150. // }
  151. $arrinfo=array(
  152. 'sign'=>md5($this->zh.$this->pwd.$this->safecode),
  153. 'brand'=>$name,
  154. 'series'=>$type,
  155. 'year'=>$year,
  156. );
  157. $post_data=array(
  158. 'result'=>json_encode($arrinfo),
  159. );
  160. $result=$this->curl($this->url.'WebSearchModel',$post_data);
  161. if($result['code']===0){
  162. $rinfo['status']=1;
  163. // $redisModel->set($tag,$result['data'],$this->extime);
  164. $rinfo['info']= $result['data'];
  165. }
  166. return $rinfo;
  167. }
  168. //获取车型列表
  169. function searchGood($name='',$type='')
  170. {
  171. $rinfo=array('status'=>0,'info'=>'');
  172. $arrinfo=array(
  173. 'sign'=>md5($this->zh.$this->pwd.$this->safecode),
  174. 'brand'=>$name,
  175. 'series'=>$type,
  176. );
  177. $post_data=array(
  178. 'result'=>json_encode($arrinfo),
  179. );
  180. $result=$this->curl($this->url.'WebSearchYear',$post_data);
  181. if($result['code']===0){
  182. $rinfo['status']=1;
  183. $rinfo['info']= $result['data'];
  184. }
  185. return $rinfo;
  186. }
  187. //用于字母归组
  188. private function getGroupData($data){
  189. $data = $this->groupByInitials($data, 'brand');
  190. $arrat=array();
  191. foreach ($data as $key=>$v){
  192. array_push($arrat,array('name'=>$key,'list'=>$data[$key]));
  193. }
  194. return $arrat;
  195. }
  196. /**
  197. * 二维数组根据首字母分组排序
  198. * @param array $data 二维数组
  199. * @param string $targetKey 首字母的键名
  200. * @return array 根据首字母关联的二维数组
  201. */
  202. public function groupByInitials(array $data, $targetKey = 'name')
  203. {
  204. $data = array_map(function ($item) use ($targetKey) {
  205. return array_merge($item, [
  206. 'initials' => $this->getInitials($item[$targetKey]),
  207. ]);
  208. }, $data);
  209. $data = $this->sortInitials($data);
  210. return $data;
  211. }
  212. /**
  213. * 按字母排序
  214. * @param array $data
  215. * @return array
  216. */
  217. public function sortInitials(array $data)
  218. {
  219. $sortData = [];
  220. foreach ($data as $key => $value) {
  221. $sortData[$value['initials']][] = $value;
  222. }
  223. ksort($sortData);
  224. return $sortData;
  225. }
  226. /**
  227. * 获取首字母
  228. * @param string $str 汉字字符串
  229. * @return string 首字母
  230. */
  231. public function getInitials($str)
  232. {
  233. if (empty($str)) {return '';}
  234. $fchar = ord($str{0});
  235. if ($fchar >= ord('A') && $fchar <= ord('z')) {
  236. return strtoupper($str{0});
  237. }
  238. $s1 = iconv('UTF-8', 'gb2312', $str);
  239. $s2 = iconv('gb2312', 'UTF-8', $s1);
  240. $s = $s2 == $str ? $s1 : $str;
  241. $asc = ord($s{0}) * 256 + ord($s{1}) - 65536;
  242. if ($asc >= -20319 && $asc <= -20284) {
  243. return 'A';
  244. }
  245. if ($asc >= -20283 && $asc <= -19776) {
  246. return 'B';
  247. }
  248. if ($asc >= -19775 && $asc <= -19219) {
  249. return 'C';
  250. }
  251. if ($asc >= -19218 && $asc <= -18711) {
  252. return 'D';
  253. }
  254. if ($asc >= -18710 && $asc <= -18527) {
  255. return 'E';
  256. }
  257. if ($asc >= -18526 && $asc <= -18240) {
  258. return 'F';
  259. }
  260. if ($asc >= -18239 && $asc <= -17923) {
  261. return 'G';
  262. }
  263. if ($asc >= -17922 && $asc <= -17418) {
  264. return 'H';
  265. }
  266. if ($asc >= -17417 && $asc <= -16475) {
  267. return 'J';
  268. }
  269. if ($asc >= -16474 && $asc <= -16213) {
  270. return 'K';
  271. }
  272. if ($asc >= -16212 && $asc <= -15641) {
  273. return 'L';
  274. }
  275. if ($asc >= -15640 && $asc <= -15166) {
  276. return 'M';
  277. }
  278. if ($asc >= -15165 && $asc <= -14923) {
  279. return 'N';
  280. }
  281. if ($asc >= -14922 && $asc <= -14915) {
  282. return 'O';
  283. }
  284. if ($asc >= -14914 && $asc <= -14631) {
  285. return 'P';
  286. }
  287. if ($asc >= -14630 && $asc <= -14150) {
  288. return 'Q';
  289. }
  290. if ($asc >= -14149 && $asc <= -14091) {
  291. return 'R';
  292. }
  293. if ($asc >= -14090 && $asc <= -13319) {
  294. return 'S';
  295. }
  296. if ($asc >= -13318 && $asc <= -12839) {
  297. return 'T';
  298. }
  299. if ($asc >= -12838 && $asc <= -12557) {
  300. return 'W';
  301. }
  302. if ($asc >= -12556 && $asc <= -11848) {
  303. return 'X';
  304. }
  305. if ($asc >= -11847 && $asc <= -11056) {
  306. return 'Y';
  307. }
  308. if ($asc >= -11055 && $asc <= -10247) {
  309. return 'Z';
  310. }
  311. return null;
  312. }
  313. private function curl($target,$post_data){
  314. $post_data=http_build_query($post_data);
  315. $curl = curl_init();
  316. curl_setopt($curl, CURLOPT_URL, $target);
  317. curl_setopt($curl, CURLOPT_HEADER, false);
  318. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  319. curl_setopt($curl, CURLOPT_NOBODY, true);
  320. curl_setopt($curl, CURLOPT_NOBODY, true);
  321. curl_setopt($curl, CURLOPT_POST, true);
  322. curl_setopt($curl, CURLOPT_TIMEOUT, 10); //单位 秒,也
  323. curl_setopt($curl, CURLOPT_POSTFIELDS, $post_data);
  324. $return_str = curl_exec($curl);
  325. $result=json_decode($return_str,true);
  326. curl_close($curl);
  327. return $result;
  328. }
  329. }