CronAction.class.php 12 KB

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