Skip to content

Commit b43de74

Browse files
committed
Merge branch 'v1.3.3'
2 parents 7990674 + cd14c1a commit b43de74

File tree

1 file changed

+19
-4
lines changed
  • camellia-redis-proxy/camellia-redis-proxy-core/src/main/java/com/netease/nim/camellia/redis/proxy/plugin/permission

1 file changed

+19
-4
lines changed

camellia-redis-proxy/camellia-redis-proxy-core/src/main/java/com/netease/nim/camellia/redis/proxy/plugin/permission/ReadOnlyProxyPlugin.java

+19-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
package com.netease.nim.camellia.redis.proxy.plugin.permission;
22

3+
import com.netease.nim.camellia.redis.proxy.command.CommandContext;
4+
import com.netease.nim.camellia.redis.proxy.conf.ProxyDynamicConf;
35
import com.netease.nim.camellia.redis.proxy.enums.RedisCommand;
46
import com.netease.nim.camellia.redis.proxy.plugin.*;
7+
import com.netease.nim.camellia.redis.proxy.util.ErrorLogCollector;
58

69
/**
710
* Created by caojiajun on 2024/1/17
@@ -27,10 +30,22 @@ public int reply() {
2730

2831
@Override
2932
public ProxyPluginResponse executeRequest(ProxyRequest request) {
30-
RedisCommand redisCommand = request.getCommand().getRedisCommand();
31-
if (redisCommand.getType() != RedisCommand.Type.READ) {
32-
return FORBIDDEN;
33+
try {
34+
CommandContext commandContext = request.getCommand().getCommandContext();
35+
Long bid = commandContext.getBid();
36+
String bgroup = commandContext.getBgroup();
37+
boolean enable = ProxyDynamicConf.getBoolean("read.only.plugin.enable", bid, bgroup, true);
38+
if (!enable) {
39+
return ProxyPluginResponse.SUCCESS;
40+
}
41+
RedisCommand redisCommand = request.getCommand().getRedisCommand();
42+
if (redisCommand.getType() != RedisCommand.Type.READ) {
43+
return FORBIDDEN;
44+
}
45+
return ProxyPluginResponse.SUCCESS;
46+
} catch (Exception e) {
47+
ErrorLogCollector.collect(ReadOnlyProxyPlugin.class, "read only plugin execute error", e);
48+
return ProxyPluginResponse.SUCCESS;
3349
}
34-
return ProxyPluginResponse.SUCCESS;
3550
}
3651
}

0 commit comments

Comments
 (0)