CronAction.class.php 13 KB

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