aboutsummaryrefslogtreecommitdiffstats
path: root/configserver/src/main/java/com/yahoo/vespa/config/server/http/Utils.java
blob: 6062925dd7f39d4e3f0b0d4933b8eb3db8732533 (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
50
51
52
53
54
55
56
57
58
59
60
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.config.server.http;

import com.yahoo.config.provision.TenantName;
import com.yahoo.container.jdisc.HttpRequest;
import com.yahoo.jdisc.application.BindingMatch;
import com.yahoo.jdisc.application.UriPattern;
import com.yahoo.vespa.config.server.tenant.TenantRepository;

import java.net.URI;

/**
 * Utilities for handlers.
 *
 * @author hmusum
 * @since 5.1.14
 */
// TODO: Dissolve into callers
public class Utils {

    /**
     * If request is an HTTP request and a jdisc request, return the {@link com.yahoo.jdisc.application.BindingMatch}
     * of the request. Otherwise return a dummy match useful only for testing based on the <code>uriPattern</code>
     * supplied.
     *
     * @param req        an {@link com.yahoo.container.jdisc.HttpRequest}
     * @param uriPattern a pattern to create a BindingMatch for in tests
     * @return match
     */
    public static BindingMatch<?> getBindingMatch(HttpRequest req, String uriPattern) {
        com.yahoo.jdisc.http.HttpRequest jDiscRequest = req.getJDiscRequest();
        BindingMatch<?> bm = jDiscRequest.getBindingMatch();
        if (bm == null) {
            UriPattern pattern = new UriPattern(uriPattern);
            bm = new BindingMatch<>(
                    pattern.match(URI.create(jDiscRequest.getUri().toString())),
                    new Object(), pattern);
        }
        return bm;
    }

    public static String getUrlBase(HttpRequest request, String pathPrefix) {
        return request.getUri().getScheme() + "://" + request.getHost() + ":" + request.getPort() + pathPrefix;
    }

    public static void checkThatTenantExists(TenantRepository tenantRepository, TenantName tenantName) {
        if ( ! tenantRepository.checkThatTenantExists(tenantName))
            throw new NotFoundException("Tenant '" + tenantName + "' was not found.");
    }

    public static TenantName getTenantNameFromSessionRequest(HttpRequest request) {
        BindingMatch<?> bm = getBindingMatch(request, "http://*/application/v2/tenant/*/session*");
        return TenantName.from(bm.group(2));
    }

    public static TenantName getTenantNameFromApplicationsRequest(HttpRequest request) {
        BindingMatch<?> bm = getBindingMatch(request, "http://*/application/v2/tenant/*/application*");
        return TenantName.from(bm.group(2));
    }
}