From 08fc78d0cca88885753aa6cf8662b03f2b71f387 Mon Sep 17 00:00:00 2001 From: Anyon Date: Fri, 9 Aug 2019 16:15:20 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E5=A2=9E=E5=8A=A0=E4=BC=81?= =?UTF-8?q?=E4=B8=9A=E7=AE=A1=E7=90=86=E6=A8=A1=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- admin_v5.sql | 113 +++++++++++++-- application/company/command/Subversion.php | 103 ++++++++++++++ application/company/controller/Auth.php | 101 ++++++++++++++ application/company/controller/Clock.php | 49 +++++++ application/company/controller/User.php | 131 ++++++++++++++++++ application/company/controller/api/Push.php | 97 +++++++++++++ application/company/service/DataService.php | 40 ++++++ application/company/sys.php | 21 +++ application/company/view/auth/form.html | 35 +++++ application/company/view/auth/index.html | 78 +++++++++++ .../company/view/auth/index_search.html | 50 +++++++ application/company/view/clock/index.html | 41 ++++++ .../company/view/clock/index_search.html | 28 ++++ application/company/view/user/form.html | 89 ++++++++++++ application/company/view/user/index.html | 83 +++++++++++ .../company/view/user/index_search.html | 50 +++++++ public/static/admin.js | 9 ++ 17 files changed, 1105 insertions(+), 13 deletions(-) create mode 100644 application/company/command/Subversion.php create mode 100644 application/company/controller/Auth.php create mode 100644 application/company/controller/Clock.php create mode 100644 application/company/controller/User.php create mode 100644 application/company/controller/api/Push.php create mode 100644 application/company/service/DataService.php create mode 100644 application/company/sys.php create mode 100644 application/company/view/auth/form.html create mode 100644 application/company/view/auth/index.html create mode 100644 application/company/view/auth/index_search.html create mode 100644 application/company/view/clock/index.html create mode 100644 application/company/view/clock/index_search.html create mode 100644 application/company/view/user/form.html create mode 100644 application/company/view/user/index.html create mode 100644 application/company/view/user/index_search.html diff --git a/admin_v5.sql b/admin_v5.sql index 3b858c32d..f88dec5c2 100644 --- a/admin_v5.sql +++ b/admin_v5.sql @@ -1,22 +1,90 @@ /* Navicat Premium Data Transfer - Source Server : local.ctolog.com + Source Server : local.server.cuci.cc Source Server Type : MySQL Source Server Version : 50562 - Source Host : 127.0.0.1:3306 - Source Schema : admin_v4_1 + Source Host : server.cuci.cc:3306 + Source Schema : admin_v5 Target Server Type : MySQL Target Server Version : 50562 File Encoding : 65001 - Date: 06/07/2019 19:07:04 + Date: 09/08/2019 16:14:13 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; +-- ---------------------------- +-- Table structure for company_user +-- ---------------------------- +DROP TABLE IF EXISTS `company_user`; +CREATE TABLE `company_user` ( + `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, + `nickname` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '员工姓名', + `svn_username` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '员工账号', + `svn_password` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '员工密码', + `svn_authorize` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '权限授权', + `user_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '员工身份', + `entry_date` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '入职日期', + `leave_date` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '离职日期', + `become_date` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '转正日期', + `contact_qq` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '联系QQ', + `contact_mail` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '联系邮箱', + `contact_phone` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '联系手机', + `mobile_macs` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '打卡手机', + `status` tinyint(1) UNSIGNED NULL DEFAULT 1 COMMENT '状态(0禁用,1正常,2离职)', + `sort` bigint(20) UNSIGNED NULL DEFAULT 0 COMMENT '排序权重', + `is_deleted` tinyint(1) UNSIGNED NULL DEFAULT 0 COMMENT '删除(1删除,0未删)', + `create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', + PRIMARY KEY (`id`) USING BTREE, + UNIQUE INDEX `index_company_user_nickname`(`nickname`) USING BTREE, + INDEX `index_company_user_svn_username`(`svn_username`) USING BTREE, + INDEX `index_company_user_deleted`(`is_deleted`) USING BTREE, + INDEX `index_company_user_status`(`status`) USING BTREE, + INDEX `index_company_user_type`(`user_type`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '企业-员工信息'; + +-- ---------------------------- +-- Table structure for company_user_auth +-- ---------------------------- +DROP TABLE IF EXISTS `company_user_auth`; +CREATE TABLE `company_user_auth` ( + `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, + `title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '权限名称', + `path` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '权限路径', + `status` tinyint(1) UNSIGNED NULL DEFAULT 1 COMMENT '状态(0禁用,1正常)', + `desc` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '权限描述', + `sort` bigint(20) UNSIGNED NULL DEFAULT 0 COMMENT '排序权重', + `is_deleted` tinyint(1) UNSIGNED NULL DEFAULT 0 COMMENT '删除(1删除,0未删)', + `create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', + PRIMARY KEY (`id`) USING BTREE, + INDEX `index_company_user_auth_status`(`status`) USING BTREE, + INDEX `index_company_user_auth_deleted`(`is_deleted`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '企业-仓库权限'; + +-- ---------------------------- +-- Table structure for company_user_clock +-- ---------------------------- +DROP TABLE IF EXISTS `company_user_clock`; +CREATE TABLE `company_user_clock` ( + `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, + `uid` bigint(20) UNSIGNED NULL DEFAULT NULL COMMENT '用户ID', + `name` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户姓名', + `ip` varchar(15) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '权限名称', + `mac` char(17) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '1' COMMENT '状态(1:禁用,2:启用)', + `desc` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注说明', + `date` date NULL DEFAULT NULL, + `start_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', + `end_at` datetime NULL DEFAULT NULL COMMENT '结束时间', + PRIMARY KEY (`id`) USING BTREE, + INDEX `index_company_user_clock_date`(`date`) USING BTREE, + INDEX `index_company_user_clock_uid`(`uid`) USING BTREE, + INDEX `index_company_user_clock_name`(`name`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '企业-打卡记录'; + -- ---------------------------- -- Table structure for store_express_company -- ---------------------------- @@ -403,14 +471,14 @@ CREATE TABLE `system_config` ( `value` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '配置值', PRIMARY KEY (`id`) USING BTREE, INDEX `index_system_config_name`(`name`) USING BTREE -) ENGINE = InnoDB AUTO_INCREMENT = 74 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统-配置'; +) ENGINE = InnoDB AUTO_INCREMENT = 81 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统-配置'; -- ---------------------------- -- Records of system_config -- ---------------------------- INSERT INTO `system_config` VALUES (1, 'app_name', 'ThinkAdmin'); INSERT INTO `system_config` VALUES (2, 'site_name', 'ThinkAdmin'); -INSERT INTO `system_config` VALUES (3, 'app_version', 'v5'); +INSERT INTO `system_config` VALUES (3, 'app_version', 'dev'); INSERT INTO `system_config` VALUES (4, 'site_copy', '©版权所有 2014-2018 楚才科技'); INSERT INTO `system_config` VALUES (5, 'site_icon', '/upload/decb0fe26fa3f486/b3f6521bf29403c8.png'); INSERT INTO `system_config` VALUES (7, 'miitbeian', '粤ICP备16006642号-2'); @@ -441,10 +509,10 @@ INSERT INTO `system_config` VALUES (54, 'wechat_encodingaeskey', ''); INSERT INTO `system_config` VALUES (55, 'wechat_push_url', '消息推送地址:http://127.0.0.1:8000/wechat/api.push'); INSERT INTO `system_config` VALUES (56, 'wechat_type', 'thr'); INSERT INTO `system_config` VALUES (57, 'wechat_thr_appid', 'wx60a43dd8161666d4'); -INSERT INTO `system_config` VALUES (58, 'wechat_thr_appkey', 'd2c0139213d7a27898ca047d81a617be'); +INSERT INTO `system_config` VALUES (58, 'wechat_thr_appkey', '5caf4b0727f6e46a7e6ccbe773cc955d'); INSERT INTO `system_config` VALUES (60, 'wechat_thr_appurl', '消息推送地址:http://127.0.0.1:8000/wechat/api.push'); INSERT INTO `system_config` VALUES (61, 'component_appid', 'wx28b58798480874f9'); -INSERT INTO `system_config` VALUES (62, 'component_appsecret', '87ddce1cc24e4cd691039f926febd942'); +INSERT INTO `system_config` VALUES (62, 'component_appsecret', '8d0e1ec14ea0adc5027dd0ad82c64bc9'); INSERT INTO `system_config` VALUES (63, 'component_token', 'P8QHTIxpBEq88IrxatqhgpBm2OAQROkI'); INSERT INTO `system_config` VALUES (64, 'component_encodingaeskey', 'L5uFIa0U6KLalPyXckyqoVIJYLhsfrg8k9YzybZIHsx'); INSERT INTO `system_config` VALUES (65, 'system_message_state', '0'); @@ -456,6 +524,13 @@ INSERT INTO `system_config` VALUES (70, 'store_title', '测试商城'); INSERT INTO `system_config` VALUES (71, 'store_order_wait_time', '0.50'); INSERT INTO `system_config` VALUES (72, 'store_order_clear_time', '24.00'); INSERT INTO `system_config` VALUES (73, 'store_order_confirm_time', '60.00'); +INSERT INTO `system_config` VALUES (74, 'sms_zt_username2', '可以找CUCI申请2'); +INSERT INTO `system_config` VALUES (75, 'sms_zt_password2', '可以找CUCI申请2'); +INSERT INTO `system_config` VALUES (76, 'sms_secure2', '可以找CUCI申请2'); +INSERT INTO `system_config` VALUES (77, 'sms_reg_template2', '您的验证码为{code},请在十分钟内完成操作!2'); +INSERT INTO `system_config` VALUES (78, 'michat_appid', '2882303761518074614'); +INSERT INTO `system_config` VALUES (79, 'michat_appkey', '5861807470614'); +INSERT INTO `system_config` VALUES (80, 'michat_appsecert', 'CP/WUTUgDuyOxgLQ5ztesg=='); -- ---------------------------- -- Table structure for system_data @@ -467,7 +542,12 @@ CREATE TABLE `system_data` ( `value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '配置值', PRIMARY KEY (`id`) USING BTREE, INDEX `index_system_data_name`(`name`) USING BTREE -) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统-数据'; +) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统-数据'; + +-- ---------------------------- +-- Records of system_data +-- ---------------------------- +INSERT INTO `system_data` VALUES (1, 'menudata', '[{\"name\":\"请输入名称\",\"type\":\"scancode_push\",\"key\":\"scancode_push\"}]'); -- ---------------------------- -- Table structure for system_jobs @@ -545,7 +625,7 @@ CREATE TABLE `system_menu` ( PRIMARY KEY (`id`) USING BTREE, INDEX `index_system_menu_node`(`node`(191)) USING BTREE, INDEX `index_system_menu_status`(`status`) USING BTREE -) ENGINE = InnoDB AUTO_INCREMENT = 56 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统-菜单'; +) ENGINE = InnoDB AUTO_INCREMENT = 62 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统-菜单'; -- ---------------------------- -- Records of system_menu @@ -587,6 +667,12 @@ INSERT INTO `system_menu` VALUES (49, 4, '系统日志管理', '', 'layui-icon l INSERT INTO `system_menu` VALUES (50, 47, '快递公司管理', '', 'layui-icon layui-icon-form', 'store/express_company/index', '', '_self', 3, 1, '2019-04-01 17:10:59'); INSERT INTO `system_menu` VALUES (52, 47, '邮费模板管理', '', 'layui-icon layui-icon-fonts-clear', 'store/express_template/index', '', '_self', 1, 1, '2019-04-23 13:17:10'); INSERT INTO `system_menu` VALUES (55, 17, '微信数据统计', '', 'layui-icon layui-icon-chart-screen', 'wechat/index/index', '', '_self', 3, 1, '2019-06-15 15:03:51'); +INSERT INTO `system_menu` VALUES (56, 40, '微信粉丝管理', '', 'layui-icon layui-icon-username', 'service/fans/index', '', '_self', 0, 1, '2019-07-23 09:57:24'); +INSERT INTO `system_menu` VALUES (57, 0, '企业管理', '', '', '#', '', '_self', 150, 1, '2019-08-08 17:20:29'); +INSERT INTO `system_menu` VALUES (58, 57, '基础管理', '', '', '#', '', '_self', 0, 1, '2019-08-08 17:20:42'); +INSERT INTO `system_menu` VALUES (59, 58, '企业员工管理', '', 'layui-icon layui-icon-username', 'company/user/index', '', '_self', 0, 1, '2019-08-08 17:20:59'); +INSERT INTO `system_menu` VALUES (60, 58, '仓库权限管理', '', 'layui-icon layui-icon-template-1', 'company/auth/index', '', '_self', 0, 1, '2019-08-08 18:39:37'); +INSERT INTO `system_menu` VALUES (61, 58, '网络打卡管理', '', 'layui-icon layui-icon-engine', 'company/clock/index', '', '_self', 0, 1, '2019-08-09 14:44:23'); -- ---------------------------- -- Table structure for system_user @@ -603,9 +689,10 @@ CREATE TABLE `system_user` ( `login_ip` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '登录IP', `login_num` bigint(20) UNSIGNED NULL DEFAULT 0 COMMENT '登录次数', `authorize` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '权限授权', + `tags` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '用户标签', `desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '备注说明', - `status` tinyint(1) UNSIGNED NULL DEFAULT 1 COMMENT '状态(0:禁用,1:启用)', - `is_deleted` tinyint(1) UNSIGNED NULL DEFAULT 0 COMMENT '删除(1:删除,0:未删)', + `status` tinyint(1) UNSIGNED NULL DEFAULT 1 COMMENT '状态(0禁用,1启用)', + `is_deleted` tinyint(1) UNSIGNED NULL DEFAULT 0 COMMENT '删除(1删除,0未删)', `create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', PRIMARY KEY (`id`) USING BTREE, UNIQUE INDEX `index_system_user_username`(`username`) USING BTREE, @@ -616,7 +703,7 @@ CREATE TABLE `system_user` ( -- ---------------------------- -- Records of system_user -- ---------------------------- -INSERT INTO `system_user` VALUES (10000, 'admin', '21232f297a57a5a743894a0e4a801fc3', '22222222', '', '', '2019-07-06 18:29:31', '127.0.0.1', 611, '', '', 1, 0, '2015-11-13 15:14:22'); +INSERT INTO `system_user` VALUES (10000, 'admin', '21232f297a57a5a743894a0e4a801fc3', '22222222', '', '', '2019-08-09 15:19:41', '10.1.1.10', 655, '', '', '', 1, 0, '2015-11-13 15:14:22'); -- ---------------------------- -- Table structure for wechat_fans diff --git a/application/company/command/Subversion.php b/application/company/command/Subversion.php new file mode 100644 index 000000000..0935862a1 --- /dev/null +++ b/application/company/command/Subversion.php @@ -0,0 +1,103 @@ +setName('xsubversion:config')->setDescription('从数据库的配置同步到SVN配置文件'); + } + + /** + * @param Input $input + * @param Output $output + * @return int|void|null + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\ModelNotFoundException + * @throws \think\exception\DbException + */ + protected function execute(Input $input, Output $output) + { + $paths = ['/' => [0]]; + $where = ['status' => '1', 'is_deleted' => '0']; + // 取得可用的用户账号 + $users = Db::name('CompanyUser')->field('svn_username,svn_password,svn_authorize')->where($where)->select(); + $authids = array_unique(explode(',', join(',', array_column($users, 'svn_authorize')))); + // 取得可用的权限配置 + $userAuths = Db::name('CompanyUserAuth')->field('id,path')->where($where)->whereIn('id', $authids)->order('sort desc,id desc')->select(); + foreach ($userAuths as $item) foreach (explode("\n", preg_replace('/\s+/i', "\n", trim($item['path']))) as $path) { + $paths[$path][] = $item['id']; + } + $this->writeAuth($users, $paths); + } + + /** + * 写入 SVN 配置文件 + * @param array $users + * @param array $paths + */ + protected function writeAuth($users, $paths) + { + $output = []; + // Passwd 用户账号处理 + foreach ($users as $user) $output[] = "{$user['svn_username']}={$user['svn_password']}"; + file_put_contents($this->passwdFile, join(PHP_EOL, $output)); + // Authz 授权配置处理 + $groups = ['_0' => []]; + foreach ($users as $user) { + $ids = array_unique(explode(',', $user['svn_authorize'])); + foreach ($ids as $id) $groups["_{$id}"][] = $user['svn_username']; + } + $output = []; + $output[] = '[groups]'; + foreach ($groups as $key => $group) $output[] = "group{$key}=" . join(',', $group); + $output[] = ''; + foreach ($paths as $path => $ids) { + $output[] = "[{$path}]"; + $output[] = "* ="; + $output[] = '@group_0 = rw'; + foreach ($ids as $id) if ($id > 0) $output[] = "@group_{$id} = rw"; + $output[] = ''; + } + file_put_contents($this->authzFile, join(PHP_EOL, $output)); + } +} diff --git a/application/company/controller/Auth.php b/application/company/controller/Auth.php new file mode 100644 index 000000000..046411954 --- /dev/null +++ b/application/company/controller/Auth.php @@ -0,0 +1,101 @@ +title = '仓库权限管理'; + $query = $this->_query($this->table)->like('title,path')->equal('status'); + $query->dateBetween('create_at')->where(['is_deleted' => '0'])->page(); + } + + /** + * 添加SVN权限 + * @auth true + * @throws \think\Exception + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\ModelNotFoundException + * @throws \think\exception\DbException + * @throws \think\exception\PDOException + */ + public function add() + { + $this->title = '添加SVN权限'; + $this->_form($this->table, 'form'); + } + + /** + * 编辑SVN权限 + * @auth true + * @throws \think\Exception + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\ModelNotFoundException + * @throws \think\exception\DbException + * @throws \think\exception\PDOException + */ + public function edit() + { + $this->_form($this->table, 'form'); + } + + /** + * 修改SVN权限状态 + * @auth true + * @throws \think\Exception + * @throws \think\exception\PDOException + */ + public function state() + { + $this->_save($this->table, ['status' => input('status')]); + } + + /** + * 删除SVN权限 + * @auth true + * @throws \think\Exception + * @throws \think\exception\PDOException + */ + public function remove() + { + $this->_delete($this->table); + } + +} diff --git a/application/company/controller/Clock.php b/application/company/controller/Clock.php new file mode 100644 index 000000000..1a544bce3 --- /dev/null +++ b/application/company/controller/Clock.php @@ -0,0 +1,49 @@ +title = '网络打卡管理'; + $this->_query($this->table)->like('name')->equal('date')->order('id asc')->page(); + } + +} diff --git a/application/company/controller/User.php b/application/company/controller/User.php new file mode 100644 index 000000000..b365cdab6 --- /dev/null +++ b/application/company/controller/User.php @@ -0,0 +1,131 @@ +title = '仓库权限管理'; + $this->_query($this->table)->like('nickname,svn_username')->equal('status')->page(); + } + + /** + * 添加企业员工 + * @auth true + * @throws \think\Exception + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\ModelNotFoundException + * @throws \think\exception\DbException + * @throws \think\exception\PDOException + */ + public function add() + { + $this->_form($this->table, 'form'); + } + + + /** + * 修改企业员工 + * @auth true + * @throws \think\Exception + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\ModelNotFoundException + * @throws \think\exception\DbException + * @throws \think\exception\PDOException + */ + public function edit() + { + $this->_form($this->table, 'form'); + } + + /** + * 权限表单数据处理 + * @param array $data 表单数据 + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\ModelNotFoundException + * @throws \think\exception\DbException + */ + protected function _form_filter(&$data) + { + if ($this->request->isGet()) { + $where = ['status' => '1', 'is_deleted' => '0']; + $this->auths = Db::name('company_user_auth')->where($where)->order('sort desc,id desc')->select(); + array_unshift($this->auths, ['id' => '0', 'title' => '所有权限', 'path' => '/']); + $data['svn_authorize'] = isset($data['svn_authorize']) ? explode(',', $data['svn_authorize']) : []; + } else { + if (isset($data['svn_authorize']) && is_array($data['svn_authorize'])) { + $data['svn_authorize'] = join(',', $data['svn_authorize']); + } else { + $data['svn_authorize'] = ''; + } + $macs = []; + foreach (explode(PHP_EOL, preg_replace("/\s+/", PHP_EOL, trim($data['mobile_macs']))) as $mac) { + if (DataService::applyMacValue($mac)) $macs[] = $mac; + } + $data['mobile_macs'] = join(PHP_EOL, array_unique($macs)); + } + } + + /** + * 更改企业员工状态 + * @auth true + * @throws \think\Exception + * @throws \think\exception\PDOException + */ + public function state() + { + $this->_save($this->table, ['status' => input('status', '0')]); + } + + /** + * 删除企业员工 + * @auth true + * @throws \think\Exception + * @throws \think\exception\PDOException + */ + public function remove() + { + $this->_delete($this->table); + } + +} diff --git a/application/company/controller/api/Push.php b/application/company/controller/api/Push.php new file mode 100644 index 000000000..83f69dcc2 --- /dev/null +++ b/application/company/controller/api/Push.php @@ -0,0 +1,97 @@ +error('没有接收到数据'); + // 企业员工检查 + $where = ['is_deleted' => '0', 'status' => '1']; + $users = Db::name('CompanyUser')->cache(10)->where($where)->column('id uid,nickname name,mobile_macs mac'); + if (empty($users)) $this->error('没有需要打卡的用户'); + // 企业员工检查 + $macs = []; + foreach ($users as $user) foreach (explode("\n", preg_replace('/\s+/', "\n", $user['mac'])) as $mac) { + if (DataService::applyMacValue($mac)) $macs[$mac] = ['uid' => $user['uid'], 'name' => $user['name']]; + } + // 数据内容解析 + list($s, $e) = [0, 0]; + foreach (explode("\n", $content) as $line) { + list($ip, $mac, $dsc) = explode(' ', preg_replace('/\s+/', ' ', trim($line)) . ' '); + if (preg_match('/^(\d+\.?){4}$/', $ip) && DataService::applyMacValue($mac)) { + if (isset($macs[$mac])) { + $s++; + $this->writeUser($ip, $mac, strtoupper($dsc), $macs); + } else { + $e++; + $this->writeNone($ip, $mac, strtoupper($dsc)); + } + } + } + return "接收到{$s}个已知设备推送,{$e}个未知设备推送。" . PHP_EOL . PHP_EOL; + } + + /** + * 已知设备打卡记录 + * @param string $ip 内网地址 + * @param string $mac 设备地址 + * @param string $desc 设备描述 + * @param array $macs 用户MAC列表 + * @throws \think\Exception + * @throws \think\exception\PDOException + */ + private function writeUser($ip, $mac, $desc, $macs) + { + if (isset($macs[$mac])) { + $data = $macs[$mac]; + $data['ip'] = $ip; + $data['mac'] = $mac; + $data['desc'] = $desc; + $data['date'] = date('Y-m-d'); + $data['end_at'] = date('Y-m-d H:i:s'); + data_save('CompanyUserClock', $data, 'uid', ['date' => $data['date']]); + } + } + + /** + * 未知设备额外标识 + * @param string $ip 内网地址 + * @param string $mac 设备地址 + * @param string $desc 设备描述 + */ + private function writeNone($ip, $mac, $desc) + { + + } +} diff --git a/application/company/service/DataService.php b/application/company/service/DataService.php new file mode 100644 index 000000000..33b8ce61f --- /dev/null +++ b/application/company/service/DataService.php @@ -0,0 +1,40 @@ +url()}" data-auto="true" method="post" autocomplete="off"> +
+
+ +
+ +

权限名称将出现在员工SVN授权处,请根据需求准确填写权限名称。

+
+
+
+ +
+ +

权限路径将配置到SVN权限分组上,务必要保证路径与SVN文件路径一致。

+
+
+
+ +
+ +
+
+
+ +
+ {notempty name='vo.id'}{/notempty} + +
+ + +
+ + + + diff --git a/application/company/view/auth/index.html b/application/company/view/auth/index.html new file mode 100644 index 000000000..640d02e97 --- /dev/null +++ b/application/company/view/auth/index.html @@ -0,0 +1,78 @@ +{extend name='admin@main'} + +{block name="button"} + +{if auth("add")} + +{/if} + +{if auth("remove")} + +{/if} + +{/block} + +{block name="content"} +
+ {include file='auth/index_search'} + + {notempty name='list'} + + + + + + + + + + + + {/notempty} + + {foreach $list as $key=>$vo} + + + + + + + + + + {/foreach} + +
+ + + + 权限名称权限路径使用状态登录时间
+ + + + {$vo.title|default=''}{$vo.path|nl2br|raw} + {eq name='vo.status' value='0'}已禁用{/eq} + {eq name='vo.status' value='1'}使用中{/eq} + {$vo.create_at|format_datetime} + + {if auth("edit")} + 编 辑 + {/if} + + {if auth("state") and $vo.status neq 0} + 禁 用 + {elseif auth("state") and $vo.status neq 1 } + 启 用 + {/if} + + {if auth("remove")} + 删 除 + {/if} + +
+ + {empty name='list'}没有记录哦{else}{$pagehtml|raw|default=''}{/empty} + +
+ +{/block} diff --git a/application/company/view/auth/index_search.html b/application/company/view/auth/index_search.html new file mode 100644 index 000000000..18009dd32 --- /dev/null +++ b/application/company/view/auth/index_search.html @@ -0,0 +1,50 @@ +
+ + 条件搜索 + + + +
+ + diff --git a/application/company/view/clock/index.html b/application/company/view/clock/index.html new file mode 100644 index 000000000..f97ff568c --- /dev/null +++ b/application/company/view/clock/index.html @@ -0,0 +1,41 @@ +{extend name='admin@main'} + +{block name="content"} +
+ {include file='clock/index_search'} + + {notempty name='list'} + + + + + + + + + + + {/notempty} + + {foreach $list as $key=>$vo} + + + + + + + + + {/foreach} + +
+ + 员工姓名打卡日期内网地址首次打卡最后打卡
+ + {$vo.name|default=''}{$vo.date|default='-'}{$vo.ip|default='-'}{$vo.start_at|format_datetime}{$vo.end_at|format_datetime}
+ + {empty name='list'}没有记录哦{else}{$pagehtml|raw|default=''}{/empty} + +
+ +{/block} diff --git a/application/company/view/clock/index_search.html b/application/company/view/clock/index_search.html new file mode 100644 index 000000000..d56ad8e32 --- /dev/null +++ b/application/company/view/clock/index_search.html @@ -0,0 +1,28 @@ +
+ + 条件搜索 + + + +
+ + diff --git a/application/company/view/user/form.html b/application/company/view/user/form.html new file mode 100644 index 000000000..add898ed0 --- /dev/null +++ b/application/company/view/user/form.html @@ -0,0 +1,89 @@ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+
+ {foreach $auths as $auth} + + {/foreach} +
+
+
+
+ +
+ +
+ +
+ +
+ +
+ +
+
+
+ +
+ +
+ +
+ +
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ {notempty name='vo.id'}{/notempty} + +
+ + +
+ + + +
diff --git a/application/company/view/user/index.html b/application/company/view/user/index.html new file mode 100644 index 000000000..573067049 --- /dev/null +++ b/application/company/view/user/index.html @@ -0,0 +1,83 @@ +{extend name='admin@main'} + +{block name="button"} + +{if auth("add")} + +{/if} + +{if auth("remove")} + +{/if} + +{/block} + +{block name="content"} +
+ {include file='user/index_search'} + + {notempty name='list'} + + + + + + + + + + + + + {/notempty} + + {foreach $list as $key=>$vo} + + + + + + + + + + + {/foreach} + +
+ + + + 员工姓名员工身份库存账号使用状态添加时间
+ + + + {$vo.nickname|default=''}{$vo.user_type|default='-'}{$vo.svn_username|default='-'} + {eq name='vo.status' value='0'}已禁用{/eq} + {eq name='vo.status' value='1'}在职中{/eq} + {eq name='vo.status' value='2'}已离职{/eq} + + {$vo.create_at|format_datetime} + + + {if auth("edit")} + 编 辑 + {/if} + + {if auth("state") and $vo.status neq 0} + 禁 用 + {elseif auth("state") and $vo.status neq 1 } + 启 用 + {/if} + + {if auth("remove")} + 删 除 + {/if} + +
+ + {empty name='list'}没有记录哦{else}{$pagehtml|raw|default=''}{/empty} + +
+ +{/block} diff --git a/application/company/view/user/index_search.html b/application/company/view/user/index_search.html new file mode 100644 index 000000000..09915989a --- /dev/null +++ b/application/company/view/user/index_search.html @@ -0,0 +1,50 @@ +
+ + 条件搜索 + + + +
+ + diff --git a/public/static/admin.js b/public/static/admin.js index f64a16748..bd16070ea 100644 --- a/public/static/admin.js +++ b/public/static/admin.js @@ -155,6 +155,15 @@ $(function () { } }); }); + $dom.find('input[data-date-input]').map(function () { + this.setAttribute('autocomplete', 'off'); + laydate.render({ + type: this.getAttribute('data-date-input') || 'date', + range: false, elem: this, done: function (value) { + $(this.elem).val(value).trigger('change'); + } + }); + }); $dom.find('[data-file]:not([data-inited])').map(function (index, elem, $this, field) { $this = $(elem), field = $this.attr('data-field') || 'file'; if (!$this.data('input')) $this.data('input', $('[name="' + field + '"]').get(0));