-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
478 additions
and
306 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
Target Server Version : 80200 (8.2.0) | ||
File Encoding : 65001 | ||
|
||
Date: 30/03/2024 20:42:06 | ||
Date: 03/04/2024 19:07:31 | ||
*/ | ||
|
||
SET NAMES utf8mb4; | ||
|
@@ -327,9 +327,13 @@ CREATE TABLE `infra_api_access_log` ( | |
`application_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '应用名', | ||
`request_method` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '请求方法名', | ||
`request_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '请求地址', | ||
`request_params` varchar(8000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '请求参数', | ||
`request_params` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL COMMENT '请求参数', | ||
`response_body` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL COMMENT '响应结果', | ||
`user_ip` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '用户 IP', | ||
`user_agent` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '浏览器 UA', | ||
`operate_module` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '操作模块', | ||
`operate_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '操作名', | ||
`operate_type` tinyint NULL DEFAULT 0 COMMENT '操作分类', | ||
`begin_time` datetime NOT NULL COMMENT '开始请求时间', | ||
`end_time` datetime NOT NULL COMMENT '结束请求时间', | ||
`duration` int NOT NULL COMMENT '执行时长', | ||
|
@@ -343,7 +347,7 @@ CREATE TABLE `infra_api_access_log` ( | |
`tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', | ||
PRIMARY KEY (`id`) USING BTREE, | ||
INDEX `idx_create_time`(`create_time` ASC) USING BTREE | ||
) ENGINE = InnoDB AUTO_INCREMENT = 35832 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = 'API 访问日志表'; | ||
) ENGINE = InnoDB AUTO_INCREMENT = 35920 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = 'API 访问日志表'; | ||
|
||
-- ---------------------------- | ||
-- Records of infra_api_access_log | ||
|
@@ -385,7 +389,7 @@ CREATE TABLE `infra_api_error_log` ( | |
`deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', | ||
`tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', | ||
PRIMARY KEY (`id`) USING BTREE | ||
) ENGINE = InnoDB AUTO_INCREMENT = 16429 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '系统异常日志'; | ||
) ENGINE = InnoDB AUTO_INCREMENT = 16462 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '系统异常日志'; | ||
|
||
-- ---------------------------- | ||
-- Records of infra_api_error_log | ||
|
@@ -494,7 +498,7 @@ CREATE TABLE `infra_config` ( | |
-- Records of infra_config | ||
-- ---------------------------- | ||
BEGIN; | ||
INSERT INTO `infra_config` (`id`, `category`, `type`, `name`, `config_key`, `value`, `visible`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (2, 'biz', 1, '用户管理-账号初始密码', 'sys.user.init-password', '123456', b'0', '初始化密码 123456', 'admin', '2021-01-05 17:03:48', '1', '2024-02-28 22:54:14', b'0'); | ||
INSERT INTO `infra_config` (`id`, `category`, `type`, `name`, `config_key`, `value`, `visible`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (2, 'biz', 1, '用户管理-账号初始密码', 'sys.user.init-password', '123456', b'0', '初始化密码 123456', 'admin', '2021-01-05 17:03:48', '1', '2024-04-03 17:22:28', b'0'); | ||
INSERT INTO `infra_config` (`id`, `category`, `type`, `name`, `config_key`, `value`, `visible`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (7, 'url', 2, 'MySQL 监控的地址', 'url.druid', '', b'1', '', '1', '2023-04-07 13:41:16', '1', '2023-04-07 14:33:38', b'0'); | ||
INSERT INTO `infra_config` (`id`, `category`, `type`, `name`, `config_key`, `value`, `visible`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (8, 'url', 2, 'SkyWalking 监控的地址', 'url.skywalking', '', b'1', '', '1', '2023-04-07 13:41:16', '1', '2023-04-07 14:57:03', b'0'); | ||
INSERT INTO `infra_config` (`id`, `category`, `type`, `name`, `config_key`, `value`, `visible`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (9, 'url', 2, 'Spring Boot Admin 监控的地址', 'url.spring-boot-admin', '', b'1', '', '1', '2023-04-07 13:41:16', '1', '2023-04-07 14:52:07', b'0'); | ||
|
@@ -690,7 +694,7 @@ CREATE TABLE `infra_file` ( | |
`update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', | ||
`deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', | ||
PRIMARY KEY (`id`) USING BTREE | ||
) ENGINE = InnoDB AUTO_INCREMENT = 1301 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '文件表'; | ||
) ENGINE = InnoDB AUTO_INCREMENT = 1302 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '文件表'; | ||
|
||
-- ---------------------------- | ||
-- Records of infra_file | ||
|
@@ -1416,7 +1420,7 @@ CREATE TABLE `system_login_log` ( | |
`deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', | ||
`tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', | ||
PRIMARY KEY (`id`) USING BTREE | ||
) ENGINE = InnoDB AUTO_INCREMENT = 3054 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '系统访问记录'; | ||
) ENGINE = InnoDB AUTO_INCREMENT = 3066 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '系统访问记录'; | ||
|
||
-- ---------------------------- | ||
-- Records of system_login_log | ||
|
@@ -2453,7 +2457,7 @@ CREATE TABLE `system_oauth2_access_token` ( | |
PRIMARY KEY (`id`) USING BTREE, | ||
INDEX `idx_access_token`(`access_token` ASC) USING BTREE, | ||
INDEX `idx_refresh_token`(`refresh_token` ASC) USING BTREE | ||
) ENGINE = InnoDB AUTO_INCREMENT = 6332 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = 'OAuth2 访问令牌'; | ||
) ENGINE = InnoDB AUTO_INCREMENT = 6366 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = 'OAuth2 访问令牌'; | ||
|
||
-- ---------------------------- | ||
-- Records of system_oauth2_access_token | ||
|
@@ -2575,7 +2579,7 @@ CREATE TABLE `system_oauth2_refresh_token` ( | |
`deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', | ||
`tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', | ||
PRIMARY KEY (`id`) USING BTREE | ||
) ENGINE = InnoDB AUTO_INCREMENT = 1430 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = 'OAuth2 刷新令牌'; | ||
) ENGINE = InnoDB AUTO_INCREMENT = 1441 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = 'OAuth2 刷新令牌'; | ||
|
||
-- ---------------------------- | ||
-- Records of system_oauth2_refresh_token | ||
|
@@ -2615,7 +2619,7 @@ CREATE TABLE `system_operate_log` ( | |
`deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', | ||
`tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', | ||
PRIMARY KEY (`id`) USING BTREE | ||
) ENGINE = InnoDB AUTO_INCREMENT = 11964 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '操作日志记录'; | ||
) ENGINE = InnoDB AUTO_INCREMENT = 12000 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '操作日志记录'; | ||
|
||
-- ---------------------------- | ||
-- Records of system_operate_log | ||
|
@@ -5305,7 +5309,7 @@ CREATE TABLE `system_sms_log` ( | |
`update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', | ||
`deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', | ||
PRIMARY KEY (`id`) USING BTREE | ||
) ENGINE = InnoDB AUTO_INCREMENT = 946 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '短信日志'; | ||
) ENGINE = InnoDB AUTO_INCREMENT = 947 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '短信日志'; | ||
|
||
-- ---------------------------- | ||
-- Records of system_sms_log | ||
|
@@ -5475,7 +5479,7 @@ INSERT INTO `system_tenant` (`id`, `name`, `contact_user_id`, `contact_name`, `c | |
INSERT INTO `system_tenant` (`id`, `name`, `contact_user_id`, `contact_name`, `contact_mobile`, `status`, `website`, `package_id`, `expire_time`, `account_count`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (151, '大租户', 126, '土豆大', NULL, 0, 'https://tudou.iocoder.cn', 111, '2023-12-08 00:00:00', 10, '1', '2023-12-02 23:35:05', '1', '2023-12-08 23:39:56', b'0'); | ||
INSERT INTO `system_tenant` (`id`, `name`, `contact_user_id`, `contact_name`, `contact_mobile`, `status`, `website`, `package_id`, `expire_time`, `account_count`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (152, '新租户', 127, '土豆', NULL, 0, 'http://xx.iocoder.cn', 111, '2025-12-31 00:00:00', 50, '1', '2023-12-30 11:43:17', '1', '2023-12-30 11:43:17', b'0'); | ||
INSERT INTO `system_tenant` (`id`, `name`, `contact_user_id`, `contact_name`, `contact_mobile`, `status`, `website`, `package_id`, `expire_time`, `account_count`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (153, '小明的租户', 128, 'xiaoming', '15601691301', 0, 'xiaoming.iocoder.cn', 111, '2025-12-01 00:00:00', 100, '1', '2024-02-27 21:58:25', '1', '2024-02-28 22:53:54', b'0'); | ||
INSERT INTO `system_tenant` (`id`, `name`, `contact_user_id`, `contact_name`, `contact_mobile`, `status`, `website`, `package_id`, `expire_time`, `account_count`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (154, 'hh', 129, 'hh', NULL, 0, 'http://hh.iocoder.cn', 111, '2024-04-30 00:00:00', 123, '1', '2024-03-30 17:52:59', '1', '2024-03-30 17:52:59', b'0'); | ||
INSERT INTO `system_tenant` (`id`, `name`, `contact_user_id`, `contact_name`, `contact_mobile`, `status`, `website`, `package_id`, `expire_time`, `account_count`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (154, 'hh', 129, 'hh', NULL, 0, 'http://hh.iocoder.cn', 111, '2024-04-30 00:00:00', 123, '1', '2024-03-30 17:52:59', '1', '2024-04-03 15:06:42', b'0'); | ||
COMMIT; | ||
|
||
-- ---------------------------- | ||
|
@@ -5619,7 +5623,7 @@ CREATE TABLE `system_users` ( | |
-- Records of system_users | ||
-- ---------------------------- | ||
BEGIN; | ||
INSERT INTO `system_users` (`id`, `username`, `password`, `nickname`, `remark`, `dept_id`, `post_ids`, `email`, `mobile`, `sex`, `avatar`, `status`, `login_ip`, `login_date`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1, 'admin', '$2a$10$mRMIYLDtRHlf6.9ipiqH1.Z.bh/R9dO9d5iHiGYPigi6r5KOoR2Wm', '芋道源码', '管理员', 103, '[1]', '[email protected]', '18818260277', 2, 'http://test.yudao.iocoder.cn/96c787a2ce88bf6d0ce3cd8b6cf5314e80e7703cd41bf4af8cd2e2909dbd6b6d.png', 0, '0:0:0:0:0:0:0:1', '2024-03-30 17:18:34', 'admin', '2021-01-05 17:03:47', NULL, '2024-03-30 17:18:34', b'0', 1); | ||
INSERT INTO `system_users` (`id`, `username`, `password`, `nickname`, `remark`, `dept_id`, `post_ids`, `email`, `mobile`, `sex`, `avatar`, `status`, `login_ip`, `login_date`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1, 'admin', '$2a$10$mRMIYLDtRHlf6.9ipiqH1.Z.bh/R9dO9d5iHiGYPigi6r5KOoR2Wm', '芋道源码', '管理员', 103, '[1]', '[email protected]', '18818260277', 2, 'http://test.yudao.iocoder.cn/96c787a2ce88bf6d0ce3cd8b6cf5314e80e7703cd41bf4af8cd2e2909dbd6b6d.png', 0, '127.0.0.1', '2024-04-03 17:31:00', 'admin', '2021-01-05 17:03:47', NULL, '2024-04-03 17:31:00', b'0', 1); | ||
INSERT INTO `system_users` (`id`, `username`, `password`, `nickname`, `remark`, `dept_id`, `post_ids`, `email`, `mobile`, `sex`, `avatar`, `status`, `login_ip`, `login_date`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (100, 'yudao', '$2a$10$11U48RhyJ5pSBYWSn12AD./ld671.ycSzJHbyrtpeoMeYiw31eo8a', '芋道', '不要吓我', 104, '[1]', '[email protected]', '15601691300', 1, '', 1, '127.0.0.1', '2022-07-09 23:03:33', '', '2021-01-07 09:07:17', NULL, '2022-07-09 23:03:33', b'0', 1); | ||
INSERT INTO `system_users` (`id`, `username`, `password`, `nickname`, `remark`, `dept_id`, `post_ids`, `email`, `mobile`, `sex`, `avatar`, `status`, `login_ip`, `login_date`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (103, 'yuanma', '$2a$10$YMpimV4T6BtDhIaA8jSW.u8UTGBeGhc/qwXP4oxoMr4mOw9.qttt6', '源码', NULL, 106, NULL, '[email protected]', '15601701300', 0, '', 0, '0:0:0:0:0:0:0:1', '2024-03-18 21:09:04', '', '2021-01-13 23:50:35', NULL, '2024-03-18 21:09:04', b'0', 1); | ||
INSERT INTO `system_users` (`id`, `username`, `password`, `nickname`, `remark`, `dept_id`, `post_ids`, `email`, `mobile`, `sex`, `avatar`, `status`, `login_ip`, `login_date`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (104, 'test', '$2a$04$KhExCYl7lx6eWWZYKsibKOZ8IBJRyuNuCcEOLQ11RYhJKgHmlSwK.', '测试号', NULL, 107, '[1,2]', '[email protected]', '15601691200', 1, '', 0, '0:0:0:0:0:0:0:1', '2024-03-26 07:11:35', '', '2021-01-21 02:13:53', NULL, '2024-03-26 07:11:35', b'0', 1); | ||
|
46 changes: 0 additions & 46 deletions
46
...ao-common/src/main/java/cn/iocoder/yudao/framework/common/util/spring/SpringAopUtils.java
This file was deleted.
Oops, something went wrong.
24 changes: 24 additions & 0 deletions
24
...yudao-common/src/main/java/cn/iocoder/yudao/framework/common/util/spring/SpringUtils.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package cn.iocoder.yudao.framework.common.util.spring; | ||
|
||
import cn.hutool.extra.spring.SpringUtil; | ||
|
||
import java.util.Objects; | ||
|
||
/** | ||
* Spring 工具类 | ||
* | ||
* @author 芋道源码 | ||
*/ | ||
public class SpringUtils extends SpringUtil { | ||
|
||
/** | ||
* 是否为生产环境 | ||
* | ||
* @return 是否生产环境 | ||
*/ | ||
public static boolean isProd() { | ||
String activeProfile = getActiveProfile(); | ||
return Objects.equals("prod", activeProfile); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65 changes: 65 additions & 0 deletions
65
...er-web/src/main/java/cn/iocoder/yudao/framework/apilog/core/annotations/ApiAccessLog.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
package cn.iocoder.yudao.framework.apilog.core.annotations; | ||
|
||
import cn.iocoder.yudao.framework.apilog.core.enums.OperateTypeEnum; | ||
|
||
import java.lang.annotation.ElementType; | ||
import java.lang.annotation.Retention; | ||
import java.lang.annotation.RetentionPolicy; | ||
import java.lang.annotation.Target; | ||
|
||
/** | ||
* 访问日志注解 | ||
* | ||
* @author 芋道源码 | ||
*/ | ||
@Target({ElementType.METHOD}) | ||
@Retention(RetentionPolicy.RUNTIME) | ||
public @interface ApiAccessLog { | ||
|
||
// ========== 开关字段 ========== | ||
|
||
/** | ||
* 是否记录访问日志 | ||
*/ | ||
boolean enable() default true; | ||
/** | ||
* 是否记录请求参数 | ||
* | ||
* 默认记录,主要考虑请求数据一般不大。可手动设置为 false 进行关闭 | ||
*/ | ||
boolean requestEnable() default true; | ||
/** | ||
* 是否记录响应结果 | ||
* | ||
* 默认不记录,主要考虑响应数据可能比较大。可手动设置为 true 进行打开 | ||
*/ | ||
boolean responseEnable() default false; | ||
/** | ||
* 敏感参数数组 | ||
* | ||
* 添加后,请求参数、响应结果不会记录该参数 | ||
*/ | ||
String[] sanitizeKeys() default {}; | ||
|
||
// ========== 模块字段 ========== | ||
|
||
/** | ||
* 操作模块 | ||
* | ||
* 为空时,会尝试读取 {@link io.swagger.v3.oas.annotations.tags.Tag#name()} 属性 | ||
*/ | ||
String operateModule() default ""; | ||
/** | ||
* 操作名 | ||
* | ||
* 为空时,会尝试读取 {@link io.swagger.v3.oas.annotations.Operation#summary()} 属性 | ||
*/ | ||
String operateName() default ""; | ||
/** | ||
* 操作分类 | ||
* | ||
* 实际并不是数组,因为枚举不能设置 null 作为默认值 | ||
*/ | ||
OperateTypeEnum[] operateType() default {}; | ||
|
||
} |
51 changes: 51 additions & 0 deletions
51
...arter-web/src/main/java/cn/iocoder/yudao/framework/apilog/core/enums/OperateTypeEnum.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
package cn.iocoder.yudao.framework.apilog.core.enums; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Getter; | ||
|
||
/** | ||
* 操作日志的操作类型 | ||
* | ||
* @author ruoyi | ||
*/ | ||
@Getter | ||
@AllArgsConstructor | ||
public enum OperateTypeEnum { | ||
|
||
/** | ||
* 查询 | ||
*/ | ||
GET(1), | ||
/** | ||
* 新增 | ||
*/ | ||
CREATE(2), | ||
/** | ||
* 修改 | ||
*/ | ||
UPDATE(3), | ||
/** | ||
* 删除 | ||
*/ | ||
DELETE(4), | ||
/** | ||
* 导出 | ||
*/ | ||
EXPORT(5), | ||
/** | ||
* 导入 | ||
*/ | ||
IMPORT(6), | ||
/** | ||
* 其它 | ||
* | ||
* 在无法归类时,可以选择使用其它。因为还有操作名可以进一步标识 | ||
*/ | ||
OTHER(0); | ||
|
||
/** | ||
* 类型 | ||
*/ | ||
private final Integer type; | ||
|
||
} |
Oops, something went wrong.