CronAction.class.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448
  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. continue;
  33. }
  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 = './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. // Initial list of Kafka brokers(添加 kafka集群服务器地址)
  178. $conf->set('metadata.broker.list', '127.0.0.1');
  179. $topicConf = new RdKafka\TopicConf();
  180. // Set where to start consuming messages when there is no initial offset in
  181. // offset store or the desired offset is out of range.
  182. // 'smallest': start from the beginning
  183. $topicConf->set('auto.offset.reset', 'smallest');
  184. // Set the configuration to use for subscribed/assigned topics
  185. $conf->setDefaultTopicConf($topicConf);
  186. $consumer = new RdKafka\KafkaConsumer($conf);
  187. // 订阅轨迹数据topic
  188. $consumer->subscribe(['gps_location_data']);
  189. while (true) {
  190. $message = $consumer->consume(120*1000);
  191. switch ($message->err) {
  192. case RD_KAFKA_RESP_ERR_NO_ERROR:
  193. // 判断是否超出围栏范围 ,存入 topic:gps_alarm_msg_queue
  194. $route_info = json_decode($message->payload,true);
  195. if( empty($route_info) ){
  196. echo 'empty route info.';
  197. break;
  198. }
  199. $result = $this->produceAcrossAlarmData($route_info);
  200. if($result){
  201. echo $result,PHP_EOL;
  202. }
  203. break;
  204. case RD_KAFKA_RESP_ERR__PARTITION_EOF:
  205. echo "No more messages; will wait for more\n";
  206. break;
  207. case RD_KAFKA_RESP_ERR__TIMED_OUT:
  208. echo "Timed out\n";
  209. break;
  210. default:
  211. throw new \Exception($message->errstr(), $message->err);
  212. break;
  213. }
  214. }
  215. }
  216. private function produceAcrossAlarmData( $route_info ){
  217. if( !$route_info['DeviceId'] ){
  218. return 'device id is not exists.';
  219. }
  220. if( !$route_info['Longitude'] ){
  221. return 'longitude is not exists.';
  222. }
  223. if( !$route_info['Latitude'] ){
  224. return 'latitude is not exists.';
  225. }
  226. if( !$route_info['DeviceTime'] ){
  227. return 'device time is not exists.';
  228. }
  229. // 从数据库中取出车牌号,缓存1天
  230. if( S('plate-'.$route_info['DeviceId']) ){
  231. $plate = S('plate-'.$route_info['DeviceId']);
  232. }else{
  233. $where = array('GpsDeviceNumber'=>$route_info['DeviceId']);
  234. $plate = M('jms_vehicle')->where($where)->getField('LicensePlate');
  235. S('plate-'.$route_info['DeviceId'], $plate, 24*60*60);
  236. }
  237. // 是否启用围栏
  238. $rlfd_vehicle_fence = Redis('rlfd_vehicle_fence','hash');
  239. $fence = $rlfd_vehicle_fence->get($plate);
  240. $fence = json_decode($fence, true);
  241. if( empty($fence) ){
  242. return '围栏信息不存在';
  243. }
  244. if( !$fence['fenceStatus'] ){
  245. return '未启用围栏';
  246. }
  247. $fence_info = $fence['fenceInfo'];
  248. if( empty($fence_info['data']) ){
  249. return '围栏坐标数据不存在';
  250. }
  251. // 是否越界
  252. $route_point = array(
  253. 'lng' => $route_info['Longitude'],
  254. 'lat' => $route_info['Latitude']
  255. );
  256. $result = true; // 默认在围栏内
  257. if( $fence_info['type'] == 'circle' ){ // 圆形围栏
  258. $distance = \Jms\Algo\Geometry::distanceBetween2BdPoints($fence_info['data']['center'], $route_point); //获取轨迹点到围栏中心点间距离,km
  259. $result = $distance*1000 < $fence_info['data']['radius'];// 距离圆心大于半径说明越界了
  260. }elseif( $fence_info['type'] == 'polygon' ){ // 多边形围栏
  261. $result = \Jms\Algo\Geometry::isInPolygon($fence_info['data']['vertex'], $route_point);
  262. }else{
  263. return '未知围栏类型';
  264. }
  265. if( !$result ){
  266. $alarm_data = array(
  267. "type" => C('FENCE_ALARM'),
  268. "title" => "超出电子围栏",
  269. "content" => "车辆 {$plate} 已超出设置的电子围栏范围,请前往停车处确认是否被盗。",
  270. "device_number" => $route_info['DeviceId']
  271. );
  272. kafkaProducer('gps_alarm_msg_queue', $alarm_data); // 添加到kafka
  273. return '添加告警消息到 gps_alarm_msg_queue ';
  274. }
  275. return '没有超出围栏';
  276. }
  277. public function mockProduce( ){
  278. /* // jyzl gps
  279. $msg_data = array(
  280. 'DeviceId' => FFFFFF123122,
  281. 'State' => 1,
  282. 'Speed' => 1.2,
  283. 'Longitude' => 121.20638,
  284. 'Latitude' => 30.18852,
  285. 'DeviceTime' => date('Y-m-d H:i:s'),
  286. 'LBS' => 'LBS',
  287. 'Direction' => 's',
  288. );
  289. kafkaProducer('gps_location_data',$msg_data);*/
  290. // fly 轨迹数据
  291. $msg_data = array(
  292. 'StationCode' => '30B5F10116D7',
  293. 'StationType' => 0,
  294. "CityId" => "10",
  295. "StationName" => "测试基站2",
  296. "Longitude" => "114.251604",
  297. "Latitude" => "22.725217",
  298. "Address" => "建设大厦1",
  299. "AddTime" => "2019-05-21 15:00:01",
  300. "VehicleNumber" => "FFFFFF000003",
  301. "VehicleStatus" => "1",
  302. "SignalCount" => 88,
  303. "OnlineTime" => date('Y-m-d H:i:s',strtotime('-2 minutes'))
  304. );
  305. kafkaProducer('fly_vroute_data',$msg_data);
  306. }
  307. private function createLocalElectronicPlate( $params ){
  308. $license_plate = $params['LicensePlate'];
  309. if(!$license_plate){
  310. echo "LicensePlate empty!".PHP_EOL;
  311. return false;
  312. }
  313. $vehicle_color = $params['VehicleColor'];
  314. if(!$vehicle_color){
  315. echo "VehicleColor empty!".PHP_EOL;
  316. return false;
  317. }
  318. $real_name = $params['FullName'];
  319. if(!$real_name){
  320. echo "FullName empty!".PHP_EOL;
  321. return false;
  322. }
  323. $address = $params['DetailedAdd'];
  324. if(!$address){
  325. echo "DetailedAdd empty!".PHP_EOL;
  326. return false;
  327. }
  328. /*
  329. $cjh = $params['FrameNumber'];
  330. if(!$cjh){
  331. echo "FrameNumber empty!".PHP_EOL;
  332. return false;
  333. }
  334. $djh = $params['MotorNumber'];
  335. if(!$djh){
  336. echo "MotorNumber empty!".PHP_EOL;
  337. return false;
  338. }
  339. */
  340. $cph = $params['VehicleBrand'];
  341. if(!$cph){
  342. echo "VehicleBrand empty!".PHP_EOL;
  343. return false;
  344. }
  345. $regist_time = strtotime($params['RegistrationTime']);
  346. if($regist_time < 1546272000){
  347. echo "RegistrationTime invalid! RegistrationTime: ".$params['RegistrationTime'].PHP_EOL;
  348. return false;
  349. }
  350. $date = date('Y-m-d',$regist_time);
  351. if(!$date){
  352. echo "date empty! RegistrationTime: ".$params['RegistrationTime'].PHP_EOL;
  353. return false;
  354. }
  355. $reg_date = $date;
  356. $fz_date = $date;
  357. $fz_org = "包头市公安局";
  358. $im = imagecreatetruecolor(500, 278); // 设置画布
  359. //$bg = imagecreatefromjpeg('bg.jpg'); // 设置背景图片
  360. $front_img = './Public/images/front.jpg';
  361. if(!is_file($front_img)){
  362. echo "front_img not existed! front_img: ".$front_img.PHP_EOL;
  363. return false;
  364. }
  365. $bg = imagecreatefromjpeg($front_img); // 设置背景图片
  366. imagecopy($im,$bg,0,0,0,0,500,278); // 将背景图片拷贝到画布相应位置
  367. imagedestroy($bg); // 销毁背景图片
  368. $font = './Public/font/stsong.ttf'; // 设置字体 // 设置字体,这里可以指向ttf文件
  369. if(!is_file($font)){
  370. echo "font file not existed! font: ".$font.PHP_EOL;
  371. return false;
  372. }
  373. $blacka = imagecolorallocate($im, 15, 23, 25); // 颜色
  374. /* 写入内容 */
  375. imagettftext($im, 12, 0, 135, 66, $blacka, $font,$license_plate ); // 车牌号
  376. imagettftext($im, 12, 0, 335, 66, $blacka, $font,$vehicle_color ); // 车辆颜色
  377. imagettftext($im, 12, 0, 135, 96, $blacka, $font,$real_name ); // 姓名
  378. imagettftext($im, 12, 0, 135, 128, $blacka, $font,$address ); // 住址
  379. imagettftext($im, 12, 0, 135, 160, $blacka, $font,$cjh ); // 车架号
  380. imagettftext($im, 12, 0, 335, 160, $blacka, $font,$djh ); // 电机号
  381. imagettftext($im, 12, 0, 263, 192, $blacka, $font,$cph ); // 厂牌型号
  382. imagettftext($im, 11, 0, 260, 222, $blacka, $font,$reg_date ); // 注册日期
  383. imagettftext($im, 11, 0, 376, 222, $blacka, $font,$fz_date ); // 发证期
  384. imagettftext($im, 12, 0, 263, 255, $blacka, $font,$fz_org ); // 发证机关
  385. $img_file_dir = SOLUTION_LOG_PATH ."/images/".date('Y-m-d')."/";
  386. if(!is_dir($img_file_dir)){
  387. $res = mkdir($img_file_dir,0777,true);
  388. if (!$res){
  389. echo "目录 $img_file_dir 创建失败!".PHP_EOL;
  390. return false;
  391. }
  392. }
  393. $img_file = $img_file_dir .$license_plate.".jpg";
  394. $result = imagejpeg($im, $img_file); // 生成jpeg格式图片
  395. imagedestroy($im); // 销毁图片
  396. if(!$result){
  397. echo "生成电子车牌失败, license_plate: ".$license_plate .PHP_EOL;
  398. return false;
  399. }
  400. echo "生成电子车牌完成, license_plate: ".$license_plate .PHP_EOL;
  401. return $img_file;
  402. }
  403. }