Recupero versioni specifiche delle risorse

Ogni risorsa ha un campo della versione che cambia ogni volta che viene modifiche: il campo etag. Gli Etag sono una parte standard di HTTP supportata nell'API calendar per due casi:

  • sulle modifiche alle risorse per garantire che nel frattempo non ci siano state altre scritture su questa risorsa (modifica condizionale)
  • al recupero della risorsa per recuperare i dati della risorsa solo se quest'ultima è stata modificata (recupero condizionale)

Modifica condizionale

Se vuoi aggiornare o eliminare una risorsa solo se non è stata modificata dal giorno l'ultima volta che l'hai recuperata, puoi specificare un'intestazione If-Match che contenga dell'etag del recupero precedente. Ciò è molto utile per evitare e hanno perso le modifiche alle risorse. I clienti hanno la possibilità di recuperare la risorsa e applicare nuovamente le modifiche.

Se la voce (e il relativo etag) non è stata modificata dall'ultimo recupero, il parametro la modifica riesce e la nuova versione della risorsa con il nuovo restituito. In caso contrario, riceverai un codice di risposta 412 (Precondizione non riuscita).

Lo snippet di codice di esempio riportato di seguito illustra come eseguire le modifiche con il Libreria client Java.

  private static void run() throws IOException {
    // Create a test event.
    Event event = Utils.createTestEvent(client, "Test Event");
    System.out.println(String.format("Event created: %s", event.getHtmlLink()));

    // Pause while the user modifies the event in the Calendar UI.
    System.out.println("Modify the event's description and hit enter to continue.");
    System.in.read();

    // Modify the local copy of the event.
    event.setSummary("Updated Test Event");

    // Update the event, making sure that we don't overwrite other changes.
    int numAttempts = 0;
    boolean isUpdated = false;
    do {
      Calendar.Events.Update request = client.events().update("primary", event.getId(), event);
      request.setRequestHeaders(new HttpHeaders().setIfMatch(event.getEtag()));
      try {
        event = request.execute();
        isUpdated = true;
      } catch (GoogleJsonResponseException e) {
        if (e.getStatusCode() == 412) {
          // A 412 status code, "Precondition failed", indicates that the etag values didn't
          // match, and the event was updated on the server since we last retrieved it. Use
          // {@link Calendar.Events.Get} to retrieve the latest version.
          Event latestEvent = client.events().get("primary", event.getId()).execute();

          // You may want to have more complex logic here to resolve conflicts. In this sample we're
          // simply overwriting the summary.
          latestEvent.setSummary(event.getSummary());
          event = latestEvent;
        } else {
          throw e;
        }
      }
      numAttempts++;
    } while (!isUpdated && numAttempts <= MAX_UPDATE_ATTEMPTS);

    if (isUpdated) {
      System.out.println("Event updated.");
    } else {
      System.out.println(String.format("Failed to update event after %d attempts.", numAttempts));
    }
  }

Recupero condizionale

Se vuoi recuperare una risorsa solo se è stata modificata dall'ultima volta recuperata, puoi specificare un'intestazione If-None-Match che contiene dell'etag del recupero precedente. Se la voce (e quindi il relativo etag) è cambiata dall'ultimo recupero, la nuova versione della risorsa verrà restituito il nuovo etag. In caso contrario, visualizzerai un errore 304 (Non modificato) codice di risposta.

Lo snippet di codice di esempio riportato di seguito illustra come eseguire di recupero con Libreria client Java.

  private static void run() throws IOException {
    // Create a test event.
    Event event = Utils.createTestEvent(client, "Test Event");
    System.out.println(String.format("Event created: %s", event.getHtmlLink()));

    // Pause while the user modifies the event in the Calendar UI.
    System.out.println("Modify the event's description and hit enter to continue.");
    System.in.read();

    // Fetch the event again if it's been modified.
    Calendar.Events.Get getRequest = client.events().get("primary", event.getId());
    getRequest.setRequestHeaders(new HttpHeaders().setIfNoneMatch(event.getEtag()));
    try {
      event = getRequest.execute();
      System.out.println("The event was modified, retrieved latest version.");
    } catch (GoogleJsonResponseException e) {
      if (e.getStatusCode() == 304) {
        // A 304 status code, "Not modified", indicates that the etags match, and the event has
        // not been modified since we last retrieved it.
        System.out.println("The event was not modified, using local version.");
      } else {
        throw e;
      }
    }
  }