Skip to content

Commit d75bab1

Browse files
author
“chauduyphanvu1”
committed
Initial commit for all MoPub mediation adapters
0 parents  commit d75bab1

File tree

63 files changed

+8247
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+8247
-0
lines changed

AdColony/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
## Changelog
2+
* 3.3.0.0
3+
* This version of the adapters has been certified with AdColony 3.3.0.
4+
5+
* Initial Commit
6+
* Adapters moved from [mopub-android-sdk](https://github.com/mopub/mopub-android-sdk) to [mopub-android-mediation](https://github.com/mopub/mopub-android-mediation/)

AdColony/README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## Overview
2+
* This folder contains mediation adapters used to mediate AdColony.
3+
* To download and integrate the AdColony SDK, please check [this tutorial](https://github.com/AdColony/AdColony-Android-SDK-3/wiki/Project-Setup).
4+
* For inquiries and support, please email [email protected].
5+
6+
## Adapter integration
7+
* To integrate adapters, please visit our [integration tutorial](https://developers.mopub.com/docs/android/integrating-networks/).
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,222 @@
1+
package com.mopub.mobileads;
2+
3+
import android.app.Activity;
4+
import android.content.Context;
5+
import android.os.Handler;
6+
import android.support.annotation.NonNull;
7+
import android.support.annotation.Nullable;
8+
import android.util.Log;
9+
10+
import com.adcolony.sdk.AdColony;
11+
import com.adcolony.sdk.AdColonyAppOptions;
12+
import com.adcolony.sdk.AdColonyInterstitialListener;
13+
import com.adcolony.sdk.AdColonyZone;
14+
import com.mopub.common.util.Json;
15+
16+
import java.util.Arrays;
17+
import java.util.Map;
18+
19+
/**
20+
* Please reference the Supported Mediation Partner page at http://bit.ly/2mqsuFH for the latest version and ad format certifications.
21+
*/
22+
public class AdColonyInterstitial extends CustomEventInterstitial {
23+
private static final String TAG = "AdColonyInterstitial";
24+
/*
25+
* We recommend passing the AdColony client options, app ID, all zone IDs, and current zone ID
26+
* in the serverExtras Map by specifying Custom Event Data in MoPub's web interface.
27+
*
28+
* Please see AdColony's documentation for more information:
29+
* https://github.com/AdColony/AdColony-Android-SDK-3
30+
*/
31+
private static final String DEFAULT_CLIENT_OPTIONS = "version=YOUR_APP_VERSION_HERE,store:google";
32+
private static final String DEFAULT_APP_ID = "YOUR_AD_COLONY_APP_ID_HERE";
33+
private static final String[] DEFAULT_ALL_ZONE_IDS = {"ZONE_ID_1", "ZONE_ID_2", "..."};
34+
private static final String DEFAULT_ZONE_ID = "YOUR_CURRENT_ZONE_ID";
35+
36+
/*
37+
* These keys are intended for MoPub internal use. Do not modify.
38+
*/
39+
public static final String CLIENT_OPTIONS_KEY = "clientOptions";
40+
public static final String APP_ID_KEY = "appId";
41+
public static final String ALL_ZONE_IDS_KEY = "allZoneIds";
42+
public static final String ZONE_ID_KEY = "zoneId";
43+
44+
private CustomEventInterstitialListener mCustomEventInterstitialListener;
45+
private AdColonyInterstitialListener mAdColonyInterstitialListener;
46+
private final Handler mHandler;
47+
private com.adcolony.sdk.AdColonyInterstitial mAdColonyInterstitial;
48+
private static String[] previousAdColonyAllZoneIds;
49+
50+
public AdColonyInterstitial() {
51+
mHandler = new Handler();
52+
}
53+
54+
@Override
55+
protected void loadInterstitial(@NonNull Context context,
56+
@NonNull CustomEventInterstitialListener customEventInterstitialListener,
57+
@Nullable Map<String, Object> localExtras,
58+
@NonNull Map<String, String> serverExtras) {
59+
if (context == null
60+
|| !(context instanceof Activity)
61+
|| customEventInterstitialListener == null
62+
|| serverExtras == null) {
63+
customEventInterstitialListener.onInterstitialFailed(MoPubErrorCode.ADAPTER_CONFIGURATION_ERROR);
64+
return;
65+
}
66+
67+
String clientOptions = DEFAULT_CLIENT_OPTIONS;
68+
String appId = DEFAULT_APP_ID;
69+
String[] allZoneIds = DEFAULT_ALL_ZONE_IDS;
70+
String zoneId = DEFAULT_ZONE_ID;
71+
72+
mCustomEventInterstitialListener = customEventInterstitialListener;
73+
74+
if (extrasAreValid(serverExtras)) {
75+
clientOptions = serverExtras.get(CLIENT_OPTIONS_KEY);
76+
appId = serverExtras.get(APP_ID_KEY);
77+
allZoneIds = extractAllZoneIds(serverExtras);
78+
zoneId = serverExtras.get(ZONE_ID_KEY);
79+
}
80+
AdColonyAppOptions adColonyAppOptions = AdColonyAppOptions.getMoPubAppOptions(clientOptions);
81+
mAdColonyInterstitialListener = getAdColonyInterstitialListener();
82+
if (!isAdColonyConfigured()) {
83+
AdColony.configure((Activity) context, adColonyAppOptions, appId, allZoneIds);
84+
} else if ((shouldReconfigure(previousAdColonyAllZoneIds, allZoneIds))) {
85+
// Need to check the zone IDs sent from the MoPub portal and reconfigure if they are
86+
// different than the zones we initially called AdColony.configure() with
87+
AdColony.configure((Activity) context, adColonyAppOptions, appId, allZoneIds);
88+
previousAdColonyAllZoneIds = allZoneIds;
89+
}
90+
91+
AdColony.requestInterstitial(zoneId, mAdColonyInterstitialListener);
92+
}
93+
94+
@Override
95+
protected void showInterstitial() {
96+
if (mAdColonyInterstitial == null || mAdColonyInterstitial.isExpired()) {
97+
Log.e(TAG, "AdColony interstitial ad is null or has expired");
98+
mHandler.post(new Runnable() {
99+
@Override
100+
public void run() {
101+
mCustomEventInterstitialListener.onInterstitialFailed(MoPubErrorCode.VIDEO_PLAYBACK_ERROR);
102+
}
103+
});
104+
} else {
105+
mAdColonyInterstitial.show();
106+
}
107+
}
108+
109+
@Override
110+
protected void onInvalidate() {
111+
if (mAdColonyInterstitial != null) {
112+
mAdColonyInterstitialListener = null;
113+
mAdColonyInterstitial.setListener(null);
114+
mAdColonyInterstitial.destroy();
115+
mAdColonyInterstitial = null;
116+
}
117+
}
118+
119+
private boolean isAdColonyConfigured() {
120+
return !AdColony.getSDKVersion().isEmpty();
121+
}
122+
123+
private AdColonyInterstitialListener getAdColonyInterstitialListener() {
124+
if (mAdColonyInterstitialListener != null) {
125+
return mAdColonyInterstitialListener;
126+
} else {
127+
return new AdColonyInterstitialListener() {
128+
@Override
129+
public void onRequestFilled(@NonNull com.adcolony.sdk.AdColonyInterstitial adColonyInterstitial) {
130+
mAdColonyInterstitial = adColonyInterstitial;
131+
Log.d(TAG, "AdColony interstitial ad has been successfully loaded.");
132+
mHandler.post(new Runnable() {
133+
@Override
134+
public void run() {
135+
mCustomEventInterstitialListener.onInterstitialLoaded();
136+
}
137+
});
138+
}
139+
140+
@Override
141+
public void onRequestNotFilled(@NonNull AdColonyZone zone) {
142+
Log.d(TAG, "AdColony interstitial ad has no fill.");
143+
mHandler.post(new Runnable() {
144+
@Override
145+
public void run() {
146+
mCustomEventInterstitialListener.onInterstitialFailed(MoPubErrorCode.NETWORK_NO_FILL);
147+
}
148+
});
149+
}
150+
151+
@Override
152+
public void onClosed(@NonNull com.adcolony.sdk.AdColonyInterstitial ad) {
153+
Log.d(TAG, "AdColony interstitial ad has been dismissed.");
154+
mHandler.post(new Runnable() {
155+
@Override
156+
public void run() {
157+
mCustomEventInterstitialListener.onInterstitialDismissed();
158+
}
159+
});
160+
}
161+
162+
@Override
163+
public void onOpened(@NonNull com.adcolony.sdk.AdColonyInterstitial ad) {
164+
Log.d(TAG, "AdColony interstitial ad shown: " + ad.getZoneID());
165+
mHandler.post(new Runnable() {
166+
@Override
167+
public void run() {
168+
mCustomEventInterstitialListener.onInterstitialShown();
169+
}
170+
});
171+
}
172+
173+
@Override
174+
public void onExpiring(@NonNull com.adcolony.sdk.AdColonyInterstitial ad) {
175+
Log.d(TAG, "AdColony interstitial ad is expiring; requesting new ad");
176+
AdColony.requestInterstitial(ad.getZoneID(), mAdColonyInterstitialListener);
177+
}
178+
179+
@Override
180+
public void onClicked(@NonNull com.adcolony.sdk.AdColonyInterstitial ad) {
181+
mCustomEventInterstitialListener.onInterstitialClicked();
182+
}
183+
};
184+
}
185+
}
186+
187+
private boolean extrasAreValid(Map<String, String> extras) {
188+
return extras != null
189+
&& extras.containsKey(CLIENT_OPTIONS_KEY)
190+
&& extras.containsKey(APP_ID_KEY)
191+
&& extras.containsKey(ALL_ZONE_IDS_KEY)
192+
&& extras.containsKey(ZONE_ID_KEY);
193+
}
194+
195+
private static boolean shouldReconfigure(String[] previousZones, String[] newZones) {
196+
// If AdColony is configured already, but previousZones is null, then that means AdColony
197+
// was configured with the AdColonyRewardedVideo adapter so attempt to configure with
198+
// the ids in newZones. They will be ignored within the AdColony SDK if the zones are
199+
// the same as the zones that the other adapter called AdColony.configure() with.
200+
if (previousZones == null) {
201+
return true;
202+
} else if (newZones == null) {
203+
return false;
204+
} else if (previousZones.length != newZones.length) {
205+
return true;
206+
}
207+
Arrays.sort(previousZones);
208+
Arrays.sort(newZones);
209+
return !Arrays.equals(previousZones, newZones);
210+
}
211+
212+
private String[] extractAllZoneIds(Map<String, String> serverExtras) {
213+
String[] result = Json.jsonArrayToStringArray(serverExtras.get(ALL_ZONE_IDS_KEY));
214+
215+
// AdColony requires at least one valid String in the allZoneIds array.
216+
if (result.length == 0) {
217+
result = new String[]{""};
218+
}
219+
220+
return result;
221+
}
222+
}

0 commit comments

Comments
 (0)