use of org.dataportabilityproject.gateway.reference.JWTTokenManager in project data-transfer-project by google.
the class ApiMain method initializeHttps.
public void initializeHttps(TrustManagerFactory trustManagerFactory, KeyManagerFactory keyManagerFactory) {
// TODO init with types
TypeManager typeManager = new TypeManagerImpl();
typeManager.registerTypes(TokenAuthData.class, TokensAndUrlAuthData.class, TokenSecretAuthData.class);
SettingsExtension settingsExtension = getSettingsExtension();
settingsExtension.initialize(null);
ApiExtensionContext extensionContext = new ApiExtensionContext(typeManager, settingsExtension);
// Services that need to be shared between authServiceExtensions or load types in the
// typemanager get initialized first.
ServiceLoader.load(ServiceExtension.class).iterator().forEachRemaining(serviceExtension -> serviceExtension.initialize(extensionContext));
CloudExtension cloudExtension = getCloudExtension();
cloudExtension.initialize(extensionContext);
// Needed for GoogleAuthServiceExtension
extensionContext.registerService(HttpTransport.class, new NetHttpTransport());
extensionContext.registerService(JobStore.class, cloudExtension.getJobStore());
extensionContext.registerService(AppCredentialStore.class, cloudExtension.getAppCredentialStore());
// TODO: Load up only "enabled" services
List<AuthServiceExtension> authServiceExtensions = new ArrayList<>();
ServiceLoader.load(AuthServiceExtension.class).iterator().forEachRemaining((authServiceExtension) -> {
authServiceExtension.initialize(extensionContext);
authServiceExtensions.add(authServiceExtension);
});
// TODO: make configurable
SymmetricKeyGenerator keyGenerator = new AesSymmetricKeyGenerator();
TokenManager tokenManager;
try {
// TODO: we store the JWT Token with the application credentials, but dont need to have a key
// consider using a blobstore type of thing or allowing the AppCredentialStore to return a
// cred that doesn't contain a key.
tokenManager = new JWTTokenManager(cloudExtension.getAppCredentialStore().getAppCredentials(JWTTokenManager.JWT_KEY_NAME, JWTTokenManager.JWT_SECRET_NAME).getSecret());
} catch (IOException e) {
logger.error("Unable to initialize JWTTokenManager, did you specify a JWT_KEY and JWT_SECRET?");
throw new RuntimeException(e);
}
Injector injector = Guice.createInjector(new ApiServicesModule(typeManager, cloudExtension.getJobStore(), keyGenerator, trustManagerFactory, keyManagerFactory, authServiceExtensions, tokenManager), new ReferenceApiModule(extensionContext));
// Launch the application
// TODO: Support other server implementations, e.g. Jetty, Tomcat
server = injector.getInstance(ReferenceApiServer.class);
}
Aggregations