GithubHelp home page GithubHelp logo

Comments (3)

shred avatar shred commented on July 28, 2024

Hi!

It's true that I was hoping for more ACME providers. 😉 But the service loader is an integral part of Java Modules, so I don't see a good reason why it should not be used.

As a compromise, would it help you if the Let's Encrypt provider gets hardwired into acme4j (so it won't be loaded via service loader), but I keep the service loader mechanism as an option for other providers?

from acme4j.

Maurice-Betzel avatar Maurice-Betzel commented on July 28, 2024

Let me think about an acme4j OSGi maven module add on, using the Spi Fly OSGi service loader bridge.

from acme4j.

Maurice-Betzel avatar Maurice-Betzel commented on July 28, 2024

I have created a non invasive solution with the Aries SPI FLY dynamic service loading mechanism.
Install Aries SPI FLY, or other OSGi Java service provider bridge, and create a bundle fragment to extend the headers on the acme4j-client like this to let SPI FLY register the providers:

<dependencies>
    <dependency>
        <groupId>org.shredzone.acme4j</groupId>
        <artifactId>acme4j-client</artifactId>
        <version>${shredzone.acme4j.version}</version>
        <scope>provided</scope>
    </dependency>
</dependencies>

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.felix</groupId>
            <artifactId>maven-bundle-plugin</artifactId>
            <configuration>
                <instructions>
                    <Fragment-Host>acme4j-client</Fragment-Host>
                    <Require-Capability>
                        osgi.extender;
                        filter:="(osgi.extender=osgi.serviceloader.registrar)"
                    </Require-Capability>
                    <Provide-Capability>
                        osgi.serviceloader;
                        uses:="org.shredzone.acme4j.provider";
                        osgi.serviceloader=org.shredzone.acme4j.provider.AcmeProvider
                    </Provide-Capability>
                </instructions>
            </configuration>
        </plugin>
    </plugins>
</build>

On the bundle creating the session, being the consumer of the above providers, declare the following:

<dependencies>
    <dependency>
        <groupId>org.shredzone.acme4j</groupId>
        <artifactId>acme4j-client</artifactId>
        <version>${shredzone.acme4j.version}</version>
        <scope>provided</scope>
    </dependency>
    <dependency>
        <groupId>org.quartz-scheduler</groupId>
        <artifactId>quartz</artifactId>
        <version>${quartz.scheduler.version}</version>
        <scope>provided</scope>
    </dependency>
</dependencies>

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.felix</groupId>
            <artifactId>maven-bundle-plugin</artifactId>
            <configuration>
                <instructions>
                    <Require-Capability>
                        osgi.serviceloader;
                        filter:="(osgi.serviceloader=org.shredzone.acme4j.provider.AcmeProvider)";
                        cardinality:=multiple,
                        osgi.extender;
                        filter:="(osgi.extender=osgi.serviceloader.processor)"
                    </Require-Capability>
                </instructions>
            </configuration>
        </plugin>
    </plugins>
</build>

As you can see this is a api bundle containing my Quartz cron jobs.
Create the acme4j Session like below (see in the Session.class), because Quartz cannot access the Service Provider within the job running on an internal thread, that would need a ClassLoadingHelper and even more fiddling:

Iterable providers = ServiceLoader.load(AcmeProvider.class);
AcmeProvider provider = StreamSupport.stream(providers.spliterator(), false)
.filter(p -> p.accepts(serverUri))
.reduce((a, b) -> {
throw new IllegalArgumentException("Both ACME providers "
+ a.getClass().getSimpleName() + " and "
+ b.getClass().getSimpleName() + " accept "
+ serverUri + ". Please check your classpath.");
})
.orElseThrow(() -> new IllegalArgumentException("No ACME provider found for " + serverUri));
LOGGER.info("Triggering Let's Encrypt request certificate job from URL {}", serverUri);
try {
Session session = new Session(serverUri, provider);
session.setLocale(Locale.UK);
Metadata meta = session.getMetadata();
URI termsOfService = meta.getTermsOfService();
URL website = meta.getWebsite();
LOGGER.info("ACME account URL {}", website);

from acme4j.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.