RedisCache.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. <?php
  2. namespace Jiaruan;
  3. class RedisCache {
  4. public static function getKqRules( $gradeId, $field ){
  5. if(!$gradeId){
  6. echo 'getKqRules failed,gradeId empty!'.PHP_EOL;
  7. return false;
  8. }
  9. $p = Redis("xskq_rules","hash");
  10. $where = strtoupper($gradeId);
  11. $val = $p->get($where);
  12. if(!$val){
  13. echo 'getKqRules failed,Rules is empty!'.PHP_EOL;
  14. return false;
  15. }
  16. $info = json_decode($val,true);
  17. if($field)
  18. return $info[$field];
  19. else
  20. return $info;
  21. }
  22. public static function getKqRuleDetail( $ruleId ){
  23. if(!$ruleId){
  24. echo 'getKqRuleDetail failed,ruleId empty!'.PHP_EOL;
  25. return false;
  26. }
  27. $p = Redis("xskq_rule_detail","hash");
  28. $where = strtoupper($ruleId);
  29. $val = $p->get($where);
  30. if(!$val){
  31. echo 'getKqRuleDetail failed,RuleDetail is empty!'.PHP_EOL;
  32. return false;
  33. }
  34. $info = json_decode($val,true);
  35. return $info;
  36. }
  37. public static function setSessionRules( $loginmark, $token ){
  38. if(!$loginmark){
  39. echo 'setKqRules failed,loginmark empty!'.PHP_EOL;
  40. return false;
  41. }
  42. if(!$token){
  43. echo 'setKqRules failed,token empty!'.PHP_EOL;
  44. return false;
  45. }
  46. //保存token到redis
  47. $p = Redis("czapp_client_login_session","hash");
  48. $key = $loginmark;
  49. $session_info = array(
  50. "token"=>$token,
  51. "login_time" => date('Y-m-d H:i:s'),
  52. "expire"=> 1200
  53. );
  54. $val = json_encode($session_info,JSON_UNESCAPED_UNICODE);
  55. $hash = array($key => $val );
  56. return $p->add($hash);
  57. }
  58. public static function setKqRuleDetail( $ruleId, $info ){
  59. if(!$ruleId){
  60. echo 'setKqRuleDetail failed,ruleId empty!'.PHP_EOL;
  61. return false;
  62. }
  63. if(!$info){
  64. echo 'setKqRuleDetail failed,info empty!'.PHP_EOL;
  65. return false;
  66. }
  67. //更新缓存信息
  68. $p = Redis("xskq_rule_detail","hash");
  69. $key = strtoupper($ruleId);
  70. $val = json_encode($info,JSON_UNESCAPED_UNICODE);
  71. $hash = array($key => $val );
  72. return $p->add($hash);
  73. }
  74. public static function deleteKqRules( $gradeId ){
  75. if(!$gradeId){
  76. echo 'deleteKqRules failed,gradeId empty!'.PHP_EOL;
  77. return false;
  78. }
  79. $p = Redis("xskq_rules","hash");
  80. $where = strtoupper($gradeId);
  81. $p->where($where)->delete();
  82. return true;
  83. }
  84. public static function deleteKqRuleDetail( $ruleId ){
  85. if(!$ruleId){
  86. echo 'deleteKqRuleDetail failed,ruleId empty!'.PHP_EOL;
  87. return false;
  88. }
  89. $p = Redis("xskq_rule_detail","hash");
  90. $where = strtoupper($ruleId);
  91. $p->where($where)->delete();
  92. return true;
  93. }
  94. public static function setUserPunchRecord( $rfid, $date, $info ){
  95. if(!$rfid){
  96. echo 'setUserPunchRecord failed,rfid empty!'.PHP_EOL;
  97. return false;
  98. }
  99. if(!$info){
  100. echo 'setUserPunchRecord failed,info empty!'.PHP_EOL;
  101. return false;
  102. }
  103. if(!$date){
  104. echo 'setUserPunchRecord failed,date empty!'.PHP_EOL;
  105. return false;
  106. }
  107. //更新缓存信息
  108. $p = Redis("xskq_user_punch_record_".substr($date,0,6),"hash");
  109. $key = strtoupper($rfid.'_'.$date);
  110. $val = json_encode($info,JSON_UNESCAPED_UNICODE);
  111. $hash = array($key => $val );
  112. return $p->add($hash);
  113. }
  114. public static function getUserPunchRecord( $rfid, $date, $field ){
  115. if(!$rfid){
  116. echo 'getUserPunchRecord failed,rfid empty!'.PHP_EOL;
  117. return false;
  118. }
  119. if(!$date){
  120. echo 'getUserPunchRecord failed,date empty!'.PHP_EOL;
  121. return false;
  122. }
  123. $p = Redis("xskq_user_punch_record_".substr($date,0,6),"hash");
  124. $where = strtoupper($rfid.'_'.$date);
  125. $val = $p->get($where);
  126. if(!$val){
  127. //如果没有打卡记录,就初始化一条
  128. $init_status = array(
  129. 'in'=>C('KQ_RECORDS_STATUS_NO_RECORD'),
  130. 'out'=>C('KQ_RECORDS_STATUS_NO_RECORD'),
  131. );
  132. $init_data = array(
  133. C('KQ_RULE_DETAIL_ALL_TYPE_TEXT')[C('KQ_RULE_DETAIL_TYPE_EARLY')] => $init_status,
  134. C('KQ_RULE_DETAIL_ALL_TYPE_TEXT')[C('KQ_RULE_DETAIL_TYPE_AM')] => $init_status,
  135. C('KQ_RULE_DETAIL_ALL_TYPE_TEXT')[C('KQ_RULE_DETAIL_TYPE_PM')] => $init_status,
  136. C('KQ_RULE_DETAIL_ALL_TYPE_TEXT')[C('KQ_RULE_DETAIL_TYPE_NIGHT')] => $init_status,
  137. C('KQ_RULE_DETAIL_ALL_TYPE_TEXT')[C('KQ_RULE_DETAIL_TYPE_AM_PM')] => $init_status,
  138. );
  139. $result = self::setUserPunchRecord($rfid,$date,$init_data);
  140. if(!$result){
  141. echo 'init user punch record failed, ActiveRfid: '.$rfid.PHP_EOL;
  142. return false;
  143. }
  144. echo 'init user punch record success, ActiveRfid: '.$rfid.PHP_EOL;
  145. return $init_data;
  146. }
  147. $info = json_decode($val,true);
  148. if($field)
  149. return $info[$field];
  150. else
  151. return $info;
  152. }
  153. public static function setStudentKqRules( $studentId, $info ){
  154. if(!$studentId){
  155. echo 'setKqRules failed,studentId empty!'.PHP_EOL;
  156. return false;
  157. }
  158. $p = Redis("xskq_student_rules","hash");
  159. $key = strtoupper($studentId);
  160. $val = json_encode($info,JSON_UNESCAPED_UNICODE);
  161. $hash = array($studentId => $val );
  162. return $p->add($hash);
  163. }
  164. public static function deleteKqStudentRules( $studentId ){
  165. if(!$studentId){
  166. echo 'deleteKqRules failed,studentId empty!'.PHP_EOL;
  167. return false;
  168. }
  169. $p = Redis("xskq_student_rules","hash");
  170. $where = strtoupper($studentId);
  171. $p->where($where)->delete();
  172. return true;
  173. }
  174. }