|
@@ -1,13 +1,16 @@
|
|
|
package cn.iocoder.yudao.module.infra.controller.admin.redis;
|
|
|
|
|
|
+import cn.hutool.core.collection.CollUtil;
|
|
|
+import cn.hutool.core.util.StrUtil;
|
|
|
import cn.iocoder.yudao.framework.common.pojo.CommonResult;
|
|
|
import cn.iocoder.yudao.framework.redis.core.RedisKeyDefine;
|
|
|
import cn.iocoder.yudao.framework.redis.core.RedisKeyRegistry;
|
|
|
-import cn.iocoder.yudao.module.infra.controller.admin.redis.vo.RedisKeyRespVO;
|
|
|
+import cn.iocoder.yudao.module.infra.controller.admin.redis.vo.RedisKeyDefineRespVO;
|
|
|
import cn.iocoder.yudao.module.infra.controller.admin.redis.vo.RedisKeyValueRespVO;
|
|
|
import cn.iocoder.yudao.module.infra.controller.admin.redis.vo.RedisMonitorRespVO;
|
|
|
import cn.iocoder.yudao.module.infra.convert.redis.RedisConvert;
|
|
|
import io.swagger.annotations.Api;
|
|
|
+import io.swagger.annotations.ApiImplicitParam;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
import org.springframework.data.redis.connection.RedisServerCommands;
|
|
|
import org.springframework.data.redis.core.Cursor;
|
|
@@ -18,11 +21,7 @@ import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
-import java.nio.charset.StandardCharsets;
|
|
|
-import java.util.HashSet;
|
|
|
-import java.util.List;
|
|
|
-import java.util.Properties;
|
|
|
-import java.util.Set;
|
|
|
+import java.util.*;
|
|
|
|
|
|
import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success;
|
|
|
|
|
@@ -48,69 +47,66 @@ public class RedisController {
|
|
|
return success(RedisConvert.INSTANCE.build(info, dbSize, commandStats));
|
|
|
}
|
|
|
|
|
|
- @GetMapping("/get-key-list")
|
|
|
+ @GetMapping("/get-key-define-list")
|
|
|
@ApiOperation("获得 Redis Key 模板列表")
|
|
|
@PreAuthorize("@ss.hasPermission('infra:redis:get-key-list')")
|
|
|
- public CommonResult<List<RedisKeyRespVO>> getKeyList() {
|
|
|
+ public CommonResult<List<RedisKeyDefineRespVO>> getKeyDefineList() {
|
|
|
List<RedisKeyDefine> keyDefines = RedisKeyRegistry.list();
|
|
|
return success(RedisConvert.INSTANCE.convertList(keyDefines));
|
|
|
}
|
|
|
|
|
|
- @GetMapping("/get-key-Defines")
|
|
|
+ @GetMapping("/get-key-list")
|
|
|
@ApiOperation("获得 Redis keys 键名列表")
|
|
|
+ @ApiImplicitParam(name = "keyTemplate", value = "Redis Key 定义", example = "true", dataTypeClass = String.class)
|
|
|
@PreAuthorize("@ss.hasPermission('infra:redis:get-key-list')")
|
|
|
- public CommonResult<Set<String>> getKeyDefines(@RequestParam("keyDefine") String keyDefine) {
|
|
|
- Set<String> keys = new HashSet<>();
|
|
|
- stringRedisTemplate.execute((RedisCallback<Set<String>>) connection -> {
|
|
|
- try (Cursor<byte[]> cursor = connection.scan(ScanOptions.scanOptions()
|
|
|
- .match(keyDefine + "*")
|
|
|
- .count(Integer.MAX_VALUE).build())) {
|
|
|
- while (cursor.hasNext()) {
|
|
|
- keys.add(new String(cursor.next(), StandardCharsets.UTF_8));
|
|
|
- }
|
|
|
+ public CommonResult<Set<String>> getKeyDefineList(@RequestParam("keyTemplate") String keyTemplate) {
|
|
|
+ return success(getKeyDefineList0(keyTemplate));
|
|
|
+ }
|
|
|
+
|
|
|
+ private Set<String> getKeyDefineList0(String keyTemplate) {
|
|
|
+ // key 格式化
|
|
|
+ String key = StrUtil.replace(keyTemplate, "%[s|c|b|d|x|o|f|a|e|g]", parameter -> "*");
|
|
|
+ // scan 扫描 key
|
|
|
+ Set<String> keys = new LinkedHashSet<>();
|
|
|
+ stringRedisTemplate.execute((RedisCallback<Set<String>>) connection -> {
|
|
|
+ try (Cursor<byte[]> cursor = connection.scan(ScanOptions.scanOptions().match(key).count(100).build())) {
|
|
|
+ cursor.forEachRemaining(value -> keys.add(StrUtil.utf8Str(value)));
|
|
|
} catch (Exception e) {
|
|
|
throw new RuntimeException(e);
|
|
|
}
|
|
|
return keys;
|
|
|
});
|
|
|
- return success(keys);
|
|
|
- }
|
|
|
-
|
|
|
- @DeleteMapping("/delete-key-defines")
|
|
|
- @ApiOperation("删除 Redis Key 根据模板")
|
|
|
- @PreAuthorize("@ss.hasPermission('infra:redis:get-key-list')")
|
|
|
- public CommonResult<Boolean> deleteKeyDefines(@RequestParam("keyDefine") String keyDefine) {
|
|
|
- Set<String> keys = stringRedisTemplate.keys(keyDefine + "*");
|
|
|
- if(keys != null && keys.isEmpty()){
|
|
|
- stringRedisTemplate.delete(keys);
|
|
|
- }
|
|
|
- return success(Boolean.TRUE);
|
|
|
+ return keys;
|
|
|
}
|
|
|
|
|
|
@GetMapping("/get-key-value")
|
|
|
@ApiOperation("获得 Redis key 内容")
|
|
|
+ @ApiImplicitParam(name = "key", value = "Redis Key", example = "oauth2_access_token:233", dataTypeClass = String.class)
|
|
|
@PreAuthorize("@ss.hasPermission('infra:redis:get-key-list')")
|
|
|
- public CommonResult<RedisKeyValueRespVO> getKeyValue(@RequestParam("keyDefine") String keyDefine, @RequestParam("cacheKey") String cacheKey) {
|
|
|
- String cacheValue = stringRedisTemplate.opsForValue().get(cacheKey);
|
|
|
- return success(RedisKeyValueRespVO.of(keyDefine, cacheKey, cacheValue));
|
|
|
+ public CommonResult<RedisKeyValueRespVO> getKeyValue(@RequestParam("key") String key) {
|
|
|
+ String value = stringRedisTemplate.opsForValue().get(key);
|
|
|
+ return success(new RedisKeyValueRespVO(key, value));
|
|
|
}
|
|
|
|
|
|
- @DeleteMapping("/delete-key-value")
|
|
|
- @ApiOperation("删除 Redis Key 根据key")
|
|
|
+ @DeleteMapping("/delete-key")
|
|
|
+ @ApiOperation("删除 Redis Key")
|
|
|
+ @ApiImplicitParam(name = "key", value = "Redis Key", example = "oauth2_access_token:233", dataTypeClass = String.class)
|
|
|
@PreAuthorize("@ss.hasPermission('infra:redis:get-key-list')")
|
|
|
- public CommonResult<Boolean> deleteKeyValue(@RequestParam("cacheKey") String cacheKey) {
|
|
|
- stringRedisTemplate.delete(cacheKey);
|
|
|
+ public CommonResult<Boolean> deleteKey(@RequestParam("key") String key) {
|
|
|
+ stringRedisTemplate.delete(key);
|
|
|
return success(Boolean.TRUE);
|
|
|
}
|
|
|
|
|
|
- @DeleteMapping("/delete-cache-all")
|
|
|
- @ApiOperation(value="删除 所有缓存", notes="不使用该接口")
|
|
|
+ @DeleteMapping("/delete-keys")
|
|
|
+ @ApiOperation("删除 Redis Key 根据模板")
|
|
|
+ @ApiImplicitParam(name = "keyTemplate", value = "Redis Key 定义", example = "true", dataTypeClass = String.class)
|
|
|
@PreAuthorize("@ss.hasPermission('infra:redis:get-key-list')")
|
|
|
- public CommonResult<Boolean> deleteCacheAll() {
|
|
|
- return success(stringRedisTemplate.execute((RedisCallback<Boolean>) connection -> {
|
|
|
- connection.flushAll();
|
|
|
- return Boolean.TRUE;
|
|
|
- }));
|
|
|
+ public CommonResult<Boolean> deleteKeys(@RequestParam("keyTemplate") String keyTemplate) {
|
|
|
+ Set<String> keys = getKeyDefineList0(keyTemplate);
|
|
|
+ if (CollUtil.isNotEmpty(keys)) {
|
|
|
+ stringRedisTemplate.delete(keys);
|
|
|
+ }
|
|
|
+ return success(Boolean.TRUE);
|
|
|
}
|
|
|
|
|
|
}
|