EsMobileService.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388
  1. <?php
  2. namespace app\service;
  3. use app\common\model\Mobile;
  4. use app\common\model\MobileId;
  5. use think\App;
  6. use think\helper\Str;
  7. class EsMobileService{
  8. public static function mobile(){
  9. }
  10. public static function index(){
  11. return 'mobiles';
  12. }
  13. public static function type(){
  14. return 'mobile';
  15. }
  16. public static function network($network){
  17. switch ($network){
  18. case '中国移动':
  19. return 'zgyd';
  20. case '中国联通':
  21. return 'zglt';
  22. case '中国电信':
  23. return 'zgdx';
  24. case '中国广电':
  25. return 'zggd';
  26. case '移动网络':
  27. return 'ydwl';
  28. case '联通网络':
  29. return 'ltwl';
  30. case '电信网络':
  31. return 'dxwl';
  32. }
  33. }
  34. public static function body(){
  35. return [
  36. 'mappings'=>[
  37. 'properties'=>[
  38. 'id'=>['type'=>'long'],
  39. 'status'=>['type'=>'byte'],
  40. 'logo'=>['type'=>'text'],
  41. 'name'=>['type'=>'text'],
  42. 'brand'=>['type'=>'text'],
  43. 'no'=>['type'=>'text'],
  44. 'type'=>['type'=>'byte'],
  45. 'network'=>['type'=>'keyword'],
  46. 'proxy_id'=>['type'=>'long'],
  47. 'city_id'=>['type'=>'long'],
  48. 'city'=>['type'=>'keyword'],
  49. 'province_id'=>['type'=>'long'],
  50. 'province'=>['type'=>'keyword'],
  51. 'amount_exists'=>['type'=>'double'],
  52. 'amount_original'=>['type'=>'double'],
  53. 'amount_base'=>['type'=>'double'],
  54. 'amount_charge'=>['type'=>'double'],
  55. 'amount_di'=>['type'=>'double'],
  56. 'amount_proxy'=>['type'=>'double'],
  57. 'amount_kill'=>['type'=>'double'],
  58. 'amount'=>['type'=>'double'],
  59. 'create_time'=>['type'=>'long'],
  60. 'update_time'=>['type'=>'long'],
  61. 'top_time'=>['type'=>'byte'],
  62. 'rec_time'=>['type'=>'byte'],
  63. 'summary'=>['type'=>'text'],
  64. 'is_activity'=>['type'=>'byte'],
  65. 'activity_time_end'=>['type'=>'long'],
  66. 'filter_num_0'=>['type'=>'byte'],
  67. 'filter_num_1'=>['type'=>'byte'],
  68. 'filter_num_2'=>['type'=>'byte'],
  69. 'filter_num_3'=>['type'=>'byte'],
  70. 'filter_num_4'=>['type'=>'byte'],
  71. 'filter_num_5'=>['type'=>'byte'],
  72. 'filter_num_6'=>['type'=>'byte'],
  73. 'filter_num_7'=>['type'=>'byte'],
  74. 'filter_num_8'=>['type'=>'byte'],
  75. 'filter_num_9'=>['type'=>'byte'],
  76. 'filter_middle_3a'=>['type'=>'byte'],
  77. 'filter_middle_4a'=>['type'=>'byte'],
  78. 'filter_middle_5a'=>['type'=>'byte'],
  79. 'filter_middle_6a'=>['type'=>'byte'],
  80. 'filter_middle_7a'=>['type'=>'byte'],
  81. 'filter_middle_8a'=>['type'=>'byte'],
  82. 'filter_middle_abc'=>['type'=>'byte'],
  83. 'filter_middle_abcd'=>['type'=>'byte'],
  84. 'filter_middle_abcde'=>['type'=>'byte'],
  85. 'filter_middle_abcdef'=>['type'=>'byte'],
  86. 'filter_middle_abcdefg'=>['type'=>'byte'],
  87. 'filter_middle_abcdefgh'=>['type'=>'byte'],
  88. 'filter_middle_3ab'=>['type'=>'byte'],
  89. 'filter_middle_4ab'=>['type'=>'byte'],
  90. 'filter_middle_5ab'=>['type'=>'byte'],
  91. 'filter_middle_6ab'=>['type'=>'byte'],
  92. 'filter_middle_aabb'=>['type'=>'byte'],
  93. 'filter_middle_aabbcc'=>['type'=>'byte'],
  94. 'filter_middle_aabbccdd'=>['type'=>'byte'],
  95. 'filter_middle_aaabb'=>['type'=>'byte'],
  96. 'filter_middle_abbabb'=>['type'=>'byte'],
  97. 'filter_middle_aabaab'=>['type'=>'byte'],
  98. 'filter_middle_abcabc'=>['type'=>'byte'],
  99. 'filter_middle_abba'=>['type'=>'byte'],
  100. 'filter_middle_aaabbcc'=>['type'=>'byte'],
  101. 'filter_middle_abababab'=>['type'=>'byte'],
  102. 'filter_middle_abababa'=>['type'=>'byte'],
  103. 'filter_middle_ababab'=>['type'=>'byte'],
  104. 'filter_middle_ababa'=>['type'=>'byte'],
  105. 'filter_middle_abab'=>['type'=>'byte'],
  106. 'filter_no_pos_2'=>['type'=>'byte'],
  107. 'filter_no_pos_3'=>['type'=>'byte'],
  108. 'filter_no_pos_4'=>['type'=>'byte'],
  109. 'filter_no_pos_5'=>['type'=>'byte'],
  110. 'filter_no_pos_6'=>['type'=>'byte'],
  111. 'filter_no_pos_7'=>['type'=>'byte'],
  112. 'filter_no_pos_8'=>['type'=>'byte'],
  113. 'filter_no_pos_9'=>['type'=>'byte'],
  114. 'filter_no_pos_10'=>['type'=>'byte'],
  115. 'filter_no_pos_11'=>['type'=>'byte'],
  116. 'sort'=>['type'=>'long'],
  117. 'sort_line'=>['type'=>'long'],
  118. 'filter_tail_3a'=>['type'=>'byte'],
  119. 'filter_tail_4a'=>['type'=>'byte'],
  120. 'filter_tail_5a'=>['type'=>'byte'],
  121. 'filter_tail_6a'=>['type'=>'byte'],
  122. 'filter_tail_7a'=>['type'=>'byte'],
  123. 'filter_tail_8a'=>['type'=>'byte'],
  124. 'filter_tail_abc'=>['type'=>'byte'],
  125. 'filter_tail_abcd'=>['type'=>'byte'],
  126. 'filter_tail_abcde'=>['type'=>'byte'],
  127. 'filter_tail_abcdef'=>['type'=>'byte'],
  128. 'filter_tail_abcdefg'=>['type'=>'byte'],
  129. 'filter_tail_abcdefgh'=>['type'=>'byte'],
  130. 'filter_tail_3ab'=>['type'=>'byte'],
  131. 'filter_tail_4ab'=>['type'=>'byte'],
  132. 'filter_tail_5ab'=>['type'=>'byte'],
  133. 'filter_tail_6ab'=>['type'=>'byte'],
  134. 'filter_tail_aabb'=>['type'=>'byte'],
  135. 'filter_tail_aabbcc'=>['type'=>'byte'],
  136. 'filter_tail_aabbccdd'=>['type'=>'byte'],
  137. 'filter_tail_aaabb'=>['type'=>'byte'],
  138. 'filter_tail_abbabb'=>['type'=>'byte'],
  139. 'filter_tail_aabaab'=>['type'=>'byte'],
  140. 'filter_tail_abcabc'=>['type'=>'byte'],
  141. 'filter_tail_abba'=>['type'=>'byte'],
  142. 'filter_tail_aaabbcc'=>['type'=>'byte'],
  143. 'filter_tail_abababab'=>['type'=>'byte'],
  144. 'filter_tail_abababa'=>['type'=>'byte'],
  145. 'filter_tail_ababab'=>['type'=>'byte'],
  146. 'filter_tail_ababa'=>['type'=>'byte'],
  147. 'filter_tail_abab'=>['type'=>'byte'],
  148. 'remark'=>['type'=>'text'],
  149. 'remark_me'=>['type'=>'text'],
  150. 'hold_chan'=>['type'=>'long'],
  151. 'hold_user'=>['type'=>'long'],
  152. 'admin_id'=>['type'=>'long'],
  153. 'activity_time'=>['type'=>'long'],
  154. 'stock_num'=>['type'=>'integer'],
  155. 'batch_no'=>['type'=>'text'],
  156. 'describe'=>['type'=>'text'],
  157. 'is_offer'=>['type'=>'integer'],
  158. ]
  159. ]
  160. ];
  161. }
  162. public static function mapping(){
  163. es()->indices()->create([
  164. 'index'=>self::index(),
  165. 'body'=>self::body()
  166. ]);
  167. }
  168. public static function delIndex(){
  169. es()->indices()->delete([
  170. 'index'=>self::index(),
  171. ]);
  172. }
  173. public static function addMobile(Mobile $mobile){
  174. if(!Mobile::isTypeNo($mobile['type'])){
  175. return ;
  176. }
  177. $mobile->hidden([],true);
  178. $mobile['describe']=$mobile['info']['describe']??'';
  179. $mobile['yys']=self::network($mobile['network']);
  180. // $mobile->toArray();
  181. $mobile = $mobile->toArray();
  182. $mobile['amount'] = intval($mobile['amount']);
  183. $mobile['total'] = intval($mobile['amount']);
  184. // dump($mobile);
  185. es()->index([
  186. 'index'=>self::index(),
  187. 'body'=>$mobile,
  188. 'id'=>$mobile['id'],
  189. ]);
  190. }
  191. public static function addMobiles(array $mobiles){
  192. $body=[];
  193. foreach ($mobiles as $mobile){
  194. $mobile->hidden([],true);
  195. $mobile['describe']=$mobile['info']['describe']??'';
  196. $mobile['yys']=self::network($mobile['network']);
  197. $mobile = $mobile->toArray();
  198. $mobile['amount'] = intval($mobile['amount']);
  199. $mobile['total'] = intval($mobile['amount']);
  200. $body[]=['create'=>['_index'=>self::index(),'_id'=>$mobile['id']]];
  201. $body[]=$mobile;
  202. // dump($body);
  203. }
  204. es()->bulk([
  205. 'index'=>self::index(),
  206. 'body'=>$body
  207. ]);
  208. }
  209. public static function delMobile(Mobile $mobile){
  210. es()->deleteByQuery([
  211. 'index'=>self::index(),
  212. 'body'=>[
  213. 'query'=>[
  214. 'term'=>[
  215. 'id'=>$mobile['id'],
  216. ]
  217. ]
  218. ]
  219. ]);
  220. }
  221. public static function delMobiles(array $mobiles){
  222. if(empty($mobiles)){
  223. return ;
  224. }
  225. $body=[];
  226. foreach ($mobiles as $mobile){
  227. $body[]=['delete'=>['_index'=>self::index(),'_id'=>$mobile]];
  228. }
  229. $make=es()->bulk([
  230. 'index'=>self::index(),
  231. 'body'=>$body,
  232. ]);
  233. return $make->asArray();
  234. }
  235. public static function delByMobile($limit=1000){
  236. $mobileIds= MobileId::notExists()->limit($limit)->column('id');
  237. if($mobileIds) {
  238. user_log("EsMobileService_delByMobile", $mobileIds);
  239. }
  240. self::delMobiles($mobileIds);
  241. MobileId::destroy($mobileIds);
  242. return count($mobileIds);
  243. }
  244. public static function updateById($ids,$columnArr){
  245. if(!is_array($ids)){
  246. $ids=explode(',',$ids);
  247. }
  248. if(empty($ids)){
  249. return true;
  250. }
  251. $ids=array_filter($ids);
  252. /* $field=[];
  253. foreach ($columnArr as $key=>$value){
  254. $field[]=sprintf('ctx._source["%s"]=%s',$key,$value);
  255. }
  256. $config=[
  257. 'index'=>self::index(),
  258. 'body'=>[
  259. 'query'=>[
  260. 'terms'=>[
  261. 'id'=>$ids
  262. ]
  263. ],
  264. 'script'=>[
  265. //'inline'=>implode(';',$field),
  266. 'source'=>implode(';',$field),
  267. 'params'=>$columnArr,
  268. ]
  269. ]
  270. ];
  271. es()->updateByQuery($config);*/
  272. foreach ($ids as $id){
  273. es()->update([
  274. 'index'=>self::index(),
  275. 'id'=>$id,
  276. 'body'=>[
  277. 'doc'=>$columnArr,
  278. ],
  279. ]);
  280. }
  281. }
  282. public static function clear($type=1){
  283. es()->deleteByQuery([
  284. 'index'=>self::index(),
  285. 'body'=>[
  286. 'query'=>[
  287. 'term'=>[
  288. 'type'=>['value'=>$type]
  289. ]
  290. ]
  291. ]
  292. ]);
  293. }
  294. public static function count($type=1){
  295. try {
  296. $count=es()->count([
  297. 'index'=>self::index(),
  298. 'body'=>[
  299. 'query'=>[
  300. 'term'=>[
  301. 'type'=>['value'=>$type]
  302. ]
  303. ]
  304. ]
  305. ]);
  306. return $count->offsetGet('count');
  307. }catch (\Exception $e){
  308. return 1000000000;
  309. }
  310. }
  311. public static function get($params,$track_total_hits=true,$delFilter=true){
  312. $params['timeout']='5s';
  313. $query=[
  314. 'index'=>self::index(),
  315. 'body'=>$params
  316. ];
  317. $query['track_total_hits']=$track_total_hits;
  318. $query['request_cache']=true;
  319. $query['timeout']='10s';
  320. $info=es()->search($query);
  321. $arr=$info->asArray();
  322. $newData=[];
  323. foreach ($arr['hits']['hits']??[] as $item){
  324. if($delFilter){
  325. foreach (array_keys($item['_source']) as $col){
  326. if(Str::startsWith($col,'filter_')){
  327. unset($item['_source'][$col]);
  328. }
  329. }
  330. }
  331. $newData[]=$item['_source'];
  332. }
  333. $make=[
  334. 'data'=>$newData,
  335. 'total'=>$arr['hits']['total']['value']??null,
  336. ];
  337. if(App::$debug) {
  338. $make['query'] = $query;
  339. }
  340. return $make;
  341. }
  342. public static function search_all($type=1){
  343. $size = 200;
  344. $all_page = 20;
  345. $count = 0;
  346. for($page = 1;$page<=100;$page++){
  347. $limit = ($page-1)*$size;
  348. $results=es()->search([
  349. 'index'=>self::index(),
  350. 'body'=>[
  351. 'query'=>[
  352. 'term'=>[
  353. 'type'=>['value'=>$type]
  354. ]
  355. ]
  356. ],
  357. 'size'=>$size,
  358. 'from'=>$limit,
  359. ]);
  360. //$all_page = ceil($results['hits']['total']['value']/$size);
  361. $mobile_ids = [];
  362. foreach ($results['hits']['hits'] as $k=>$v){
  363. $mobile_ids[] = $v['_source']['id'];
  364. }
  365. $mobile_db_ids=Mobile::whereIn('id',$mobile_ids)->column('id');
  366. // es 需要删除的id
  367. $mobile_ids_es_del = array_diff($mobile_ids,$mobile_db_ids);
  368. if($mobile_ids_es_del){
  369. EsMobileService::delMobiles($mobile_ids_es_del);
  370. user_log("EsMobileService_search_all_delByMobile", $mobile_ids_es_del);
  371. $count = $count + count($mobile_ids_es_del);
  372. user_log("EsMobileService_search_all_delByMobile", $count);
  373. }
  374. }
  375. }
  376. }