WxApiAction.class.php 99 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507
  1. <?php
  2. class WxApiAction extends Action {
  3. private function getHumenTime( $timeInterval ){
  4. if ($timeInterval < 60){
  5. $formatime = $timeInterval.'秒';
  6. }elseif($timeInterval < 60 * 60){
  7. $min = floor($timeInterval/60);
  8. $formatime = $min.'分钟';
  9. }elseif($timeInterval < 60 * 60 * 24){
  10. $h = floor($timeInterval/(60*60));
  11. $formatime = $h.'小时';
  12. }elseif($timeInterval < 60 * 60 * 24 * 30){
  13. $d = floor($timeInterval/(60*60*24));
  14. $formatime = $d.'天';
  15. }elseif($timeInterval < 60 * 60 * 24 * 30 * 12){
  16. $m = floor($timeInterval/(60*60*24*30));
  17. $formatime = $m.'月';
  18. }else{
  19. $y = floor($timeInterval/(60*60*24*30*12));
  20. $formatime = $y.'年';
  21. }
  22. return $formatime;
  23. }
  24. public function register( ){
  25. header('Access-Control-Allow-Origin: *');
  26. // 通过手机号和短信验证码注册
  27. $data = json_decode( file_get_contents("php://input") ,true);
  28. // 用户类型:个人(personal)、团体(group)
  29. $userType = $data['userType'];
  30. // 设备类型:卡牌(card)、徽章(badge)
  31. $deviceType = $data['deviceType'];
  32. // 团体卡牌用户(group_card_user) 不可注册
  33. // 个人用户(personal),团体徽章用户(group_badge_user) 可注册
  34. if ($userType == 'personal') { // 个人用户
  35. $identify = 'personal';
  36. } elseif ($userType == 'group' && $deviceType == 'badge') { // 团体徽章用户
  37. $identify = 'group_badge_user';
  38. } elseif ($userType == 'group' && $deviceType == 'card') { // 团体卡牌用户
  39. // $identify = 'group_card_user';
  40. json_fail('团体卡牌用户无需注册,请联系发卡人询问账号!');
  41. } else {
  42. json_fail('未知用户类型');
  43. }
  44. if(!$data['phone']){
  45. json_fail('手机号码不能为空');
  46. }
  47. if(!$data['smsCode']){
  48. json_fail('短信验证码不能为空');
  49. }
  50. if(! $data['password']){
  51. json_fail('密码不能为空');
  52. }
  53. if(! $data['confirmPassword']){
  54. json_fail('请输入确认密码');
  55. }
  56. if ($data['password'] != $data['confirmPassword']) {
  57. json_fail('两次密码不一致');
  58. }
  59. /*
  60. $cond = array(
  61. 'username'=>$data['phone']
  62. );
  63. $user_info = M('users')->where($cond)->join('user_has_roles ON users.id = user_has_roles.uid')->find();
  64. if($user_info){
  65. //存在用户则判断
  66. $role_identify=M('roles')->where(array('id'=>$user_info['role_id']))->getField('identify');
  67. if($role_identify==$identify){
  68. json_fail('该类型用户已经存在,请前往登陆');
  69. }
  70. }*/
  71. // 获取角色id
  72. $roleId = M('roles')->where(['identify' => $identify])->getField('id');
  73. if (!$roleId) {
  74. json_fail('未知角色类型');
  75. }
  76. // 判断角色、号码是否已注册
  77. $userinfo = M('users')->alias('a')->where(['username'=>$data['phone']])->join("INNER JOIN user_has_roles b ON a.id = b.uid AND b.role_id = {$roleId}")->find();
  78. if ($userinfo) {
  79. json_fail('该号码已注册');
  80. }
  81. // 验证码有效性
  82. $res = $this->isValidSmsCode($data['phone'], $data['smsCode']);
  83. if (!$res['success']) {
  84. json_fail($res['message']);
  85. }
  86. //if($user_info['password'] != password_hash($data['password'],PASSWORD_DEFAULT) ){
  87. $savePwd = password_hash($data['password'],PASSWORD_DEFAULT);
  88. $saveData = [
  89. 'username' => $data['phone'],
  90. 'realname' => '用户'.$data['phone'],
  91. 'password' => $savePwd,
  92. 'phone' => $data['phone'],
  93. 'created_at' => time(),
  94. ];
  95. // 个人用户给定默认部门
  96. if ($identify == 'personal') {
  97. $where = [
  98. 'type' => 'basic_config',
  99. 'field' => 'department_id',
  100. ];
  101. $department_id = M('sys_config')->where($where)->getField('fieldValue');
  102. if ($department_id) {
  103. $saveData['department_id'] = $department_id;
  104. }
  105. }
  106. M()->startTrans();
  107. $userid = M('users')->add($saveData);
  108. if(!$userid){
  109. M()->rollback();
  110. json_fail('注册失败');
  111. }
  112. $hasRoleData = [
  113. 'uid' => $userid,
  114. 'role_id' => $roleId
  115. ];
  116. $userHasRoleRes = M('user_has_roles')->add($hasRoleData);
  117. if(!$userHasRoleRes){
  118. M()->rollback();
  119. json_fail('注册失败');
  120. }
  121. M()->commit();
  122. json_success('注册成功',$userid);
  123. }
  124. public function login( ){
  125. header('Access-Control-Allow-Origin: *');
  126. //json_fail('登录失败');
  127. $openid = I('get.openid');
  128. if(!$openid){
  129. json_fail('未授权,请关闭当前页面重新进入');
  130. }
  131. $data = json_decode( file_get_contents("php://input") ,true);
  132. $identify = 'chezhu';
  133. $role_id = M('roles')->where(array('identify'=>$identify))->getField('id');
  134. if (!$role_id) {
  135. json_fail('未知用户类型');
  136. }
  137. $cond = array(
  138. 'username' => $data['username'],
  139. );
  140. $user_info = M('users')->alias('u')->where($cond)->join("INNER JOIN user_has_roles AS r ON u.id = r.uid AND r.role_id = {$role_id}")->find();
  141. if(!$user_info){
  142. json_fail('账号错误');
  143. }
  144. if(!password_verify($data['password'], $user_info['password'])){
  145. json_fail('密码错误');
  146. }
  147. $where = array(
  148. 'wx_open_id' => $openid,
  149. 'id' => ['NEQ', $user_info['uid']],
  150. );
  151. //$result = M('users')->createSave($where,['wx_open_id'=>'']);
  152. $result = M('users')->where($where)->save(['wx_open_id'=>'']);
  153. if($result===false){
  154. json_fail('登陆失败');
  155. }
  156. if($user_info['wx_open_id'] != $openid){
  157. $update = array(
  158. 'wx_open_id' => $openid,
  159. 'last_login_ip' => $_SERVER['REMOTE_ADDR'],
  160. 'last_login_time' => time(),
  161. );
  162. $result = M('users')->createSave(array('id'=>$user_info['uid']),$update);
  163. if(!$result){
  164. json_fail('登陆失败');
  165. }
  166. }
  167. //如果当前openid与其他账号openid相同,清空其他表中openid
  168. $res = array(
  169. 'id'=>$user_info['uid'],
  170. 'realname'=>$user_info['realname'],
  171. 'avatar' => $user_info['avatar'],
  172. 'phone'=>$user_info['phone'],
  173. );
  174. json_success('登录成功', $res);
  175. }
  176. public function getLastPositionMulti( ){
  177. header('Access-Control-Allow-Origin: *');
  178. $userid = I('get.userid');
  179. if(!$userid){
  180. json_fail('未检测到用户标识');
  181. }
  182. $vehiclesIds = M('vehicles')->where(['user_id' => $userid ])->getField('id',true);
  183. $devices=M('devices')->where(['bind_id' =>array('in',$vehiclesIds) ])->select();
  184. if(!$devices){
  185. json_fail('名下查询不到任何设备');
  186. }
  187. $resp = [];
  188. foreach($devices as &$locationInfo){
  189. //wifi_online_time
  190. //wifi_longitude
  191. //wifi_latitude
  192. //addr
  193. $locationInfo['isAlarm'] = $locationInfo['alarm_status'];
  194. $isWifi = $locationInfo['wifi_online_time'] > $locationInfo['online_time'] || intval($locationInfo['latitude']) < 1 ;
  195. $locationInfo['time'] = $isWifi ? $locationInfo['wifi_online_time'] : $locationInfo['online_time'];
  196. $locationInfo['lat'] = $isWifi ? $locationInfo['wifi_latitude'] : $locationInfo['latitude'];
  197. $locationInfo['lng'] = $isWifi ? $locationInfo['wifi_longitude'] : $locationInfo['longitude'];
  198. $locationInfo['address'] = $locationInfo['address'];
  199. if(!$locationInfo['time']){
  200. $locationInfo['awayTime'] = '从未在线';
  201. }else{
  202. $timeInterval = time() - (int)$locationInfo['time'];
  203. $locationInfo['awayTime'] = $this->getHumenTime($timeInterval);
  204. }
  205. $lngLatAlter = new \Jms\Algo\Geometry();
  206. if(!$locationInfo['lat'] || !$locationInfo['lng']){
  207. continue;
  208. }
  209. $latLng = $lngLatAlter->convertBd09ToGcj02($locationInfo['lat'], $locationInfo['lng']);
  210. $locationInfo['lat'] = $latLng['lat'];
  211. $locationInfo['lng'] = $latLng['lng'];
  212. $locationInfo['date_time'] = date('Y-m-d H:i:s', $locationInfo['time']);
  213. array_push($resp, $locationInfo);
  214. }
  215. if(!$resp){
  216. json_fail('暂无任何设备上报过数据哦!');
  217. }
  218. json_success('查询成功', $resp);
  219. }
  220. private function checkLoginState( $openid, $userid ){
  221. $wx_open_id=M('users')->where(array('id'=>$userid))->getField('wx_open_id');
  222. if($wx_open_id === 'test_openid'){
  223. return array('status'=>true,'message'=>'');
  224. }
  225. if($wx_open_id!=$openid){
  226. //已被他人登录
  227. return array('status'=>false,'message'=>'账号可能在其他设备登录,请重新登录');
  228. }
  229. return array('status'=>true,'message'=>'');
  230. }
  231. public function getMyDevices( ){
  232. header('Access-Control-Allow-Origin: *');
  233. $openid = I('get.openid');
  234. $userid = I('get.userid');
  235. //检测登录状态
  236. $res=$this->checkLoginState($openid,$userid);
  237. if(!$res['status']){
  238. json_fail($res['message']);
  239. }
  240. //$vehiclesIds = M('vehicles')->where(['user_id' => $userid ])->getField('id',true);
  241. //$devices=M('devices')->where(['bind_id' =>array('in',$vehiclesIds) ])->select();
  242. $list=M('vehicles')->where(array('user_id'=>$userid))->select();
  243. $type_id=M('sys_dict_type')->where(['code'=>'DeviceType'])->getField('id');
  244. foreach($list as &$val){
  245. $val['device_info']=M('devices')->where(['bind_id' =>$val['id']])->find();
  246. $val['department_name']=M('departments')->where(['id'=>$val['department_id']])->getField('department_name');
  247. $val['creator']=M('users')->where(['id'=>$val['creator_id']])->getField('username');
  248. }
  249. if(!$list){
  250. json_fail('暂无车辆');
  251. }
  252. json_success('查询成功',$list);
  253. }
  254. public function getAlarmList( ){
  255. header('Access-Control-Allow-Origin: *');
  256. $userid = I('get.userid');
  257. if(!$userid || $userid == 'undefined' || $userid == 'null'){
  258. json_fail('获取不到你的用户标识,请重新登陆');
  259. }
  260. $openid = I('get.openid');
  261. //检测登录状态
  262. $res=$this->checkLoginState($openid,$userid);
  263. if(!$res['status']){
  264. json_fail($res['message']);
  265. }
  266. $imeiArr=M('devices')->where(['user_id' => $userid])->getField('imei',true);
  267. $page = I('get.page') ? I('get.page') : 1;
  268. $pageSize = 10;
  269. $start = ($page - 1) * $pageSize;
  270. $cond = [];
  271. $alarmType = I('get.alarmType');
  272. $imei = I('get.imei');
  273. if(!$imei){
  274. $cond['device_number'] = array('in',$imeiArr);
  275. }else{
  276. $cond['device_number'] = $imei;
  277. }
  278. if($alarmType){
  279. $cond['alarm_type'] = $alarmType;
  280. }
  281. $list = M('alarm_report')->where($cond)->limit( $start, $pageSize)->order('created_at desc')->select();
  282. $type_id=M('sys_dict_type')->where(array('code'=>'AlarmType'))->getField('id');
  283. foreach($list as &$val){
  284. $val['alarm_type_str']=M('sys_dict_data')->where(array('type_id'=>$type_id,'code'=>$val['alarm_type']))->getField('value');
  285. $val['created_at_str'] = date('Y-m-d H:i:s', $val['created_at']);
  286. }
  287. $total = M('alarm_report')->where($cond)->count() ?: 0;
  288. $resp = [
  289. 'list' => $list ?:[],
  290. 'total' => $total,
  291. 'pageSize' => $pageSize
  292. ];
  293. json_success('获取成功', $resp);
  294. }
  295. public function getSignaturEtc( ){
  296. header('Access-Control-Allow-Origin: *');
  297. $url = I('get.url');
  298. if(!$url){
  299. json_fail('no url');
  300. }
  301. $url = urldecode($url);
  302. $accessToken = $this->getWeixinAccessToken();
  303. if (!$accessToken) {
  304. json_fail('获取 access token 失败');
  305. }
  306. $apiTiket = $this->getJsapiTikcet($accessToken);
  307. if(is_array($apiTiket)){
  308. json_fail($apiTiket['errcode'].':'.$apiTiket['errmsg']);
  309. }
  310. $noncestr = substr(md5(time()), 0, 16);
  311. $timestamp = time();
  312. //jsapi_ticket=sM4AOVdWfPE4DxkXGEs8VMCPGGVi4C3VM0P37wVUCFvkVAy_90u5h9nbSlYy3-Sl-HhTdfl2fzFy1AOcHKP7qg&noncestr=Wm3WZYTPz0wzccnW&timestamp=1414587457&url=http://mp.weixin.qq.com?params=value
  313. $str = 'jsapi_ticket='.$apiTiket.'&noncestr='.$noncestr.'&timestamp='.$timestamp.'&url='.$url;
  314. $signature = sha1($str);
  315. $data = [
  316. 'appId' => C('WECHAT_APPID'),
  317. 'timeStamp' => $timestamp,
  318. 'nonceStr' => $noncestr,
  319. 'signature' => $signature,
  320. 'url' => $url,
  321. 'jsapi_ticket' =>S('wx_jsapi_ticket'),
  322. 'accessToken' => $accessToken,
  323. ];
  324. json_success('get success', $data);
  325. }
  326. private function getJsapiTikcet( $accessToken ){
  327. $jsapiTicket = S('wx_jsapi_ticket');
  328. if(!$jsapiTicket){
  329. $ch = curl_init();
  330. curl_setopt($ch, CURLOPT_URL, 'https://api.weixin.qq.com/cgi-bin/ticket/getticket?access_token='.$accessToken .'&type=jsapi');
  331. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  332. $output = json_decode(curl_exec($ch), true);
  333. curl_close($ch);
  334. if($output['errcode'] != 0){
  335. return $output;
  336. }
  337. S('wx_jsapi_ticket', $output['ticket'], '7100');
  338. return $output['ticket'];
  339. }else{
  340. return $jsapiTicket;
  341. }
  342. }
  343. public function getGpsRoutes( ){
  344. header('Access-Control-Allow-Origin: *');
  345. $imei = I('get.imei');
  346. $startTime = I('get.startTime');
  347. $endTime = I('get.endTime');
  348. if(!$imei){
  349. json_fail('获取不到设备号');
  350. }
  351. if(!$startTime){
  352. json_fail('无起始时间');
  353. }
  354. if(!$endTime){
  355. json_fail('无结束时间');
  356. }
  357. //end_time
  358. //start_time
  359. //student_id
  360. //queyRouteListByStudentId
  361. $routeInfo = [];
  362. $lngLatAlter = new \Jms\Algo\Geometry();
  363. $routeInfo = queyGpsRouteListByimei($imei, $startTime, $endTime);
  364. //$routeInfo = analyzeRouteInfoGaodeBatch($routeInfo);
  365. $routeInfo = analyzeRouteInfoWayzBatch($routeInfo);
  366. $arr = [];
  367. foreach($routeInfo as &$v){
  368. $v['lat'] = $v['Latitude'];
  369. $v['lng'] = $v['Longitude'];
  370. if($v['lat']){
  371. array_push($arr, $v);
  372. }
  373. }
  374. $routeInfo =$arr;
  375. //$routeInfo =bmapFilterOutliers($arr);
  376. json_success('success', $routeInfo);
  377. }
  378. private function analyzeRouteInfo( $list ){
  379. if(!$list){
  380. return array();
  381. }
  382. $arr= [];
  383. foreach($list as $k=> $v){
  384. if(isset($v['WifiMacs']) && $v['WifiMacs'] !=''){
  385. $wifiRes =$this->requestWifiLBS($v);
  386. if($wifiRes['success']){
  387. if($wifiRes['data']['lon'] == '' || is_null($wifiRes['data']['lat'])){
  388. continue;
  389. }
  390. $list[$k]['Latitude'] = $wifiRes['data']['lat'];
  391. $list[$k]['Longitude'] = $wifiRes['data']['lon'];
  392. $list[$k]['SignalType'] = 'WiFi';
  393. $list[$k]['WifiAddress'] = $wifiRes['data']['address'];
  394. array_push($arr, $list[$k]);
  395. }else{
  396. // array_splice($list,$k,1);
  397. continue;
  398. }
  399. }else{
  400. $list[$k]['SignalType'] = 'GPS';
  401. array_push($arr, $list[$k]);
  402. }
  403. }
  404. return $arr;
  405. }
  406. private function requestWifiLBS( $routeInfo ){
  407. if(!$routeInfo){
  408. return array(
  409. 'success' => false,
  410. 'msg' => '空数据'
  411. );
  412. }
  413. if(!isset( $routeInfo['WifiMacs']) ){
  414. return array(
  415. 'success' => false,
  416. 'msg' => '无wifi信息'
  417. );
  418. }
  419. $WifiMacs = $routeInfo['WifiMacs'];
  420. $userKey = '';
  421. if(!$userKey){
  422. $userKey = 'f107b0b3a513e6e37c6fb0424bed6633';
  423. }
  424. //$url = 'http://api.cellocation.com:81/loc/?wl=' . $WifiMacs .'&output=json&coord=gcj02';
  425. $url = 'http://apilocate.amap.com/position?accesstype=1&imei=' . $routeInfo['DeviceNumber'] . '&macs=' . $WifiMacs . '&key=' . $userKey;
  426. $curl = curl_init($url);
  427. curl_setopt($curl, CURLOPT_TIMEOUT, 3);
  428. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  429. $response = curl_exec($curl);
  430. if (curl_errno($curl)) {
  431. $errmsg = curl_error($curl);
  432. curl_close($curl);
  433. return array(
  434. 'success' => false,
  435. 'msg' => $errmsg
  436. );
  437. }
  438. curl_close($curl);
  439. $response = json_decode($response, true);
  440. if($response['info'] != 'OK' || count($response['result']) <2 ){
  441. return array(
  442. 'success' => false,
  443. 'msg' => $response['info']
  444. );
  445. }
  446. $result = $response['result'];
  447. $location = $response['result']['location'];
  448. $location = explode(',', $location);
  449. $response = array(
  450. 'lon' => $location[0],
  451. 'lat' => $location[1],
  452. 'address' => $result['desc']
  453. );
  454. return array(
  455. 'success' => true,
  456. 'data' => $response
  457. );
  458. }
  459. private function registerDevice2third( $deviceImei ){
  460. $tokenInfo = $this->getThirdTokenInfo();
  461. if(!$tokenInfo){
  462. return false;
  463. }
  464. $postData = [
  465. "deviceImei" => $deviceImei,
  466. "phone" => "",
  467. "userId" => $tokenInfo['holder']
  468. ];
  469. var_dump($postData);
  470. $url = "http://rinlink-a18.beijing-cn-k8s-test.rinlink.com/device";
  471. $headers[] = "Content-Type: application/json";
  472. $headers[] = "Authorization: ". $tokenInfo['token'];
  473. $ch = curl_init();
  474. curl_setopt($ch, CURLOPT_URL, $url);
  475. curl_setopt( $ch, CURLOPT_HTTPHEADER, $headers );
  476. curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
  477. curl_setopt($ch, CURLOPT_POST, 1);
  478. curl_setopt( $ch, CURLOPT_POSTFIELDS, json_encode($postData) );
  479. $output = curl_exec($ch);
  480. curl_close($ch);
  481. if($output === false){
  482. $this->push_log('thirdapi_register_device_curl_error',curl_error($curl));
  483. return false;
  484. }
  485. $deviceRes = json_decode($output, ture) ;
  486. if($deviceRes['error'] || $deviceRes['code']){
  487. $this->push_log('thirdapi_register_device_response_error',$deviceRes);
  488. return false;
  489. }
  490. $this->push_log('thirdapi_register_device_response_success',$deviceRes);
  491. return true;
  492. }
  493. private function getThirdRoutes( $imei, $option ){
  494. /*
  495. {
  496. "page": 0,
  497. "size": 6000,
  498. "total": 8,
  499. "content": [{
  500. "collectDt": "2021-07-07 10:33:39",
  501. "receiveAt": "2021-07-07 10:33:39",
  502. "lat": "40.02577751048506",
  503. "lon": "116.35762812669113",
  504. "battery": 91,
  505. "positionType": 2,
  506. "imei": "71041607133",
  507. "isOnline": null
  508. }]
  509. }
  510. */
  511. if (!$imei) {
  512. $this->push_log('thirdapi_devicelocation_curl_error', 'imei 为空');
  513. return false;
  514. }
  515. $tokenInfo = $this->getThirdTokenInfo();
  516. if(!$tokenInfo){
  517. return false;
  518. }
  519. $pageNo = $option['pageNo'] ? $option['pageNo'] : 0;
  520. $pageSize = $option['pageSize'] ?$option['pageSize']: 6000;
  521. $startTime = isset($option['startTime']) ? $option['startTime'] * 1000 : '';
  522. $endTime = isset($option['endTime']) ? $option['endTime'] * 1000 : '';
  523. $positionTypes = $option['positionTypes'] ? $option['positionTypes']: '';
  524. $headers[] = "Content-Type: application/json";
  525. $headers[] = "Authorization: ". $tokenInfo['token'];
  526. $url = 'http://rinlink-a18.beijing-cn-k8s-test.rinlink.com/devicedata/location/filter?imei='.$imei.'&pageNo='.$pageNo.'&pageSize='.$pageSize.'&startTime='.$startTime.'&endTime='.$endTime.'&positionTypes='.$positionTypes;
  527. //var_dump($url);
  528. $response = $this->http_get($url, $headers);
  529. if (!$response) {
  530. $this->push_log('thirdapi_devicelocation_curl_error', $response);
  531. return false;
  532. }
  533. return json_decode($response, true);
  534. }
  535. private function getThirdLocation( $imei ){
  536. if (!$imei) {
  537. $this->push_log('third_newlocation_curl_error', 'imei 为空');
  538. return false;
  539. }
  540. $tokenInfo = $this->getThirdTokenInfo();
  541. if(!$tokenInfo){
  542. return false;
  543. }
  544. $headers[] = "Content-Type: application/json";
  545. $headers[] = "Authorization: ". $tokenInfo['token'];
  546. $url = 'http://rinlink-a18.beijing-cn-k8s-test.rinlink.com/devicedata/location/'.$imei;
  547. $response = $this->http_get($url, $headers);
  548. if (!$response) {
  549. $this->push_log('third_lastLocation_error', $response);
  550. return false;
  551. }
  552. return json_decode($response, true);
  553. }
  554. private function http_get( $url, $headers ){
  555. $oCurl = curl_init();
  556. if(!$headers){
  557. $headers = [];
  558. }
  559. if(stripos($url,"https://")!==FALSE){
  560. curl_setopt($oCurl, CURLOPT_SSL_VERIFYPEER, FALSE);
  561. curl_setopt($oCurl, CURLOPT_SSL_VERIFYHOST, FALSE);
  562. }
  563. curl_setopt($oCurl, CURLOPT_URL, $url);
  564. curl_setopt($oCurl, CURLOPT_HTTPHEADER, $headers );
  565. curl_setopt($oCurl, CURLOPT_RETURNTRANSFER, 1 );
  566. $sContent = curl_exec($oCurl);
  567. $aStatus = curl_getinfo($oCurl);
  568. if(intval($aStatus["http_code"])==200){
  569. curl_close($oCurl);
  570. return $sContent;
  571. }else{
  572. $this->push_log('thirdapi_token_curl_error',curl_error($oCurl));
  573. curl_close($oCurl);
  574. return false;
  575. }
  576. }
  577. public function sendSmsCode( ){
  578. header('Access-Control-Allow-Origin: *');
  579. $postData = json_decode(file_get_contents('php://input'), true) ?:[];
  580. if (!$postData['phone']) {
  581. json_fail('手机号码不能为空');
  582. }
  583. if (!preg_match('/^1[3456789]\d{9}$/', $postData['phone'])) {
  584. json_fail('手机号码格式不正确');
  585. }
  586. // 是否重置密码
  587. $isReset = $postData['isReset'];
  588. if ($postData['userType'] == 'personal') { // 个人用户
  589. $identify = 'personal';
  590. } elseif ($postData['userType'] == 'group' && $postData['deviceType'] == 'badge') { // 团体徽章用户
  591. $identify = 'group_badge_user';
  592. } elseif ($postData['userType'] == 'group' && $postData['deviceType'] == 'card') { // 团体卡牌用户
  593. $identify = 'group_card_user';
  594. } else {
  595. json_fail('暂不支持的用户类型');
  596. }
  597. // 注册时检测
  598. if (!$isReset && $identify == 'group_card_user') {
  599. json_fail('暂不支持的注册用户类型');
  600. }
  601. // 获取角色id
  602. $roleId = M('roles')->where(['identify' => $identify])->getField('id');
  603. // 判断角色、号码是否已注册
  604. $userinfo = M('users')->alias('a')->where(['username'=>$postData['phone']])->join("INNER JOIN user_has_roles b ON a.id = b.uid AND b.role_id = {$roleId}")->find();
  605. // 重置密码时
  606. if ($isReset && empty($userinfo)) {
  607. json_fail('该号码未注册');
  608. } elseif (!$isReset && $userinfo) {
  609. json_fail('该号码已注册');
  610. }
  611. $sms_code_mode = M('sms_verification_code'); // 短信验证码模型
  612. // 防盗刷IP地址检测
  613. $todayTime = strtotime(date('Y-m-d'));
  614. $where = ['access_ip' => $_SERVER['REMOTE_ADDR'], 'created_at' => ['GT', $todayTime]];
  615. $count = $sms_code_mode->where($where)->count();
  616. if ($count >= 10) {
  617. json_fail('已达到当日获取次数上限');
  618. }
  619. // 获取短信配置
  620. $rlyunId = M('sms_config')->where(['name' => 'rlyun'])->getField('id');
  621. $smsConfig = M('sms_config')->where(['pid' => $rlyunId])->getField('key,value');
  622. if (empty($smsConfig)) {
  623. json_fail('获取短信配置失败');
  624. }
  625. // 获取短信验证码模板信息
  626. $where = ['operator' => 'rlyun', 'code' => 'verification_code'];
  627. $tmpInfo = M('sms_template')->where($where)->find();
  628. if (empty($tmpInfo)) {
  629. json_fail('获取短信验证码模板信息失败');
  630. }
  631. // 生成验证码
  632. $code = rand(0, 9999);
  633. $code = str_pad($code, 4, '0',STR_PAD_LEFT);
  634. // 保存验证码
  635. $time = time();
  636. $saveData = [
  637. 'mobile' => $postData['phone'],
  638. 'code' => $code,
  639. 'access_ip' => $_SERVER['REMOTE_ADDR'],
  640. 'created_at' => $time,
  641. 'updated_at' => $time,
  642. ];
  643. M()->startTrans(); // 开启事务
  644. $res = $sms_code_mode->createAdd($saveData);
  645. if ($res === false) {
  646. M()->rollback();
  647. json_fail('发送失败,请稍后重试');
  648. }
  649. //M()->commit();
  650. //json_success('测试,不发短信,看数据库');
  651. // 发送短信验证码
  652. $content = str_replace('{1}', $code, $tmpInfo['content']);
  653. $content = str_replace('{2}', '5分钟', $content);
  654. $contentData = [
  655. 'tplno' => $tmpInfo['identify'],
  656. 'tpldata' => [ $code, '5分钟' ],
  657. //'tpldata' => $content, // error test
  658. 'info' => $content,
  659. ];
  660. //$res = (new \Jms\Sms\RlyuntxV100)->send($postData['phone'], $contentData, $smsConfig);
  661. $res = send_sms_with_config($postData['phone'], $contentData, $smsConfig);
  662. if (!$res['success']) {
  663. M()->rollback();
  664. $res = M('sms_send_log')->add($res['data']);
  665. json_fail($res['message'] ?: '发送失败');
  666. }
  667. M()->commit();
  668. json_success($res['message']);
  669. }
  670. public function getAlarmTypeOptions( ){
  671. header('Access-Control-Allow-Origin: *');
  672. $typeid = M('sys_dict_type')->where(['code' => 'AlarmType'])->getField('id');
  673. $options = M('sys_dict_data')->field('id, value as text, code as value')->where(['type_id' => $typeid])->select();
  674. if(!$options){
  675. json_fail('获取告警选项失败');
  676. }
  677. json_success('获取选项成功', $options);
  678. //AlarmType
  679. }
  680. private function isValidSmsCode( $mobile, $code ){
  681. if (!$mobile) {
  682. return ['success' => false, 'message' => '手机号码不存在'];
  683. }
  684. if (!$code) {
  685. return ['success' => false, 'message' => '验证码不存在'];
  686. }
  687. // 根据手机号码和验证码查询最后一次验证码
  688. $sms_verification_code_model = M('sms_verification_code');
  689. $cond = [ 'mobile' => $mobile, 'code' => $code ];
  690. $info = $sms_verification_code_model->where($cond)->order('created_at', 'desc')->find();
  691. // 不存在
  692. if (empty($info)) {
  693. return ['success' => false, 'message' => '验证失败,请确保手机号码和验证码输入无误'];
  694. }
  695. // 超过时间(暂定5分钟)
  696. $valid_time = 60 * 5;
  697. if (time() - $info['created_at'] > $valid_time) {
  698. return ['success' => false, 'message' => '验证码已失效'];
  699. }
  700. // 超过使用次数(暂定3次)
  701. if ($info['use_times'] >= 3) {
  702. return ['success' => false, 'message' => '验证码已失效'];
  703. }
  704. // 可以使用,使用次数+1
  705. $cond = ['id' => $info['id']];
  706. $res = $sms_verification_code_model->where($cond)->setInc('use_times');
  707. if ($res === false) {
  708. return ['success' => false, 'message' => '操作失败,请重试'];
  709. }
  710. return ['success' => true, 'message' => '验证码有效'];
  711. }
  712. public function userBindDevice( ){
  713. header('Access-Control-Allow-Origin: *');
  714. $openid = I('get.openid');
  715. $userid = I('get.userid');
  716. //检测登录状态
  717. $res=$this->checkLoginState($openid,$userid);
  718. if(!$res['status']){
  719. json_fail($res['message']);
  720. }
  721. // 通过手机号和短信验证码注册
  722. $data = json_decode( file_get_contents("php://input") ,true);
  723. // 用户类型:个人(personal)、团体(group)
  724. $userType = $data['userType'];
  725. // 设备类型:卡牌(card)、徽章(badge)
  726. $deviceType = $data['deviceType'];
  727. // 团体卡牌用户(group_card_user) 不可注册
  728. // 个人用户(personal),团体徽章用户(group_badge_user) 可注册
  729. if ($userType == 'personal') { // 个人用户
  730. $identify = 'personal';
  731. } elseif ($userType == 'group' && $deviceType == 'badge') { // 团体徽章用户
  732. $identify = 'group_badge_user';
  733. } elseif ($userType == 'group' && $deviceType == 'card') { // 团体卡牌用户
  734. $identify = 'group_card_user';
  735. } else {
  736. json_fail('未知用户类型');
  737. }
  738. if ($identify == 'group_card_user') {
  739. json_fail('无绑定设备权限');
  740. }
  741. //$data['imei'],$data['user_no'],$data['username']
  742. if(!$data['imei'] ){
  743. json_fail('缺少IMEI参数');
  744. }
  745. //先查询设备信息 看是否被绑定
  746. $where = array('imei'=>$data['imei']);
  747. $device_info=M('devices')->where($where)->find();
  748. if(!$device_info){
  749. json_fail('设备不存在,请确认输入无误');
  750. }
  751. if($device_info['user_id']){
  752. json_fail('设备已被绑定');
  753. }
  754. if ($identify == 'group_badge_user' && $device_info['device_type'] != 1 ) {
  755. json_fail('无法绑定该类型的设备');
  756. }
  757. $userType = $data['userType'];
  758. $device_name = '';
  759. if ($data['device_name']) {
  760. $device_name = $data['device_name'];
  761. } elseif ($data['username']) {
  762. $device_name = $data['username'];
  763. } else {
  764. $device_name = '用户'. substr($data['imei'], -4);
  765. }
  766. $save_data=array(
  767. 'device_name' => $device_name,
  768. 'user_id'=>$userid,
  769. 'use_state'=>1,
  770. );
  771. M()->startTrans();
  772. if ($identify == 'group_badge_user'){
  773. //团体用户 绑定设备 并绑定用户信息
  774. if( !$data['user_no'] || !$data['username'] ){
  775. json_fail('用户姓名和编号不能为空');
  776. }
  777. // 第一次绑定:将 badgeuser 中的 department_id 赋给 users 的 department_id,之后将只能绑定该部门下的设备
  778. // badge_cond
  779. $badge_cond = ['user_no'=>$data['user_no'], 'username'=>$data['username']];
  780. $userinfo = M('users')->where(['id'=>$userid])->find();
  781. if ($userinfo['department_id']) {
  782. $badge_cond['department_id'] = $userinfo['department_id'];
  783. }
  784. $badge_info = M('badgeuser')->where($badge_cond)->find();
  785. if(!$badge_info){
  786. json_fail('绑定用户不存在');
  787. }
  788. if ($badge_info['is_used']) {
  789. json_fail('该用户已绑定');
  790. }
  791. // 检测设备与用户是否在同一部门
  792. if ($device_info['department_id'] != $badge_info['department_id']) {
  793. json_fail('用户与设备所属部门不一致');
  794. }
  795. $update_data=array('is_used'=>1);
  796. //$badgeRes=M('badgeuser')->createSave(array('id'=>$badge_info['uid']),$update_data);
  797. // 修改徽章用户状态
  798. $badgeRes = M('badgeuser')->where(array('id'=>$badge_info['id']))->setField($update_data);
  799. if(!$badgeRes){
  800. M()->rollback();
  801. json_fail('绑定用户失败');
  802. }
  803. $save_data['badge_user_id']=$badge_info['id'];
  804. // 设置登录用户部门
  805. if (!$userinfo['department_id']) {
  806. $res = M('users')->where(['id'=>$userid])->setField(['department_id'=>$badge_info['department_id']]);
  807. if($res === false){
  808. M()->rollback();
  809. json_fail('设置用户部门失败');
  810. }
  811. }
  812. }
  813. $devRes=M('devices')->createSave(array('id'=>$device_info['id']),$save_data);
  814. if(!$devRes){
  815. M()->rollback();
  816. json_fail('绑定设备失败');
  817. }
  818. //未同步设备需要先同步
  819. if($device_info['sync_status']!=1){
  820. $result=$this->addToVoiceCenter($device_info['imei']);
  821. if(!$result['success']){
  822. create_log($device_info['imei'].'绑定时同步失败 message: '.$result['messaget'], 'AddVoiceCenter');
  823. M()->rollback();
  824. json_fail('绑定设备失败');
  825. }
  826. }
  827. M()->commit();
  828. json_success('绑定成功',$userid);
  829. }
  830. public function getUserFences( ){
  831. //user_has_students
  832. header('Access-Control-Allow-Origin: *');
  833. $userid =intval(I('get.userid'));
  834. if(!$userid){
  835. json_fail('获取不到你的用户标识,请重新登陆');
  836. }
  837. $field = 'id, name, fence_shape as shape, creator_id as userid, is_check_in as inFenceAlarm, is_check_out as outFenceAlarm, fence_info as fenceInfo, sent_interval';
  838. $res = M('fences')->field($field)->where(['creator_id' => $userid, 'fence_type' => 1])->select();
  839. if(!$res){
  840. json_fail('查询不到用户围栏');
  841. }
  842. foreach($res as &$v){
  843. $v['inFenceAlarm'] = (bool)($v['inFenceAlarm']);
  844. $v['outFenceAlarm'] = (bool)($v['outFenceAlarm']);
  845. $v['fenceInfo'] = json_decode($v['fenceInfo'], true);
  846. $convPoint = (new \Jms\Algo\Geometry())->convertBd09ToGcj02($v['fenceInfo']['center']['lat'], $v['fenceInfo']['center']['lng']);
  847. $v['fenceInfo']['center']['lat'] = $convPoint['lat'];
  848. $v['fenceInfo']['center']['lng'] = $convPoint['lng'];
  849. }
  850. json_success('查询成功', $res);
  851. }
  852. public function changeUserFenceAlarmStatus( ){
  853. //user_has_students
  854. header('Access-Control-Allow-Origin: *');
  855. $post_data = file_get_contents('php://input');
  856. $post_data = json_decode($post_data, true);
  857. $fenceId = $post_data['id'];
  858. if(!$fenceId){
  859. json_fail('获取不到围栏标识,请刷新下');
  860. }
  861. $alarmType = $post_data['alarmType'];
  862. $value = $post_data['value'];
  863. if(is_null($value) ){
  864. json_fail('获取不到告警标识值');
  865. }
  866. $saveData = [];
  867. if($alarmType == 'in'){
  868. $saveData['is_check_in'] = $value;
  869. }else{
  870. $saveData['is_check_out'] = $value;
  871. }
  872. $res = M('fences')->where(['id' => $fenceId])->save($saveData);
  873. if(!res){
  874. json_fail('修改告警状态失败');
  875. }
  876. json_success('修改告警状态成功');
  877. }
  878. public function updateDeviceInfo( ){
  879. header('Access-Control-Allow-Origin: *');
  880. $openid = I('get.openid');
  881. $userid = I('get.userid');
  882. //检测登录状态
  883. $res=$this->checkLoginState($openid,$userid);
  884. if(!$res['status']){
  885. json_fail($res['message']);
  886. }
  887. $data = json_decode( file_get_contents("php://input") ,true);
  888. $device_id=$data['device_id'];
  889. if(!$device_id){
  890. json_fail('缺少设备ID');
  891. }
  892. $device_name=$data['device_name'];
  893. if(!$device_name){
  894. json_fail('缺少修改信息');
  895. }
  896. $cond=array('id'=>$device_id);
  897. $res=M('devices')->createSave($cond,array('device_name'=>$device_name));
  898. if(!$res){
  899. json_fail('修改失败');
  900. }
  901. json_success('修改成功',$list);
  902. }
  903. public function getSystemFences( ){
  904. //user_has_students
  905. header('Access-Control-Allow-Origin: *');
  906. $userid =intval(I('get.userid'));
  907. if(!$userid){
  908. json_fail('获取不到你的用户标识,请重新登陆');
  909. }
  910. $userBelongDep = M('users')->where(['id' => $userid ])->getField('department_id');
  911. if(!$userBelongDep){
  912. json_fail('查询不到用户归属组织');
  913. }
  914. $departIds = M('departments')->where(['id' => $userBelongDep ])->getField('level');
  915. if($departIds){
  916. $departIds = explode('-', $departIds);
  917. }else{
  918. $departIds =[];
  919. }
  920. array_push($departIds, $userBelongDep);
  921. $typeid = M('sys_dict_type')->where(['code' =>'FenceType'])->getField('id');
  922. $fenceTypeAssoc = M('sys_dict_data')->where(['type_id' => $typeid])->getField('code, value');
  923. $fenceCond = [
  924. 'fence_type' => ['in', [0, 2]],
  925. 'departments' => ['in', $departIds]
  926. ];
  927. $field = 'fences.id, name, fence_shape as shape,fences.creator_id as userid, is_check_in as inFenceAlarm,fence_type, is_check_out as outFenceAlarm, fence_info as fenceInfo, departments.department_name';
  928. $res = M('fences')->field($field)
  929. ->join('departments on fences.departments = departments.id')
  930. ->where($fenceCond)
  931. ->select();
  932. if(!$res){
  933. json_fail('查询不到系统围栏');
  934. }
  935. foreach($res as &$v){
  936. $v['inFenceAlarm'] = (bool)($v['inFenceAlarm']);
  937. $v['outFenceAlarm'] = (bool)($v['inFenceAlarm']);
  938. $v['fence_type_text'] = $fenceTypeAssoc[$v['fence_type']];
  939. }
  940. json_success('查询成功', $res);
  941. }
  942. public function userUnbindDevice( ){
  943. header('Access-Control-Allow-Origin: *');
  944. $openid = I('get.openid');
  945. $userid = I('get.userid');
  946. //检测登录状态
  947. $res=$this->checkLoginState($openid,$userid);
  948. if(!$res['status']){
  949. json_fail($res['message']);
  950. }
  951. // 通过手机号和短信验证码注册
  952. $data = json_decode( file_get_contents("php://input") ,true);
  953. //$data['imei'],$data['user_no'],$data['username']
  954. //先查询设备信息 看是否被绑定
  955. if(!$data['device_id']){
  956. json_fail('缺少设备ID参数');
  957. }
  958. $device_info=M('devices')->where(array('id'=>$data['device_id']))->find();
  959. if(!$device_info){
  960. json_fail('设备不存在,请确认输入无误');
  961. }
  962. $save_data=array(
  963. 'user_id'=>'',
  964. 'badge_user_id'=>'',
  965. 'use_state'=>0,
  966. );
  967. M()->startTrans();
  968. if($device_info['badge_user_id']){
  969. $badRes=M('badgeuser')->createSave(array('id'=>$device_info['badge_user_id']),array('is_used'=>0));
  970. if(!$badRes){
  971. json_fail('解绑失败');
  972. }
  973. }
  974. $devRes=M('devices')->createSave(array('id'=>$device_info['id']),$save_data);
  975. if(!$devRes){
  976. M()->rollback();
  977. json_fail('解绑失败');
  978. }
  979. // 如果没有设备了,置空 department_id
  980. if (!M('devices')->where(['user_id'=>$userid])->count()) {
  981. $res = M('users')->where(['id'=>$userid])->setField(['department_id'=>'']);
  982. if($res === false){
  983. M()->rollback();
  984. json_fail('解绑失败2');
  985. }
  986. }
  987. M()->commit();
  988. json_success('解绑成功',$userid);
  989. }
  990. public function addUserFence( ){
  991. //user_has_students
  992. header('Access-Control-Allow-Origin: *');
  993. $data = json_decode( file_get_contents("php://input") ,true);
  994. $userid =intval($data['userid']);
  995. if(!$userid){
  996. json_fail('获取不到你的用户标识,请重新登陆');
  997. }
  998. $fenceName = $data['fenceName'];
  999. if(!$fenceName){
  1000. json_fail('获取不到围栏名');
  1001. }
  1002. $fenceInfo = $data['fenceInfo'];
  1003. if(!$fenceInfo){
  1004. json_fail('获取不到围栏信息');
  1005. }
  1006. $convPoint = (new \Jms\Algo\Geometry())->convertGcj02ToBd09($fenceInfo['center']['lat'], $fenceInfo['center']['lng']);
  1007. $fenceInfo['center']['lat'] = $convPoint['lat'];
  1008. $fenceInfo['center']['lng'] = $convPoint['lng'];
  1009. $saveData = [
  1010. 'creator_id' => $userid,
  1011. 'name' => $fenceName,
  1012. 'push_users' => json_encode([$userid]),
  1013. 'fence_shape' => 'circle',
  1014. 'fence_type' => 1,
  1015. 'fence_info' => json_encode($fenceInfo),
  1016. 'created_at' => time(),
  1017. 'created_at' => time()
  1018. ];
  1019. $res = M('fences')->add($saveData);
  1020. if(!$res){
  1021. json_fail('保存入库失败');
  1022. }
  1023. json_success('保存入库成功');
  1024. }
  1025. private function getWeixinAccessToken( ){
  1026. $token = (new \Jiaruan\WxTmp())->getAccessToken();
  1027. return $token;
  1028. /*
  1029. $appid= C('WECHAT_APPID');
  1030. $appSecret = C('WECHAT_APPSECRET');
  1031. $accessToken = S('wx_pub_accessToken');
  1032. if(!$accessToken){
  1033. $ch = curl_init();
  1034. curl_setopt($ch, CURLOPT_URL, 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid='.$appid.'&secret='.$appSecret);
  1035. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  1036. $output = json_decode(curl_exec($ch), true);
  1037. curl_close($ch);
  1038. if($output['errcode']){
  1039. return $output;
  1040. }
  1041. S('wx_pub_accessToken', $output['access_token'], '7100');
  1042. return $output['access_token'];
  1043. }else{
  1044. return $accessToken;
  1045. }
  1046. */
  1047. }
  1048. public function getAlarmRecords( ){
  1049. header('Access-Control-Allow-Origin: *');
  1050. $post_data = json_decode(file_get_contents('php://input'), true);
  1051. $openid = $post_data['openid'];
  1052. $userid = $post_data['userid'];
  1053. //检测登录状态
  1054. $res = $this->checkLoginState($openid,$userid);
  1055. if(!$res['status']){
  1056. json_fail($res['message']);
  1057. }
  1058. // 获取登录账号部门下所有告警状态的学生数据
  1059. $user_model = M('users');
  1060. $where = ['id' => $userid];
  1061. $userinfo = $user_model->field('id,department_id')->where($where)->find();
  1062. // 获取权限范围内的用户id
  1063. $creator_ids = $this->getRightCreatorIds($userinfo);
  1064. if ($creator_ids === false) {
  1065. json_fail('获取数据失败');
  1066. }
  1067. $limit = isset($post_data['limit']) ? $post_data['limit'] : 10;
  1068. $page = isset($post_data['page']) ? $post_data['page'] : 1;
  1069. // 告警记录条件
  1070. // 初始化条件
  1071. $cond = [];
  1072. $reason = I('get.reason');
  1073. $state = I('get.state');
  1074. $result = I('get.result');
  1075. if ($reason) {
  1076. if ($reason == 'fence') {
  1077. $cond['alarm_reason'] = ['IN', ['fence_in', 'fence_out']];
  1078. } else {
  1079. $cond['alarm_reason'] = $reason;
  1080. }
  1081. } else {
  1082. // 默认只显示 SOS 和围栏告警记录
  1083. $cond['alarm_reason'] = ['IN', ['fence_in', 'fence_out', 'press']];
  1084. }
  1085. if ($state) {
  1086. $cond['state'] = $state;
  1087. }
  1088. if ($result !== '' && is_numeric($result)) {
  1089. $cond['result'] = $result;
  1090. }
  1091. if (is_array($creator_ids)) {
  1092. $cond['creator_id'] = ['IN', $creator_ids];
  1093. }
  1094. // 查出总数量
  1095. $list = [];
  1096. $total = M('alarm_records')->where($cond)->count();
  1097. if ($total) {
  1098. if ($state == 'start' || $state == 'end') {
  1099. $order = "{$state}_time desc";
  1100. } else {
  1101. $order = 'id desc';
  1102. }
  1103. $fields = 'id,device_number,alarm_reason,handler_id,start_time,end_time,state,comment,result';
  1104. $list = M('alarm_records')->field($fields)->where($cond)->limit($limit)->page($page)->order($order)->select() ?: [];
  1105. if (!empty($list)) {
  1106. // alarm_reason,handler_id,result
  1107. // 获取告警类型
  1108. $typeid = M('sys_dict_type')->where(['code' => 'AlarmType'])->getField('id');
  1109. $reason_arr = M('sys_dict_data')->where(['type_id' => $typeid])->getField('code, value');
  1110. // 处理结果
  1111. $result_arr = [
  1112. 0 => '待处理',
  1113. 1 => '已处理',
  1114. 2 => '误报',
  1115. ];
  1116. // 中文转换
  1117. foreach ($list as &$alarm) {
  1118. $alarm['start_time'] = $alarm['start_time'] ? date('Y-m-d H:i:s', $alarm['start_time']) : '';
  1119. $alarm['end_time'] = $alarm['end_time'] ? date('Y-m-d H:i:s', $alarm['end_time']) : '';
  1120. if (is_array($reason_arr)) {
  1121. $alarm['alarm_reason'] = $reason_arr[$alarm['alarm_reason']];
  1122. }
  1123. if (is_numeric($alarm['result'])) {
  1124. $alarm['result'] = $result_arr[$alarm['result']];
  1125. }
  1126. }
  1127. }
  1128. }
  1129. // 返回
  1130. $data = [
  1131. 'total' => $total,
  1132. 'limit' => $limit,
  1133. 'page' => $page,
  1134. 'list' => $list,
  1135. ];
  1136. json_success('获取成功', $data);
  1137. }
  1138. public function getAlarmDetail( ){
  1139. header('Access-Control-Allow-Origin: *');
  1140. $openid = I('get.openid');
  1141. $userid = I('get.userid');
  1142. if(!$userid || $userid == 'undefined' || $userid == 'null'){
  1143. json_fail('获取不到你的用户标识,请重新登陆');
  1144. }
  1145. //检测登录状态
  1146. $res = $this->checkLoginState($openid,$userid);
  1147. if(!$res['status']){
  1148. json_fail($res['message']);
  1149. }
  1150. $alarm_id = I('get.id');
  1151. if (!$alarm_id) {
  1152. json_fail('获取告警信息失败1');
  1153. }
  1154. // 查出告警数据
  1155. $where = ['id' => $alarm_id];
  1156. $alarm_info = M('alarm_records')->where($where)->find();
  1157. if (empty($alarm_info)) {
  1158. json_fail('获取告警信息失败2');
  1159. }
  1160. $report_id = I('get.rid');
  1161. if (!$report_id) {
  1162. json_fail('获取告警信息失败3');
  1163. }
  1164. $where = ['id' => $report_id];
  1165. $alarm_report = M('alarm_report')->where($where)->find();
  1166. if (empty($alarm_report)) {
  1167. json_fail('获取告警信息失败4');
  1168. }
  1169. $alarm_info['address']=$alarm_report['address'];
  1170. // 查出设备信息
  1171. $where = ['imei' => $alarm_info['device_number']];
  1172. $device_info = M('devices')->where($where)->find();
  1173. if (empty($alarm_info)) {
  1174. json_fail('获取告警设备信息失败');
  1175. }
  1176. if ($device_info['online_time'] > $device_info['wifi_online_time']) {
  1177. $device_info['last_online_time'] = date('Y-m-d H:i:s', $device_info['online_time']);
  1178. $device_info['last_location'] = $device_info['longitude'] .','. $device_info['latitude'];
  1179. $res = bmap_geocoding($device_info['latitude'], $device_info['longitude']);
  1180. if($res['success']){
  1181. $device_info['address'] = $res['address'];
  1182. }else{
  1183. $device_info['address']='';
  1184. }
  1185. } elseif ($device_info['online_time'] < $device_info['wifi_online_time']) {
  1186. $device_info['last_online_time'] = date('Y-m-d H:i:s', $device_info['wifi_online_time']);
  1187. $device_info['last_location'] = $device_info['wifi_longitude'] .','. $device_info['wifi_latitude'];
  1188. } else {
  1189. $device_info['last_online_time'] = '0000-00-00 00:00:00';
  1190. $device_info['last_location'] = '';
  1191. $device_info['address']='';
  1192. }
  1193. // 查出设备用户
  1194. if ($device_info['badge_user_id']) {
  1195. $where = ['id' => $device_info['badge_user_id']];
  1196. $user_info = M('badgeuser')->where($where)->find() ?: [];
  1197. } else {
  1198. $where = ['id' => $device_info['user_id']];
  1199. $user_info = M('users')->where($where)->find() ?: [];
  1200. }
  1201. //if (empty($user_info)) {
  1202. //json_fail('获取告警用户信息失败');
  1203. //}
  1204. // 获取紧急联系人
  1205. $where = ['device_id' => $device_info['id']];
  1206. $urgent_list = M('kq_urgent')->where($where)->select() ? : [];
  1207. if (!empty($urgent_list)) {
  1208. $type_id = M('sys_dict_type')->where(['code' => 'Relationships'])->getField('id');
  1209. $ships = M('sys_dict_data')->where(['type_id' => $type_id])->getField('code,value');
  1210. foreach ($urgent_list as $key => &$urgent) {
  1211. $urgent['relationship_text'] = $ships[$urgent['relationship']];
  1212. }
  1213. }
  1214. // 部门名称
  1215. $alarm_info['department_name'] = M('departments')->where(['id' => $user_info['department_id']])->getField('department_name');
  1216. $alarm_info['user_info'] = $user_info;
  1217. $alarm_info['urgent_list'] = $urgent_list;
  1218. $alarm_info['device_info'] = $device_info;
  1219. $alarm_info['device_info']['department_name'] = $alarm_info['department_name'];
  1220. json_success('获取成功', $alarm_info);
  1221. }
  1222. public function handleAlarm( ){
  1223. header('Access-Control-Allow-Origin: *');
  1224. $post_data = json_decode(file_get_contents('php://input'), true);
  1225. $openid = I('get.openid');
  1226. $userid = I('get.userid');
  1227. if(!$userid || $userid == 'undefined' || $userid == 'null'){
  1228. json_fail('获取不到你的用户标识,请重新登陆');
  1229. }
  1230. //检测登录状态
  1231. $res = $this->checkLoginState($openid,$userid);
  1232. if(!$res['status']){
  1233. json_fail($res['message']);
  1234. }
  1235. // result 1-出警,2-误报
  1236. if (!$post_data['result']) {
  1237. json_fail('处理结果不能为空');
  1238. }
  1239. if (!$post_data['comment']) {
  1240. json_fail('处理原因不能为空');
  1241. }
  1242. if (!$post_data['id']) {
  1243. json_fail('未获取到告警信息1');
  1244. }
  1245. $time = time();
  1246. M()->startTrans();
  1247. // 修改前,检测结果是否一致,如果一致不允许重复操作
  1248. $records_model = M('alarm_records');
  1249. $where = ['id' => $post_data['id']];
  1250. $record_info = $records_model->where($where)->field('device_number,result')->find();
  1251. if (empty($record_info)) {
  1252. json_fail('未获取到告警信息2');
  1253. }
  1254. //if ($record_info['result'] > 0) {
  1255. if ($record_info['result'] == $post_data['result']) {
  1256. M()->rollback();
  1257. json_fail('已处理,请勿重复操作');
  1258. }
  1259. $where = ['id' => $post_data['id']];
  1260. $save_data = [
  1261. 'comment' => $post_data['comment'],
  1262. 'result' => $post_data['result'],
  1263. 'handler_id' => $userid,
  1264. 'state' => 'end',
  1265. 'end_time' => $time,
  1266. 'updated_at' => $time,
  1267. ];
  1268. $res = $records_model->createSave($where, $save_data);
  1269. if ($res === false) {
  1270. M()->rollback();
  1271. json_fail('操作失败');
  1272. }
  1273. // 查出设备告警状态
  1274. $where = ['imei' => $record_info['device_number']];
  1275. $device_info = M('devices')->where($where)->field('id,alarm_state')->find();
  1276. if ($device_info['alarm_state'] > 0) {
  1277. // 修改设备状态
  1278. $where = ['id' => $device_info['id']];
  1279. $res = M('devices')->where($where)->setField('alarm_state', 0);
  1280. if (!$res) {
  1281. M()->rollback();
  1282. json_fail('修改设备状态失败');
  1283. }
  1284. }
  1285. M()->commit();
  1286. json_success('操作成功');
  1287. }
  1288. public function editYysProfile( ){
  1289. header('Access-Control-Allow-Origin: *');
  1290. $openid = I('get.openid');
  1291. $userid = I('get.userid');
  1292. //检测登录状态
  1293. $res = $this->checkLoginState($openid,$userid);
  1294. if(!$res['status']){
  1295. json_fail($res['message']);
  1296. }
  1297. $data = json_decode( file_get_contents("php://input") ,true);
  1298. $data = array_map(function($item){
  1299. return trim($item);
  1300. }, $data);
  1301. if (!$data['nickName']) {
  1302. json_fail('昵称不能为空');
  1303. }
  1304. if (!$data['phone']) {
  1305. json_fail('手机号码不能为空');
  1306. }
  1307. if (!preg_match('/^[-_a-zA-Z0-9]{6,16}?$/', $data['phone'])) {
  1308. json_fail('手机号码格式不正确');
  1309. }
  1310. // 修改密码
  1311. if ($data['oldPwd']) {
  1312. if (!$data['newPwd']) {
  1313. json_fail('新密码不能为空');
  1314. }
  1315. if (!$data['confirmNewPwd']) {
  1316. json_fail('确认密码不能为空');
  1317. }
  1318. if ($data['newPwd'] != $data['confirmNewPwd']) {
  1319. json_fail('两次新密码不一致');
  1320. }
  1321. }
  1322. $userCond = array( 'id' => $userid);
  1323. $user_info = M('users')->where($userCond)->find();
  1324. if(!$user_info){
  1325. json_fail('获取用户信息失败');
  1326. }
  1327. if ($user_info['wx_open_id'] != $openid) {
  1328. json_fail('账号可能被其他用户登录,请重新登录');
  1329. }
  1330. if ($data['oldPwd']) {
  1331. if(!password_verify($data['oldPwd'], $user_info['password'])){
  1332. json_fail('原密码不正确');
  1333. }
  1334. }
  1335. $saveData = [
  1336. 'realname' => $data['nickName'],
  1337. 'phone' => $data['phone'],
  1338. ];
  1339. // 有原密码才能修改
  1340. if ($data['oldPwd']) {
  1341. $saveData['password'] = password_hash($data['newPwd'], PASSWORD_DEFAULT);
  1342. }
  1343. $result = M('users')->createSave($userCond, $saveData);
  1344. if(!$result){
  1345. json_fail('修改失败');
  1346. }
  1347. $respData = [
  1348. 'id' => $user_info['id'],
  1349. 'realname' => $data['nickName'],
  1350. 'avatar' => $user_info['avatar'],
  1351. 'phone' => $data['phone'],
  1352. ];
  1353. json_success('修改成功', $respData);
  1354. }
  1355. public function changeAuthorize( ){
  1356. //user_has_students
  1357. header('Access-Control-Allow-Origin: *');
  1358. $imei = I('get.imei');
  1359. if(!$imei){
  1360. json_fail('获取不到设备号');
  1361. }
  1362. $authorize = intval(I('get.authorize') );
  1363. if($authorize !== 0 && $authorize !== 1){
  1364. json_fail('授权状态值不合法');
  1365. }
  1366. $saveData = [
  1367. 'authorize' => $authorize,
  1368. 'updated_at' => time()
  1369. ];
  1370. $res = M('devices')->where(['imei' => $imei])->save($saveData);
  1371. if(!res){
  1372. json_fail('权限修改失败');
  1373. }
  1374. json_success('权限修改成功');
  1375. }
  1376. public function getDeviceInfoSingle( ){
  1377. //user_has_students
  1378. header('Access-Control-Allow-Origin: *');
  1379. $imei = I('get.imei');
  1380. if(!$imei){
  1381. json_fail('获取不到设备号');
  1382. }
  1383. $res = M('devices')->where(['imei' => $imei])->find();
  1384. if(!res){
  1385. json_fail('获取设备信息失败');
  1386. }
  1387. json_success('获取设备信息成功', $res);
  1388. }
  1389. public function getDevices( ){
  1390. // 获取登录用户信息
  1391. $userinfo = $this->getYysLoginUserinfo();
  1392. // 获取权限范围内的用户id
  1393. $creator_ids = $this->getRightCreatorIds($userinfo);
  1394. if ($creator_ids === false) {
  1395. json_fail('获取失败');
  1396. }
  1397. // 获取 POST 数据
  1398. $post_data = json_decode(file_get_contents('php://input'), true);
  1399. $limit = isset($post_data['limit']) ? $post_data['limit'] : 10;
  1400. $page = isset($post_data['page']) ? $post_data['page'] : 1;
  1401. $imei = $post_data['imei'];
  1402. $list = [];
  1403. $cond = [];
  1404. $devices_model = M('devices');
  1405. // 查出总数量
  1406. if (is_array($creator_ids)) {
  1407. $cond['creator_id'] = ['IN', $creator_ids];
  1408. }
  1409. if ($imei) {
  1410. $cond['imei'] = ['LIKE', "%{$imei}%"];
  1411. }
  1412. $total = $devices_model->where($cond)->count();
  1413. if ($total) {
  1414. $list = $devices_model->where($cond)->limit($limit)->page($page)->select() ?: [];
  1415. }
  1416. // 返回
  1417. $data = [
  1418. 'total' => $total,
  1419. 'limit' => $limit,
  1420. 'page' => $page,
  1421. 'list' => $list,
  1422. ];
  1423. json_success('获取成功', $data);
  1424. }
  1425. private function getYysLoginUserinfo( ){
  1426. header('Access-Control-Allow-Origin: *');
  1427. $openid = I('get.openid');
  1428. if(!$openid){
  1429. json_fail('未获取到微信授权信息,请重新点击菜单进入并授权');
  1430. }
  1431. // 微信运营角色
  1432. $where = ['identify' => 'wxyy'];
  1433. $role_id = M('roles')->where($where)->getField('id');
  1434. if (!$role_id) {
  1435. json_fail('未开放微信运营角色');
  1436. }
  1437. // 获取登录账号信息
  1438. $userid = I('get.userid');
  1439. $cond = [
  1440. //'u.wx_open_id' => $openid,
  1441. 'u.id' => $userid,
  1442. ];
  1443. //$userinfo = M('users')->field('id,department_id')->where($where)->find();
  1444. $userinfo = M('users')->alias('u')->field('u.*')->where($cond)->join("INNER JOIN user_has_roles AS r ON u.id = r.uid AND r.role_id = {$role_id}")->find();
  1445. if (!$userinfo) {
  1446. json_fail('获取用户信息失败,请重新登录');
  1447. }
  1448. if ($userinfo['wx_open_id'] != $openid) {
  1449. json_fail('账号可能在其他设备登录,请重新登录');
  1450. }
  1451. return $userinfo;
  1452. }
  1453. public function getDeviceDetail( ){
  1454. header('Access-Control-Allow-Origin: *');
  1455. $userid = I('get.userid');
  1456. if(!$userid || $userid == 'undefined' || $userid == 'null'){
  1457. json_fail('未获取到用户标识,请重新登陆');
  1458. }
  1459. $id = I('get.id');
  1460. if (!$id) {
  1461. json_fail('获取设备信息失败');
  1462. }
  1463. $openid = I('get.openid');
  1464. //检测登录状态
  1465. $res = $this->checkLoginState($openid, $userid);
  1466. if(!$res['status']){
  1467. json_fail($res['message']);
  1468. }
  1469. // 检测是否在查询权限范围
  1470. // 查出设备信息
  1471. $where = ['id' => $id];
  1472. $device_info = M('devices')->where($where)->find() ? : [];
  1473. if (empty($device_info)) {
  1474. json_fail('未获取到设备信息');
  1475. }
  1476. if ($device_info['online_time'] >= $device_info['wifi_online_time']) {
  1477. $device_info['last_online_time'] = date('Y-m-d H:i:s', $device_info['online_time']);
  1478. $convPoint = (new \Jms\Algo\Geometry())->convertBd09ToGcj02($device_info['latitude'],$device_info['longitude']);
  1479. $device_info['last_location'] = $convPoint['lng'] .','. $convPoint['lat'];
  1480. } elseif ($device_info['online_time'] < $device_info['wifi_online_time']) {
  1481. $device_info['last_online_time'] = date('Y-m-d H:i:s', $device_info['wifi_online_time']);
  1482. $convPoint = (new \Jms\Algo\Geometry())->convertBd09ToGcj02($device_info['wifi_latitude'],$device_info['wifi_longitude']);
  1483. $device_info['last_location'] = $convPoint['lng'] .','. $convPoint['lat'];
  1484. } else {
  1485. $device_info['last_online_time'] = '0000-00-00 00:00:00';
  1486. $device_info['last_location'] = '';
  1487. }
  1488. // 查出设备用户
  1489. if ($device_info['badge_user_id']) {
  1490. $where = ['id' => $device_info['badge_user_id']];
  1491. $user_info = M('badgeuser')->where($where)->find() ?: [];
  1492. } else {
  1493. $where = ['id' => $device_info['user_id']];
  1494. $user_info = M('users')->where($where)->find() ?: [];
  1495. }
  1496. //if (empty($user_info)) {
  1497. //json_fail('获取告警用户信息失败');
  1498. //}
  1499. // 获取紧急联系人
  1500. $where = ['device_id' => $device_info['id']];
  1501. $urgent_list = M('kq_urgent')->where($where)->select() ? : [];
  1502. if (!empty($urgent_list)) {
  1503. $type_id = M('sys_dict_type')->where(['code' => 'Relationships'])->getField('id');
  1504. $ships = M('sys_dict_data')->where(['type_id' => $type_id])->getField('code,value');
  1505. foreach ($urgent_list as $key => &$urgent) {
  1506. $urgent['relationship_text'] = $ships[$urgent['relationship']];
  1507. }
  1508. }
  1509. // 部门名称
  1510. $device_info['department_name'] = M('departments')->where(['id' => $user_info['department_id']])->getField('department_name');
  1511. $device_info['user_info'] = $user_info;
  1512. $device_info['urgent_list'] = $urgent_list;
  1513. json_success('获取成功', $device_info);
  1514. }
  1515. public function getWaitHandleAlarmCounts( ){
  1516. // 获取登录用户信息
  1517. $userinfo = $this->getYysLoginUserinfo();
  1518. // 获取权限范围内的用户id
  1519. $creator_ids = $this->getRightCreatorIds($userinfo);
  1520. if ($creator_ids === false) {
  1521. json_fail('获取失败');
  1522. }
  1523. $cond = [
  1524. 'state' => 'start',
  1525. ];
  1526. // 查出总数量
  1527. if (is_array($creator_ids)) {
  1528. $cond['creator_id'] = ['IN', $creator_ids];
  1529. }
  1530. $fields = 'alarm_reason, count(alarm_reason) as count';
  1531. $list = M('alarm_records')->where($cond)->group('alarm_reason')->getField($fields) ?:[];
  1532. json_success('获取成功', $list);
  1533. }
  1534. public function getDevicePositionList( ){
  1535. // 获取登录用户信息
  1536. $userinfo = $this->getYysLoginUserinfo();
  1537. // 获取权限范围内的用户id
  1538. $creator_ids = $this->getRightCreatorIds($userinfo);
  1539. if ($creator_ids === false) {
  1540. json_fail('获取失败');
  1541. }
  1542. $cond = [
  1543. 'use_state' => 1,
  1544. ];
  1545. // 查出总数量
  1546. if (is_array($creator_ids)) {
  1547. $cond['creator_id'] = ['IN', $creator_ids];
  1548. }
  1549. $fields = 'imei,device_name,device_type,battery_level,loc_mode,loc_ploy,online_time,longitude,latitude,wifi_online_time,wifi_longitude,wifi_latitude,alarm_state';
  1550. $list = M('devices')->field($fields)->where($cond)->select() ?: [];
  1551. $resp = [];
  1552. foreach($list as &$locationInfo){
  1553. //new end
  1554. //wifi_online_time
  1555. //wifi_longitude
  1556. //wifi_latitude
  1557. //addr
  1558. $locationInfo['isAlarm'] = $locationInfo['alarm_state'];
  1559. $isWifi = $locationInfo['wifi_online_time'] > $locationInfo['online_time'] || intval($locationInfo['latitude']) < 1 ;
  1560. $locationInfo['time'] = $isWifi ? $locationInfo['wifi_online_time'] : $locationInfo['online_time'];
  1561. $locationInfo['lat'] = $isWifi ? $locationInfo['wifi_latitude'] : $locationInfo['latitude'];
  1562. $locationInfo['lng'] = $isWifi ? $locationInfo['wifi_longitude'] : $locationInfo['longitude'];
  1563. if(!$locationInfo['time']){
  1564. $locationInfo['awayTime'] = '从未在线';
  1565. }else{
  1566. $timeInterval = time() - (int)$locationInfo['time'];
  1567. $locationInfo['awayTime'] = $this->getHumenTime($timeInterval);
  1568. }
  1569. $lngLatAlter = new \Jms\Algo\Geometry();
  1570. if(!$locationInfo['lat'] || !$locationInfo['lng']){
  1571. continue;
  1572. }
  1573. $latLng = $lngLatAlter->convertBd09ToGcj02($locationInfo['lat'], $locationInfo['lng']);
  1574. $locationInfo['lat'] = $latLng['lat'];
  1575. $locationInfo['lng'] = $latLng['lng'];
  1576. $locationInfo['date_time'] = date('Y-m-d H:i:s', $locationInfo['time']);
  1577. array_push($resp, $locationInfo);
  1578. }
  1579. json_success('获取成功', $resp);
  1580. }
  1581. public function getAllFences( ){
  1582. //user_has_students
  1583. header('Access-Control-Allow-Origin: *');
  1584. $userid =intval(I('get.userid'));
  1585. if(!$userid){
  1586. json_fail('获取不到你的用户标识,请重新登陆');
  1587. }
  1588. $field = 'id, name, fence_shape as shape, creator_id as userid, is_check_in as inAlarm, is_check_out as outAlarm, fence_info as info';
  1589. $cond = [
  1590. 'fence_type' => 0,
  1591. 'creator_id' => $userid,
  1592. '_logic' => 'OR'
  1593. ];
  1594. $res = M('fences')->field($field)->where($cond)->select();
  1595. if(!$res){
  1596. json_fail('查询不到可见的围栏');
  1597. }
  1598. foreach($res as &$v){
  1599. $v['inAlarm'] = (bool)($v['inAlarm']);
  1600. $v['outAlarm'] = (bool)($v['outAlarm']);
  1601. $v['info'] = json_decode($v['info'], true);
  1602. }
  1603. json_success('查询成功', $res);
  1604. }
  1605. public function editUserFence( ){
  1606. //user_has_students
  1607. header('Access-Control-Allow-Origin: *');
  1608. $data = json_decode( file_get_contents("php://input") ,true);
  1609. $userid =intval($data['userid']);
  1610. if(!$userid){
  1611. json_fail('获取不到你的用户标识,请重新登陆');
  1612. }
  1613. $fenceId = intval($data['fenceId']);
  1614. $fenceName = $data['fenceName'];
  1615. if(!$fenceName){
  1616. json_fail('获取不到围栏名');
  1617. }
  1618. $fenceInfo = $data['fenceInfo'];
  1619. if(!$fenceInfo){
  1620. json_fail('获取不到围栏信息');
  1621. }
  1622. $convPoint = (new \Jms\Algo\Geometry())->convertGcj02ToBd09($fenceInfo['center']['lat'], $fenceInfo['center']['lng']);
  1623. $fenceInfo['center']['lat'] = $convPoint['lat'];
  1624. $fenceInfo['center']['lng'] = $convPoint['lng'];
  1625. $saveData = [
  1626. 'name' => $fenceName,
  1627. 'fence_shape' => 'circle',
  1628. 'fence_info' => json_encode($fenceInfo),
  1629. 'updated_at' => time()
  1630. ];
  1631. $res = M('fences')->where(['id' => $fenceId])->save($saveData);
  1632. if(!$res){
  1633. json_fail('保存入库失败');
  1634. }
  1635. json_success('保存入库成功');
  1636. }
  1637. public function getRelationshipList( ){
  1638. header('Access-Control-Allow-Origin: *');
  1639. // 查出 Relationships id
  1640. $where = array('code' => 'Relationships');
  1641. $type_id = M('sys_dict_type')->where($where)->getField('id');
  1642. if (empty($type_id)) {
  1643. json_fail('获取失败');
  1644. }
  1645. $where = array('type_id' => $type_id);
  1646. $list = M('sys_dict_data')->field('code as id, value as text')->where($where)->select();
  1647. if (empty($list)) {
  1648. json_fail('获取失败');
  1649. }
  1650. json_success('获取成功', $list);
  1651. }
  1652. public function editProfile( ){
  1653. header('Access-Control-Allow-Origin: *');
  1654. $openid = I('get.openid');
  1655. $userid = I('get.userid');
  1656. //检测登录状态
  1657. $res = $this->checkLoginState($openid,$userid);
  1658. if(!$res['status']){
  1659. json_fail($res['message']);
  1660. }
  1661. $data = json_decode( file_get_contents("php://input") ,true);
  1662. $data = array_map(function($item){
  1663. return trim($item);
  1664. }, $data);
  1665. if (!$data['nickName']) {
  1666. json_fail('昵称不能为空');
  1667. }
  1668. if (!$data['phone']) {
  1669. json_fail('手机号码不能为空');
  1670. } else {
  1671. if (!preg_match('/^[-_a-zA-Z0-9]{6,16}?$/', $data['phone'])) {
  1672. json_fail('手机号码格式不正确');
  1673. }
  1674. }
  1675. // 修改密码
  1676. if ($data['oldPwd']) {
  1677. if (!$data['newPwd']) {
  1678. json_fail('新密码不能为空');
  1679. }
  1680. if (!$data['confirmNewPwd']) {
  1681. json_fail('确认密码不能为空');
  1682. }
  1683. if ($data['newPwd'] != $data['confirmNewPwd']) {
  1684. json_fail('两次新密码不一致');
  1685. }
  1686. }
  1687. $userCond = array( 'id' => $userid);
  1688. $user_info = M('users')->where($userCond)->find();
  1689. if(!$user_info){
  1690. json_fail('获取用户信息失败');
  1691. }
  1692. if ($user_info['wx_open_id'] != $openid) {
  1693. json_fail('账号可能被其他用户登录,请重新登录');
  1694. }
  1695. if ($data['oldPwd']) {
  1696. if(!password_verify($data['oldPwd'], $user_info['password'])){
  1697. json_fail('原密码不正确');
  1698. }
  1699. }
  1700. $saveData = [
  1701. 'realname' => $data['nickName'],
  1702. 'phone' => $data['phone'],
  1703. ];
  1704. // 有原密码才能修改
  1705. if ($data['oldPwd']) {
  1706. $saveData['password'] = password_hash($data['newPwd'], PASSWORD_DEFAULT);
  1707. }
  1708. $result = M('users')->createSave($userCond, $saveData);
  1709. if(!$result){
  1710. json_fail('修改失败');
  1711. }
  1712. $respData = [
  1713. 'id' => $user_info['id'],
  1714. 'realname' => $data['nickName'],
  1715. 'avatar' => $user_info['avatar'],
  1716. 'phone' => $data['phone'],
  1717. ];
  1718. json_success('修改成功', $respData);
  1719. }
  1720. public function getLastPositionSingle( ){
  1721. header('Access-Control-Allow-Origin: *');
  1722. $imei = I('get.imei');
  1723. if(!$imei){
  1724. json_fail('服务端未检测到设备编号');
  1725. }
  1726. $locationInfo = M('devices')->where(['imei' => $imei])->find();
  1727. if(!$locationInfo){
  1728. json_fail('查询不到该设备当前信息哦!');
  1729. }
  1730. //wifi_online_time
  1731. //wifi_longitude
  1732. //wifi_latitude
  1733. //addr
  1734. $locationInfo['isAlarm'] = $locationInfo['alarm_status'];
  1735. $isWifi = $locationInfo['wifi_online_time'] > $locationInfo['online_time'] || intval($locationInfo['latitude']) < 1 ;;
  1736. $locationInfo['time'] = $isWifi ? $locationInfo['wifi_online_time'] : $locationInfo['online_time'];
  1737. $locationInfo['lat'] = $isWifi ? $locationInfo['wifi_latitude'] : $locationInfo['latitude'];
  1738. $locationInfo['lng'] = $isWifi ? $locationInfo['wifi_longitude'] : $locationInfo['longitude'];
  1739. $locationInfo['address'] = $locationInfo['address'];
  1740. //
  1741. if(!$locationInfo['time']){
  1742. $locationInfo['awayTime'] = '从未在线';
  1743. }else{
  1744. $timeInterval = time() - (int)$locationInfo['time'];
  1745. $locationInfo['awayTime'] = $this->getHumenTime($timeInterval);
  1746. }
  1747. $lngLatAlter = new \Jms\Algo\Geometry();
  1748. $latLng = $lngLatAlter->convertBd09ToGcj02($locationInfo['lat'], $locationInfo['lng']);
  1749. $locationInfo['lat'] = $latLng['lat'];
  1750. $locationInfo['lng'] = $latLng['lng'];
  1751. $locationInfo['date_time'] = date('Y-m-d H:i:s', $locationInfo['time']);
  1752. json_success('查询成功', $locationInfo);
  1753. }
  1754. public function yysLogin( ){
  1755. header('Access-Control-Allow-Origin: *');
  1756. //json_fail('登录失败');
  1757. $openid = I('get.openid');
  1758. if(!$openid){
  1759. json_fail('未授权,请关闭当前页面重新进入');
  1760. }
  1761. $data = json_decode( file_get_contents("php://input") ,true);
  1762. // 微信运营角色
  1763. $where = ['identify' => 'wxyy'];
  1764. $role_id = M('roles')->where($where)->getField('id');
  1765. if (!$role_id) {
  1766. json_fail('未开放微信运营角色');
  1767. }
  1768. $cond = array(
  1769. 'username' => $data['username'],
  1770. );
  1771. $user_info = M('users')->alias('u')->where($cond)->join("INNER JOIN user_has_roles AS r ON u.id = r.uid AND r.role_id = {$role_id}")->find();
  1772. if(!$user_info){
  1773. json_fail('无登录权限或账号、密码错误');
  1774. }
  1775. if(!password_verify($data['password'], $user_info['password'])){
  1776. json_fail('账号或密码错误');
  1777. }
  1778. if($user_info['wx_open_id'] != $openid){
  1779. $update = array(
  1780. 'wx_open_id' => $openid,
  1781. 'last_login_ip' => $_SERVER['REMOTE_ADDR'],
  1782. 'last_login_time' => time(),
  1783. );
  1784. $result = M('users')->createSave(array('id'=>$user_info['uid']),$update);
  1785. if(!$result){
  1786. json_fail('登陆失败');
  1787. }
  1788. }
  1789. //如果当前openid与其他账号openid相同,清空其他表中openid
  1790. /*
  1791. $where = array(
  1792. 'wx_open_id' => $openid,
  1793. 'id' => ['NEQ', $user_info['id']],
  1794. );
  1795. $result = M('users')->createSave($where,['wx_open_id'=>'']);
  1796. if(!$result){
  1797. json_fail('登陆失败');
  1798. }
  1799. */
  1800. $res = array(
  1801. 'id'=>$user_info['uid'],
  1802. 'realname'=>$user_info['realname'],
  1803. 'avatar' => $user_info['avatar'],
  1804. 'phone'=>$user_info['phone'],
  1805. );
  1806. json_success('登录成功', $res);
  1807. }
  1808. public function getWaitHandleAlarmData( ){
  1809. header('Access-Control-Allow-Origin: *');
  1810. $post_data = json_decode(file_get_contents('php://input'), true);
  1811. $openid = $post_data['openid'];
  1812. $userid = $post_data['userid'];
  1813. //检测登录状态
  1814. $res = $this->checkLoginState($openid,$userid);
  1815. if(!$res['status']){
  1816. json_fail($res['message']);
  1817. }
  1818. // 获取登录账号部门下所有告警状态的学生数据
  1819. $user_model = M('users');
  1820. $where = ['id' => $userid];
  1821. $userinfo = $user_model->field('id,department_id')->where($where)->find();
  1822. // 获取权限范围内的用户id
  1823. $creator_ids = $this->getRightCreatorIds($userinfo);
  1824. if ($creator_ids === false) {
  1825. json_fail('获取数据失败');
  1826. }
  1827. $limit = isset($post_data['limit']) ? $post_data['limit'] : 10;
  1828. $page = isset($post_data['page']) ? $post_data['page'] : 1;
  1829. // 查出告警学生id
  1830. $cond = [
  1831. 'alarm_status' => 1,
  1832. ];
  1833. if (is_array($creator_ids)) {
  1834. $cond['creator_id'] = ['IN', $creator_ids];
  1835. }
  1836. // 查出总数量
  1837. $student_list = [];
  1838. $total = $user_model->where($cond)->count();
  1839. if ($total) {
  1840. $fields = 'id,avatar,realname,sex,age,active_rfid,student_no,online_time,last_station_mac,longitude,latitude';
  1841. $student_list = $user_model->field($fields)->where($cond)->limit($post_data['limit'])->page($post_data['page'])->select() ?: [];
  1842. }
  1843. // 返回
  1844. $data = [
  1845. 'total' => $total,
  1846. 'limit' => $limit,
  1847. 'page' => $page,
  1848. 'list' => $student_list,
  1849. ];
  1850. json_success('获取成功', $data);
  1851. }
  1852. private function getRightCreatorIds( $userinfo ){
  1853. $uid = $userinfo['id'];
  1854. $dept_id = $userinfo['department_id'];
  1855. // 非系统角色
  1856. $where = ['identify' => ['IN', 'personal,group_badge_user,group_card_user']];
  1857. $devides_user_ids = M('roles')->where($where)->getField('id', true);
  1858. // 查出拥有系统角色
  1859. $where = [
  1860. 'uid' => $uid,
  1861. 'role_id' => ['NOT IN', $devides_user_ids],
  1862. ];
  1863. $role_ids = M('user_has_roles')->where($where)->getField('role_id', true);
  1864. if (empty($role_ids)) {
  1865. return false;
  1866. }
  1867. $user_ids = [];
  1868. $is_all = false; // 全部数据
  1869. // 查出角色拥有权限
  1870. $where = ['id' => ['IN', $role_ids]];
  1871. $range_list = M('roles')->distinct(true)->where($where)->getField('data_range', true);
  1872. if (empty($range_list)) {
  1873. return false;
  1874. }
  1875. // 根据角色权限查出
  1876. $depart_model = M('departments');
  1877. foreach($range_list as $range) {
  1878. switch ($range) {
  1879. case '1': // 全部数据
  1880. $is_all = true;
  1881. break;
  1882. case '2': // 自定义数据
  1883. case '3': // 本人数据
  1884. $user_ids[] = $uid;
  1885. break;
  1886. case '4': // 部门数据
  1887. $user_ids = array_merge($user_ids, $this->getUserIdsByDepartmentId([$dept_id]));
  1888. break;
  1889. case '5': // 部门及以下数据
  1890. // 查一下下级部门
  1891. // REGEXP '(^76$)|(^76-)'
  1892. //$departmentIds = $depart_model->where(['parent_id' => $dept_id])->getField('id', true);
  1893. $cond = ['level' => ['EXP',"REGEXP '(^{$dept_id}$)|(^{$dept_id}-)'"]];
  1894. $departmentIds = $depart_model->where($cond)->getField('id', true) ?: [];
  1895. $departmentIds[] = $dept_id;
  1896. $user_ids = array_merge([$uid], $this->getUserIdsByDepartmentId($departmentIds));
  1897. break;
  1898. default:
  1899. break;
  1900. }
  1901. // 如果有全部数据 直接跳出
  1902. if ($is_all) {
  1903. break;
  1904. }
  1905. }
  1906. if ($is_all) {
  1907. return true;
  1908. }
  1909. return array_unique(array_filter($user_ids));
  1910. }
  1911. private function getUserIdsByDepartmentId( $id ){
  1912. // 取出非设备用户 (roles identify not in 'personal,group_badge_user,group_card_user')
  1913. $where = ['identify' => ['IN', 'personal,group_badge_user,group_card_user']];
  1914. $devide_role_ids = M('roles')->where($where)->getField('id', true);
  1915. $devide_role_ids = join(',', $devide_role_ids);
  1916. $cond = [
  1917. 'u.department_id' => ['IN', $id],
  1918. ];
  1919. $ids = M('users')->alias('u')
  1920. ->field('u.id')
  1921. ->where($cond)
  1922. ->join("INNER JOIN user_has_roles r ON u.id=r.uid AND r.role_id NOT IN ({$devide_role_ids})")
  1923. ->select() ? : [];
  1924. return array_unique(array_column($ids, 'id'));
  1925. }
  1926. public function getConfirmAlarmData( ){
  1927. header('Access-Control-Allow-Origin: *');
  1928. $post_data = json_decode(file_get_contents('php://input'), true);
  1929. $openid = $post_data['openid'];
  1930. if(!$openid){
  1931. json_fail('未获取到微信授权信息,请重新点击菜单进入并授权');
  1932. }
  1933. $limit = isset($post_data['limit']) ? $post_data['limit'] : 10;
  1934. $page = isset($post_data['page']) ? $post_data['page'] : 1;
  1935. // 获取登录账号部门下所有告警状态的学生数据
  1936. $where = ['wx_open_id' => $openid];
  1937. $userinfo = M('users')->field('id,department_id')->where($where)->find();
  1938. // 获取权限范围内的用户id
  1939. $creator_ids = $this->getRightCreatorIds($userinfo);
  1940. if ($creator_ids === false) {
  1941. json_fail('获取失败');
  1942. }
  1943. // 查出告警学生id
  1944. $cond = [
  1945. 'result' => 1,
  1946. ];
  1947. if (is_array($creator_ids)) {
  1948. $cond['creator_id'] = ['IN', $creator_ids];
  1949. }
  1950. // 查出总数量
  1951. $record_list = [];
  1952. $alarm_handle_records_model = M('alarm_handle_records');
  1953. $total = $alarm_handle_records_model->where($cond)->count();
  1954. if ($total) {
  1955. $record_list = $alarm_handle_records_model->where($cond)->order('created_at desc')->limit($post_data['limit'])->page($post_data['page'])->select() ?: [];
  1956. }
  1957. // 返回
  1958. $data = [
  1959. 'total' => $total,
  1960. 'limit' => $limit,
  1961. 'page' => $page,
  1962. 'list' => $record_list,
  1963. ];
  1964. json_success('获取成功', $data);
  1965. }
  1966. public function getCancelAlarmData( ){
  1967. header('Access-Control-Allow-Origin: *');
  1968. $post_data = json_decode(file_get_contents('php://input'), true);
  1969. $openid = $post_data['openid'];
  1970. if(!$openid){
  1971. json_fail('未获取到微信授权信息,请重新点击菜单进入并授权');
  1972. }
  1973. $limit = isset($post_data['limit']) ? $post_data['limit'] : 10;
  1974. $page = isset($post_data['page']) ? $post_data['page'] : 1;
  1975. // 获取登录账号部门下所有告警状态的学生数据
  1976. $where = ['wx_open_id' => $openid];
  1977. $userinfo = M('users')->field('id,department_id')->where($where)->find();
  1978. // 获取权限范围内的用户id
  1979. $creator_ids = $this->getRightCreatorIds($userinfo);
  1980. if ($creator_ids === false) {
  1981. json_fail('获取失败');
  1982. }
  1983. // 查出告警学生id
  1984. $cond = [
  1985. 'result' => 2,
  1986. ];
  1987. if (is_array($creator_ids)) {
  1988. $cond['creator_id'] = ['IN', $creator_ids];
  1989. }
  1990. // 查出总数量
  1991. $record_list = [];
  1992. $alarm_handle_records_model = M('alarm_handle_records');
  1993. $total = $alarm_handle_records_model->where($cond)->count();
  1994. if ($total) {
  1995. $record_list = $alarm_handle_records_model->where($cond)->order('created_at desc')->limit($post_data['limit'])->page($post_data['page'])->select() ?: [];
  1996. }
  1997. // 返回
  1998. $data = [
  1999. 'total' => $total,
  2000. 'limit' => $limit,
  2001. 'page' => $page,
  2002. 'list' => $record_list,
  2003. ];
  2004. json_success('获取成功', $data);
  2005. }
  2006. public function getFenceAlarmData( ){
  2007. header('Access-Control-Allow-Origin: *');
  2008. $post_data = json_decode(file_get_contents('php://input'), true);
  2009. $openid = $post_data['openid'];
  2010. if(!$openid){
  2011. json_fail('未获取到微信授权信息,请重新点击菜单进入并授权');
  2012. }
  2013. $limit = isset($post_data['limit']) ? $post_data['limit'] : 10;
  2014. $page = isset($post_data['page']) ? $post_data['page'] : 1;
  2015. // 获取登录账号部门下所有告警状态的学生数据
  2016. $where = ['wx_open_id' => $openid];
  2017. $userinfo = M('users')->field('id,department_id')->where($where)->find();
  2018. // 获取权限范围内的用户id
  2019. $creator_ids = $this->getRightCreatorIds($userinfo);
  2020. if ($creator_ids === false) {
  2021. json_fail('获取失败');
  2022. }
  2023. // 查出围栏
  2024. $cond = [];
  2025. if (!$post_data['type']) {
  2026. $cond['alarm_type'] = ['IN',['fence_in','fence_out']];
  2027. } elseif ($post_data['type'] == 'in') {
  2028. $cond['alarm_type'] = 'fence_in';
  2029. } elseif ($post_data['type'] == 'out') {
  2030. $cond['alarm_type'] = 'fence_out';
  2031. } else {
  2032. json_fail('未知的围栏类型');
  2033. }
  2034. if (is_array($creator_ids)) {
  2035. $cond['creator_id'] = ['IN', $creator_ids];
  2036. }
  2037. // 查出总数量
  2038. $list = [];
  2039. $alarm_report = M('alarm_report');
  2040. $total = $alarm_report->where($cond)->count();
  2041. if ($total) {
  2042. $list = $alarm_report->where($cond)->order('created_at desc')->limit($post_data['limit'])->page($post_data['page'])->select() ?: [];
  2043. }
  2044. // 返回
  2045. $data = [
  2046. 'total' => $total,
  2047. 'limit' => $limit,
  2048. 'page' => $page,
  2049. 'list' => $list,
  2050. ];
  2051. json_success('获取成功', $data);
  2052. }
  2053. public function getYysFences( ){
  2054. // 获取登录用户信息
  2055. $userinfo = $this->getYysLoginUserinfo();
  2056. // 获取权限范围内的用户id
  2057. $creator_ids = $this->getRightCreatorIds($userinfo);
  2058. if ($creator_ids === false) {
  2059. json_fail('获取失败');
  2060. }
  2061. $fence_type = I('get.type');
  2062. if (!$fence_type && $fence_type !== 0 && $fence_type !== '0') {
  2063. json_fail('未获取到围栏类型');
  2064. }
  2065. $cond = [
  2066. 'fence_type' => $fence_type,
  2067. ];
  2068. // 查出总数量
  2069. if (is_array($creator_ids)) {
  2070. $cond['creator_id'] = ['IN', $creator_ids];
  2071. }
  2072. $field = 'id, name, fence_shape as shape, creator_id as userid, is_check_in as inAlarm, is_check_out as outAlarm, fence_info as fenceInfo';
  2073. $list = M('fences')->field($field)->where($cond)->select();
  2074. if(!$list){
  2075. json_fail('暂无围栏');
  2076. }
  2077. $geometry = new \Jms\Algo\Geometry();
  2078. foreach($list as &$v){
  2079. $v['inAlarm'] = (bool)($v['inAlarm']);
  2080. $v['outAlarm'] = (bool)($v['outAlarm']);
  2081. // 坐标转换:GCJ-02 -> BD-09
  2082. $v['fenceInfo'] = json_decode($v['fenceInfo'], true) ?:[];
  2083. $convPoint = $geometry->convertBd09ToGcj02($v['fenceInfo']['center']['lat'], $v['fenceInfo']['center']['lng']);
  2084. $v['fenceInfo']['center']['lat'] = $convPoint['lat'];
  2085. $v['fenceInfo']['center']['lng'] = $convPoint['lng'];
  2086. }
  2087. json_success('获取成功', $list);
  2088. }
  2089. private function getRecSignature( $url ){
  2090. header('Access-Control-Allow-Origin: *');
  2091. $url = urldecode($url);
  2092. $accessToken = $this->getWeixinAccessToken();
  2093. if (!$accessToken) {
  2094. return [
  2095. 'c' => 99,
  2096. 'm' => '获取微信accesstoken失败'
  2097. ];
  2098. }
  2099. $apiTiket = $this->getJsapiTikcet($accessToken);
  2100. if(is_array($apiTiket)){
  2101. json_fail($apiTiket['errcode'].':'.$apiTiket['errmsg']);
  2102. return [
  2103. 'c' => $apiTiket['errcode'],
  2104. 'm' => $apiTiket['errmsg']
  2105. ];
  2106. }
  2107. $noncestr = substr(md5(time()), 0, 16);
  2108. $timestamp = time();
  2109. //jsapi_ticket=sM4AOVdWfPE4DxkXGEs8VMCPGGVi4C3VM0P37wVUCFvkVAy_90u5h9nbSlYy3-Sl-HhTdfl2fzFy1AOcHKP7qg&noncestr=Wm3WZYTPz0wzccnW&timestamp=1414587457&url=http://mp.weixin.qq.com?params=value
  2110. $str = 'jsapi_ticket='.$apiTiket.'&noncestr='.$noncestr.'&timestamp='.$timestamp.'&url='.$url;
  2111. $signature = sha1($str);
  2112. return [
  2113. 'c' => 0,
  2114. 'm' => '',
  2115. 'v' => [
  2116. 'appid' => C('WECHAT_APPID'),
  2117. 'timestamp' => $timestamp,
  2118. 'noncestr' => $noncestr,
  2119. 'signature' => $signature,
  2120. ]
  2121. ];
  2122. }
  2123. public function addEditFence( ){
  2124. // 获取登录用户信息
  2125. $userinfo = $this->getYysLoginUserinfo();
  2126. $id = I('get.id');
  2127. $data = json_decode( file_get_contents("php://input") ,true) ?: [];
  2128. // 围栏类型
  2129. $fenceTypeArr = [
  2130. 'inout' => 0, // 机构安全围栏
  2131. 'person_inout' => 1, // 个人安全围栏
  2132. 'sos' => 2, // SOS围栏
  2133. ];
  2134. if ($data['name']) {
  2135. $data['name'] = trim($data['name']);
  2136. }
  2137. if ($data['fence_info']) {
  2138. // 坐标转换:GCJ-02 -> BD-09
  2139. $convPoint = (new \Jms\Algo\Geometry())->convertGcj02ToBd09($data['fence_info']['center']['lat'], $data['fence_info']['center']['lng']);
  2140. $data['fence_info']['center']['lat'] = $convPoint['lat'];
  2141. $data['fence_info']['center']['lng'] = $convPoint['lng'];
  2142. $data['fence_info'] = json_encode($data['fence_info']);
  2143. }
  2144. if ($data['in_fence_time_area'] && is_array($data['in_fence_time_area'])) {
  2145. $data['in_fence_time_area'] = json_encode($data['in_fence_time_area']);
  2146. }
  2147. if ($data['out_fence_time_area'] && is_array($data['out_fence_time_area'])) {
  2148. $data['out_fence_time_area'] = json_encode($data['out_fence_time_area']);
  2149. }
  2150. if ($data['push_users'] && is_array($data['push_users'])) {
  2151. foreach($data['push_users'] as &$v){
  2152. $v = intval($v);
  2153. }
  2154. $data['push_users'] = json_encode($data['push_users']);
  2155. }
  2156. // 新增
  2157. if (!$id) {
  2158. if($data['name'] === ''){
  2159. json_fail('围栏名称不能为空');
  2160. }
  2161. if(!$data['fence_info']){
  2162. json_fail('未获取到围栏信息');
  2163. }
  2164. if (!isset($fenceTypeArr[$data['fence_type']])) {
  2165. json_fail('未知的围栏类型');
  2166. }
  2167. $data['fence_shape'] = $data['fence_shape'] ?: 'circle';
  2168. $data['fence_type'] = $fenceTypeArr[$data['fence_type']];
  2169. $data['creator_id'] = $userinfo['id'];
  2170. $data['departments'] = $userinfo['department_id'];
  2171. $data['created_at'] = time();
  2172. $result = M('fences')->createAdd($data);
  2173. if (!$result) {
  2174. json_fail('添加失败');
  2175. }
  2176. json_success('添加成功', $result);
  2177. }
  2178. // 修改
  2179. // 获取权限范围内的用户id
  2180. $creatorIds = $this->getRightCreatorIds($userinfo);
  2181. $info = M('fences')->where(['id'=>$id])->find();
  2182. if (empty($info)) {
  2183. json_fail('获取围栏信息失败');
  2184. }
  2185. if (!in_array($info['creator_id'], $creatorIds)) {
  2186. //json_fail('无修改权限');
  2187. }
  2188. unset($data['fence_type']);
  2189. $cond = ['id'=>$id];
  2190. $result = M('fences')->createSave($cond, $data);
  2191. if(!$result){
  2192. json_fail('保存失败');
  2193. }
  2194. json_success('保存成功', $id);
  2195. }
  2196. public function deleteYysFences( ){
  2197. // 获取登录用户信息
  2198. $userinfo = $this->getYysLoginUserinfo();
  2199. // 获取权限范围内的用户id
  2200. $creator_ids = $this->getRightCreatorIds($userinfo);
  2201. if ($creator_ids === false) {
  2202. json_fail('获取失败');
  2203. }
  2204. $id = I('get.id');
  2205. if (!$id) {
  2206. json_fail('参数不合法');
  2207. }
  2208. $fence_info = M('fences')->where(['id'=>$id])->find();
  2209. if (!$fence_info) {
  2210. json_fail('围栏不存在');
  2211. }
  2212. if ($creator_ids !== true && !in_array($fence_info['creator_id'], $creator_ids)) {
  2213. json_fail('无权限删除该围栏');
  2214. }
  2215. $res = M('fences')->where(['id'=>$id])->delete();
  2216. if (!$res) {
  2217. json_fail('删除失败');
  2218. }
  2219. json_success('删除成功');
  2220. }
  2221. public function getFenceInfo( ){
  2222. // 获取登录用户信息
  2223. $userinfo = $this->getYysLoginUserinfo();
  2224. $id = I('get.id');
  2225. if (!$id) {
  2226. json_fail('缺少参数');
  2227. }
  2228. $info = M('fences')->where(['id'=>$id])->find();
  2229. if(!$info){
  2230. json_fail('获取失败');
  2231. }
  2232. // GCJ-02 -> BD-09
  2233. $info['fence_info'] = json_decode($info['fence_info'], true) ?: [];
  2234. $convPoint = (new \Jms\Algo\Geometry())->convertBd09ToGcj02($info['fence_info']['center']['lat'], $info['fence_info']['center']['lng']);
  2235. $info['fence_info']['center']['lat'] = $convPoint['lat'];
  2236. $info['fence_info']['center']['lng'] = $convPoint['lng'];
  2237. $info['in_fence_time_area'] = json_decode($info['in_fence_time_area'], true) ?: [];
  2238. $info['out_fence_time_area'] = json_decode($info['out_fence_time_area'], true) ?: [];
  2239. $info['push_users'] = json_decode($info['push_users'], true) ?: [];
  2240. json_success('获取成功', $info);
  2241. }
  2242. public function getFenceAlarmIntervals( ){
  2243. header('Access-Control-Allow-Origin: *');
  2244. $userid = I('get.userid');
  2245. $openid = I('get.openid');
  2246. if(!$userid || $userid == 'undefined' || $userid == 'null'){
  2247. json_fail('未获取到用户标识,请重新登陆');
  2248. }
  2249. //检测登录状态
  2250. $res = $this->checkLoginState($openid, $userid);
  2251. if(!$res['status']){
  2252. json_fail($res['message']);
  2253. }
  2254. try {
  2255. $typeid = M('sys_dict_type')->where(['code'=>'FenceSentInterval'])->getField('id');
  2256. $list = M('sys_dict_data')->field('value as text,code as value')->where(['type_id'=>$typeid])->select() ? : [];
  2257. } catch (\Exception $e) {
  2258. json_fail($e->getMessage());
  2259. }
  2260. json_success('获取成功', $list);
  2261. }
  2262. public function getRightUsers( ){
  2263. // 获取登录用户信息
  2264. $userinfo = $this->getYysLoginUserinfo();
  2265. // 获取权限范围内的用户id
  2266. $creator_ids = $this->getRightCreatorIds($userinfo);
  2267. if ($creator_ids === false) {
  2268. json_fail('获取失败');
  2269. }
  2270. $cond = [
  2271. 'username' => ['NOT IN', 'admin,manage']
  2272. ];
  2273. if (is_array($creator_ids)) {
  2274. $cond['id'] = ['IN', $creator_ids];
  2275. }
  2276. if ($creator_ids === true) {
  2277. $where = ['identify' => ['IN', 'personal,group_badge_user,group_card_user']];
  2278. $devide_user_ids = M('roles')->where($where)->getField('id', true);
  2279. $device_ids = join(',', $devide_user_ids);
  2280. $list = M('users')->alias('u')->field('u.id,u.realname,u.phone')
  2281. ->where($cond)
  2282. ->distinct(true)
  2283. ->join("INNER JOIN user_has_roles r ON u.id=r.uid AND r.role_id NOT IN ({$device_ids})")
  2284. ->select() ?:[];
  2285. } else {
  2286. $list = M('users')->field('id,realname,phone')->distinct(true)->where($cond)->select();
  2287. }
  2288. json_success('获取成功', $list);
  2289. }
  2290. public function getUserAlarmRecords( ){
  2291. header('Access-Control-Allow-Origin: *');
  2292. $post_data = json_decode(file_get_contents('php://input'), true);
  2293. $openid = $post_data['openid'];
  2294. $userid = $post_data['userid'];
  2295. //检测登录状态
  2296. $res = $this->checkLoginState($openid,$userid);
  2297. if(!$res['status']){
  2298. json_fail($res['message']);
  2299. }
  2300. $limit = isset($post_data['limit']) ? $post_data['limit'] : 10;
  2301. $page = isset($post_data['page']) ? $post_data['page'] : 1;
  2302. // 告警记录条件
  2303. $where = ['user_id' => $userid];
  2304. $device_numbers = M('devices')->where($where)->getField('imei', true);
  2305. if (empty($device_numbers)) {
  2306. json_fail('暂无设备,请先绑定设备');
  2307. }
  2308. // 初始化条件
  2309. $cond = [
  2310. 'device_number' => ['IN', $device_numbers],
  2311. ];
  2312. $reason = I('get.reason');
  2313. $state = I('get.state');
  2314. $result = I('get.result');
  2315. if ($reason) {
  2316. if ($reason == 'fence') {
  2317. $cond['alarm_reason'] = ['IN', ['fence_in', 'fence_out']];
  2318. } else {
  2319. $cond['alarm_reason'] = $reason;
  2320. }
  2321. } else {
  2322. // 默认只显示 SOS
  2323. $cond['alarm_reason'] = 'press';
  2324. }
  2325. if ($state) {
  2326. $cond['state'] = $state;
  2327. }
  2328. if ($result !== '' && is_numeric($result)) {
  2329. $cond['result'] = $result;
  2330. }
  2331. // 查出总数量
  2332. $list = [];
  2333. $total = M('alarm_records')->where($cond)->count();
  2334. if ($total) {
  2335. if ($state == 'start' || $state == 'end') {
  2336. $order = "{$state}_time desc";
  2337. } else {
  2338. $order = 'id desc';
  2339. }
  2340. $fields = 'id,device_number,alarm_reason,handler_id,start_time,end_time,state,comment,result';
  2341. $list = M('alarm_records')->field($fields)->where($cond)->limit($limit)->page($page)->order($order)->select() ?: [];
  2342. if (!empty($list)) {
  2343. // alarm_reason,handler_id,result
  2344. // 获取告警类型
  2345. $typeid = M('sys_dict_type')->where(['code' => 'AlarmType'])->getField('id');
  2346. $reason_arr = M('sys_dict_data')->where(['type_id' => $typeid])->getField('code, value');
  2347. // 处理结果
  2348. $result_arr = [
  2349. 0 => '待处理',
  2350. 1 => '已处理',
  2351. 2 => '误报',
  2352. ];
  2353. // 中文转换
  2354. foreach ($list as &$alarm) {
  2355. $alarm['start_time'] = $alarm['start_time'] ? date('Y-m-d H:i:s', $alarm['start_time']) : '';
  2356. $alarm['end_time'] = $alarm['end_time'] ? date('Y-m-d H:i:s', $alarm['end_time']) : '';
  2357. if (is_array($reason_arr)) {
  2358. $alarm['alarm_reason'] = $reason_arr[$alarm['alarm_reason']];
  2359. }
  2360. if (is_numeric($alarm['result'])) {
  2361. $alarm['result'] = $result_arr[$alarm['result']];
  2362. }
  2363. }
  2364. }
  2365. }
  2366. // 返回
  2367. $data = [
  2368. 'total' => $total,
  2369. 'limit' => $limit,
  2370. 'page' => $page,
  2371. 'list' => $list,
  2372. ];
  2373. json_success('获取成功', $data);
  2374. }
  2375. public function getUserAlarmDetail( ){
  2376. header('Access-Control-Allow-Origin: *');
  2377. $openid = I('get.openid');
  2378. $userid = I('get.userid');
  2379. if(!$userid || $userid == 'undefined' || $userid == 'null'){
  2380. json_fail('获取不到你的用户标识,请重新登陆');
  2381. }
  2382. //检测登录状态
  2383. $res = $this->checkLoginState($openid,$userid);
  2384. if(!$res['status']){
  2385. json_fail($res['message']);
  2386. }
  2387. $alarm_id = I('get.id');
  2388. if (!$alarm_id) {
  2389. json_fail('获取告警信息失败1');
  2390. }
  2391. // 查出告警数据
  2392. $where = ['id' => $alarm_id];
  2393. $alarm_info = M('alarm_records')->where($where)->find();
  2394. if (empty($alarm_info)) {
  2395. json_fail('获取告警信息失败2');
  2396. }
  2397. $report_id = I('get.rid');
  2398. if (!$report_id) {
  2399. json_fail('获取告警信息失败3');
  2400. }
  2401. $where = ['id' => $report_id];
  2402. $alarm_report = M('alarm_report')->where($where)->find();
  2403. if (empty($alarm_report)) {
  2404. json_fail('获取告警信息失败4');
  2405. }
  2406. $alarm_info['address']=$alarm_report['address'];
  2407. // 查出设备信息
  2408. $where = ['imei' => $alarm_info['device_number']];
  2409. $device_info = M('devices')->where($where)->find();
  2410. if (empty($alarm_info)) {
  2411. json_fail('获取告警设备信息失败');
  2412. }
  2413. if ($device_info['online_time'] > $device_info['wifi_online_time']) {
  2414. $device_info['last_online_time'] = date('Y-m-d H:i:s', $device_info['online_time']);
  2415. $device_info['last_location'] = $device_info['longitude'] .','. $device_info['latitude'];
  2416. $res = bmap_geocoding($device_info['latitude'], $device_info['longitude']);
  2417. if($res['success']){
  2418. $device_info['address'] = $res['address'];
  2419. }else{
  2420. $device_info['address']='';
  2421. }
  2422. } elseif ($device_info['online_time'] < $device_info['wifi_online_time']) {
  2423. $device_info['last_online_time'] = date('Y-m-d H:i:s', $device_info['wifi_online_time']);
  2424. $device_info['last_location'] = $device_info['wifi_longitude'] .','. $device_info['wifi_latitude'];
  2425. } else {
  2426. $device_info['last_online_time'] = '0000-00-00 00:00:00';
  2427. $device_info['last_location'] = '';
  2428. $device_info['address']='';
  2429. }
  2430. // 查出设备用户
  2431. if ($device_info['badge_user_id']) {
  2432. $where = ['id' => $device_info['badge_user_id']];
  2433. $user_info = M('badgeuser')->where($where)->find() ?: [];
  2434. } else {
  2435. $where = ['id' => $device_info['user_id']];
  2436. $user_info = M('users')->where($where)->find() ?: [];
  2437. }
  2438. //if (empty($user_info)) {
  2439. //json_fail('获取告警用户信息失败');
  2440. //}
  2441. // 获取紧急联系人
  2442. $where = ['device_id' => $device_info['id']];
  2443. $urgent_list = M('kq_urgent')->where($where)->select() ? : [];
  2444. if (!empty($urgent_list)) {
  2445. $type_id = M('sys_dict_type')->where(['code' => 'Relationships'])->getField('id');
  2446. $ships = M('sys_dict_data')->where(['type_id' => $type_id])->getField('code,value');
  2447. foreach ($urgent_list as $key => &$urgent) {
  2448. $urgent['relationship_text'] = $ships[$urgent['relationship']];
  2449. }
  2450. }
  2451. // 部门名称
  2452. $alarm_info['department_name'] = M('departments')->where(['id' => $user_info['department_id']])->getField('department_name');
  2453. $alarm_info['user_info'] = $user_info;
  2454. $alarm_info['urgent_list'] = $urgent_list;
  2455. $alarm_info['device_info'] = $device_info;
  2456. $alarm_info['device_info']['department_name'] = $alarm_info['department_name'];
  2457. json_success('获取成功', $alarm_info);
  2458. }
  2459. public function setFenceAlarmInterval( ){
  2460. //user_has_students
  2461. header('Access-Control-Allow-Origin: *');
  2462. $fenceId = I('get.fenceId');
  2463. $interval = intval(I('get.interval') );
  2464. if(!$fenceId){
  2465. json_fail('获取不到围栏标识,请刷新下');
  2466. }
  2467. if(!$interval){
  2468. json_fail('获取不到时间间隔,请重设重试');
  2469. }
  2470. if($interval < 1 || $interval > 720){
  2471. json_fail('推送间隔目前只支持720分钟以内');
  2472. }
  2473. $saveData = [
  2474. 'sent_interval' => $interval
  2475. ];
  2476. $saveData['sent_interval'] = $interval * 60;
  2477. $res = M('fences')->where(['id' => $fenceId])->save($saveData);
  2478. if($res === false){
  2479. json_fail('修改推送间隔失败');
  2480. }
  2481. json_success('修改推送间隔成功');
  2482. }
  2483. public function resetPwd( ){
  2484. header('Access-Control-Allow-Origin: *');
  2485. // 通过手机号和短信验证码注册
  2486. $data = json_decode( file_get_contents("php://input") ,true);
  2487. // 用户类型:个人(personal)、团体(group)
  2488. $userType = $data['userType'];
  2489. // 设备类型:卡牌(card)、徽章(badge)
  2490. $deviceType = $data['deviceType'];
  2491. // 团体卡牌用户(group_card_user) 不可注册
  2492. // 个人用户(personal),团体徽章用户(group_badge_user) 可注册
  2493. if ($userType == 'personal') { // 个人用户
  2494. $identify = 'personal';
  2495. } elseif ($userType == 'group' && $deviceType == 'badge') { // 团体徽章用户
  2496. $identify = 'group_badge_user';
  2497. } elseif ($userType == 'group' && $deviceType == 'card') { // 团体卡牌用户
  2498. $identify = 'group_card_user';
  2499. } else {
  2500. json_fail('未知用户类型');
  2501. }
  2502. if(!$data['phone']){
  2503. json_fail('手机号码不能为空');
  2504. }
  2505. if(!$data['smsCode']){
  2506. json_fail('短信验证码不能为空');
  2507. }
  2508. if(! $data['password']){
  2509. json_fail('密码不能为空');
  2510. }
  2511. if(! $data['confirmPassword']){
  2512. json_fail('确认密码不能为空');
  2513. }
  2514. if ($data['password'] != $data['confirmPassword']) {
  2515. json_fail('两次密码不一致');
  2516. }
  2517. // 获取角色id
  2518. $roleId = M('roles')->where(['identify' => $identify])->getField('id');
  2519. if (!$roleId) {
  2520. json_fail('未知角色类型');
  2521. }
  2522. // 判断角色、号码是否已注册
  2523. $userinfo = M('users')->alias('a')->field('a.id')->where(['username'=>$data['phone']])->join("INNER JOIN user_has_roles b ON a.id = b.uid AND b.role_id = {$roleId}")->find();
  2524. if (empty($userinfo)) {
  2525. json_fail('该号码未注册');
  2526. }
  2527. // 验证码有效性
  2528. $res = $this->isValidSmsCode($data['phone'], $data['smsCode']);
  2529. if (!$res['success']) {
  2530. json_fail($res['message']);
  2531. }
  2532. // 重置密码
  2533. $savePwd = password_hash($data['password'], PASSWORD_DEFAULT);
  2534. $cond = ['id' => $userinfo['id']];
  2535. $res = M('users')->where($cond)->setField('password', $savePwd);
  2536. if($res === false){
  2537. json_fail('重置失败');
  2538. }
  2539. json_success('重置成功');
  2540. }
  2541. public function checkSingleLogin( ){
  2542. header('Access-Control-Allow-Origin: *');
  2543. $userid = I('get.userid');
  2544. $openid = I('get.openid');
  2545. $where = [
  2546. 'id' => $userid,
  2547. 'wx_open_id'=> $openid
  2548. ];
  2549. $flag = M('users')->where($where)->find();
  2550. if($flag){
  2551. json_success('goon');
  2552. }
  2553. json_fail('relogin');
  2554. }
  2555. private function getMaxDbm( $avFile, $start ){
  2556. /*
  2557. $string = file_get_contents($avFile);
  2558. $bytes = array();
  2559. for($i = 0; $i < strlen($string); $i++){
  2560. $bytes[] = ord($string[$i]);
  2561. }
  2562. $counter = strlen($string);
  2563. */
  2564. $counter = 4;
  2565. $bytes = [1,2,3,4];
  2566. $absolute = 0;
  2567. $maximum = 0;
  2568. for ($i = $start; $i < $counter; $i++) {
  2569. // $absolute = abs(getShort(new byte[] {vector[i], vector[i + 1]}, 0));
  2570. $absolute = abs( $this->bytesToShort([$bytes[$i], $bytes[$i+1]], 0) ) ;
  2571. if ($absolute > $maximum) {
  2572. $maximum = $absolute;
  2573. }
  2574. $i++;
  2575. }
  2576. if ($maximum > 32767) {
  2577. $maximum = 32767;
  2578. }
  2579. return (int)$maximum;
  2580. }
  2581. public function test_cus_function( ){
  2582. $accessKeyId='LTAIOSQ4y09Jxbf3';
  2583. $accessKeySecret='LQm05sOLBss87lFG6jx9iq4lzKCAqA';
  2584. $config = new \Darabonba\OpenApi\Models\Config([
  2585. "accessKeyId" => $accessKeyId,
  2586. "accessKeySecret" => $accessKeySecret
  2587. ]);
  2588. // 访问的域名
  2589. $config->endpoint = "dysmsapi.aliyuncs.com";
  2590. $client= new \AlibabaCloud\SDK\Dysmsapi\V20170525\Dysmsapi($config);
  2591. $params = [
  2592. "signName" => "小友回收",
  2593. "templateCode" => "SMS_245515027",
  2594. "phoneNumbers" => 15706857065,
  2595. "templateParam" => json_encode(['code' => '1234'])
  2596. ];
  2597. // $client = self::createClient( $accessKeyId, $accessKeySecret);
  2598. $sendSmsRequest = new \AlibabaCloud\SDK\Dysmsapi\V20170525\Models\SendSmsRequest($params);
  2599. $runtime = new \AlibabaCloud\Tea\Utils\Utils\RuntimeOptions([]);
  2600. $res=$client->sendSmsWithOptions($sendSmsRequest, $runtime);
  2601. var_dump($res);
  2602. }
  2603. private function bytesToShort( $bytes, $position ){
  2604. $val = 0;
  2605. $val = $bytes[$position + 1] & 0xFF;
  2606. $val = $val << 8;
  2607. $val |= $bytes[$position] & 0xFF;
  2608. return $val;
  2609. }
  2610. public function getDeviceAvatar( ){
  2611. header('Access-Control-Allow-Origin: *');
  2612. $imei = I('get.imei');
  2613. if(!$imei){
  2614. json_fail('获取不到设备标识');
  2615. }
  2616. $avatar = M('devices')->where(['imei' => $imei])->getField('avatar');
  2617. if(!$avatar){
  2618. json_fail('获取头像失败');
  2619. }
  2620. json_success('获取头像成功',$avatar);
  2621. }
  2622. public function getUserAvatar( ){
  2623. header('Access-Control-Allow-Origin: *');
  2624. $uid = I('get.uid');
  2625. if(!$uid){
  2626. json_fail('获取不到用户标识');
  2627. }
  2628. $avatar = M('users')->where(['id' => $uid])->getField('avatar');
  2629. if(!$avatar){
  2630. json_fail('获取头像失败');
  2631. }
  2632. json_success('获取头像成功',$avatar);
  2633. }
  2634. public function saveDeviceAvatar( ){
  2635. header('Access-Control-Allow-Origin: *');
  2636. $postData = json_decode( file_get_contents('php://input'), true);
  2637. if(!$postData['imei']){
  2638. json_fail('获取不到设备标识');
  2639. }
  2640. if(!$postData['avatar64content']){
  2641. json_fail('获取不到头像信息');
  2642. }
  2643. $folder = realpath(__ROOT__).'/static/assets/avatar/'.date('Ymd').'/';
  2644. if (!is_dir($folder)){
  2645. $mres= mkdir($folder,0777,true);
  2646. if($mres === false){
  2647. json_fail('服务端创建目录权限不足');
  2648. }
  2649. }
  2650. $fileName = 'avatar-device-imei'.$postData['imei'] .'-'. time();
  2651. $saveFile = $this->base64_image_content($postData['avatar64content'], $folder, $fileName);
  2652. if(!$saveFile){
  2653. json_fail('服务端保存头像失败');
  2654. }
  2655. $res = M('devices')->where(['imei' => $postData['imei']])->save(['avatar' => $saveFile]);
  2656. if($res === false){
  2657. json_fail('保存头像地址失败');
  2658. }
  2659. json_success('保存成功');
  2660. }
  2661. public function saveUserAvatar( ){
  2662. header('Access-Control-Allow-Origin: *');
  2663. $postData = json_decode( file_get_contents('php://input'), true);
  2664. if(!$postData['uid']){
  2665. json_fail('获取不到用户标识');
  2666. }
  2667. if(!$postData['avatar64content']){
  2668. json_fail('获取不到头像信息');
  2669. }
  2670. $folder = realpath(__ROOT__).'/static/assets/avatar/'.date('Ymd').'/';
  2671. if (!is_dir($folder)){
  2672. $mres= mkdir($folder,0777,true);
  2673. if($mres === false){
  2674. json_fail('服务端创建目录权限不足');
  2675. }
  2676. }
  2677. $fileName = 'avatar-user-uid'.$postData['uid'] .'-'. time();
  2678. $saveFile = $this->base64_image_content($postData['avatar64content'], $folder, $fileName);
  2679. if(!$saveFile){
  2680. json_fail('服务端保存头像失败');
  2681. }
  2682. $res = M('users')->where(['id' => $postData['uid']])->save(['avatar' => $saveFile]);
  2683. if($res === false){
  2684. json_fail('保存头像地址失败');
  2685. }
  2686. json_success('保存成功');
  2687. }
  2688. private function base64_image_content( $base64_image_content, $path, $name ){
  2689. //匹配出图片的格式
  2690. if (preg_match('/^(data:\s*image\/(\w+);base64,)/', $base64_image_content, $result)){
  2691. $type = $result[2];
  2692. $new_file = $path.$name.".{$type}";
  2693. $file = 'http://'.$_SERVER['HTTP_HOST'].'/static/assets/avatar/'.date('Ymd').'/'.$name.".{$type}";
  2694. if (file_put_contents($new_file, base64_decode(str_replace($result[1], '', $base64_image_content)))){
  2695. return $file;
  2696. }else{
  2697. return false;
  2698. }
  2699. }else{
  2700. return false;
  2701. }
  2702. }
  2703. public function setLocModel( ){
  2704. /*
  2705. 请求url上带上 openid userid
  2706. post请求 参数: imei id(设备id) post_mode 定位模式 0-常规模式 1-追踪模式 2-定时模式
  2707. 定时模式:需要设置 定位采样间隔(stopped_rtc_invl) 定位上报间隔(stopped_rpt_invl)
  2708. */
  2709. header('Access-Control-Allow-Origin: *');
  2710. $openid = I('get.openid');
  2711. $userid = I('get.userid');
  2712. //检测登录状态
  2713. $res=$this->checkLoginState($openid,$userid);
  2714. if(!$res['status']){
  2715. json_fail($res['message']);
  2716. }
  2717. $data = json_decode( file_get_contents("php://input") ,true);
  2718. $imei=$data['imei'];
  2719. if(!$imei){
  2720. json_fail('缺少设备imei号');
  2721. }
  2722. $config['pos_mode']=$data['pos_mode'];
  2723. if(!isset($config['pos_mode']) || $config['pos_mode'] === ''){
  2724. json_fail('缺少定位模式');
  2725. }
  2726. $dev_id=$data['id'];
  2727. if(!$dev_id){
  2728. json_fail('缺少设备id');
  2729. }
  2730. $redis = Redis('c61_gps_device_configs_'.$imei,"queue");
  2731. //开启事务
  2732. M()->startTrans();
  2733. $config['msg_id'] = 0xAAAA0010;
  2734. //判断是不是定时模式
  2735. if ($config['pos_mode'] == 2) {
  2736. if(!$data['stopped_rtc_invl']){
  2737. json_fail('请设置定位采样间隔');
  2738. }
  2739. if(!$data['stopped_rpt_invl']){
  2740. json_fail('请设置定位上报间隔');
  2741. }
  2742. $config_arr = array(
  2743. 'stopped_rtc_invl' => intval($data['stopped_rtc_invl']),
  2744. 'stopped_rpt_invl' => intval($data['stopped_rpt_invl']),
  2745. 'msg_id' => 0xAAAA0007
  2746. );
  2747. //下发日志
  2748. $log_data = array(
  2749. 'send_contents' => json_encode($config_arr),
  2750. 'type'=>'sensor',
  2751. 'imei'=>$imei,
  2752. 'created_at' => time(),
  2753. 'creator_id' => $userid,
  2754. 'device_id' => $dev_id
  2755. );
  2756. $lg_id = M('send_config_log')->createAdd($log_data);
  2757. if (!$lg_id) {
  2758. json_fail('下发日志添加失败');
  2759. M()->rollback();
  2760. }
  2761. $config_arr['id'] = $lg_id;
  2762. $redis->push(json_encode($config_arr));
  2763. }else{//非定时模式 采样时间设为3000 上报间隔3600
  2764. $config_arr = array(
  2765. 'stopped_rtc_invl' => 3000,
  2766. 'stopped_rpt_invl' => 3600,
  2767. 'msg_id' => 0xAAAA0007
  2768. );
  2769. //下发日志
  2770. $log_data = array(
  2771. 'send_contents' => json_encode($config_arr),
  2772. 'type'=>'sensor',
  2773. 'imei'=>$imei,
  2774. 'created_at' => time(),
  2775. 'creator_id' => $userid,
  2776. 'device_id' => $dev_id
  2777. );
  2778. $lg_id = M('send_config_log')->createAdd($log_data);
  2779. if (!$lg_id) {
  2780. json_fail('下发日志添加失败');
  2781. M()->rollback();
  2782. }
  2783. $config_arr['id'] = $lg_id;
  2784. $redis->push(json_encode($config_arr));
  2785. }
  2786. //下发日志
  2787. $log_data = array(
  2788. 'send_contents' => json_encode($config),
  2789. 'type'=>'pos_mode',
  2790. 'imei'=>$imei,
  2791. 'created_at' => time(),
  2792. 'creator_id' => $userid,
  2793. 'device_id' => $dev_id
  2794. );
  2795. $config['id'] = M('send_config_log')->createAdd($log_data);
  2796. if (!$config['id']) {
  2797. json_fail('下发日志添加失败');
  2798. M()->rollback();
  2799. }
  2800. $redis->push(json_encode($config));
  2801. M()->commit();
  2802. json_success('设置成功');
  2803. }
  2804. public function delUserFence( ){
  2805. header('Access-Control-Allow-Origin: *');
  2806. $userid = I('get.userid');
  2807. if(!$userid){
  2808. json_fail('获取不到用户标识,尝试重登');
  2809. }
  2810. $fenceId =I('get.fenceId');
  2811. if(!$fenceId){
  2812. json_fail('获取不到围栏标识,尝试刷新');
  2813. }
  2814. $res = M('fences')->where(['id' => $fenceId, 'creator_id' => $userid, 'fence_type' => 1] )->delete();
  2815. if(!$res){
  2816. json_fail('删除失败');
  2817. }
  2818. json_success('删除成功');
  2819. }
  2820. public function sendReverveNotice( ){
  2821. header('Access-Control-Allow-Origin: *');
  2822. $voice_template_id=C('WX_VOICE_TEMPLATE_ID');
  2823. if(!$voice_template_id){
  2824. debug_log('voice_notice','WX_VOICE_TEMPLATE_ID not exist');
  2825. return false;
  2826. }
  2827. $data=$_POST;
  2828. $this->wxMsg = new \Jiaruan\WxTmp();
  2829. $access_token =$this->wxMsg->getAccessToken();
  2830. $msgArray= array(
  2831. "touser"=>$data['openid'],
  2832. "msgtype"=>"text",
  2833. "text"=>array(
  2834. "content"=>urlencode("测试啥是")
  2835. )
  2836. );
  2837. $json=urldecode(json_encode($msgArray));
  2838. //var_dump($json);exit;
  2839. #群发 文本消息
  2840. $ch = curl_init();
  2841. curl_setopt($ch, CURLOPT_URL, "https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token=".$access_token);
  2842. curl_setopt($ch, CURLOPT_POSTFIELDS, $json);
  2843. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  2844. $res = json_decode(curl_exec($ch),true);
  2845. curl_close($ch);
  2846. json_success($res);
  2847. }
  2848. public function getMyInsureList( ){
  2849. header('Access-Control-Allow-Origin: *');
  2850. $openid = I('get.openid');
  2851. $userid = I('get.userid');
  2852. //检测登录状态
  2853. $res=$this->checkLoginState($openid,$userid);
  2854. if(!$res['status']){
  2855. json_fail($res['message']);
  2856. }
  2857. $vehiclesIds = M('vehicles')->where(['user_id' => $userid ])->getField('id',true);
  2858. $list=M('insure_records')->where(['vehicle_id' =>array('in',$vehiclesIds) ])->select();
  2859. foreach($list as &$val){
  2860. $start_at=strtotime(date('Y-m-d 00:00:00',$val['start_at']));
  2861. $end_at=strtotime(date('Y-m-d 23:59:59',$val['end_at']));
  2862. if(time()<$start_at){
  2863. $val['insure_state']=0;
  2864. $val['insure_state_text']='待生效';
  2865. }elseif(time()<=$end_at){
  2866. $val['insure_state']=1;
  2867. $val['insure_state_text']='生效中';
  2868. }else{
  2869. $val['insure_state']=2;
  2870. $val['insure_state_text']='已失效';
  2871. }
  2872. $val['vehicle_info']=M('vehicles')->where(['id' =>$val['vehicle_id']])->find();
  2873. $val['insure_info']=M('insurance')->where(['id' =>$val['insurance_id']])->find();
  2874. $val['start_at']=date('Y-m-d 00:00:00',$val['start_at']);
  2875. $val['end_at']=date('Y-m-d 23:59:59',$val['end_at']);
  2876. }
  2877. if(!$list){
  2878. json_fail('暂无保险');
  2879. }
  2880. json_success('查询成功',$list);
  2881. }
  2882. public function getInsureOptions( ){
  2883. header('Access-Control-Allow-Origin: *');
  2884. $list=M('insurance')->where(['enable' =>1])->field('*,name as text,id as value')->select();
  2885. foreach($list as &$val){
  2886. $val['price']=$val['price']*100;
  2887. }
  2888. json_success('查询成功',$list);
  2889. }
  2890. public function userByInsure( ){
  2891. header('Access-Control-Allow-Origin: *');
  2892. $openid = I('get.openid');
  2893. $userid = I('get.userid');
  2894. //检测登录状态
  2895. $res=$this->checkLoginState($openid,$userid);
  2896. if(!$res['status']){
  2897. json_fail($res['message']);
  2898. }
  2899. $data = json_decode( file_get_contents("php://input") ,true);
  2900. $insurance_data=M('insurance')->where(['id'=>$data['insure_id']])->find();
  2901. //添加保险记录信息
  2902. $insurance = array(
  2903. 'vehicle_id'=>$data['vehicle_id'],
  2904. 'insurance_id'=>$data['insure_id'],
  2905. 'start_at'=>strtotime(date('Y-m-d',strtotime('+1 day'))),
  2906. 'end_at'=>strtotime(date('Y-m-d',strtotime('+'.$insurance_data['years'].' year')))+24*3600-1,
  2907. 'creator_id'=>$userid,
  2908. 'created_at'=>time(),
  2909. 'updated_at'=>time()
  2910. );
  2911. if(!M('insure_records')->createAdd($insurance)){
  2912. json_fail('添加保险失败');
  2913. }
  2914. json_success('购买成功',$userid);
  2915. }
  2916. }