aboutsummaryrefslogtreecommitdiffstats
path: root/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/restapi/filter/SetBouncerPassthruHeaderFilter.java
blob: 7ea98528a8827c6cae3146846d20d646d7142ccb (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
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.controller.restapi.filter;

import com.yahoo.jdisc.handler.ResponseHandler;
import com.yahoo.jdisc.http.filter.DiscFilterRequest;
import com.yahoo.jdisc.http.filter.SecurityRequestFilter;
import com.yahoo.yolean.chain.After;

/**
 * @author Stian Kristoffersen
 */
@After("BouncerFilter")
public class SetBouncerPassthruHeaderFilter implements SecurityRequestFilter {

    public static final String BOUNCER_PASSTHRU_ATTRIBUTE = "bouncer.bypassthru";
    public static final String BOUNCER_PASSTHRU_COOKIE_OK = "1";
    public static final String BOUNCER_PASSTHRU_HEADER_FIELD = "com.yahoo.hosted.vespa.bouncer.passthru";

    @Override
    public void filter(DiscFilterRequest request, ResponseHandler handler) {
        Object statusProperty = request.getAttribute(BOUNCER_PASSTHRU_ATTRIBUTE);
        String status = Integer.toString((int)statusProperty);

        request.addHeader(BOUNCER_PASSTHRU_HEADER_FIELD, status);
    }

}