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

com.parse.ParseAnalytics Maven / Gradle / Ivy

Go to download

A library that gives you access to the powerful Parse cloud platform from your Android app.

There is a newer version: 1.17.3
Show newest version
/*
 * Copyright (c) 2015-present, Parse, LLC.
 * All rights reserved.
 *
 * This source code is licensed under the BSD-style license found in the
 * LICENSE file in the root directory of this source tree. An additional grant
 * of patent rights can be found in the PATENTS file in the same directory.
 */
package com.parse;

import android.content.Intent;

import org.json.JSONException;
import org.json.JSONObject;

import java.util.Collections;
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.Map;

import bolts.Capture;
import bolts.Continuation;
import bolts.Task;

/**
 * The {@code ParseAnalytics} class provides an interface to Parse's logging and analytics backend.
 * Methods will return immediately and cache requests (+ timestamps) to be handled "eventually."
 * That is, the request will be sent immediately if possible or the next time a network connection
 * is available otherwise.
 */
public class ParseAnalytics {
  private static final String TAG = "com.parse.ParseAnalytics";

  /* package for test */ static ParseAnalyticsController getAnalyticsController() {
    return ParseCorePlugins.getInstance().getAnalyticsController();
  }

  /**
   * Tracks this application being launched (and if this happened as the result of the user opening
   * a push notification, this method sends along information to correlate this open with that
   * push).
   *
   * @param intent
   *          The {@code Intent} that started an {@code Activity}, if any. Can be null.
   * @return A Task that is resolved when the event has been tracked by Parse.
   */
  public static Task trackAppOpenedInBackground(Intent intent) {
    String pushHashStr = getPushHashFromIntent(intent);
    final Capture pushHash = new Capture<>();
    if (pushHashStr != null && pushHashStr.length() > 0) {
      synchronized (lruSeenPushes) {
        if (lruSeenPushes.containsKey(pushHashStr)) {
          return Task.forResult(null);
        } else {
          lruSeenPushes.put(pushHashStr, true);
          pushHash.set(pushHashStr);
        }
      }
    }
    return ParseUser.getCurrentSessionTokenAsync().onSuccessTask(new Continuation>() {
      @Override
      public Task then(Task task) throws Exception {
        String sessionToken = task.getResult();
        return getAnalyticsController().trackAppOpenedInBackground(pushHash.get(), sessionToken);
      }
    });
  }

  /**
   * @deprecated Please use {@link #trackAppOpenedInBackground(android.content.Intent)} instead.
   */
  @Deprecated
  public static void trackAppOpened(Intent intent) {
    trackAppOpenedInBackground(intent);
  }

  /**
   * Tracks this application being launched (and if this happened as the result of the user opening
   * a push notification, this method sends along information to correlate this open with that
   * push).
   *
   * @param intent
   *          The {@code Intent} that started an {@code Activity}, if any. Can be null.
   * @param callback
   *          callback.done(e) is called when the event has been tracked by Parse.
   */
  public static void trackAppOpenedInBackground(Intent intent, SaveCallback callback) {
    ParseTaskUtils.callbackOnMainThreadAsync(trackAppOpenedInBackground(intent), callback);
  }

  /**
   * @deprecated Please use {@link #trackEventInBackground(String)} instead.
   */
  @Deprecated
  public static void trackEvent(String name) {
    trackEventInBackground(name);
  }

  /**
   * Tracks the occurrence of a custom event. Parse will store a data point at the time of
   * invocation with the given event name.
   *
   * @param name
   *          The name of the custom event to report to Parse as having happened.
   * @param callback
   *          callback.done(e) is called when the event has been tracked by Parse.
   */
  public static void trackEventInBackground(String name, SaveCallback callback) {
    ParseTaskUtils.callbackOnMainThreadAsync(trackEventInBackground(name), callback);
  }

  /**
   * @deprecated Please use {@link #trackEventInBackground(String, java.util.Map)} instead.
   */
  @Deprecated
  public static void trackEvent(String name, Map dimensions) {
    trackEventInBackground(name, dimensions);
  }

  /**
   * Tracks the occurrence of a custom event with additional dimensions. Parse will store a data
   * point at the time of invocation with the given event name.  Dimensions will allow segmentation
   * of the occurrences of this custom event.
   * 

* To track a user signup along with additional metadata, consider the following: *

   * Map dimensions = new HashMap();
   * dimensions.put("gender", "m");
   * dimensions.put("source", "web");
   * dimensions.put("dayType", "weekend");
   * ParseAnalytics.trackEvent("signup", dimensions);
   * 
* There is a default limit of 8 dimensions per event tracked. * * @param name * The name of the custom event to report to Parse as having happened. * @param dimensions * The dictionary of information by which to segment this event. * @param callback * callback.done(e) is called when the event has been tracked by Parse. */ public static void trackEventInBackground(String name, Map dimensions, SaveCallback callback) { ParseTaskUtils.callbackOnMainThreadAsync(trackEventInBackground(name, dimensions), callback); } /** * Tracks the occurrence of a custom event with additional dimensions. Parse will store a data * point at the time of invocation with the given event name. Dimensions will allow segmentation * of the occurrences of this custom event. *

* To track a user signup along with additional metadata, consider the following: *

   * Map dimensions = new HashMap();
   * dimensions.put("gender", "m");
   * dimensions.put("source", "web");
   * dimensions.put("dayType", "weekend");
   * ParseAnalytics.trackEvent("signup", dimensions);
   * 
* There is a default limit of 8 dimensions per event tracked. * * @param name * The name of the custom event to report to Parse as having happened. * * @return A Task that is resolved when the event has been tracked by Parse. */ public static Task trackEventInBackground(String name) { return trackEventInBackground(name, (Map) null); } /** * Tracks the occurrence of a custom event with additional dimensions. Parse will store a data * point at the time of invocation with the given event name. Dimensions will allow segmentation * of the occurrences of this custom event. *

* To track a user signup along with additional metadata, consider the following: *

   * Map dimensions = new HashMap();
   * dimensions.put("gender", "m");
   * dimensions.put("source", "web");
   * dimensions.put("dayType", "weekend");
   * ParseAnalytics.trackEvent("signup", dimensions);
   * 
* There is a default limit of 8 dimensions per event tracked. * * @param name * The name of the custom event to report to Parse as having happened. * @param dimensions * The dictionary of information by which to segment this event. * * @return A Task that is resolved when the event has been tracked by Parse. */ public static Task trackEventInBackground(final String name, Map dimensions) { if (name == null || name.trim().length() == 0) { throw new IllegalArgumentException("A name for the custom event must be provided."); } final Map dimensionsCopy = dimensions != null ? Collections.unmodifiableMap(new HashMap<>(dimensions)) : null; return ParseUser.getCurrentSessionTokenAsync().onSuccessTask(new Continuation>() { @Override public Task then(Task task) throws Exception { String sessionToken = task.getResult(); return getAnalyticsController().trackEventInBackground(name, dimensionsCopy, sessionToken); } }); } // Developers have the option to manually track push opens or the app open event can be tracked // automatically by the ParsePushBroadcastReceiver. To avoid double-counting a push open, we track // the pushes we've seen locally. We don't need to worry about doing this in any sort of durable // way because a push can only launch the app once. private static final Map lruSeenPushes = new LinkedHashMap() { protected boolean removeEldestEntry(Map.Entry eldest) { return size() > 10; } }; /* package */ static void clear() { synchronized (lruSeenPushes) { lruSeenPushes.clear(); } } /* package for test */ static String getPushHashFromIntent(Intent intent) { String pushData = null; if (intent != null && intent.getExtras() != null) { pushData = intent.getExtras().getString(ParsePushBroadcastReceiver.KEY_PUSH_DATA); } if (pushData == null) { return null; } String pushHash = null; try { JSONObject payload = new JSONObject(pushData); pushHash = payload.optString("push_hash"); } catch (JSONException e) { PLog.e(TAG, "Failed to parse push data: " + e.getMessage()); } return pushHash; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy