All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.codecentric.boot.admin.server.utils.jackson.RegistrationDeserializer Maven / Gradle / Ivy

/*
 * Copyright 2014-2018 the original author or authors.
 *
 * 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 de.codecentric.boot.admin.server.utils.jackson;

import java.io.IOException;
import java.util.Iterator;
import java.util.Map;

import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.deser.std.StdDeserializer;

import de.codecentric.boot.admin.server.domain.values.Registration;

public class RegistrationDeserializer extends StdDeserializer {

	private static final long serialVersionUID = 1L;

	public RegistrationDeserializer() {
		super(Registration.class);
	}

	@Override
	public Registration deserialize(JsonParser p, DeserializationContext ctxt) throws IOException {
		JsonNode node = p.readValueAsTree();
		Registration.Builder builder = Registration.builder();

		if (node.has("name")) {
			builder.name(node.get("name").asText());
		}
		if (node.has("url")) {
			String url = node.get("url").asText();
			builder.healthUrl(url.replaceFirst("/+$", "") + "/health").managementUrl(url);
		}
		else {
			if (node.has("healthUrl")) {
				builder.healthUrl(node.get("healthUrl").asText());
			}
			if (node.has("managementUrl")) {
				builder.managementUrl(node.get("managementUrl").asText());
			}
			if (node.has("serviceUrl")) {
				builder.serviceUrl(node.get("serviceUrl").asText());
			}
		}

		if (node.has("metadata")) {
			Iterator> it = node.get("metadata").fields();
			while (it.hasNext()) {
				Map.Entry entry = it.next();
				builder.metadata(entry.getKey(), entry.getValue().asText());
			}
		}
		return builder.build();
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy