aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/vespa/model/container/http/FilterChains.java
blob: a342adc54f03294861453c8276cb68538de8e1fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.model.container.http;

import com.yahoo.component.ComponentId;
import com.yahoo.component.ComponentSpecification;
import com.yahoo.component.chain.model.ChainSpecification;
import com.yahoo.config.model.producer.TreeConfigProducer;
import com.yahoo.vespa.model.container.component.SimpleComponent;
import com.yahoo.vespa.model.container.component.chain.Chains;

import java.util.Set;

/**
 * @author Tony Vaagenes
 */
public class FilterChains extends Chains<HttpFilterChain>  {

    public FilterChains(TreeConfigProducer<? super Chains> parent) {
        super(parent, "filters");

        addChild(new SimpleComponent("com.yahoo.container.http.filter.FilterChainRepository"));
    }

    public boolean hasChain(ComponentId filterChain) {
        for (HttpFilterChain chain : allChains().allComponents()) {
            if (chain.getId().equals(filterChain))
                return true;
        }
        return false;
    }

    public boolean hasChainThatInherits(ComponentId filterChain) {
        for (HttpFilterChain chain : allChains().allComponents()) {
            for (ComponentSpecification spec : chain.getChainSpecification().inheritance.chainSpecifications) {
                if(spec.toId().equals(filterChain))
                    return true;
            }
        }
        return false;
    }

    public static ChainSpecification emptyChainSpec(ComponentId chainId) {
        return new ChainSpecification(chainId,
                                      new ChainSpecification.Inheritance(null, null),
                                      Set.of(),
                                      Set.of());
    }

}