mirror of
				https://github.com/dromara/RuoYi-Vue-Plus.git
				synced 2025-11-04 08:13:44 +08:00 
			
		
		
		
	update 同步 ruoyi 自定义限流 新功能
This commit is contained in:
		@@ -1,5 +1,6 @@
 | 
			
		||||
package com.ruoyi.framework.config;
 | 
			
		||||
 | 
			
		||||
import cn.hutool.core.util.StrUtil;
 | 
			
		||||
import com.ruoyi.common.utils.StringUtils;
 | 
			
		||||
import com.ruoyi.framework.config.properties.RedissonProperties;
 | 
			
		||||
import org.redisson.Redisson;
 | 
			
		||||
@@ -16,6 +17,7 @@ import org.springframework.cache.annotation.CachingConfigurerSupport;
 | 
			
		||||
import org.springframework.cache.annotation.EnableCaching;
 | 
			
		||||
import org.springframework.context.annotation.Bean;
 | 
			
		||||
import org.springframework.context.annotation.Configuration;
 | 
			
		||||
import org.springframework.data.redis.core.script.DefaultRedisScript;
 | 
			
		||||
 | 
			
		||||
import java.io.IOException;
 | 
			
		||||
import java.util.HashMap;
 | 
			
		||||
@@ -90,8 +92,7 @@ public class RedisConfig extends CachingConfigurerSupport {
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	@Bean
 | 
			
		||||
	public DefaultRedisScript<Long> limitScript()
 | 
			
		||||
	{
 | 
			
		||||
	public DefaultRedisScript<Long> limitScript() {
 | 
			
		||||
		DefaultRedisScript<Long> redisScript = new DefaultRedisScript<>();
 | 
			
		||||
		redisScript.setScriptText(limitScriptText());
 | 
			
		||||
		redisScript.setResultType(Long.class);
 | 
			
		||||
@@ -101,20 +102,21 @@ public class RedisConfig extends CachingConfigurerSupport {
 | 
			
		||||
	/**
 | 
			
		||||
	 * 限流脚本
 | 
			
		||||
	 */
 | 
			
		||||
	private String limitScriptText()
 | 
			
		||||
	{
 | 
			
		||||
		return "local key = KEYS[1]\n" +
 | 
			
		||||
			"local count = tonumber(ARGV[1])\n" +
 | 
			
		||||
			"local time = tonumber(ARGV[2])\n" +
 | 
			
		||||
			"local current = redis.call('get', key);\n" +
 | 
			
		||||
			"if current and tonumber(current) > count then\n" +
 | 
			
		||||
			"    return current;\n" +
 | 
			
		||||
			"end\n" +
 | 
			
		||||
			"current = redis.call('incr', key)\n" +
 | 
			
		||||
			"if tonumber(current) == 1 then\n" +
 | 
			
		||||
			"    redis.call('expire', key, time)\n" +
 | 
			
		||||
			"end\n" +
 | 
			
		||||
			"return current;";
 | 
			
		||||
	private String limitScriptText() {
 | 
			
		||||
		return StrUtil.builder()
 | 
			
		||||
			.append("local key = KEYS[1]\n")
 | 
			
		||||
			.append("local count = tonumber(ARGV[1])\n")
 | 
			
		||||
			.append("local time = tonumber(ARGV[2])\n")
 | 
			
		||||
			.append("local current = redis.call('get', key);\n")
 | 
			
		||||
			.append("if current and tonumber(current) > count then\n")
 | 
			
		||||
			.append("    return current;\n")
 | 
			
		||||
			.append("end\n")
 | 
			
		||||
			.append("current = redis.call('incr', key)\n")
 | 
			
		||||
			.append("if tonumber(current) == 1 then\n")
 | 
			
		||||
			.append("    redis.call('expire', key, time)\n")
 | 
			
		||||
			.append("end\n")
 | 
			
		||||
			.append("return current;")
 | 
			
		||||
			.toString();
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -44,8 +44,8 @@ export function downLoadExcel(url, params) {
 | 
			
		||||
          for (const key of Object.keys(value)) {
 | 
			
		||||
            if (value[key] !== null && typeof (value[key]) !== 'undefined') {
 | 
			
		||||
              let params = propName + '[' + key + ']';
 | 
			
		||||
              let subPart = encodeURIComponent(params) + "="
 | 
			
		||||
              urlparams += subPart + encodeURIComponent(value[key]) + "&";
 | 
			
		||||
              let subPart = encodeURIComponent(params) + '=';
 | 
			
		||||
              urlparams += subPart + encodeURIComponent(value[key]) + '&';
 | 
			
		||||
            }
 | 
			
		||||
          }
 | 
			
		||||
        } else {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user