CronAction.class.php 14 KB

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