Android Open Source - PicasaUploadSample G Data Client






From Project

Back to project page PicasaUploadSample.

License

The source code is released under:

Apache License

If you think the Android project PicasaUploadSample listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright (c) 2011 Google Inc./*w  ww.  j  a v a  2 s.c  om*/
 * 
 * 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 org.ktaka.api.services.samples.shared.gdata;

import com.google.api.client.googleapis.MethodOverride;
import com.google.api.client.http.AbstractHttpContent;
import com.google.api.client.http.GenericUrl;
import com.google.api.client.http.HttpRequest;
import com.google.api.client.http.HttpRequestFactory;
import com.google.api.client.http.HttpResponse;
import com.google.api.client.http.HttpTransport;

import java.io.IOException;

/**
 * GData client.
 * 
 * @author Yaniv Inbar
 */
public abstract class GDataClient {

  private HttpRequestFactory requestFactory;

  private final String gdataVersion;

  private String applicationName;

  private boolean prettyPrint;

  /** Method override needed for PATCH. */
  final MethodOverride override = new MethodOverride();

  protected GDataClient(String gdataVersion, HttpRequestFactory requestFactory) {
    this.gdataVersion = gdataVersion;
    this.requestFactory = requestFactory;
  }

  protected final HttpRequestFactory getRequestFactory() {
    return requestFactory;
  }

  public final String getApplicationName() {
    return applicationName;
  }

  public final void setApplicationName(String applicationName) {
    this.applicationName = applicationName;
  }

  public final boolean getPrettyPrint() {
    return prettyPrint;
  }


  public final void setPrettyPrint(boolean prettyPrint) {
    this.prettyPrint = prettyPrint;
  }

  protected final HttpTransport getTransport() {
    return getRequestFactory().getTransport();
  }

  protected void prepareUrl(GenericUrl url, Class<?> parseAsType){
    url.set("prettyPrint", this.prettyPrint);
  }

  protected void prepare(HttpRequest request) throws IOException {
    request.getHeaders().setUserAgent(applicationName);
    request.getHeaders().put("GData-Version", gdataVersion);
    override.intercept(request);
  }

  protected final HttpResponse execute(HttpRequest request) throws IOException {
    prepare(request);
    return request.execute();
  }

  protected final <T> T executeGet(GenericUrl url, Class<T> parseAsType) throws IOException {
    prepareUrl(url, parseAsType);
    HttpRequest request = getRequestFactory().buildGetRequest(url);
    return execute(request).parseAs(parseAsType);
  }

  protected final void executeDelete(GenericUrl url, String etag) throws IOException {
    prepareUrl(url, null);
    HttpRequest request = getRequestFactory().buildDeleteRequest(url);
    setIfMatch(request, etag);
    execute(request).ignore();
  }

  protected final <T> T executePost(
      GenericUrl url, AbstractHttpContent content, Class<T> parseAsType) throws IOException {
    prepareUrl(url, parseAsType);
    HttpRequest request = getRequestFactory().buildPostRequest(url, content);
    return execute(request).parseAs(parseAsType);
  }

  protected final <T> T executePatchRelativeToOriginal(
      GenericUrl url, AbstractHttpContent patchContent, Class<T> parseAsType, String etag)
      throws IOException {
    prepareUrl(url, parseAsType);
    HttpRequest request = getRequestFactory().buildRequest("PATCH", url, patchContent);
    setIfMatch(request, etag);
    return execute(request).parseAs(parseAsType);
  }

  private void setIfMatch(HttpRequest request, String etag) {
    if (etag != null && !etag.startsWith("W/")) {
      request.getHeaders().setIfMatch(etag);
    }
  }
}




Java Source Code List

org.ktaka.api.services.picasa.PicasaClient.java
org.ktaka.api.services.picasa.PicasaUrl.java
org.ktaka.api.services.picasa.model.AlbumEntry.java
org.ktaka.api.services.picasa.model.AlbumFeed.java
org.ktaka.api.services.picasa.model.Author.java
org.ktaka.api.services.picasa.model.Category.java
org.ktaka.api.services.picasa.model.Entry.java
org.ktaka.api.services.picasa.model.Feed.java
org.ktaka.api.services.picasa.model.GeorssWhere.java
org.ktaka.api.services.picasa.model.GmlPoint.java
org.ktaka.api.services.picasa.model.Link.java
org.ktaka.api.services.picasa.model.MediaContent.java
org.ktaka.api.services.picasa.model.MediaGroup.java
org.ktaka.api.services.picasa.model.PhotoEntry.java
org.ktaka.api.services.picasa.model.TagEntry.java
org.ktaka.api.services.picasa.model.UserFeed.java
org.ktaka.api.services.samples.shared.gdata.GDataClient.java
org.ktaka.api.services.samples.shared.gdata.xml.GDataXmlClient.java
org.ktaka.picasasample.AsyncLoadTasks.java
org.ktaka.picasasample.AsyncUploader.java
org.ktaka.picasasample.CommonAsyncTask.java
org.ktaka.picasasample.PicasaUploadActivity.java
org.ktaka.picasasample.Utils.java