summaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/systemflags/v1/ConfigServerFlagsTarget.java
blob: 0304d1a5949bf8f74bdf5bcda4286633d829eb5a (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
// Copyright 2019 Oath Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.controller.api.systemflags.v1;

import com.yahoo.config.provision.SystemName;
import com.yahoo.config.provision.zone.ZoneId;
import com.yahoo.vespa.athenz.api.AthenzIdentity;

import java.net.URI;
import java.util.List;
import java.util.Objects;
import java.util.Optional;

import static com.yahoo.vespa.hosted.controller.api.systemflags.v1.FlagsTarget.defaultFile;
import static com.yahoo.vespa.hosted.controller.api.systemflags.v1.FlagsTarget.environmentFile;
import static com.yahoo.vespa.hosted.controller.api.systemflags.v1.FlagsTarget.systemFile;
import static com.yahoo.vespa.hosted.controller.api.systemflags.v1.FlagsTarget.zoneFile;

/**
 * @author bjorncs
 */
class ConfigServerFlagsTarget implements FlagsTarget {
    private final SystemName system;
    private final ZoneId zone;
    private final URI endpoint;
    private final AthenzIdentity identity;

    ConfigServerFlagsTarget(SystemName system, ZoneId zone, URI endpoint, AthenzIdentity identity) {
        this.system = Objects.requireNonNull(system);
        this.zone = Objects.requireNonNull(zone);
        this.endpoint = Objects.requireNonNull(endpoint);
        this.identity = Objects.requireNonNull(identity);
    }

    @Override public List<String> flagDataFilesPrioritized() { return List.of(zoneFile(system, zone), environmentFile(system, zone.environment()), systemFile(system), defaultFile()); }
    @Override public URI endpoint() { return endpoint; }
    @Override public Optional<AthenzIdentity> athenzHttpsIdentity() { return Optional.of(identity); }
    @Override public String asString() { return String.format("%s.%s", system.value(), zone.value()); }

    @Override public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        ConfigServerFlagsTarget that = (ConfigServerFlagsTarget) o;
        return system == that.system &&
                Objects.equals(zone, that.zone) &&
                Objects.equals(endpoint, that.endpoint) &&
                Objects.equals(identity, that.identity);
    }

    @Override public int hashCode() { return Objects.hash(system, zone, endpoint, identity); }
}