Network Android

//class made by Teo ( www.teodorfilimon.com ). More about the app in readme.txt
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.URLEncoder;
import javax.net.ssl.HostnameVerifier;
import javax.net.ssl.HttpsURLConnection;
import javax.net.ssl.SSLSession;
import javax.xml.parsers.SAXParser;
import javax.xml.parsers.SAXParserFactory;
import org.xml.sax.Attributes;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
import org.xml.sax.XMLReader;
import org.xml.sax.helpers.DefaultHandler;
class CalendarsHandler extends DefaultHandler {
  // Fields
  private boolean titleTag = false; // For the  tag.<br/>  private boolean entryTag = false; // <entry> tag.<br/>  private ParsedCalendarsDataSet myParsedCalendarsDataSet = new ParsedCalendarsDataSet();<br/>  // Getter & Setter<br/>  public ParsedCalendarsDataSet getParsedData() {<br/>    return this.myParsedCalendarsDataSet;<br/>  }<br/>  @Override<br/>  public void startDocument() throws SAXException {<br/>    this.myParsedCalendarsDataSet = new ParsedCalendarsDataSet();<br/>  }<br/>  @Override<br/>  public void endDocument() throws SAXException {<br/>    // Nothing to do<br/>  }<br/>  /**<br/>   * Gets be called on opening tags like: <tag> Can provide attribute(s), when<br/>   * xml was like: <tag attribute="attributeValue"><br/>   */<br/>  @Override<br/>  public void startElement(String namespaceURI, String localName,<br/>      String qName, Attributes atts) throws SAXException {<br/>    if (localName.equals("title")) {<br/>      this.titleTag = true;<br/>    } else if (localName.equals("entry")) {<br/>      this.entryTag = true;<br/>    }<br/>  }<br/>  /**<br/>   * Gets be called on closing tags like: </tag><br/>   */<br/>  @Override<br/>  public void endElement(String namespaceURI, String localName, String qName)<br/>      throws SAXException {<br/>    if (localName.equals("title")) {<br/>      this.titleTag = false;<br/>    } else if (localName.equals("entry")) {<br/>      this.entryTag = false;<br/>    }<br/>  }<br/>  /**<br/>   * Gets be called on the following structure: <tag>characters</tag><br/>   */<br/>  @Override<br/>  public void characters(char ch[], int start, int length) {<br/>    if (this.entryTag && this.titleTag) {<br/>      myParsedCalendarsDataSet.setExtractedString(new String(ch, start,<br/>          length));<br/>    }<br/>  }<br/>}<br/>class ParsedCalendarsDataSet {<br/>  private String extractedString = "";<br/>  public String getExtractedString() {<br/>    return extractedString;<br/>  }<br/>  public void setExtractedString(String extractedString) {<br/>    this.extractedString = this.extractedString + extractedString + "\n";<br/>  }<br/>  public String toString() {<br/>    return this.extractedString;<br/>  }<br/>}<br/>// For creating a single calendar event see:<br/>// http://code.google.com/apis/calendar/docs/2.0/developers_guide_protocol.html#CreatingSingle<br/>/**<br/> * This class is in charge of synchronizing the events (with due dates) with<br/> * Google Calendar<br/> */<br/>public final class GoogleCalendar {<br/>  private static String mAuthToken = null;<br/>  private static String mUsername = "", mPassword = "";<br/>  private static long mLastActivity = 0;<br/>  private final static HostnameVerifier HOSTNAME_VERIFIER = new HostnameVerifier() {<br/>    public boolean verify(String hostname, SSLSession session) {<br/>      return "www.google.com".equals(hostname);<br/>    }<br/>  };<br/>  /**<br/>   * The login has to be set by someone, either in a configuration window, or<br/>   * in the main view, on creation, etc.<br/>   * <br/>   * @param username<br/>   * @param password<br/>   */<br/>  public final static void setLogin(String username, String password) {<br/>    mUsername = username;<br/>    mPassword = password;<br/>  }<br/>  /**<br/>   * Initiates the proper communications with Google to add an event in the<br/>   * user's main calendar<br/>   * <br/>   * @param title<br/>   *            Name of the task and future event<br/>   * @param year<br/>   * @param month<br/>   * @param day<br/>   * @param hour<br/>   *            (if hour is -1, the event will last all day)<br/>   * @param minute<br/>   * @return true if the event was created<br/>   * @throws Exception<br/>   */<br/>  public final static boolean createEvent(String title, int year, int month,<br/>      int day, int hour, int minute) throws Exception {<br/>    authenticate(false);<br/>    int hour_end = hour + 1; // Default to 1 hour duration.<br/>    boolean redirect = false;<br/>    month++; // our months are from 0 to 11<br/>    String sessionUrl = "http://www.google.com/calendar/feeds/default/private/full";<br/>    do {<br/>      HttpURLConnection uc = (HttpURLConnection) new URL(sessionUrl)<br/>          .openConnection();<br/>      uc.setDoOutput(true);<br/>      uc.setUseCaches(false);<br/>      uc.setRequestMethod("POST");<br/>      uc.setRequestProperty("Content-Type", "application/atom+xml");<br/>      uc.setRequestProperty("Authorization", "GoogleLogin auth="<br/>          + mAuthToken);<br/>      BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(<br/>          uc.getOutputStream()));<br/>      String s = year + "-" + (month / 10 < 1 ? "0" + month : month)<br/>          + "-" + (day / 10 < 1 ? "0" + day : day);<br/>      bw.write("<entry xmlns='http://www.w3.org/2005/Atom' xmlns:gd='http://schemas.google.com/g/2005'>\n<category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'></category>\n"<br/>          + "<title type='text'>"<br/>          + title.replace('\'', '"')<br/>          + "\n"
          + "Event created with Acaletto on an Android phone.\n"
          + "\n\n"
          + "          + s
          + (hour != -1 ? "T" + (hour / 10 < 1 ? "0" + hour : hour)
              + ":" + (minute / 10 < 1 ? "0" + minute : minute)
              + ":00.000Z' endTime='" + s + "T"
              + (hour_end / 10 < 1 ? "0" + hour_end : hour_end)
              + ":" + (minute / 10 < 1 ? "0" + minute : minute)
              + ":00.000Z" : "") + "'>\n");
      bw.flush();
      bw.close();
      if (!(redirect) && uc.getResponseCode() == 302) { // REDIRECT
        redirect = true;
        sessionUrl = uc.getHeaderField("Location");
      } else {
        redirect = false;
        if (uc.getResponseCode() == HttpURLConnection.HTTP_CREATED) {
          return true;
        }
      }
    } while (redirect);
    return false;
  }
  /**
   * Get all the calendars the user owns (i.e. is allowed to change).
   * 
   * @return String with calendars
   * @throws Exception
   */
  public final static String ownCalendars() throws Exception {
    URL gcal = new URL(
        "http://www.google.com/calendar/feeds/default/owncalendars/full");
    HttpURLConnection uc = (HttpURLConnection) gcal.openConnection();
    uc.setDoOutput(true);
    uc.setUseCaches(false);
    uc.setRequestMethod("GET");
    uc.setRequestProperty("Content-Type", "application/xml");
    uc.setRequestProperty("Authorization", "GoogleLogin auth=" + mAuthToken);
    /* Get a SAXParser from the SAXPArserFactory. */
    SAXParserFactory spf = SAXParserFactory.newInstance();
    SAXParser sp = spf.newSAXParser();
    /* Get the XMLReader of the SAXParser we created. */
    XMLReader xr = sp.getXMLReader();
    /* Create a new ContentHandler and apply it to the XML-Reader */
    CalendarsHandler myCalendarsHandler = new CalendarsHandler();
    xr.setContentHandler(myCalendarsHandler);
    /* Parse the xml-data from our URL. */
    xr.parse(new InputSource(uc.getInputStream()));
    /* Parsing has finished. */
    ParsedCalendarsDataSet parsedCalendarsDataSet = myCalendarsHandler
        .getParsedData();
    return parsedCalendarsDataSet.toString();
  }
  /**
   * Authentication in the Google Calendar service through HTTPS
   * 
   * @param force
   *            - if true, it forces a re-authentication, even if the present
   *            session isn't timeout
   * @return true if authentication succeeds
   * @throws Exception
   */
  public final static boolean authenticate(boolean force) throws Exception {
    long millis = System.currentTimeMillis();
    if (!(force) && millis - mLastActivity < 1800000) {
      mLastActivity = millis;
      return true;
    } else {
      mLastActivity = millis;
    }
    HttpsURLConnection uc = (HttpsURLConnection) new URL(
        "https://www.google.com/accounts/ClientLogin").openConnection();
    uc.setHostnameVerifier(HOSTNAME_VERIFIER);
    uc.setDoOutput(true);
    uc.setRequestMethod("POST");
    uc.setRequestProperty("Content-Type",
        "application/x-www-form-urlencoded");
    uc.setUseCaches(false);
    BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(
        uc.getOutputStream()));
    bw.write(URLEncoder.encode("Email", "UTF-8") + "="
        + URLEncoder.encode(mUsername, "UTF-8") + "&"
        + URLEncoder.encode("Passwd", "UTF-8") + "="
        + URLEncoder.encode(mPassword, "UTF-8") + "&"
        + URLEncoder.encode("source", "UTF-8") + "="
        + URLEncoder.encode("Acaletto", "UTF-8") + "&"
        + URLEncoder.encode("service", "UTF-8") + "="
        + URLEncoder.encode("cl", "UTF-8"));
    bw.flush();
    bw.close();
    BufferedReader in = new BufferedReader(new InputStreamReader(
        uc.getInputStream()));
    if (uc.getResponseCode() == HttpsURLConnection.HTTP_FORBIDDEN) {
      in.close();
      return false;
    }
    // only the 3rd parameter (Auth) is of interest
    in.readLine();
    in.readLine();
    mAuthToken = in.readLine().substring(5);
    in.close();
    return true;
  }
}