All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.kestra.plugin.gcp.auth.OauthAccessToken Maven / Gradle / Ivy

The newest version!
package io.kestra.plugin.gcp.auth;

import com.google.auth.oauth2.AccessToken;
import io.kestra.core.models.tasks.common.EncryptedString;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.*;
import lombok.experimental.SuperBuilder;
import io.kestra.core.models.tasks.RunnableTask;
import io.kestra.core.runners.RunContext;
import io.kestra.plugin.gcp.AbstractTask;

import jakarta.validation.constraints.NotNull;

import java.util.Date;
import java.util.List;

@SuperBuilder
@ToString
@EqualsAndHashCode
@Getter
@NoArgsConstructor
@Schema(
    title = "Fetch an OAuth access token."
)
public class OauthAccessToken extends AbstractTask implements RunnableTask {
    @Override
    public Output run(RunContext runContext) throws Exception {
        AccessToken accessToken = this.credentials(runContext)
            .createScoped(runContext.render(this.scopes))
            .refreshAccessToken();

        var output = AccessTokenOutput.builder()
            .expirationTime(accessToken.getExpirationTime())
            .scopes(accessToken.getScopes())
            .tokenValue(EncryptedString.from(accessToken.getTokenValue(), runContext));

        return Output
            .builder()
            .accessToken(output.build())
            .build();
    }

    @Builder
    @Getter
    public static class Output implements io.kestra.core.models.tasks.Output {
        @NotNull
        @Schema(title = "An OAuth access token for the current user.")
        private final AccessTokenOutput accessToken;
    }

    @Builder
    @Getter
    public static class AccessTokenOutput {
        List scopes;

        @Schema(
            title = "OAuth access token value",
            description = "Will be automatically encrypted and decrypted in the outputs if encryption is configured"
        )
        EncryptedString tokenValue;

        Date expirationTime;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy