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

io.sinistral.proteus.services.AssetsService Maven / Gradle / Ivy

package io.sinistral.proteus.services;

import com.google.inject.Inject;
import com.google.inject.Singleton;
import com.google.inject.name.Named;
import com.typesafe.config.Config;
import io.sinistral.proteus.server.endpoints.EndpointInfo;
import io.undertow.predicate.TruePredicate;
import io.undertow.server.RoutingHandler;
import io.undertow.server.handlers.resource.FileResourceManager;
import io.undertow.server.handlers.resource.ResourceHandler;
import io.undertow.util.Methods;

import java.nio.file.Paths;
import java.util.Set;
import java.util.function.Supplier;

/**
 * A service for serving static assets from a directory.
 *
 * @author jbauer
 */
@Singleton
public class AssetsService extends DefaultService implements Supplier
{
    @Inject
    @Named("registeredEndpoints")
    protected Set registeredEndpoints;
    @Inject
    protected RoutingHandler router;
    @Inject
    @Named("assets")
    protected Config serviceConfig;

    /**
     *
     */
    public AssetsService()
    {
    }

    @Override
    protected void startUp() throws Exception
    {
        super.startUp();
        router.addAll(this.get());
    }

    public RoutingHandler get()
    {
        RoutingHandler router = new RoutingHandler();
        final String assetsPath = serviceConfig.getString("path");
        final String assetsDirectoryName = serviceConfig.getString("dir");
        final Integer assetsCacheTime = serviceConfig.getInt("cache.time");
        final FileResourceManager fileResourceManager = new FileResourceManager(Paths.get(assetsDirectoryName).toFile());

        router.add(Methods.GET,
                assetsPath + "/*",
                io.undertow.Handlers.rewrite("regex('" + assetsPath + "/(.*)')",
                        "/$1",
                        getClass().getClassLoader(),
                        new ResourceHandler(fileResourceManager).setCachable(TruePredicate.instance()).setCacheTime(assetsCacheTime)));

        this.registeredEndpoints.add(EndpointInfo.builder()
                .withConsumes("*/*")
                .withProduces("*/*")
                .withPathTemplate(assetsPath)
                .withControllerName(this.getClass().getSimpleName())
                .withMethod(Methods.GET)
                .build());

        return router;
    }
}







© 2015 - 2025 Weber Informatics LLC | Privacy Policy