diff -r 000000000000 -r 6474c204b198 mobile/android/base/ReferrerReceiver.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mobile/android/base/ReferrerReceiver.java Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,62 @@ +/* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*- + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +package org.mozilla.gecko; + +import org.json.JSONException; +import org.json.JSONObject; + +import android.content.BroadcastReceiver; +import android.content.Context; +import android.content.Intent; +import android.util.Log; + +import java.net.URLDecoder; +import java.util.HashMap; + +public class ReferrerReceiver + extends BroadcastReceiver +{ + private static final String LOGTAG = "GeckoReferrerReceiver"; + + public static final String ACTION_INSTALL_REFERRER = "com.android.vending.INSTALL_REFERRER"; + public static final String UTM_SOURCE = "mozilla"; + + @Override + public void onReceive(Context context, Intent intent) { + if (ACTION_INSTALL_REFERRER.equals(intent.getAction())) { + String referrer = intent.getStringExtra("referrer"); + if (referrer == null) + return; + + HashMap values = new HashMap(); + try { + String referrers[] = referrer.split("&"); + for (String referrerValue : referrers) { + String keyValue[] = referrerValue.split("="); + values.put(URLDecoder.decode(keyValue[0]), URLDecoder.decode(keyValue[1])); + } + } catch (Exception e) { + } + + String source = values.get("utm_source"); + String campaign = values.get("utm_campaign"); + + if (source != null && UTM_SOURCE.equals(source) && campaign != null) { + try { + JSONObject data = new JSONObject(); + data.put("id", "playstore"); + data.put("version", campaign); + + // Try to make sure the prefs are written as a group + GeckoEvent event = GeckoEvent.createBroadcastEvent("Campaign:Set", data.toString()); + GeckoAppShell.sendEventToGecko(event); + } catch (JSONException e) { + Log.e(LOGTAG, "Error setting distribution", e); + } + } + } + } +}