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

io.cdap.cdap.internal.app.preview.RemotePreviewRequestFetcher Maven / Gradle / Ivy

There is a newer version: 6.10.1
Show newest version
/*
 * Copyright © 2020 Cask Data, Inc.
 *
 * Licensed 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 io.cdap.cdap.internal.app.preview;

import com.google.common.base.Charsets;
import com.google.gson.Gson;
import com.google.inject.Inject;
import io.cdap.cdap.app.preview.PreviewRequest;
import io.cdap.cdap.common.conf.Constants;
import io.cdap.cdap.common.http.DefaultHttpRequestConfig;
import io.cdap.cdap.common.internal.remote.RemoteClient;
import io.cdap.cdap.common.internal.remote.RemoteClientFactory;
import io.cdap.cdap.security.spi.authentication.SecurityRequestContext;
import io.cdap.cdap.security.spi.authorization.UnauthorizedException;
import io.cdap.common.http.HttpMethod;
import io.cdap.common.http.HttpRequest;
import io.cdap.common.http.HttpResponse;

import java.io.IOException;
import java.nio.ByteBuffer;
import java.util.Optional;

/**
 * Fetch preview requests from remote server.
 */
public class RemotePreviewRequestFetcher implements PreviewRequestFetcher {
  private static final Gson GSON = new Gson();

  private final RemoteClient remoteClientInternal;
  private final PreviewRequestPollerInfoProvider pollerInfoProvider;

  @Inject
  RemotePreviewRequestFetcher(PreviewRequestPollerInfoProvider pollerInfoProvider,
                              RemoteClientFactory remoteClientFactory) {
    this.remoteClientInternal = remoteClientFactory.createRemoteClient(
      Constants.Service.PREVIEW_HTTP,
      new DefaultHttpRequestConfig(false),
      Constants.Gateway.INTERNAL_API_VERSION_3 + "/previews");
    this.pollerInfoProvider = pollerInfoProvider;
  }

  @Override
  public Optional fetch() throws IOException, UnauthorizedException {
    HttpRequest request = remoteClientInternal.requestBuilder(HttpMethod.POST, "requests/pull")
      .withBody(ByteBuffer.wrap(pollerInfoProvider.get()))
      .build();

    HttpResponse httpResponse = remoteClientInternal.execute(request);
    if (httpResponse.getResponseCode() == 200) {
      PreviewRequest previewRequest = GSON.fromJson(httpResponse.getResponseBodyAsString(), PreviewRequest.class);
      if (previewRequest != null && previewRequest.getPrincipal() != null) {
        SecurityRequestContext.setUserId(previewRequest.getPrincipal().getName());
        SecurityRequestContext.setUserCredential(previewRequest.getPrincipal().getFullCredential());
      }
      return Optional.ofNullable(previewRequest);
    }
    throw new IOException(String.format("Received status code:%s and body: %s", httpResponse.getResponseCode(),
                                        httpResponse.getResponseBodyAsString(Charsets.UTF_8)));
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy