summaryrefslogtreecommitdiffstats
path: root/mobile/android/base/java/org/mozilla/gecko/adjust/AdjustHelper.java
blob: 19399e735bb5d585a0292df250bc564bd7fe6d5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/* -*- 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.adjust;

import android.content.Context;
import android.content.Intent;
import android.util.Log;

import com.adjust.sdk.Adjust;
import com.adjust.sdk.AdjustAttribution;
import com.adjust.sdk.AdjustConfig;
import com.adjust.sdk.AdjustReferrerReceiver;
import com.adjust.sdk.LogLevel;
import com.adjust.sdk.OnAttributionChangedListener;

import org.mozilla.gecko.AppConstants;

public class AdjustHelper implements AdjustHelperInterface, OnAttributionChangedListener {

    private static final String LOGTAG = AdjustHelper.class.getSimpleName();
    private AttributionHelperListener attributionListener;

    public void onCreate(final Context context, final String maybeAppToken, final AttributionHelperListener listener) {
        final String environment;
        final LogLevel logLevel;
        if (AppConstants.MOZILLA_OFFICIAL) {
            environment = AdjustConfig.ENVIRONMENT_PRODUCTION;
            logLevel = LogLevel.WARN;
        } else {
            environment = AdjustConfig.ENVIRONMENT_SANDBOX;
            logLevel = LogLevel.VERBOSE;
        }
        if (maybeAppToken == null) {
            // We've got install tracking turned on -- we better have a token!
            throw new IllegalArgumentException("maybeAppToken must not be null");
        }
        attributionListener = listener;
        AdjustConfig config = new AdjustConfig(context, maybeAppToken, environment);
        config.setLogLevel(logLevel);
        config.setOnAttributionChangedListener(this);
        Adjust.onCreate(config);
    }

    public void onPause() {
        Adjust.onPause();
    }

    public void onResume() {
        Adjust.onResume();
    }

    public void setEnabled(final boolean isEnabled) {
        Adjust.setEnabled(isEnabled);
    }

    public void onReceive(final Context context, final Intent intent) {
        new AdjustReferrerReceiver().onReceive(context, intent);
    }

    @Override
    public void onAttributionChanged(AdjustAttribution attribution) {
        if (attributionListener == null) {
            throw new IllegalStateException("Expected non-null attribution listener.");
        }

        if (attribution == null) {
            Log.e(LOGTAG, "Adjust attribution is null; skipping campaign id retrieval.");
            return;
        }
        attributionListener.onCampaignIdChanged(attribution.campaign);
    }
}