blob: a0d03712f748d126a85b18027083e8231bd48f66 [file] [log] [blame]
/****************************************************************
* Licensed to the Apache Software Foundation (ASF) under one *
* or more contributor license agreements. See the NOTICE file *
* distributed with this work for additional information *
* regarding copyright ownership. The ASF licenses this file *
* to you 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 org.apache.james.modules.protocols;
import java.security.Security;
import org.apache.james.jmap.JMAPConfiguration;
import org.apache.james.jmap.JMAPModule;
import org.apache.james.jmap.JMAPRoutesHandler;
import org.apache.james.jmap.JMAPServer;
import org.apache.james.jmap.JmapGuiceProbe;
import org.apache.james.jmap.MessageIdProbe;
import org.apache.james.jmap.Version;
import org.apache.james.jmap.draft.crypto.JamesSignatureHandler;
import org.apache.james.jmap.http.AuthenticationRoutes;
import org.apache.james.jmap.http.DownloadRoutes;
import org.apache.james.jmap.http.JMAPApiRoutes;
import org.apache.james.jmap.http.UploadRoutes;
import org.apache.james.utils.GuiceProbe;
import org.apache.james.utils.InitializationOperation;
import org.apache.james.utils.InitilizationOperationBuilder;
import org.bouncycastle.jce.provider.BouncyCastleProvider;
import com.google.inject.AbstractModule;
import com.google.inject.multibindings.Multibinder;
import com.google.inject.multibindings.ProvidesIntoSet;
public class JMAPServerModule extends AbstractModule {
@Override
protected void configure() {
install(new JMAPModule());
Multibinder.newSetBinder(binder(), GuiceProbe.class).addBinding().to(JmapGuiceProbe.class);
Multibinder.newSetBinder(binder(), GuiceProbe.class).addBinding().to(MessageIdProbe.class);
}
@ProvidesIntoSet
InitializationOperation startJmap(JMAPServer server, JamesSignatureHandler signatureHandler, JMAPConfiguration jmapConfiguration) {
return InitilizationOperationBuilder
.forClass(JMAPServer.class)
.init(() -> {
if (jmapConfiguration.isEnabled()) {
signatureHandler.init();
server.start();
registerPEMWithSecurityProvider();
}
});
}
@ProvidesIntoSet
JMAPRoutesHandler routesHandler(AuthenticationRoutes authenticationRoutes,
JMAPApiRoutes jmapApiRoutes,
UploadRoutes uploadRoutes,
DownloadRoutes downloadRoutes) {
return new JMAPRoutesHandler(Version.DRAFT,
authenticationRoutes,
jmapApiRoutes,
uploadRoutes,
downloadRoutes);
}
private void registerPEMWithSecurityProvider() {
Security.addProvider(new BouncyCastleProvider());
}
}