org.mandas.docker.client.messages.RegistryConfigs Maven / Gradle / Ivy
/*-
* -\-\-
* docker-client
* --
* Copyright (C) 2016 Spotify AB
* Copyright (C) 9/2019 - 2020 Dimitris Mandalidis
* --
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* -/-/-
*/
package org.mandas.docker.client.messages;
import static java.util.stream.Collectors.toMap;
import java.util.Map;
import java.util.Map.Entry;
import org.immutables.value.Value.Immutable;
import com.fasterxml.jackson.annotation.JsonCreator;
/**
* A formatted string passed in X-Registry-Config request header.
*
*
* {
* "docker.example.com": {
* "serveraddress": "docker.example.com",
* "username": "janedoe",
* "password": "hunter2",
* "email": "[email protected]",
* "auth": ""
* },
* "https://index.docker.io/v1/": {
* "serveraddress": "docker.example.com",
* "username": "mobydock",
* "password": "conta1n3rize14",
* "email": "[email protected]",
* "auth": ""
* }
* }
*
*/
@Immutable
public interface RegistryConfigs {
public static RegistryConfigs empty() {
return builder().build();
}
Map configs();
@JsonCreator
public static RegistryConfigs create(final Map configs) {
if (configs == null) {
return empty();
}
// need to add serverAddress to each RegistryAuth instance; it is not available when
// Jackson is deserializing the RegistryAuth field
final Map transformedMap = configs.entrySet().stream()
.collect(toMap(Entry::getKey, entry -> {
RegistryAuth value = entry.getValue();
if (value == null) {
return null;
}
if (value.serverAddress() == null) {
return value.toBuilder().serverAddress(entry.getKey()).build();
}
return value;
}));
return builder().configs(transformedMap).build();
}
public static Builder builder() {
return ImmutableRegistryConfigs.builder();
}
interface Builder {
Builder configs(Map configs);
Builder addConfig(final String server, final RegistryAuth registryAuth);
RegistryConfigs build();
}
}