CronAction.class.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452
  1. <?php
  2. class CronAction extends Action {
  3. public function createEplate_index( ){
  4. $this->createElectronicPlate();
  5. }
  6. private function createElectronicPlate( ){
  7. $start = time();
  8. $pendingElectricPlate = Redis('jyzl_wait_create_eplate','queue');
  9. $plateLocalPath = Redis('jyzl_wait_upload2oss_eplate', 'queue');
  10. while( (time() - $start) < 60 ){
  11. $licensPlate = $pendingElectricPlate->pop();
  12. if(!$licensPlate){
  13. echo 'no message!'.PHP_EOL;
  14. sleep(1);
  15. continue;
  16. }
  17. echo 'pop licensPlate:'.$licensPlate.PHP_EOL;
  18. $field = 'LicensePlate,VehicleColor, FullName, DetailedAdd, FrameNumber, MotorNumber, VehicleBrand, RegistrationTime';
  19. $vehicleInfo = M('jms_vehicle')->where(array('LicensePlate' => $licensPlate))->field($field)->find();
  20. if(!$vehicleInfo){
  21. echo 'vehicleInfo not existed,$licensPlate = '.$licensPlate .PHP_EOL;
  22. continue;
  23. }
  24. //生成电子车牌到本地
  25. $localPath = $this->createLocalElectronicPlate($vehicleInfo);
  26. if(!$localPath){
  27. echo 'createLocalElectronicPlate failed,$licensPlate = '.$licensPlate .PHP_EOL;
  28. //生成失败的重新放回队列
  29. $result = $pendingElectricPlate->add($licensPlate);
  30. if(!$result){
  31. echo 'pendingElectricPlate->add() failed,$licensPlate = '.$licensPlate .PHP_EOL;
  32. }
  33. continue;
  34. }
  35. //生成的本地电子车牌,加入到待上传oss队列
  36. $up2ossWait = json_encode(array('licensePlate' => $licensPlate, 'localPath' => $localPath));
  37. $result = $plateLocalPath->add($up2ossWait);//push方法没有返回值,用add代替
  38. if(!$result){
  39. echo 'plateLocalPath->add() failed,$licensPlate = '.$licensPlate .PHP_EOL;
  40. continue;
  41. }
  42. usleep(100000);
  43. }
  44. }
  45. private function uploadElectronicPlate2Oss( ){
  46. $config = array(
  47. 'OssDsn' => C('OSS_DSN'),
  48. "SaveRule" => "/electronic_plate/{Y}{m}{d}/{uid}.{ext}",
  49. "AllowExts" => array('jpg', 'png', 'jpeg'), // 允许上传的文件后缀(留空为不限制)
  50. "ResizeImage" => false, // 是否自动压缩
  51. "MaxImageWidth" => 1024,
  52. "MaxImageHeight" => 1024,
  53. "IsCheckRgb" => false,
  54. "MinImgAverageRgb" => 70
  55. );
  56. $backImgLocalPath = ENTRY_PATH .'/Public/images/back.jpg';
  57. $upload = new \Jms\File\Oss2($config);
  58. //电子车牌背部固定图片第一次上传至oss
  59. $plateBackOssUrl = S('czapp_cache_plate_oss_url');
  60. if(!$plateBackOssUrl){
  61. $uploadBack = $upload->localFileUpload($backImgLocalPath);
  62. if(!$uploadBack['success']){
  63. echo $uploadBack['message'].PHP_EOL;
  64. exit;
  65. }else{
  66. $plateBackOssUrl = $uploadBack['objectname'];
  67. if(!$plateBackOssUrl){
  68. echo 'upload backImg success! But cant get the ossUrl';
  69. exit;
  70. }
  71. S('czapp_cache_plate_oss_url', $plateBackOssUrl);
  72. }
  73. }
  74. $start = time();
  75. $plateLocalPath = Redis('jyzl_wait_upload2oss_eplate', 'queue');
  76. while( (time() - $start) < 60 ){
  77. $data = $plateLocalPath->pop();
  78. if(!$data){
  79. echo 'no more data, waiting for next mesaage.'.PHP_EOL;
  80. sleep(1);
  81. continue;
  82. }
  83. $fileName = $data['localPath'];
  84. $licensPlate = $data['licensePlate'];
  85. if(!$licensPlate || !$fileName){
  86. echo 'cant get right licensPlate or fileName'.PHP_EOL;
  87. echo 'fileName:'.$fileName.PHP_EOL;
  88. echo 'licensPlate:'.$licensPlate.PHP_EOL;
  89. echo '---------------delimiter----------------'.PHP_EOL;
  90. continue;
  91. }
  92. //上传至oss
  93. $uploadRes = $upload->localFileUpload($fileName);
  94. //失败重回队列
  95. if(!$uploadRes['success']){
  96. echo $uploadRes['message'].PHP_EOL;
  97. $result = $plateLocalPath->add($data);
  98. if(!$result){
  99. echo 'plateLocalPath->add() failed,$licensPlate = '. $data['licensPlate'] .PHP_EOL;
  100. continue;
  101. }
  102. }else{
  103. echo 'upload plateFrontImg success!'.PHP_EOL;
  104. }
  105. $frontImageUrl = $uploadRes['objectname'];
  106. if(!$frontImageUrl){
  107. echo 'cant get img_oss_url'.PHP_EOL;
  108. continue;
  109. }
  110. echo 'return oss-url:'.$frontImageUrl.PHP_EOL;
  111. // $updateRes = M('jms_vehicle')->where(array('LicensePlate' => $licensPlate))->setField('FrontElectronicPlateUrl',$frontImageUrl);
  112. $saveData = array( 'FrontElectronicPlateUrl' => $frontImageUrl, 'BackElectronicPlateUrl' => $plateBackOssUrl);
  113. $updateRes = M('jms_vehicle')->where(array('LicensePlate' => $licensPlate))->save($saveData);
  114. if(!$updateRes){
  115. echo 'save electricPlate in mysql failed'.PHP_EOL;
  116. continue;
  117. }
  118. echo 'save electricPlate in mysql success'.PHP_EOL;
  119. //删除本地图片
  120. $filePath = $filename;
  121. if(!file_exists($filePath)){
  122. $flag = unlink($filePath);
  123. if(!$flag){
  124. echo 'delete localImg failed'.PHP_EOL;
  125. }else{
  126. echo 'delete localImg success'.PHP_EOL;
  127. }
  128. }
  129. usleep(100000);
  130. }
  131. }
  132. public function uploadEplate_index( ){
  133. $this->uploadElectronicPlate2Oss();
  134. }
  135. public function test_function( ){
  136. $vehicleInfo = array(
  137. 'LicensePlate' => 'LY100021',
  138. 'VehicleColor' => '白色',
  139. 'FullName' => '张三',
  140. 'Address' => '浙江杭州滨江195号',
  141. 'FrameNumber' => '123456789',
  142. 'MotorNumber' => '233456789',
  143. 'VehicleBrand'=> '雅迪z123',
  144. 'RegistrationTime' => '2019-05-15 12:12:00'
  145. );
  146. $localPath = $this->createLocalElectronicPlate($vehicleInfo);
  147. echo $localPath .PHP_EOL;
  148. exit;
  149. $plate = 'BJ000100';
  150. $pendingElectricPlate = Redis("jyzl_wait_create_eplate","queue");
  151. $licensePlate = $plate;
  152. $pendingElectricPlate->push($licensePlate);
  153. }
  154. public function acrossAlarm2Kafka( ){
  155. // 从 topic :gps_location_data 取轨迹
  156. $conf = new RdKafka\Conf();
  157. // Set a rebalance callback to log partition assignments (optional)(当有新的消费进程加入或者退出消费组时,kafka 会自动重新分配分区给消费者进程,这里注册了一个回调函数,当分区被重新分配时触发)
  158. $conf->setRebalanceCb(function (RdKafka\KafkaConsumer $kafka, $err, array $partitions = null) {
  159. switch ($err) {
  160. case RD_KAFKA_RESP_ERR__ASSIGN_PARTITIONS:
  161. echo "Assign: ";
  162. var_dump($partitions);
  163. $kafka->assign($partitions);
  164. break;
  165. case RD_KAFKA_RESP_ERR__REVOKE_PARTITIONS:
  166. echo "Revoke: ";
  167. var_dump($partitions);
  168. $kafka->assign(NULL);
  169. break;
  170. default:
  171. throw new \Exception($err);
  172. }
  173. });
  174. // Configure the group.id. All consumer with the same group.id will consume( 配置groud.id 具有相同 group.id 的consumer 将会处理不同分区的消息,所以同一个组内的消费者数量如果订阅了一个topic, 那么消费者进程的数量多于这个topic 分区的数量是没有意义的。)
  175. // different partitions.
  176. $conf->set('group.id', 'myConsumerGroup');
  177. if( !C('KAFKA_BROKER_LIST') ){
  178. echo 'please set broker list !!! ';
  179. }
  180. // Initial list of Kafka brokers(添加 kafka集群服务器地址)
  181. $conf->set('metadata.broker.list', C('KAFKA_BROKER_LIST'));
  182. $topicConf = new RdKafka\TopicConf();
  183. // Set where to start consuming messages when there is no initial offset in
  184. // offset store or the desired offset is out of range.
  185. // 'smallest': start from the beginning
  186. $topicConf->set('auto.offset.reset', 'smallest');
  187. // Set the configuration to use for subscribed/assigned topics
  188. $conf->setDefaultTopicConf($topicConf);
  189. $consumer = new RdKafka\KafkaConsumer($conf);
  190. // 订阅轨迹数据topic
  191. $consumer->subscribe(['gps_location_data']);
  192. while (true) {
  193. $message = $consumer->consume(120*1000);
  194. switch ($message->err) {
  195. case RD_KAFKA_RESP_ERR_NO_ERROR:
  196. // 判断是否超出围栏范围 ,存入 topic:gps_alarm_msg_queue
  197. $route_info = json_decode($message->payload,true);
  198. if( empty($route_info) ){
  199. echo 'empty route info.';
  200. break;
  201. }
  202. $result = $this->produceAcrossAlarmData($route_info);
  203. if($result){
  204. echo $result,PHP_EOL;
  205. debug_log('across_alarm',$result['message']);
  206. }
  207. break;
  208. case RD_KAFKA_RESP_ERR__PARTITION_EOF:
  209. echo "No more messages; will wait for more\n";
  210. break;
  211. case RD_KAFKA_RESP_ERR__TIMED_OUT:
  212. echo "Timed out\n";
  213. break;
  214. default:
  215. throw new \Exception($message->errstr(), $message->err);
  216. break;
  217. }
  218. }
  219. }
  220. private function produceAcrossAlarmData( $route_info ){
  221. if( !$route_info['DeviceId'] ){
  222. return 'device id is not exists.';
  223. }
  224. if( !$route_info['Longitude'] ){
  225. return 'longitude is not exists.';
  226. }
  227. if( !$route_info['Latitude'] ){
  228. return 'latitude is not exists.';
  229. }
  230. if( !$route_info['DeviceTime'] ){
  231. return 'device time is not exists.';
  232. }
  233. // 从数据库中取出车牌号,缓存1天
  234. if( S('plate-'.$route_info['DeviceId']) ){
  235. $plate = S('plate-'.$route_info['DeviceId']);
  236. }else{
  237. $where = array('GpsDeviceNumber'=>$route_info['DeviceId']);
  238. $plate = M('jms_vehicle')->where($where)->getField('LicensePlate');
  239. S('plate-'.$route_info['DeviceId'], $plate, 24*60*60);
  240. }
  241. // 是否启用围栏
  242. $rlfd_vehicle_fence = Redis('rlfd_vehicle_fence','hash');
  243. $fence = $rlfd_vehicle_fence->get($plate);
  244. $fence = json_decode($fence, true);
  245. if( empty($fence) ){
  246. return '围栏信息不存在';
  247. }
  248. if( !$fence['fenceStatus'] ){
  249. return '未启用围栏';
  250. }
  251. $fence_info = $fence['fenceInfo'];
  252. if( empty($fence_info['data']) ){
  253. return '围栏坐标数据不存在';
  254. }
  255. // 是否越界
  256. $route_point = array(
  257. 'lng' => $route_info['Longitude'],
  258. 'lat' => $route_info['Latitude']
  259. );
  260. $result = true; // 默认在围栏内
  261. if( $fence_info['type'] == 'circle' ){ // 圆形围栏
  262. $distance = \Jms\Algo\Geometry::distanceBetween2BdPoints($fence_info['data']['center'], $route_point); //获取轨迹点到围栏中心点间距离,km
  263. $result = $distance*1000 < $fence_info['data']['radius'];// 距离圆心大于半径说明越界了
  264. }elseif( $fence_info['type'] == 'polygon' ){ // 多边形围栏
  265. $result = \Jms\Algo\Geometry::isInPolygon($fence_info['data']['vertex'], $route_point);
  266. }else{
  267. return '未知围栏类型';
  268. }
  269. if( !$result ){
  270. $alarm_data = array(
  271. "type" => C('FENCE_ALARM'),
  272. "title" => "超出电子围栏",
  273. "content" => "车辆 {$plate} 已超出设置的电子围栏范围,请前往停车处确认是否被盗。",
  274. "device_number" => $route_info['DeviceId']
  275. );
  276. kafkaProducer('gps_alarm_msg_queue', $alarm_data); // 添加到kafka
  277. return '添加告警消息到 gps_alarm_msg_queue ';
  278. }
  279. return '没有超出围栏';
  280. }
  281. public function mockProduce( ){
  282. /* // jyzl gps
  283. $msg_data = array(
  284. 'DeviceId' => FFFFFF123122,
  285. 'State' => 1,
  286. 'Speed' => 1.2,
  287. 'Longitude' => 121.20638,
  288. 'Latitude' => 30.18852,
  289. 'DeviceTime' => date('Y-m-d H:i:s'),
  290. 'LBS' => 'LBS',
  291. 'Direction' => 's',
  292. );
  293. kafkaProducer('gps_location_data',$msg_data);*/
  294. // fly 轨迹数据
  295. $msg_data = array(
  296. 'StationCode' => '30B5F101237D',
  297. "Longitude" => "120.600889",
  298. "Latitude" => "30.191478",
  299. "Address" => "华城·和瑞科技广场(长河路475号)",
  300. 'StationType' => 0,
  301. "CityId" => "2902",
  302. "StationName" => "基站名称",
  303. "AddTime" => date('Y-m-d H:i:s',strtotime('-3 minutes')),
  304. "VehicleNumber" => "86412717AC",
  305. "VehicleStatus" => "1",
  306. "SignalCount" => 88,
  307. "OnlineTime" => date('Y-m-d H:i:s',strtotime('-2 minutes'))
  308. );
  309. kafkaProducer('fly_vroute_data',$msg_data);
  310. }
  311. private function createLocalElectronicPlate( $params ){
  312. $license_plate = $params['LicensePlate'];
  313. if(!$license_plate){
  314. echo "LicensePlate empty!".PHP_EOL;
  315. return false;
  316. }
  317. $vehicle_color = $params['VehicleColor'];
  318. if(!$vehicle_color){
  319. echo "VehicleColor empty!".PHP_EOL;
  320. return false;
  321. }
  322. $real_name = $params['FullName'];
  323. if(!$real_name){
  324. echo "FullName empty!".PHP_EOL;
  325. return false;
  326. }
  327. $address = $params['DetailedAdd'];
  328. if(!$address){
  329. echo "DetailedAdd empty!".PHP_EOL;
  330. return false;
  331. }
  332. /*
  333. $cjh = $params['FrameNumber'];
  334. if(!$cjh){
  335. echo "FrameNumber empty!".PHP_EOL;
  336. return false;
  337. }
  338. $djh = $params['MotorNumber'];
  339. if(!$djh){
  340. echo "MotorNumber empty!".PHP_EOL;
  341. return false;
  342. }
  343. */
  344. $cph = $params['VehicleBrand'];
  345. if(!$cph){
  346. echo "VehicleBrand empty!".PHP_EOL;
  347. return false;
  348. }
  349. $regist_time = strtotime($params['RegistrationTime']);
  350. if($regist_time < 1546272000){
  351. echo "RegistrationTime invalid! RegistrationTime: ".$params['RegistrationTime'].PHP_EOL;
  352. return false;
  353. }
  354. $date = date('Y-m-d',$regist_time);
  355. if(!$date){
  356. echo "date empty! RegistrationTime: ".$params['RegistrationTime'].PHP_EOL;
  357. return false;
  358. }
  359. $reg_date = $date;
  360. $fz_date = $date;
  361. $fz_org = "包头市公安局";
  362. $im = imagecreatetruecolor(500, 278); // 设置画布
  363. //$bg = imagecreatefromjpeg('bg.jpg'); // 设置背景图片
  364. $front_img = ENTRY_PATH . '/Public/images/front.jpg';
  365. if(!is_file($front_img)){
  366. echo "front_img not existed! front_img: ".$front_img.PHP_EOL;
  367. return false;
  368. }
  369. $bg = imagecreatefromjpeg($front_img); // 设置背景图片
  370. imagecopy($im,$bg,0,0,0,0,500,278); // 将背景图片拷贝到画布相应位置
  371. imagedestroy($bg); // 销毁背景图片
  372. $font = ENTRY_PATH .'/Public/font/stsong.ttf'; // 设置字体 // 设置字体,这里可以指向ttf文件
  373. if(!is_file($font)){
  374. echo "font file not existed! font: ".$font.PHP_EOL;
  375. return false;
  376. }
  377. $blacka = imagecolorallocate($im, 15, 23, 25); // 颜色
  378. /* 写入内容 */
  379. imagettftext($im, 12, 0, 135, 66, $blacka, $font,$license_plate ); // 车牌号
  380. imagettftext($im, 12, 0, 335, 66, $blacka, $font,$vehicle_color ); // 车辆颜色
  381. imagettftext($im, 12, 0, 135, 96, $blacka, $font,$real_name ); // 姓名
  382. imagettftext($im, 12, 0, 135, 128, $blacka, $font,$address ); // 住址
  383. imagettftext($im, 12, 0, 135, 160, $blacka, $font,$cjh ); // 车架号
  384. imagettftext($im, 12, 0, 335, 160, $blacka, $font,$djh ); // 电机号
  385. imagettftext($im, 12, 0, 263, 192, $blacka, $font,$cph ); // 厂牌型号
  386. imagettftext($im, 11, 0, 260, 222, $blacka, $font,$reg_date ); // 注册日期
  387. imagettftext($im, 11, 0, 376, 222, $blacka, $font,$fz_date ); // 发证期
  388. imagettftext($im, 12, 0, 263, 255, $blacka, $font,$fz_org ); // 发证机关
  389. $img_file_dir = SOLUTION_LOG_PATH ."/images/".date('Y-m-d')."/";
  390. if(!is_dir($img_file_dir)){
  391. $res = mkdir($img_file_dir,0777,true);
  392. if (!$res){
  393. echo "目录 $img_file_dir 创建失败!".PHP_EOL;
  394. return false;
  395. }
  396. }
  397. $img_file = $img_file_dir .$license_plate.".jpg";
  398. $result = imagejpeg($im, $img_file); // 生成jpeg格式图片
  399. imagedestroy($im); // 销毁图片
  400. if(!$result){
  401. echo "生成电子车牌失败, license_plate: ".$license_plate .PHP_EOL;
  402. return false;
  403. }
  404. echo "生成电子车牌完成, license_plate: ".$license_plate .PHP_EOL;
  405. return $img_file;
  406. }
  407. }