NoticeAction.class.php 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. <?php
  2. class NoticeAction extends Action {
  3. public function jgpush( ){
  4. $app_key = '58e15e345e0c21b7e638e186';
  5. $master_secret = 'a91d0b1c1fa1b327db832506';
  6. $client = new \JPush\Client($app_key, $master_secret);
  7. $push_payload = $client->push()
  8. ->setPlatform('all')
  9. ->addAllAudience()
  10. ->setNotificationAlert('车辆异动告警');
  11. try {
  12. $response = $push_payload->send();
  13. print_r($response);
  14. } catch (\JPush\Exceptions\APIConnectionException $e) {
  15. // try something here
  16. print $e;
  17. } catch (\JPush\Exceptions\APIRequestException $e) {
  18. // try something here
  19. print $e;
  20. }
  21. }
  22. public function pushFromKafka( ){
  23. $conf = new RdKafka\Conf();
  24. // Set a rebalance callback to log partition assignments (optional)(当有新的消费进程加入或者退出消费组时,kafka 会自动重新分配分区给消费者进程,这里注册了一个回调函数,当分区被重新分配时触发)
  25. $conf->setRebalanceCb(function (RdKafka\KafkaConsumer $kafka, $err, array $partitions = null) {
  26. switch ($err) {
  27. case RD_KAFKA_RESP_ERR__ASSIGN_PARTITIONS:
  28. echo "Assign: ";
  29. var_dump($partitions);
  30. $kafka->assign($partitions);
  31. break;
  32. case RD_KAFKA_RESP_ERR__REVOKE_PARTITIONS:
  33. echo "Revoke: ";
  34. var_dump($partitions);
  35. $kafka->assign(NULL);
  36. break;
  37. default:
  38. throw new \Exception($err);
  39. }
  40. });
  41. // Configure the group.id. All consumer with the same group.id will consume( 配置groud.id 具有相同 group.id 的consumer 将会处理不同分区的消息,所以同一个组内的消费者数量如果订阅了一个topic, 那么消费者进程的数量多于这个topic 分区的数量是没有意义的。)
  42. // different partitions.
  43. $conf->set('group.id', 'myConsumerGroup');
  44. // Initial list of Kafka brokers(添加 kafka集群服务器地址)
  45. if( !C('KAFKA_BROKER_LIST') ){
  46. echo 'please set broker list !!! ';
  47. }
  48. $conf->set('metadata.broker.list', C('KAFKA_BROKER_LIST'));
  49. $topicConf = new RdKafka\TopicConf();
  50. // Set where to start consuming messages when there is no initial offset in
  51. // offset store or the desired offset is out of range.
  52. // 'smallest': start from the beginning
  53. $topicConf->set('auto.offset.reset', 'smallest');
  54. // Set the configuration to use for subscribed/assigned topics
  55. $conf->setDefaultTopicConf($topicConf);
  56. $consumer = new RdKafka\KafkaConsumer($conf);
  57. // 消费者订阅
  58. $consumer->subscribe(['gps_alarm_msg_queue']);
  59. while (true) {
  60. $message = $consumer->consume(120*1000);
  61. switch ($message->err) {
  62. case RD_KAFKA_RESP_ERR_NO_ERROR:
  63. $msg_data = json_decode($message->payload,true);
  64. if($msg_data){
  65. // 使用极光推送消息
  66. if(!C('JPUSH_APP_KEY') || !C('JPUSH_MASTER_SECRET')){
  67. echo 'jpush app key or secret not exists',PHP_EOL;
  68. break;
  69. }
  70. $jpush_client = new \JPush\Client( C('JPUSH_APP_KEY'), C('JPUSH_MASTER_SECRET') );
  71. // 电子围栏告警,上锁车辆异动告警,低电量告警,被盗告警,广播消息推送
  72. $result = $this->jpushMsg( $jpush_client, $msg_data );
  73. if($result){
  74. echo $result['message'],PHP_EOL;
  75. debug_log('jpush',$result['message']);
  76. }
  77. }
  78. break;
  79. case RD_KAFKA_RESP_ERR__PARTITION_EOF:
  80. echo "No more messages; will wait for more\n";
  81. break;
  82. case RD_KAFKA_RESP_ERR__TIMED_OUT:
  83. echo "Timed out\n";
  84. break;
  85. default:
  86. throw new \Exception($message->errstr(), $message->err);
  87. break;
  88. }
  89. }
  90. }
  91. private function jpushMsg( $client, $msg_data ){
  92. /*
  93. $msg_data = '{
  94. "type":2,
  95. "title":"被盗告警",
  96. "content":"车被偷了,赶紧去找",
  97. "device_number":"FFFFFF123122"
  98. }';
  99. $msg_data = '{
  100. "type":9,
  101. "title":"群推消息",
  102. "content":"这是一个广播"
  103. }';
  104. */
  105. $single_push_type = array(
  106. \Rlfd\Alarm\PushTypeEnum::OUTAGE_ALARM, // C('OUTAGE_ALARM'),// 1-断电报警
  107. \Rlfd\Alarm\PushTypeEnum::SOS_ALARM,// C('SOS_ALARM'), // 2-SOS报警
  108. \Rlfd\Alarm\PushTypeEnum::LOWWER_BATTERY_ALARM,// C('LOWWER_BATTERY_ALARM'), // 3-低电量告警
  109. \Rlfd\Alarm\PushTypeEnum::SHAKE_ALARM,// C('SHAKE_ALARM'), // 4-震动报警
  110. \Rlfd\Alarm\PushTypeEnum::SHIFT_ALARM,// C('SHIFT_ALARM'), // 5-位移报警
  111. \Rlfd\Alarm\PushTypeEnum::LOCK_VEHICLE_ALARM,// C('LOCK_VEHICLE_ALARM'), // 6-锁车告警
  112. \Rlfd\Alarm\PushTypeEnum::STOLEN_ALARM,// C('STOLEN_ALARM'), // 7-被盗告警
  113. \Rlfd\Alarm\PushTypeEnum::FENCE_ALARM,// C('FENCE_ALARM'), // 8-电子围栏告警
  114. );
  115. if(!is_array($msg_data)){
  116. return array( 'success' => false , 'message' => 'invalid message data format!'.$msg_data);
  117. }
  118. // 通过传过来的车牌查出 JgClientRegistrationId
  119. if( empty($client) ){
  120. $client = new \JPush\Client( C('JPUSH_APP_KEY'), C('JPUSH_MASTER_SECRET') );
  121. }
  122. if( in_array($msg_data['type'],$single_push_type) && $msg_data['device_number'] ){
  123. // 判断是否在围栏告警时间间隔内
  124. if( C('FENCE_ALARM_INTERVAL') && $msg_data['type'] == \Rlfd\Alarm\PushTypeEnum::FENCE_ALARM ){
  125. $last_alarm_time = S('last_fence_alarm_'.$msg_data['device_number']);
  126. $interval_time = C('FENCE_ALARM_INTERVAL')*60;
  127. if( time() - $last_alarm_time < $interval_time ){
  128. return array( 'success' => false , 'message' => $msg_data['device_number'] . ' 围栏告警时间间隔:'.C('FENCE_ALARM_INTERVAL').'分钟,最后一次告警时间:'.$last_alarm_time );
  129. }
  130. }
  131. // 取车辆数据
  132. $where = array('DeviceNumber|GpsDeviceNumber' => $msg_data['device_number']);
  133. $fields= 'CityId,LicensePlate,FullName,JgClientRegistrationId';
  134. if( !S( 'jpush_vinfo_'.$msg_data['device_number'] ) ){ //如果不存在,则缓存
  135. $vehicle_info = M('jms_vehicle')->field($fields)->where($where)->find();
  136. S( 'jpush_vinfo_'.$msg_data['device_number'], $vehicle_info, 60 ); //缓存1分钟
  137. }
  138. $vehicle_info = S( 'jpush_vinfo_'.$msg_data['device_number'] ); //从缓存取
  139. if(!$vehicle_info['JgClientRegistrationId']){
  140. return array('success'=> false,'message'=>'jpush registration id not exists!');
  141. }
  142. }elseif( $msg_data['type'] == \Rlfd\Alarm\PushTypeEnum::BROADCASTING ){
  143. //广播
  144. }else{
  145. return array( 'success' => false , 'message' => '未知的告警类型:'.$msg_data['type'] );
  146. }
  147. // 推送平台
  148. $platform = array('ios', 'android');
  149. // 通知栏显示内容
  150. $alert = $msg_data['content'];
  151. // 推送android
  152. $android_notification = array(
  153. 'title' => $msg_data['title'],
  154. 'builder_id' => 2, //通知栏样式
  155. );
  156. // 推送ios
  157. $ios_notification = array(
  158. 'sound' => 'default',
  159. 'badge' => '+1',
  160. 'content-available' => true
  161. );
  162. // 可选项
  163. $options = array(
  164. 'sendno' => 100,
  165. 'time_to_live' => 100,
  166. );
  167. // 组装推送
  168. $cid = $client->push()->getCid();
  169. //var_dump($cid['body']['cidlist'][0]);
  170. $push_payload = $client->push()
  171. ->setCid($cid['body']['cidlist'][0])
  172. ->setPlatform( $platform )
  173. ->iosNotification($alert, $ios_notification)
  174. ->androidNotification($alert, $android_notification)
  175. ->options($options);
  176. if( $msg_data['type'] == \Rlfd\Alarm\PushTypeEnum::BROADCASTING ){ // 9-广播
  177. $push_payload->addAllAudience();
  178. }elseif( isset($vehicle_info) && $vehicle_info ){ // 单推
  179. $msg_data['vehicle_info'] = $vehicle_info;
  180. $push_payload->addRegistrationId($vehicle_info['JgClientRegistrationId']);
  181. }else{
  182. //未知类型
  183. var_dump('出错了:'.$msg_data);
  184. return;
  185. }
  186. try {
  187. $response = $push_payload->send();
  188. // 保存日志
  189. $msg_data['response'] = array(
  190. 'code' => $response['http_code'],
  191. 'resp_msg' => 'ok',
  192. );
  193. if(!$this->saveLog($msg_data)){
  194. return array( 'success' => false , 'message' => 'add log failed 1' );
  195. }
  196. if( $response['http_code'] == 200 ){ //如果成功了
  197. if( C('FENCE_ALARM_INTERVAL') && $msg_data['type'] == \Rlfd\Alarm\PushTypeEnum::FENCE_ALARM ){
  198. //设置最后围栏告警时间缓存
  199. S('last_fence_alarm_'.$msg_data['device_number'], time(), C('FENCE_ALARM_INTERVAL')*60);
  200. }
  201. return array( 'success' => true , 'message' => 'ok' );
  202. }
  203. } catch (\JPush\Exceptions\APIConnectionException $e) {
  204. // try something here
  205. $msg_data['response'] = array(
  206. 'code' => $e->getHttpCode(),
  207. 'resp_msg' => substr($e->__toString(), strpos($e->__toString(),'[')),
  208. );
  209. if(!$this->saveLog($msg_data)){
  210. return array( 'success' => false , 'message' => 'add log failed 2' );
  211. }
  212. print $e;
  213. } catch (\JPush\Exceptions\APIRequestException $e) {
  214. // try something here
  215. $msg_data['response'] = array(
  216. 'code' => $e->getHttpCode(),
  217. 'resp_msg' => substr($e->__toString(), strpos($e->__toString(),'[')),
  218. );
  219. if(!$this->saveLog($msg_data)){
  220. return array( 'success' => false , 'message' => 'add log failed 3' );
  221. }
  222. print $e;
  223. }
  224. }
  225. private function saveLog( $msg_data ){
  226. $fdls_app_message = M('jms_baojing_message');
  227. $log_data = array(
  228. 'ID' => create_guid(),
  229. 'Type' => $msg_data['type'],
  230. 'Title' => $msg_data['title'],
  231. 'Comment' => $msg_data['content'],
  232. 'SendStatus' => $msg_data['response']['code'],
  233. 'AddTime' => date('Y-m-d H:i:s'),
  234. 'RespMsg' => $msg_data['response']['resp_msg'],
  235. );
  236. if( $msg_data['type'] != C('BROADCASTING') ){ // 非广播
  237. $log_data['CityId'] = $msg_data['vehicle_info']['CityId'];
  238. $log_data['DeviceNumber'] = $msg_data['device_number'];
  239. $log_data['FullName'] = $msg_data['vehicle_info']['FullName'];
  240. $log_data['LicensePlate'] = $msg_data['vehicle_info']['LicensePlate'];
  241. }
  242. $result = $fdls_app_message->createAdd($log_data);
  243. return $result;
  244. }
  245. }