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

io.helidon.webserver.observe.info.InfoService Maven / Gradle / Ivy

There is a newer version: 4.1.4
Show newest version
/*
 * Copyright (c) 2022, 2023 Oracle and/or its affiliates.
 *
 * 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 io.helidon.webserver.observe.info;

import java.util.HashMap;
import java.util.Map;

import io.helidon.http.NotFoundException;
import io.helidon.http.media.EntityWriter;
import io.helidon.http.media.jsonp.JsonpSupport;
import io.helidon.webserver.http.HttpRules;
import io.helidon.webserver.http.HttpService;
import io.helidon.webserver.http.ServerRequest;
import io.helidon.webserver.http.ServerResponse;

import jakarta.json.Json;
import jakarta.json.JsonBuilderFactory;
import jakarta.json.JsonObject;
import jakarta.json.JsonObjectBuilder;

class InfoService implements HttpService {
    private static final EntityWriter WRITER = JsonpSupport.serverResponseWriter();
    private static final JsonBuilderFactory JSON = Json.createBuilderFactory(Map.of());

    private final Map info;

    InfoService(Map info) {
        this.info = Map.copyOf(new HashMap<>(info));
    }

    @Override
    public void routing(HttpRules rules) {
        rules.get("/", this::info)
                .get("/{name}", this::namedInfo);
    }

    private void namedInfo(ServerRequest req, ServerResponse res) {
        String name = req.path().pathParameters().get("name");

        Object value = info.get(name);
        if (value == null) {
            throw new NotFoundException("Application info value for " + name + " is not defined.");
        } else {
            JsonObjectBuilder json = JSON.createObjectBuilder()
                    .add("name", name)
                    .add("value", String.valueOf(value));
            write(req, res, json.build());
        }
    }

    private void info(ServerRequest req, ServerResponse res) {
        JsonObjectBuilder json = JSON.createObjectBuilder(info);

        write(req, res, json.build());
    }

    private void write(ServerRequest req, ServerResponse res, JsonObject json) {
        WRITER.write(JsonpSupport.JSON_OBJECT_TYPE,
                     json,
                     res.outputStream(),
                     req.headers(),
                     res.headers());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy