Push.php 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\company\controller\api;
  15. use app\company\service\DataService;
  16. use library\Controller;
  17. use think\Db;
  18. /**
  19. * ARP-SAN 推送内容接收
  20. * Class Push
  21. * @package app\company\controller\api
  22. */
  23. class Push extends Controller
  24. {
  25. /**
  26. * ARP-SAN 推送内容接收
  27. * @throws \think\Exception
  28. * @throws \think\exception\PDOException
  29. */
  30. public function index()
  31. {
  32. // 数据输入检查
  33. $content = file_get_contents('php://input');
  34. if (empty($content)) $this->error('没有接收到数据');
  35. // 企业员工检查
  36. $where = ['is_deleted' => '0', 'status' => '1'];
  37. $users = Db::name('CompanyUser')->cache(10)->where($where)->column('id uid,nickname name,mobile_macs mac');
  38. if (empty($users)) $this->error('没有需要打卡的用户');
  39. // 企业员工检查
  40. $macs = [];
  41. foreach ($users as $user) foreach (explode("\n", preg_replace('/\s+/', "\n", $user['mac'])) as $mac) {
  42. if (DataService::applyMacValue($mac)) $macs[$mac] = ['uid' => $user['uid'], 'name' => $user['name']];
  43. }
  44. // 数据内容解析
  45. list($s, $e) = [0, 0];
  46. foreach (explode("\n", $content) as $line) {
  47. list($ip, $mac, $dsc) = explode(' ', preg_replace('/\s+/', ' ', trim($line)) . ' ');
  48. if (preg_match('/^(\d+\.?){4}$/', $ip) && DataService::applyMacValue($mac)) {
  49. if (isset($macs[$mac])) {
  50. $s++;
  51. $this->writeUser($ip, $mac, strtoupper($dsc), $macs);
  52. } else {
  53. $e++;
  54. $this->writeNone($ip, $mac, strtoupper($dsc));
  55. }
  56. }
  57. }
  58. return "接收到{$s}个已知设备推送,{$e}个未知设备推送。" . PHP_EOL . PHP_EOL;
  59. }
  60. /**
  61. * 已知设备打卡记录
  62. * @param string $ip 内网地址
  63. * @param string $mac 设备地址
  64. * @param string $desc 设备描述
  65. * @param array $macs 用户MAC列表
  66. * @throws \think\Exception
  67. * @throws \think\exception\PDOException
  68. */
  69. private function writeUser($ip, $mac, $desc, $macs)
  70. {
  71. if (isset($macs[$mac])) {
  72. $data = $macs[$mac];
  73. $data['ip'] = $ip;
  74. $data['mac'] = $mac;
  75. $data['desc'] = $desc;
  76. $data['date'] = date('Y-m-d');
  77. $data['end_at'] = date('Y-m-d H:i:s');
  78. data_save('CompanyUserClock', $data, 'uid', ['date' => $data['date']]);
  79. }
  80. }
  81. /**
  82. * 未知设备额外标识
  83. * @param string $ip 内网地址
  84. * @param string $mac 设备地址
  85. * @param string $desc 设备描述
  86. */
  87. private function writeNone($ip, $mac, $desc)
  88. {
  89. // @todo 记录未匹配成功的设备标识
  90. }
  91. }