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

mn.foreman.api.endpoints.sitemap.SiteMapImpl Maven / Gradle / Ivy

There is a newer version: 1.78.0
Show newest version
package mn.foreman.api.endpoints.sitemap;

import mn.foreman.api.JsonUtils;
import mn.foreman.api.WebUtil;

import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.google.common.collect.ImmutableMap;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.Optional;

/** All of the handlers for interacting with the SiteMap API. */
public class SiteMapImpl
        implements SiteMap {

    /** The logger for this class. */
    private static final Logger LOG =
            LoggerFactory.getLogger(SiteMapImpl.class);

    /** The json mapper. */
    private final ObjectMapper objectMapper;

    /** The web utilities. */
    private final WebUtil webUtil;

    /**
     * Constructor.
     *
     * @param objectMapper The mapper.
     * @param webUtil      The web utilities.
     */
    public SiteMapImpl(
            final ObjectMapper objectMapper,
            final WebUtil webUtil) {
        this.objectMapper = objectMapper;
        this.webUtil = webUtil;
    }

    @Override
    public Optional setLocation(
            final int minerId,
            final String rack,
            final int row,
            final int index) {
        Optional result = Optional.empty();
        try {
            final Optional response =
                    this.webUtil.post(
                            String.format(
                                    "/api/site-map/location/%d",
                                    minerId),
                            this.objectMapper.writeValueAsString(
                                    ImmutableMap.of(
                                            "rack",
                                            rack,
                                            "row",
                                            row,
                                            "index",
                                            index)));
            if (response.isPresent()) {
                result =
                        JsonUtils.fromJson(
                                response.get(),
                                this.objectMapper,
                                new TypeReference() {
                                });
            }
        } catch (final JsonProcessingException e) {
            LOG.warn("Exception occurred while parsing json", e);
        }
        return result;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy