io.camunda.connector.gsheets.GoogleSheetsFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connector-google-sheets Show documentation
Show all versions of connector-google-sheets Show documentation
Camunda Google Sheets Connector
/*
* Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH
* under one or more contributor license agreements. Licensed under a proprietary license.
* See the License.txt file for more information. You may not use this file
* except in compliance with the proprietary license.
*/
package io.camunda.connector.gsheets;
import io.camunda.connector.api.annotation.OutboundConnector;
import io.camunda.connector.api.outbound.OutboundConnectorContext;
import io.camunda.connector.api.outbound.OutboundConnectorFunction;
import io.camunda.connector.generator.java.annotation.ElementTemplate;
import io.camunda.connector.gsheets.model.request.GoogleSheetsRequest;
import io.camunda.connector.gsheets.operation.GoogleSheetOperation;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@OutboundConnector(
name = "Google Spreadsheets",
inputVariables = {"authentication", "operation"},
type = "io.camunda:google-sheets:1")
@ElementTemplate(
id = "google-sheets",
name = "Generated Google Sheets",
version = 1,
description = "Google Spreadsheets Connector",
inputDataClass = GoogleSheetsRequest.class)
public class GoogleSheetsFunction implements OutboundConnectorFunction {
private static final Logger LOGGER = LoggerFactory.getLogger(GoogleSheetsFunction.class);
private final GoogleSheetsOperationFactory operationFactory;
public GoogleSheetsFunction() {
operationFactory = GoogleSheetsOperationFactory.getInstance();
}
@Override
public Object execute(OutboundConnectorContext context) {
var request = context.bindVariables(GoogleSheetsRequest.class);
LOGGER.debug("Request verified successfully and all required secrets replaced");
GoogleSheetOperation operation = operationFactory.createOperation(request.getOperation());
return operation.execute(request.getAuthentication());
}
}