Search in sources :

Example 1 with RateLimitCheck

use of com.giffing.bucket4j.spring.boot.starter.context.RateLimitCheck in project bucket4j-spring-boot-starter by MarcGiffing.

the class ServletRequestFilter method doFilterInternal.

@Override
protected void doFilterInternal(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain) throws ServletException, IOException {
    HttpServletRequest httpRequest = (HttpServletRequest) request;
    HttpServletResponse httpResponse = (HttpServletResponse) response;
    boolean allConsumed = true;
    Long remainingLimit = null;
    for (RateLimitCheck rl : filterConfig.getRateLimitChecks()) {
        ConsumptionProbe probe = rl.rateLimit(request);
        if (probe != null) {
            if (probe.isConsumed()) {
                remainingLimit = getRemainingLimit(remainingLimit, probe);
            } else {
                allConsumed = false;
                handleHttpResponseOnRateLimiting(httpResponse, probe);
                break;
            }
            if (filterConfig.getStrategy().equals(RateLimitConditionMatchingStrategy.FIRST)) {
                break;
            }
        }
    }
    ;
    if (allConsumed) {
        if (remainingLimit != null) {
            httpResponse.setHeader("X-Rate-Limit-Remaining", "" + remainingLimit);
        }
        filterChain.doFilter(httpRequest, httpResponse);
    }
}
Also used : HttpServletRequest(javax.servlet.http.HttpServletRequest) RateLimitCheck(com.giffing.bucket4j.spring.boot.starter.context.RateLimitCheck) HttpServletResponse(javax.servlet.http.HttpServletResponse) ConsumptionProbe(io.github.bucket4j.ConsumptionProbe)

Example 2 with RateLimitCheck

use of com.giffing.bucket4j.spring.boot.starter.context.RateLimitCheck in project bucket4j-spring-boot-starter by MarcGiffing.

the class ServletRateLimitFilter method run.

@Override
public Object run() {
    RequestContext context = RequestContext.getCurrentContext();
    HttpServletRequest request = context.getRequest();
    Long remainingLimit = null;
    for (RateLimitCheck rl : filterConfig.getRateLimitChecks()) {
        ConsumptionProbe probe = rl.rateLimit(request);
        if (probe != null) {
            if (probe.isConsumed()) {
                remainingLimit = getRemainingLimit(remainingLimit, probe);
            } else {
                context.setResponseStatusCode(HttpStatus.TOO_MANY_REQUESTS.value());
                context.setResponseBody(filterConfig.getHttpResponseBody());
                context.setSendZuulResponse(false);
            }
            if (filterConfig.getStrategy().equals(RateLimitConditionMatchingStrategy.FIRST)) {
                break;
            }
        }
    }
    ;
    return null;
}
Also used : HttpServletRequest(javax.servlet.http.HttpServletRequest) RateLimitCheck(com.giffing.bucket4j.spring.boot.starter.context.RateLimitCheck) RequestContext(com.netflix.zuul.context.RequestContext) ConsumptionProbe(io.github.bucket4j.ConsumptionProbe)

Example 3 with RateLimitCheck

use of com.giffing.bucket4j.spring.boot.starter.context.RateLimitCheck in project bucket4j-spring-boot-starter by MarcGiffing.

the class ZuulRateLimitFilter method run.

@Override
public Object run() {
    RequestContext context = getCurrentRequestContext();
    HttpServletRequest request = context.getRequest();
    Long remainingLimit = null;
    for (RateLimitCheck rl : filterConfig.getRateLimitChecks()) {
        ConsumptionProbe probe = rl.rateLimit(request);
        if (probe != null) {
            if (probe.isConsumed()) {
                remainingLimit = getRemainingLimit(remainingLimit, probe);
            } else {
                context.setResponseStatusCode(HttpStatus.TOO_MANY_REQUESTS.value());
                context.setResponseBody(filterConfig.getHttpResponseBody());
                context.setSendZuulResponse(false);
                break;
            }
            if (filterConfig.getStrategy().equals(RateLimitConditionMatchingStrategy.FIRST)) {
                break;
            }
        }
    }
    ;
    return null;
}
Also used : HttpServletRequest(javax.servlet.http.HttpServletRequest) RateLimitCheck(com.giffing.bucket4j.spring.boot.starter.context.RateLimitCheck) RequestContext(com.netflix.zuul.context.RequestContext) ConsumptionProbe(io.github.bucket4j.ConsumptionProbe)

Example 4 with RateLimitCheck

use of com.giffing.bucket4j.spring.boot.starter.context.RateLimitCheck in project bucket4j-spring-boot-starter by MarcGiffing.

the class Bucket4JBaseConfiguration method buildFilterConfig.

public FilterConfiguration buildFilterConfig(Bucket4JConfiguration config, CacheManager cacheManager, ExpressionParser expressionParser, BeanFactory beanFactory) {
    FilterConfiguration filterConfig = new FilterConfiguration();
    filterConfig.setUrl(config.getUrl());
    filterConfig.setOrder(config.getFilterOrder());
    filterConfig.setStrategy(config.getStrategy());
    filterConfig.setHttpResponseBody(config.getHttpResponseBody());
    ProxyManager<String> buckets = Bucket4j.extension(JCache.class).proxyManagerForCache(jCache(config.getCacheName(), cacheManager));
    config.getRateLimits().forEach(rl -> {
        ConfigurationBuilder<?> configBuilder = Bucket4j.configurationBuilder();
        for (BandWidthConfig bandWidth : rl.getBandwidths()) {
            configBuilder = configBuilder.addLimit(Bandwidth.simple(bandWidth.getCapacity(), Duration.of(bandWidth.getTime(), bandWidth.getUnit())));
        }
        ;
        final ConfigurationBuilder<?> configBuilderToUse = configBuilder;
        RateLimitCheck rlc = (servletRequest) -> {
            boolean skipRateLimit = false;
            if (rl.getSkipCondition() != null) {
                skipRateLimit = skipCondition(rl, expressionParser, beanFactory).evalute(servletRequest);
            }
            if (rl.getExecuteCondition() != null && !skipRateLimit) {
                skipRateLimit = !executeCondition(rl, expressionParser, beanFactory).evalute(servletRequest);
            }
            if (!skipRateLimit) {
                String key = getKeyFilter(filterConfig.getUrl(), rl, expressionParser, beanFactory).key(servletRequest);
                Bucket bucket = buckets.getProxy(key, () -> configBuilderToUse.buildConfiguration());
                ConsumptionProbe probe = bucket.tryConsumeAndReturnRemaining(1);
                return probe;
            }
            return null;
        };
        filterConfig.getRateLimitChecks().add(rlc);
    });
    return filterConfig;
}
Also used : Bucket4JConfiguration(com.giffing.bucket4j.spring.boot.starter.context.properties.Bucket4JConfiguration) KeyFilter(com.giffing.bucket4j.spring.boot.starter.context.KeyFilter) JCacheNotFoundException(com.giffing.bucket4j.spring.boot.starter.exception.JCacheNotFoundException) RateLimit(com.giffing.bucket4j.spring.boot.starter.context.properties.RateLimit) ConsumptionProbe(io.github.bucket4j.ConsumptionProbe) ProxyManager(io.github.bucket4j.grid.ProxyManager) Bucket4JAutoConfigurationZuul(com.giffing.bucket4j.spring.boot.starter.config.zuul.Bucket4JAutoConfigurationZuul) Condition(com.giffing.bucket4j.spring.boot.starter.context.Condition) MissingKeyFilterExpressionException(com.giffing.bucket4j.spring.boot.starter.exception.MissingKeyFilterExpressionException) Duration(java.time.Duration) BeanFactoryResolver(org.springframework.context.expression.BeanFactoryResolver) Cache(javax.cache.Cache) Bucket4JAutoConfigurationServletFilter(com.giffing.bucket4j.spring.boot.starter.config.servlet.Bucket4JAutoConfigurationServletFilter) GridBucketState(io.github.bucket4j.grid.GridBucketState) ConfigurationBuilder(io.github.bucket4j.ConfigurationBuilder) Bandwidth(io.github.bucket4j.Bandwidth) Bucket(io.github.bucket4j.Bucket) Bucket4j(io.github.bucket4j.Bucket4j) ExpressionParser(org.springframework.expression.ExpressionParser) JCache(io.github.bucket4j.grid.jcache.JCache) BeanFactory(org.springframework.beans.factory.BeanFactory) Expression(org.springframework.expression.Expression) CacheManager(javax.cache.CacheManager) BandWidthConfig(com.giffing.bucket4j.spring.boot.starter.context.BandWidthConfig) StandardEvaluationContext(org.springframework.expression.spel.support.StandardEvaluationContext) RateLimitCheck(com.giffing.bucket4j.spring.boot.starter.context.RateLimitCheck) FilterConfiguration(com.giffing.bucket4j.spring.boot.starter.context.FilterConfiguration) StringUtils(org.springframework.util.StringUtils) Bucket(io.github.bucket4j.Bucket) BandWidthConfig(com.giffing.bucket4j.spring.boot.starter.context.BandWidthConfig) RateLimitCheck(com.giffing.bucket4j.spring.boot.starter.context.RateLimitCheck) FilterConfiguration(com.giffing.bucket4j.spring.boot.starter.context.FilterConfiguration) ConsumptionProbe(io.github.bucket4j.ConsumptionProbe) JCache(io.github.bucket4j.grid.jcache.JCache)

Aggregations

RateLimitCheck (com.giffing.bucket4j.spring.boot.starter.context.RateLimitCheck)4 ConsumptionProbe (io.github.bucket4j.ConsumptionProbe)4 HttpServletRequest (javax.servlet.http.HttpServletRequest)3 RequestContext (com.netflix.zuul.context.RequestContext)2 Bucket4JAutoConfigurationServletFilter (com.giffing.bucket4j.spring.boot.starter.config.servlet.Bucket4JAutoConfigurationServletFilter)1 Bucket4JAutoConfigurationZuul (com.giffing.bucket4j.spring.boot.starter.config.zuul.Bucket4JAutoConfigurationZuul)1 BandWidthConfig (com.giffing.bucket4j.spring.boot.starter.context.BandWidthConfig)1 Condition (com.giffing.bucket4j.spring.boot.starter.context.Condition)1 FilterConfiguration (com.giffing.bucket4j.spring.boot.starter.context.FilterConfiguration)1 KeyFilter (com.giffing.bucket4j.spring.boot.starter.context.KeyFilter)1 Bucket4JConfiguration (com.giffing.bucket4j.spring.boot.starter.context.properties.Bucket4JConfiguration)1 RateLimit (com.giffing.bucket4j.spring.boot.starter.context.properties.RateLimit)1 JCacheNotFoundException (com.giffing.bucket4j.spring.boot.starter.exception.JCacheNotFoundException)1 MissingKeyFilterExpressionException (com.giffing.bucket4j.spring.boot.starter.exception.MissingKeyFilterExpressionException)1 Bandwidth (io.github.bucket4j.Bandwidth)1 Bucket (io.github.bucket4j.Bucket)1 Bucket4j (io.github.bucket4j.Bucket4j)1 ConfigurationBuilder (io.github.bucket4j.ConfigurationBuilder)1 GridBucketState (io.github.bucket4j.grid.GridBucketState)1 ProxyManager (io.github.bucket4j.grid.ProxyManager)1