org.apache.camel.component.google.drive.GoogleDriveComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camel-google-drive Show documentation
Show all versions of camel-google-drive Show documentation
Camel Component for GoogleDrive
/*
* 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.camel.component.google.drive;
import com.google.api.services.drive.Drive;
import org.apache.camel.CamelContext;
import org.apache.camel.Endpoint;
import org.apache.camel.component.google.drive.internal.GoogleDriveApiCollection;
import org.apache.camel.component.google.drive.internal.GoogleDriveApiName;
import org.apache.camel.spi.Metadata;
import org.apache.camel.spi.annotations.Component;
import org.apache.camel.support.component.AbstractApiComponent;
import org.apache.camel.util.ObjectHelper;
@Component("google-drive")
public class GoogleDriveComponent
extends AbstractApiComponent {
@Metadata
GoogleDriveConfiguration configuration;
@Metadata(label = "advanced")
private Drive client;
@Metadata(label = "advanced")
private GoogleDriveClientFactory clientFactory;
public GoogleDriveComponent() {
super(GoogleDriveEndpoint.class, GoogleDriveApiName.class, GoogleDriveApiCollection.getCollection());
}
public GoogleDriveComponent(CamelContext context) {
super(context, GoogleDriveEndpoint.class, GoogleDriveApiName.class, GoogleDriveApiCollection.getCollection());
}
@Override
protected GoogleDriveApiName getApiName(String apiNameStr) {
return getCamelContext().getTypeConverter().convertTo(GoogleDriveApiName.class, apiNameStr);
}
public Drive getClient(GoogleDriveConfiguration config) {
if (client == null) {
if (config.getClientId() != null && !config.getClientId().isBlank()
&& config.getClientSecret() != null && !config.getClientSecret().isBlank()) {
client = getClientFactory().makeClient(config.getClientId(),
config.getClientSecret(), config.getScopes(),
config.getApplicationName(), config.getRefreshToken(), config.getAccessToken());
} else if (config.getServiceAccountKey() != null && !config.getServiceAccountKey().isBlank()) {
client = getClientFactory().makeClient(getCamelContext(), config.getServiceAccountKey(),
config.getScopes(), config.getApplicationName(), config.getDelegate());
} else {
throw new IllegalArgumentException(
"(clientId and clientSecret) or serviceAccountKey are required to create Google Drive client");
}
}
return client;
}
public GoogleDriveClientFactory getClientFactory() {
if (clientFactory == null) {
// configure https proxy from camelContext
if (ObjectHelper.isNotEmpty(getCamelContext().getGlobalOption("http.proxyHost"))
&& ObjectHelper.isNotEmpty(getCamelContext().getGlobalOption("http.proxyPort"))) {
String host = getCamelContext().getGlobalOption("http.proxyHost");
int port = Integer.parseInt(getCamelContext().getGlobalOption("http.proxyPort"));
clientFactory = new BatchGoogleDriveClientFactory(host, port);
} else {
clientFactory = new BatchGoogleDriveClientFactory();
}
}
return clientFactory;
}
/**
* To use the shared configuration
*/
@Override
public void setConfiguration(GoogleDriveConfiguration configuration) {
super.setConfiguration(configuration);
}
@Override
public GoogleDriveConfiguration getConfiguration() {
if (configuration == null) {
configuration = new GoogleDriveConfiguration();
}
return super.getConfiguration();
}
/**
* To use the GoogleCalendarClientFactory as factory for creating the client. Will by default use
* {@link BatchGoogleDriveClientFactory}
*/
public void setClientFactory(GoogleDriveClientFactory clientFactory) {
this.clientFactory = clientFactory;
}
@Override
protected Endpoint createEndpoint(
String uri, String methodName, GoogleDriveApiName apiName,
GoogleDriveConfiguration endpointConfiguration) {
endpointConfiguration.setApiName(apiName);
endpointConfiguration.setMethodName(methodName);
GoogleDriveEndpoint endpoint = new GoogleDriveEndpoint(uri, this, apiName, methodName, endpointConfiguration);
endpoint.setClientFactory(clientFactory);
return endpoint;
}
}